{ "cells": [ { "cell_type": "markdown", "metadata": {}, "source": [ "# Coupon Particle Generation " ] }, { "cell_type": "code", "execution_count": 1, "metadata": {}, "outputs": [], "source": [ "# Amira Abdel-Rahman\n", "# (c) Massachusetts Institute of Technology 2020" ] }, { "cell_type": "code", "execution_count": 2, "metadata": {}, "outputs": [], "source": [ "using Plots\n", "import StaticArrays: SVector\n", "using RegionTrees\n", "import JSON\n" ] }, { "cell_type": "code", "execution_count": 3, "metadata": {}, "outputs": [], "source": [ "include(\"adaptive_distance_fields.jl\")\n", "using .AdaptivelySampledDistanceFields: ASDF, evaluate" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Frep Coupon" ] }, { "cell_type": "code", "execution_count": 4, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "frepCoupon (generic function with 2 methods)" ] }, "execution_count": 4, "metadata": {}, "output_type": "execute_result" } ], "source": [ "function frepCoupon(X,Y)\n", " return min(min(min(min((min(X-(-123),(123)-X)),(min(Y-(-14.5),(14.5)-Y))),-(min((min(X-(-28.5),(28.5)-X)),(min(Y-(9.5),(100)-Y))))),-(min((min(X-(-28.5),(28.5)-X)),(min(Y-(-100),(-9.5)-Y))))),-(max(max(max(((76)*(76)-((X-(-28.5))*(X-(-28.5))+(Y-(-85.5))*(Y-(-85.5)))),((76)*(76)-((X-(28.5))*(X-(28.5))+(Y-(85.5))*(Y-(85.5))))),((76)*(76)-((X-(28.5))*(X-(28.5))+(Y-(-85.5))*(Y-(-85.5))))),((76)*(76)-((X-(-28.5))*(X-(-28.5))+(Y-(85.5))*(Y-(85.5)))))))\n", "end\n", "function frepCoupon(v)\n", " X=v[1]\n", " Y=v[2]/1\n", " return min(min(min(min((min(X-(-123),(123)-X)),(min(Y-(-14.5),(14.5)-Y))),-(min((min(X-(-28.5),(28.5)-X)),(min(Y-(9.5),(100)-Y))))),-(min((min(X-(-28.5),(28.5)-X)),(min(Y-(-100),(-9.5)-Y))))),-(max(max(max(((76)*(76)-((X-(-28.5))*(X-(-28.5))+(Y-(-85.5))*(Y-(-85.5)))),((76)*(76)-((X-(28.5))*(X-(28.5))+(Y-(85.5))*(Y-(85.5))))),((76)*(76)-((X-(28.5))*(X-(28.5))+(Y-(-85.5))*(Y-(-85.5))))),((76)*(76)-((X-(-28.5))*(X-(-28.5))+(Y-(85.5))*(Y-(85.5)))))))\n", "end" ] }, { "cell_type": "code", "execution_count": 5, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "frepCouponBW (generic function with 1 method)" ] }, "execution_count": 5, "metadata": {}, "output_type": "execute_result" } ], "source": [ "function frepCouponBW(X,Y)\n", " if frepCoupon(X,Y)>0\n", " return 1\n", " else\n", " return 0\n", " end\n", "end" ] }, { "cell_type": "code", "execution_count": 445, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "frepCouponScale (generic function with 2 methods)" ] }, "execution_count": 445, "metadata": {}, "output_type": "execute_result" } ], "source": [ "function frepCouponScale(X,Y)\n", " scale=100.0\n", " return min(min(min(min((min(X-(-123/scale),(123/scale)-X)),(min(Y-(-14.5/scale),(14.5/scale)-Y))),-(min((min(X-(-28.5/scale),(28.5/scale)-X)),(min(Y-(9.5/scale),(100/scale)-Y))))),-(min((min(X-(-28.5/scale),(28.5/scale)-X)),(min(Y-(-100/scale),(-9.5/scale)-Y))))),-(max(max(max(((76/scale)*(76/scale)-((X-(-28.5/scale))*(X-(-28.5/scale))+(Y-(-85.5/scale))*(Y-(-85.5/scale)))),((76/scale)*(76/scale)-((X-(28.5/scale))*(X-(28.5/scale))+(Y-(85.5/scale))*(Y-(85.5/scale))))),((76/scale)*(76/scale)-((X-(28.5/scale))*(X-(28.5/scale))+(Y-(-85.5/scale))*(Y-(-85.5/scale))))),((76/scale)*(76/scale)-((X-(-28.5/scale))*(X-(-28.5/scale))+(Y-(85.5/scale))*(Y-(85.5/scale)))))))\n", "end\n", "function frepCouponBWScale(X,Y)\n", " if frepCouponScale(X,Y)>0\n", " return 1\n", " else\n", " return 0\n", " end\n", "end\n", "function frepCouponScale(v)\n", " X=v[1]\n", " Y=v[2]\n", " scale=100.0\n", " f= min(min(min(min((min(X-(-123/scale),(123/scale)-X)),(min(Y-(-14.5/scale),(14.5/scale)-Y))),-(min((min(X-(-28.5/scale),(28.5/scale)-X)),(min(Y-(9.5/scale),(100/scale)-Y))))),-(min((min(X-(-28.5/scale),(28.5/scale)-X)),(min(Y-(-100/scale),(-9.5/scale)-Y))))),-(max(max(max(((76/scale)*(76/scale)-((X-(-28.5/scale))*(X-(-28.5/scale))+(Y-(-85.5/scale))*(Y-(-85.5/scale)))),((76/scale)*(76/scale)-((X-(28.5/scale))*(X-(28.5/scale))+(Y-(85.5/scale))*(Y-(85.5/scale))))),((76/scale)*(76/scale)-((X-(28.5/scale))*(X-(28.5/scale))+(Y-(-85.5/scale))*(Y-(-85.5/scale))))),((76/scale)*(76/scale)-((X-(-28.5/scale))*(X-(-28.5/scale))+(Y-(85.5/scale))*(Y-(85.5/scale)))))))\n", " return min(max(f,0.0),0.1)\n", "end" ] }, { "cell_type": "code", "execution_count": 90, "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=\"clip6100\">\n", " <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip6100)\" 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=\"clip6101\">\n", " <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip6100)\" d=\"\n", "M168.627 1408.35 L2112.76 1408.35 L2112.76 126.373 L168.627 126.373 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip6102\">\n", " <rect x=\"168\" y=\"126\" width=\"1945\" height=\"1283\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip6102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 395.814,1408.35 395.814,126.373 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 768.253,1408.35 768.253,126.373 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1140.69,1408.35 1140.69,126.373 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1513.13,1408.35 1513.13,126.373 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1885.57,1408.35 1885.57,126.373 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,1214.29 2112.76,1214.29 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,990.823 2112.76,990.823 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,767.359 2112.76,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,543.896 2112.76,543.896 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,320.433 2112.76,320.433 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,1408.35 2112.76,1408.35 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,1408.35 168.627,126.373 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 395.814,1408.35 395.814,1392.96 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 768.253,1408.35 768.253,1392.96 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1140.69,1408.35 1140.69,1392.96 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513.13,1408.35 1513.13,1392.96 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1885.57,1408.35 1885.57,1392.96 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,1214.29 191.956,1214.29 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,990.823 191.956,990.823 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,767.359 191.956,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,543.896 191.956,543.896 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,320.433 191.956,320.433 \n", " \"/>\n", "<g clip-path=\"url(#clip6100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 395.814, 1462.35)\" x=\"395.814\" y=\"1462.35\">-100</text>\n", "</g>\n", "<g clip-path=\"url(#clip6100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 768.253, 1462.35)\" x=\"768.253\" y=\"1462.35\">-50</text>\n", "</g>\n", "<g clip-path=\"url(#clip6100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1140.69, 1462.35)\" x=\"1140.69\" y=\"1462.35\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip6100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1513.13, 1462.35)\" x=\"1513.13\" y=\"1462.35\">50</text>\n", "</g>\n", "<g clip-path=\"url(#clip6100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1885.57, 1462.35)\" x=\"1885.57\" y=\"1462.35\">100</text>\n", "</g>\n", "<g clip-path=\"url(#clip6100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 1231.79)\" x=\"144.627\" y=\"1231.79\">-60</text>\n", "</g>\n", "<g clip-path=\"url(#clip6100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 1008.32)\" x=\"144.627\" y=\"1008.32\">-30</text>\n", "</g>\n", "<g clip-path=\"url(#clip6100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 784.859)\" x=\"144.627\" y=\"784.859\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip6100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 561.396)\" x=\"144.627\" y=\"561.396\">30</text>\n", "</g>\n", "<g clip-path=\"url(#clip6100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 337.933)\" x=\"144.627\" y=\"337.933\">60</text>\n", "</g>\n", "<g clip-path=\"url(#clip6102)\">\n", "<image width=\"1944\" height=\"305\" xlink:href=\"data:image/png;base64,\n", "iVBORw0KGgoAAAANSUhEUgAAB5gAAAExCAYAAACpnX4wAAAMhklEQVR4nO3bQW7bQBQFQTGYg/Jo\n", "PCgBZpVV4KQTW/qSVXUAzluO1JjtdlvXDQAAAAAAAAD+4sf0AAAAAAAAAABeg8AMAAAAAAAAQCIw\n", "AwAAAAAAAJAIzAAAAAAAAAAkAjMAAAAAAAAAicAMAAAAAAAAQCIwAwAAAAAAAJAIzAAAAAAAAAAk\n", "AjMAAAAAAAAAicAMAAAAAAAAQCIwAwAAAAAAAJAIzAAAAAAAAAAkAjMAAAAAAAAAicAMAAAAAAAA\n", "QCIwAwAAAAAAAJAIzAAAAAAAAAAkAjMAAAAAAAAAicAMAAAAAAAAQCIwAwAAAAAAAJAIzAAAAAAA\n", "AAAkAjMAAAAAAAAAicAMAAAAAAAAQCIwAwAAAAAAAJAIzAAAAAAAAAAkAjMAAAAAAAAAicAMAAAA\n", "AAAAQCIwAwAAAAAAAJAIzAAAAAAAAAAkAjMAAAAAAAAAicAMAAAAAAAAQCIwAwAAAAAAAJAIzAAA\n", "AAAAAAAkAjMAAAAAAAAAicAMAAAAAAAAQCIwAwAAAAAAAJAIzAAAAAAAAAAkAjMAAAAAAAAAicAM\n", "AAAAAAAAQCIwAwAAAAAAAJAIzAAAAAAAAAAkAjMAAAAAAAAAicAMAAAAAAAAQCIwAwAAAAAAAJAI\n", "zAAAAAAAAAAka3rAo53XMT0BALijte3TEwAAAH7jf0kA+N7e6X9JL5gBAAAAAAAASARmAAAAAAAA\n", "ABKBGQAAAAAAAIBEYAYAAAAAAAAgEZgBAAAAAAAASARmAAAAAAAAABKBGQAAAAAAAIBkTQ8AAPhK\n", "53Xc5btr2+/yXQAA4Lnc6zcFAMB34QUzAAAAAAAAAInADAAAAAAAAEAiMAMAAAAAAACQCMwAAAAA\n", "AAAAJAIzAAAAAAAAAInADAAAAAAAAECypgcAALyC8zpGzl3bPnIuAABMm7qDAwDwZ14wAwAAAAAA\n", "AJAIzAAAAAAAAAAkAjMAAAAAAAAAicAMAAAAAAAAQCIwAwAAAAAAAJAIzAAAAAAAAAAka3oAAAAf\n", "O6/j4WeubX/4mQAAPK+JOykAAM/LC2YAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACARmAEAAAAA\n", "AABIBGYAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACBZ0wMAAHgu53VMT/hna9unJwAAZK943wIA\n", "gF+8YAYAAAAAAAAgEZgBAAAAAAAASARmAAAAAAAAABKBGQAAAAAAAIBEYAYAAAAAAAAgEZgBAAAA\n", "AAAASNb0AAAA+KzzOqYnAAAAAMBb8IIZAAAAAAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAA\n", "AAAAEoEZAAAAAAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAAAAAAgERgBgAA\n", "AAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYA\n", "AAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAAAAAAgERg\n", "BgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACARmAEAAAAAAABI\n", "BGYAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAAAAAA\n", "gERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACARmAEAAAAA\n", "AABIBGYAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAA\n", "AAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACARmAEA\n", "AAAAAABIBGYAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZ\n", "AAAAAAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACAR\n", "mAEAAAAAAABIBGYAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAA\n", "EoEZAAAAAAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAA\n", "ACARmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAA\n", "AAAAEoEZAAAAAAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAAAAAAgERgBgAA\n", "AAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYA\n", "AAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAAAAAAgERg\n", "BgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACARmAEAAAAAAABI\n", "BGYAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAAAAAA\n", "gERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACARmAEAAAAA\n", "AABIBGYAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAA\n", "AAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACARmAEA\n", "AAAAAABIBGYAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZ\n", "AAAAAAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACAR\n", "mAEAAAAAAABIBGYAAAAAAAAAEoEZAAAAAAAAgGRNDwAAgM9a2z49AQAgO69jegIAAPw3L5gBAAAA\n", "AAAASARmAAAAAAAAABKBGQAAAAAAAIBEYAYAAAAAAAAgEZgBAAAAAAAASARmAAAAAAAAAJI1PQAA\n", "gOeytn16AgDAt/Zq963zOqYnAADwRLxgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAA\n", "AAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAkjU9AACAj61tn54AAMCbm7qTntcxci4A\n", "AH/mBTMAAAAAAAAAicAMAAAAAAAAQCIwAwAAAAAAAJAIzAAAAAAAAAAkAjMAAAAAAAAAicAMAAAA\n", "AAAAQLKmBwAAvIK17dMTAADgrUzdwc/rGDkXAOBVeMEMAAAAAAAAQCIwAwAAAAAAAJAIzAAAAAAA\n", "AAAkAjMAAAAAAAAAicAMAAAAAAAAQCIwAwAAAAAAAJCs6QEAAF9pbfv0BAAA4IXd6zfFeR13+S4A\n", "wKN5wQwAAAAAAABAIjADAAAAAAAAkAjMAAAAAAAAACQCMwAAAAAAAACJwAwAAAAAAABAIjADAAAA\n", "AAAAkAjMAAAAAAAAACTb7bau6REAAAAAAAAAPD8vmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAAAAAA\n", "gERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACARmAEAAAAA\n", "AABIBGYAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAA\n", "AAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACARmAEA\n", "AAAAAABIBGYAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZ\n", "AAAAAAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACAR\n", "mAEAAAAAAABIBGYAAAAAAAAAEoEZAAAAAAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAA\n", "EoEZAAAAAAAAgERgBgAAAAAAACARmAEAAAAAAABIBGYAAAAAAAAAEoEZAAAAAAAAgOQnfrk0GHoi\n", "TuMAAAAASUVORK5CYII=\n", "\" transform=\"translate(169, 615)\"/>\n", "</g>\n", "<defs>\n", " <clipPath id=\"clip6103\">\n", " <rect x=\"2160\" y=\"126\" width=\"73\" height=\"1283\"/>\n", " </clipPath>\n", "</defs>\n", "<g clip-path=\"url(#clip6103)\">\n", "<image width=\"72\" height=\"1282\" xlink:href=\"data:image/png;base64,\n", "iVBORw0KGgoAAAANSUhEUgAAAEgAAAUCCAYAAACpFrXqAAALHklEQVR4nO3dwa0kNxAFwR6h/LdC\n", "XkpLygJVHrsPERZ8JB4IijM7+v17/r4P/+uvt/+ArxMoCBQECgKFOffft/+GT7OgIFAQKAgU5jqk\n", "VxYUBAoCBYHC3OOQ3lhQECgIFAQKbtLBgoJAQaAgUHBIBwsKAgWBgkDBIR0sKAgUBAoCBW/SwYKC\n", "QEGgIFBwkw4WFAQKAgWBgkM6WFAQKAgUBArzeO5YWVAQKAgUBAoO6WBBQaAgUBAozOO5Y2VBQaAg\n", "UBAouEkHCwoCBYGCQMEhHSwoCBQECgKFec4/b/8Nn2ZBQaAgUBAoeJMOFhQECgIFgYLnjmBBQaAg\n", "UBAoOKSDBQWBgkBBoDC/++ftv+HTLCgIFAQKAoV5jkN6Y0FBoCBQECjMzyG9sqAgUBAoCBTcpIMF\n", "BYGCQEGgMI836ZUFBYGCQEGg4LkjWFAQKAgUBAqeO4IFBYGCQEGg4CYdLCgIFAQKAgU36WBBQaAg\n", "UBAozO+ct/+GT7OgIFAQKAgU3KSDBQWBgkBBoOCQDhYUBAoCBYGCDw6DBQWBgkBBoDCPN+mVBQWB\n", "gkBBoOAmHSwoCBQECgIFb9LBgoJAQaAgUHBIBwsKAgWBgkDB96SDBQWBgkBBoOCDw2BBQaAgUBAo\n", "eO4IFhQECgIFgYKbdLCgIFAQKAgUHNLBgoJAQaAgUPDBYbCgIFAQKAgUvEkHCwoCBYGCQMFzR7Cg\n", "IFAQKAgUHNLBgoJAQaAgUHBIBwsKAgWBgkBhnnPf/hs+zYKCQEGgIFCY57pJbywoCBQECgIFzx3B\n", "goJAQaAgUPDcESwoCBQECgIFN+lgQUGgIFAQKDikgwUFgYJAQaDguSNYUBAoCBQECm7SwYKCQEGg\n", "IFCYxxm9sqAgUBAoCBQc0sGCgkBBoCBQGP+WZWdBQaAgUBAouEkHCwoCBYGCQMEhHSwoCBQECgIF\n", "h3SwoCBQECgIFObxNemVBQWBgkBBoDD3/N7+Gz7NgoJAQaAgUPDcESwoCBQECgKFedykVxYUBAoC\n", "BYHC3OuQ3lhQECgIFAQKbtLBgoJAQaAgUHBIBwsKAgWBgkDBc0ewoCBQECgIFNykgwUFgYJAQaAw\n", "z9Foo04QKAgUBAqeO4IFBYGCQEGg4LkjWFAQKAgUBAr+WXiwoCBQECgIFOa5Gm3UCQIFgYJAwU06\n", "WFAQKAgUBAoO6WBBQaAgUBAo+ApeUCcIFAQKAgVfwQsWFAQKAgWBgq/gBQsKAgWBgkBhrueOlTpB\n", "oCBQECh47ggWFAQKAgWBgueOYEFBoCBQECh47gjqBIGCQEGg4LkjWFAQKAgUBAr+MUuwoCBQECgI\n", "FOb67Y6VOkGgIFAQKPjgMFhQECgIFAQKnjuCBQWBgkBBoOCDw2BBQaAgUBAo+ApeUCcIFAQKAgU3\n", "6WBBQaAgUBAoeJMOFhQECgIFgYKbdLCgIFAQKAgUvEkHdYJAQaAgUHCTDhYUBAoCBYGCN+lgQUGg\n", "IFAQKLhJBwsKAgWBgkDBm3RQJwgUBAoCBTfpYEFBoCBQECg4pIMFBYGCQEGg4JAOFhQECgIFgYJv\n", "dwQLCgIFgYJAYY4f/V+pEwQKAgWBgueOYEFBoCBQECh47ggWFAQKAgWBgpt0sKAgUBAoCBQc0sGC\n", "gkBBoCBQcEgHCwoCBYGCQMEhHSwoCBQECgKFOQ7plQUFgYJAQaDgJh0sKAgUBAoCBYd0sKAgUBAo\n", "CBQc0sGCgkBBoCBQcEgHCwoCBYGCQMEhHSwoCBQECgIF3+4IFhQECgIFgYKbdLCgIFAQKAgUHNLB\n", "goJAQaAgUPB70kGdIFAQKAgU3KSDBQWBgkBBoOCDw2BBQaAgUBAouEkHCwoCBYGCQMFNOlhQECgI\n", "FAQKbtLBgoJAQaAgUHBIBwsKAgWBgkDBc0ewoCBQECgIFOY+DumNBQWBgkBBoOAmHSwoCBQECgIF\n", "b9LBgoJAQaAgUBAozLlv/wnfZkFBoCBQECj4T41gQUGgIFAQKHi0DxYUBAoCBYHCHF9/WVlQECgI\n", "FAQKnjuCBQWBgkBBoOC5I1hQECgIFAQKbtLBgoJAQaAgUJjz9l/wcRYUBAoCBYGCm3SwoCBQECgI\n", "FLxJBwsKAgWBgkDBL1AFCwoCBYGCQMFNOlhQECgIFAQKfrsjWFAQKAgUBAqeO4IFBYGCQEGg4Nsd\n", "wYKCQEGgIFDwPelgQUGgIFAQKLhJBwsKAgWBgkDBTTpYUBAoCBQECm7SwYKCQEGgIFDwPelgQUGg\n", "IFAQKIyvSe8sKAgUBAoCBTfpYEFBoCBQECi4SQcLCgIFgYJAwU06WFAQKAgUBApu0sGCgkBBoCBQ\n", "cJMOFhQECgIFgYJfwQsWFAQKAgWBgl/BCxYUBAoCBYGCm3SwoCBQECgIFOa4Sa8sKAgUBAoChblu\n", "0isLCgIFgYJAwbc7ggUFgYJAQaDge9LBgoJAQaAgUPDBYbCgIFAQKAgUfHAYLCgIFAQKAgUfHAYL\n", "CgIFgYJAwf8+K1hQECgIFAQKvt0RLCgIFAQKAgXPHcGCgkBBoCBQ8NwRLCgIFAQKAgU36WBBQaAg\n", "UBAo+ApesKAgUBAoCBT8Y5ZgQUGgIFAQKPhn4cGCgkBBoCBQcJMOFhQECgIFgYJDOlhQECgIFAQK\n", "/vdZwYKCQEGgIFBwkw4WFAQKAgWBgg8OgwUFgYJAQaDgJh0sKAgUBAoCBYd0sKAgUBAoCBQ8dwQL\n", "CgIFgYJAwU06WFAQKAgUBAp+BS9YUBAoCBQECn4FL1hQECgIFAQKnjuCBQWBgkBBoOCDw2BBQaAg\n", "UBAouEkHCwoCBYGCQGHu45TeWFAQKAgUBApu0sGCgkBBoCBQ8CYdLCgIFAQKAgU36WBBQaAgUBAo\n", "uEkHCwoCBYGCQMFNOlhQECgIFAQK/sVhsKAgUBAoCBTm+AreyoKCQEGgIFBwkw4WFAQKAgWBgpt0\n", "sKAgUBAoCBT8VGmwoCBQECgIFOZ671hZUBAoCBQECm7SwYKCQEGgIFDwPelgQUGgIFAQKPgVvGBB\n", "QaAgUBAouEkHCwoCBYGCQMFX8IIFBYGCQEGg4LkjWFAQKAgUBApu0sGCgkBBoCBQcEgHCwoCBYGC\n", "QGGOf8yysqAgUBAoCBS8SQcLCgIFgYJAwXNHsKAgUBAoCBQc0sGCgkBBoCBQcEgHCwoCBYGCQGHu\n", "4yeWNhYUBAoCBYGCm3SwoCBQECgIFOb83KQ3FhQECgIFgcIczx0rCwoCBYGCQMEhHSwoCBQECgIF\n", "HxwGCwoCBYGCQGHOzweHGwsKAgWBgkDBc0ewoCBQECgIFBzSwYKCQEGgIFDwJh0sKAgUBAoChTnP\n", "n7f/hk+zoCBQECgIFDx3BAsKAgWBgkBhrpv0yoKCQEGgIFBwkw4WFAQKAgWBgkM6WFAQKAgUBAqe\n", "O4IFBYGCQEGg4CYdLCgIFAQKAgU36WBBQaAgUBAo+McswYKCQEGgIFCYcx3SGwsKAgWBgkDBTTpY\n", "UBAoCBQECnPdpFcWFAQKAgWBgpt0sKAgUBAoCBR8uyNYUBAoCBQECj44DBYUBAoCBYGC545gQUGg\n", "IFAQKPjgMFhQECgIFAQK3qSDBQWBgkBBoOAmHSwoCBQECgIFb9LBgoJAQaAgUHCTDhYUBAoCBYGC\n", "N+lgQUGgIFAQKLhJBwsKAgWBgkDBm3SwoCBQECgIFOZezx0bCwoCBYGCQMFNOlhQECgIFAQK89z7\n", "9t/waRYUBAoCBYHCPG7SKwsKAgWBgkDBtzuCBQWBgkBBoOAmHSwoCBQECgIFHxwGCwoCBYGCQGEe\n", "zx0rCwoCBYGCQMFNOlhQECgIFAQK3qSDBQWBgkBBoPAf/6LvE1H0JiAAAAAASUVORK5CYII=\n", "\" transform=\"translate(2161, 126)\"/>\n", "</g>\n", "<g clip-path=\"url(#clip6100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 1422)\" x=\"2268.76\" y=\"1422\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip6100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 1293.8)\" x=\"2268.76\" y=\"1293.8\">0.1</text>\n", "</g>\n", "<g clip-path=\"url(#clip6100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 1165.6)\" x=\"2268.76\" y=\"1165.6\">0.2</text>\n", "</g>\n", "<g clip-path=\"url(#clip6100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 1037.41)\" x=\"2268.76\" y=\"1037.41\">0.3</text>\n", "</g>\n", "<g clip-path=\"url(#clip6100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 909.208)\" x=\"2268.76\" y=\"909.208\">0.4</text>\n", "</g>\n", "<g clip-path=\"url(#clip6100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 781.011)\" x=\"2268.76\" y=\"781.011\">0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip6100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 652.813)\" x=\"2268.76\" y=\"652.813\">0.6</text>\n", "</g>\n", "<g clip-path=\"url(#clip6100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 524.616)\" x=\"2268.76\" y=\"524.616\">0.7</text>\n", "</g>\n", "<g clip-path=\"url(#clip6100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 396.419)\" x=\"2268.76\" y=\"396.419\">0.8</text>\n", "</g>\n", "<g clip-path=\"url(#clip6100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 268.221)\" x=\"2268.76\" y=\"268.221\">0.9</text>\n", "</g>\n", "<g clip-path=\"url(#clip6100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 140.024)\" x=\"2268.76\" y=\"140.024\">1.0</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip6100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2232.76,1408.35 2232.76,1408.35 2256.76,1408.35 2232.76,1408.35 2232.76,1280.15 2256.76,1280.15 2232.76,1280.15 2232.76,1151.95 2256.76,1151.95 2232.76,1151.95 \n", " 2232.76,1023.75 2256.76,1023.75 2232.76,1023.75 2232.76,895.557 2256.76,895.557 2232.76,895.557 2232.76,767.359 2256.76,767.359 2232.76,767.359 2232.76,639.162 \n", " 2256.76,639.162 2232.76,639.162 2232.76,510.965 2256.76,510.965 2232.76,510.965 2232.76,382.768 2256.76,382.768 2232.76,382.768 2232.76,254.57 2256.76,254.57 \n", " 2232.76,254.57 2232.76,126.373 2256.76,126.373 2232.76,126.373 \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=\"clip6500\">\n", " <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip6500)\" 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=\"clip6501\">\n", " <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip6500)\" d=\"\n", "M168.627 1408.35 L2112.76 1408.35 L2112.76 126.373 L168.627 126.373 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip6502\">\n", " <rect x=\"168\" y=\"126\" width=\"1945\" height=\"1283\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip6502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 395.814,1408.35 395.814,126.373 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 768.253,1408.35 768.253,126.373 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1140.69,1408.35 1140.69,126.373 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1513.13,1408.35 1513.13,126.373 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1885.57,1408.35 1885.57,126.373 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,1214.29 2112.76,1214.29 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,990.823 2112.76,990.823 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,767.359 2112.76,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,543.896 2112.76,543.896 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,320.433 2112.76,320.433 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,1408.35 2112.76,1408.35 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,1408.35 168.627,126.373 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 395.814,1408.35 395.814,1392.96 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 768.253,1408.35 768.253,1392.96 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1140.69,1408.35 1140.69,1392.96 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513.13,1408.35 1513.13,1392.96 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1885.57,1408.35 1885.57,1392.96 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,1214.29 191.956,1214.29 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,990.823 191.956,990.823 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,767.359 191.956,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,543.896 191.956,543.896 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,320.433 191.956,320.433 \n", " \"/>\n", "<g clip-path=\"url(#clip6500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 395.814, 1462.35)\" x=\"395.814\" y=\"1462.35\">-100</text>\n", "</g>\n", "<g clip-path=\"url(#clip6500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 768.253, 1462.35)\" x=\"768.253\" y=\"1462.35\">-50</text>\n", "</g>\n", "<g clip-path=\"url(#clip6500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1140.69, 1462.35)\" x=\"1140.69\" y=\"1462.35\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip6500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1513.13, 1462.35)\" x=\"1513.13\" y=\"1462.35\">50</text>\n", "</g>\n", "<g clip-path=\"url(#clip6500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1885.57, 1462.35)\" x=\"1885.57\" y=\"1462.35\">100</text>\n", "</g>\n", "<g clip-path=\"url(#clip6500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 1231.79)\" x=\"144.627\" y=\"1231.79\">-60</text>\n", "</g>\n", "<g clip-path=\"url(#clip6500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 1008.32)\" x=\"144.627\" y=\"1008.32\">-30</text>\n", "</g>\n", "<g clip-path=\"url(#clip6500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 784.859)\" x=\"144.627\" y=\"784.859\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip6500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 561.396)\" x=\"144.627\" y=\"561.396\">30</text>\n", "</g>\n", "<g clip-path=\"url(#clip6500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 337.933)\" x=\"144.627\" y=\"337.933\">60</text>\n", "</g>\n", "<g clip-path=\"url(#clip6502)\">\n", "<image width=\"1944\" height=\"305\" xlink:href=\"data:image/png;base64,\n", "iVBORw0KGgoAAAANSUhEUgAAB5gAAAExCAYAAACpnX4wAAAVCElEQVR4nO3bQYhb950H8KfRk0aj\n", "mbD0VKjTkgVDA6G4Kc1hlw0ECg1blj3lkFJiCAScHkLwIaecczY5NaaBLDaFHHJcCg0UDGZPLZua\n", "YnDBh9DGZW+leEYzo6cn7alN6OT99YtGen9J8/lcv3rvfcdzeB59+XfeuvTGrEgYls1xv5O8FAD4\n", "grc/vZm7AgAAAGy1d566lrsCAGyM8azTmI0mzdnOKsoAAAAAAAAAsH0MzAAAAAAAAACEGJgBAAAA\n", "AAAACDEwAwAAAAAAABBiYAYAAAAAAAAgxMAMAAAAAAAAQIiBGQAAAAAAAICQ8jwX93Zmc/LpeW4P\n", "AFvlxuXXkvn1h++31AQAAAA207y/rYuibqUHAGyCapo+azyuOwvd1wlmAAAAAAAAAEIMzAAAAAAA\n", "AACEGJgBAAAAAAAACDEwAwAAAAAAABBiYAYAAAAAAAAgxMAMAAAAAAAAQEi5ypv3dmaJbLrKRwPA\n", "xrn59KsLX3vtwQdLbAIAAACrc56/f4uiXloPANgG1bT5PHG1ojnWCWYAAAAAAAAAQgzMAAAAAAAA\n", "AIQYmAEAAAAAAAAIMTADAAAAAAAAEGJgBgAAAAAAACDEwAwAAAAAAABAiIEZAAAAAAAAgJAy14N7\n", "O9NkXnbSOQDwuVvPvLLQdVfv315yEwAAAC6KRf8WLYrJUnsAwDabzNLnhatp++eJnWAGAAAAAAAA\n", "IMTADAAAAAAAAECIgRkAAAAAAACAEAMzAAAAAAAAACEGZgAAAAAAAABCDMwAAAAAAAAAhJS5CzTp\n", "7Uybs25zBgDEffTdHy987ZsPP0vmjw7vLnxvAAAAluPSwfPJ/N3LT57j7pNzXAsA/E1VN58JniSy\n", "XNavEQAAAAAAAABrycAMAAAAAAAAQIiBGQAAAAAAAIAQAzMAAAAAAAAAIQZmAAAAAAAAAEIMzAAA\n", "AAAAAACEGJgBAAAAAAAACClzF1hEb6eek09bagIAF9fPn/76nE+8tPC9f/Tbjxa+FgDO452nrjVm\n", "b396s8UmAPC5X35/8b+v5qtWeG8AoCiKopqmz/xW9WadCd6stgAAAAAAAABkY2AGAAAAAAAAIMTA\n", "DAAAAAAAAECIgRkAAAAAAACAEAMzAAAAAAAAACEGZgAAAAAAAABCytwFVqHXrZuzneYMAFgPd/7l\n", "Pxe+9vq9YWP2yejDhe8LwPp4dvhyMr/6jYNz3L35b8Ybl19b+K63/nyYzL2jALZD6h1148roHHce\n", "n+NaAKAN1bSbyLbrzO92/TQAAAAAAAAArIyBGQAAAAAAAIAQAzMAAAAAAAAAIQZmAAAAAAAAAEIM\n", "zAAAAAAAAACEGJgBAAAAAAAACDEwAwAAAAAAABBS5i7QtrI7Sea9bt1SEwBgFd577jSRvrjwfV//\n", "zdcas09GHy58X4Bt9uzw5WT++rf2VvTk9fu7bv7P+upC933vj8fJ3DsK4Mul3lHvPfeXc9z5PNcC\n", "AOusqrvpfJrOt4kTzAAAAAAAAACEGJgBAAAAAAAACDEwAwAAAAAAABBiYAYAAAAAAAAgxMAMAAAA\n", "AAAAQIiBGQAAAAAAAICQMneBdVOWdXPWnbTYBABYJ//1b/+XSF9Y2XOvfHxnZfcG+Jtbz7yS6cn+\n", "xjqv6//cm/OJ1fxur96/vZL7AnzRvR++sMK7p/5/DwBcVJO6eTqt6m6LTdabE8wAAAAAAAAAhBiY\n", "AQAAAAAAAAgxMAMAAAAAAAAQYmAGAAAAAAAAIMTADAAAAAAAAECIgRkAAAAAAACAkDJ3gU1SduvG\n", "rJvIAAAW9eA//rX1Z/7gTjeZPzq821IT2D6XDp5P5u9efrKlJv9okum5bKqPvvvjLM998+FnjZn3\n", "E5xP6h316xdyfe81zvRcAGCb1XXzd1+T2nQa4QQzAAAAAAAAACEGZgAAAAAAAABCDMwAAAAAAAAA\n", "hBiYAQAAAAAAAAgxMAMAAAAAAAAQYmAGAAAAAAAAIMTADAAAAAAAAEBImbvAtijLSTrvpXMAgHXx\n", "P/8+7xPfa6PGV/Kr319J5j/9wy8as+lsvOw6LNFOp5/Mf/btnzRm3zx4vOw6LahyF4C19vOnv55I\n", "X2qtx1fxp8MnGrPU+6kovKPWXeodlXo/FUVRvPide8uuswRHuQsAACzFpErPn3XdbanJ9nKCGQAA\n", "AAAAAIAQAzMAAAAAAAAAIQZmAAAAAAAAAEIMzAAAAAAAAACEGJgBAAAAAAAACDEwAwAAAAAAABDS\n", "eevSG7PUB4Zlc7zfnSZvPizrRDZJXrvXbc6HvSr93ES+1ztNP3d33JgN+s3X7u6m77u7d9KYdXvp\n", "fwsAANbT+HjQmJ0ksqIoitNxv/na093ktcfjdA4Am2Yv8Z1LURTFIPG9y26/+bucoiiKQeI7mX4i\n", "AwBgfdVV2ZidzvtOJvG9y0niO5fj0+bvcoqiKI6r5mtHVS95bSo/rpt/1qIoitGkOR9Nuslrj+rm\n", "s8ijSacxc4IZAAAAAAAAgBADMwAAAAAAAAAhBmYAAAAAAAAAQgzMAAAAAAAAAIQYmAEAAAAAAAAI\n", "MTADAAAAAAAAEGJgBgAAAAAAACCkzF2AouiWk3TeS+cAAKzO+HiQu8IZe/3T3BUAYOv1905yVwAA\n", "uLDqKj1hzstZLSeYAQAAAAAAAAgxMAMAAAAAAAAQYmAGAAAAAAAAIMTADAAAAAAAAECIgRkAAAAA\n", "AACAEAMzAAAAAAAAACFl7gLM1+1NGrOdfnMGAMB81dEgd4UzBrunuSsAAHP09k9yVwAA2GjTcfNM\n", "WVcmzHXmBDMAAAAAAAAAIQZmAAAAAAAAAEIMzAAAAAAAAACEGJgBAAAAAAAACDEwAwAAAAAAABBi\n", "YAYAAAAAAAAgxMAMAAAAAAAAQEiZuwDns9ObpPN+OgcAuAgmR4PcFc7Y7Y9zVwAAVqTcP8ldAQAg\n", "u+k4PUPOy1lfTjADAAAAAAAAEGJgBgAAAAAAACDEwAwAAAAAAABAiIEZAAAAAAAAgBADMwAAAAAA\n", "AAAhBmYAAAAAAAAAQsrcBVitnV7VmHV6dYtNAABWpx4Nclc4Y7B3krsCALCmukP/TwAAtsOs6jZm\n", "07EZcls5wQwAAAAAAABAiIEZAAAAAAAAgBADMwAAAAAAAAAhBmYAAAAAAAAAQgzMAAAAAAAAAIQY\n", "mAEAAAAAAAAIMTADAAAAAAAAEFLmLkA+nf4knfemLTUBAJhvetTPXeGM/t5J7goAwJbZ2R/nrgAA\n", "8HezKn1WdVZ1W2rCOnGCGQAAAAAAAIAQAzMAAAAAAAAAIQZmAAAAAAAAAEIMzAAAAAAAAACEGJgB\n", "AAAAAAAACDEwAwAAAAAAABBS5i7A+ur0E2EqAwBYwOwwd4Mv1987yV0BAODvOge5GwAAW2fcHM2q\n", "9mqwOZxgBgAAAAAAACDEwAwAAAAAAABAiIEZAAAAAAAAgBADMwAAAAAAAAAhBmYAAAAAAAAAQgzM\n", "AAAAAAAAAISUuQuwmTr9bnPY77VXBADYKLPDk9wVzujtr18nAIBFdA4GuSsAAOtqXDVGs3HdYhG2\n", "gRPMAAAAAAAAAIQYmAEAAAAAAAAIMTADAAAAAAAAEGJgBgAAAAAAACDEwAwAAAAAAABAiIEZAAAA\n", "AAAAgBADMwAAAAAAAAAhZe4CbKHdXjKe9XdbKgIAtK3z+DB3hS9V7p/krgAAkN3siYPcFQCAFemM\n", "T9MfGFftFOFCcIIZAAAAAAAAgBADMwAAAAAAAAAhBmYAAAAAAAAAQgzMAAAAAAAAAIQYmAEAAAAA\n", "AAAIMTADAAAAAAAAEFLmLsAF1N9tjGa7gxaLAACL6Dz+a+4KZ3SHJ7krAABstNkT/5S7AgAwR+c0\n", "8f3H+LS9Ilx4TjADAAAAAAAAEGJgBgAAAAAAACDEwAwAAAAAAABAiIEZAAAAAAAAgBADMwAAAAAA\n", "AAAhBmYAAAAAAAAAQgzMAAAAAAAAAISUuQtwAY1PG6NOIgMAaFKPBrkrAACEdYcnuSuc0Xn819wV\n", "AADYEE4wAwAAAAAAABBiYAYAAAAAAAAgxMAMAAAAAAAAQIiBGQAAAAAAAIAQAzMAAAAAAAAAIQZm\n", "AAAAAAAAAELK3AXYQqdVMu7MyQEAlm1yNMhdAQC4QMr9k9wVvlTn8WHuCgAAbAEnmAEAAAAAAAAI\n", "MTADAAAAAAAAEGJgBgAAAAAAACDEwAwAAAAAAABAiIEZAAAAAAAAgBADMwAAAAAAAAAhBmYAAAAA\n", "AAAAQsrcBdhMs3HdHKYyAIA1Ux0NclcAADZQb/8kd4UzZofr1wkAgO3jBDMAAAAAAAAAIQZmAAAA\n", "AAAAAEIMzAAAAAAAAACEGJgBAAAAAAAACDEwAwAAAAAAABBiYAYAAAAAAAAgpMxdgPU1GyfCVAYA\n", "sEXGx4PcFQCADPp7J7krfKnZYe4GAABcdE4wAwAAAAAAABBiYAYAAAAAAAAgxMAMAAAAAAAAQIiB\n", "GQAAAAAAAIAQAzMAAAAAAAAAIQZmAAAAAAAAAELK3AXIZzZO//pn45aKAABsqPHxIHcFAOAc+nsn\n", "uSucMT3q564AAABJTjADAAAAAAAAEGJgBgAAAAAAACDEwAwAAAAAAABAiIEZAAAAAAAAgBADMwAA\n", "AAAAAAAhBmYAAAAAAAAAQgzMAAAAAAAAAISUuQuwWtOq1xymMgAAzuXkeJC7AgBQFMVg7yR3hTPq\n", "kf8nAACwuZxgBgAAAAAAACDEwAwAAAAAAABAiIEZAAAAAAAAgBADMwAAAAAAAAAhBmYAAAAAAAAA\n", "QgzMAAAAAAAAAISUuQtwPtMq/SuclwMAkMfpuJ+7AgBshd3+OHeFMyZHg9wVAABgZZxgBgAAAAAA\n", "ACDEwAwAAAAAAABAiIEZAAAAAAAAgBADMwAAAAAAAAAhBmYAAAAAAAAAQgzMAAAAAAAAAIQYmAEA\n", "AAAAAAAIKXMXYL66av41pTIAADbTyelu7goAsFYGu6e5K5xRHQ1yVwAAgCycYAYAAAAAAAAgxMAM\n", "AAAAAAAAQIiBGQAAAAAAAIAQAzMAAAAAAAAAIQZmAAAAAAAAAEIMzAAAAAAAAACElLkLUBT1JP1r\n", "mJcDAHCxHI93c1cAgKXa65/mrnDG+HiQuwIAAKwlJ5gBAAAAAAAACDEwAwAAAAAAABBiYAYAAAAA\n", "AAAgxMAMAAAAAAAAQIiBGQAAAAAAAIAQAzMAAAAAAAAAIQZmAAAAAAAAAELK3AUuinrS/E+dygAA\n", "mO9Xv7+SzH/6h180ZtPZeNl1WKKdTj+Z/+zbP2nMvnnweNl1AL6yPx0+0Zil3k9F4R217lLvqNT7\n", "qSiK4sXv3Ft2HQAAaI0TzAAAAAAAAACEGJgBAAAAAAAACDEwAwAAAAAAABBiYAYAAAAAAAAgxMAM\n", "AAAAAAAAQIiBGQAAAAAAAICQMneBbTGZpP8p5+UAAOviB3e6yfzR4d2WmnwV/5u7ACsynY2T+bUH\n", "H7TUZDkuHTyfzN+9/GRLTWAzvfnws8ZsPd9PbLPUO2ru++nBksssQeod9esX6habAACw7pxgBgAA\n", "AAAAACDEwAwAAAAAAABAiIEZAAAAAAAAgBADMwAAAAAAAAAhBmYAAAAAAAAAQgzMAAAAAAAAAIQY\n", "mAEAAAAAAAAIKXMX2CSTurtQBgCwqCsf38ldAViiR4d3k/lLv2upyD+49cwreR7Mxrp6/3buCsCS\n", "pd5RT/93i0W+4N4PX8jzYAAAkpxgBgAAAAAAACDEwAwAAAAAAABAiIEZAAAAAAAAgBADMwAAAAAA\n", "AAAhBmYAAAAAAAAAQgzMAAAAAAAAAISUuQusm8mku1AGAGy313/ztcbsk9GHLTYBWL6r92+v5L7P\n", "Dl9O5q9/a28lz71I3vvjcTL3jgI22ZWP76zs3ql31HvP/WVlzwUA2AZOMAMAAAAAAAAQYmAGAAAA\n", "AAAAIMTADAAAAAAAAECIgRkAAAAAAACAEAMzAAAAAAAAACEGZgAAAAAAAABCOm9demOW+sCwbI73\n", "u9PkzYdlncgmyWv3us35sFeln5vIezvNnQCAzXf93rAx+2T0YYtNAFiVZ4cvJ/Or3zhoqUncrT8f\n", "JnPvKIDtkHpH3bgyarEJANC2atptzEZVL3ltKj+uy/S1k+Z8NGnuVBRFcVQ3n0UeTTqNmRPMAAAA\n", "AAAAAIQYmAEAAAAAAAAIMTADAAAAAAAAEGJgBgAAAAAAACDEwAwAAAAAAABAiIEZAAAAAAAAgBAD\n", "MwAAAAAAAAAhnbcuvTFLfWBYNsf73Wny5sOyTmST5LV73eZ82KuS1/Z20r0AgPX2o99+lLsCABfU\n", "O09da8ze/vRmi00A4HO//P5LuSsAAOdQTdNnfkdVrzE7rsv0tZPmfDTpJq89qpt7jSadxswJZgAA\n", "AAAAAABCDMwAAAAAAAAAhBiYAQAAAAAAAAgxMAMAAAAAAAAQYmAGAAAAAAAAIMTADAAAAAAAAEBI\n", "561Lb8xSHxiWzfF+d5q8+bCsE9kkee1etznvzXkuALB6bz78LJk/OrzbUhMAAACaXDp4Ppm/e/nJ\n", "lpoAAE2quvlM8HFdJq8dTZrz0aSbvPYo8dzRpNOYOcEMAAAAAAAAQIiBGQAAAAAAAIAQAzMAAAAA\n", "AAAAIQZmAAAAAAAAAEIMzAAAAAAAAACEGJgBAAAAAAAACDEwAwAAAAAAABBS5i7QpJo2b9+pDACI\n", "u3r/du4KAAAArNCjw7vJ/KXfLX7vW8+8svjFAMDGstQCAAAAAAAAEGJgBgAAAAAAACDEwAwAAAAA\n", "AABAiIEZAAAAAAAAgBADMwAAAAAAAAAhBmYAAAAAAAAAQspcD66m6W27sn0DQNi1Bx/krgAAAMAF\n", "c/X+7YWuu/n0q0tuAgC0yYoLAAAAAAAAQIiBGQAAAAAAAIAQAzMAAAAAAAAAIQZmAAAAAAAAAEIM\n", "zAAAAAAAAACEGJgBAAAAAAAACDEwAwAAAAAAABBSrvLm1bSTyLqrfDQAbJzrD9/PXQEAAABW7tqD\n", "Dxa+9sbl15bYBABYhBPMAAAAAAAAAIQYmAEAAAAAAAAIMTADAAAAAAAAEGJgBgAAAAAAACDEwAwA\n", "AAAAAABAiIEZAAAAAAAAgJDyPBdX086cvHue2wPAVnn705u5KwAAAMBGu/7w/WT+zlPXWmoCABeX\n", "E8wAAAAAAAAAhBiYAQAAAAAAAAgxMAMAAAAAAAAQYmAGAAAAAAAAIMTADAAAAAAAAECIgRkAAAAA\n", "AACAkP8HwOdu124HthwAAAAASUVORK5CYII=\n", "\" transform=\"translate(169, 615)\"/>\n", "</g>\n", "<defs>\n", " <clipPath id=\"clip6503\">\n", " <rect x=\"2160\" y=\"126\" width=\"73\" height=\"1283\"/>\n", " </clipPath>\n", "</defs>\n", "<g clip-path=\"url(#clip6503)\">\n", "<image width=\"72\" height=\"1282\" xlink:href=\"data:image/png;base64,\n", "iVBORw0KGgoAAAANSUhEUgAAAEgAAAUCCAYAAACpFrXqAAALHklEQVR4nO3dwa0kNxAFwR6h/LdC\n", "XkpLygJVHrsPERZ8JB4IijM7+v17/r4P/+uvt/+ArxMoCBQECgKFOffft/+GT7OgIFAQKAgU5jqk\n", "VxYUBAoCBYHC3OOQ3lhQECgIFAQKbtLBgoJAQaAgUHBIBwsKAgWBgkDBIR0sKAgUBAoCBW/SwYKC\n", "QEGgIFBwkw4WFAQKAgWBgkM6WFAQKAgUBArzeO5YWVAQKAgUBAoO6WBBQaAgUBAozOO5Y2VBQaAg\n", "UBAouEkHCwoCBYGCQMEhHSwoCBQECgKFec4/b/8Nn2ZBQaAgUBAoeJMOFhQECgIFgYLnjmBBQaAg\n", "UBAoOKSDBQWBgkBBoDC/++ftv+HTLCgIFAQKAoV5jkN6Y0FBoCBQECjMzyG9sqAgUBAoCBTcpIMF\n", "BYGCQEGgMI836ZUFBYGCQEGg4LkjWFAQKAgUBAqeO4IFBYGCQEGg4CYdLCgIFAQKAgU36WBBQaAg\n", "UBAozO+ct/+GT7OgIFAQKAgU3KSDBQWBgkBBoOCQDhYUBAoCBYGCDw6DBQWBgkBBoDCPN+mVBQWB\n", "gkBBoOAmHSwoCBQECgIFb9LBgoJAQaAgUHBIBwsKAgWBgkDB96SDBQWBgkBBoOCDw2BBQaAgUBAo\n", "eO4IFhQECgIFgYKbdLCgIFAQKAgUHNLBgoJAQaAgUPDBYbCgIFAQKAgUvEkHCwoCBYGCQMFzR7Cg\n", "IFAQKAgUHNLBgoJAQaAgUHBIBwsKAgWBgkBhnnPf/hs+zYKCQEGgIFCY57pJbywoCBQECgIFzx3B\n", "goJAQaAgUPDcESwoCBQECgIFN+lgQUGgIFAQKDikgwUFgYJAQaDguSNYUBAoCBQECm7SwYKCQEGg\n", "IFCYxxm9sqAgUBAoCBQc0sGCgkBBoCBQGP+WZWdBQaAgUBAouEkHCwoCBYGCQMEhHSwoCBQECgIF\n", "h3SwoCBQECgIFObxNemVBQWBgkBBoDD3/N7+Gz7NgoJAQaAgUPDcESwoCBQECgKFedykVxYUBAoC\n", "BYHC3OuQ3lhQECgIFAQKbtLBgoJAQaAgUHBIBwsKAgWBgkDBc0ewoCBQECgIFNykgwUFgYJAQaAw\n", "z9Foo04QKAgUBAqeO4IFBYGCQEGg4LkjWFAQKAgUBAr+WXiwoCBQECgIFOa5Gm3UCQIFgYJAwU06\n", "WFAQKAgUBAoO6WBBQaAgUBAo+ApeUCcIFAQKAgVfwQsWFAQKAgWBgq/gBQsKAgWBgkBhrueOlTpB\n", "oCBQECh47ggWFAQKAgWBgueOYEFBoCBQECh47gjqBIGCQEGg4LkjWFAQKAgUBAr+MUuwoCBQECgI\n", "FOb67Y6VOkGgIFAQKPjgMFhQECgIFAQKnjuCBQWBgkBBoOCDw2BBQaAgUBAo+ApeUCcIFAQKAgU3\n", "6WBBQaAgUBAoeJMOFhQECgIFgYKbdLCgIFAQKAgUvEkHdYJAQaAgUHCTDhYUBAoCBYGCN+lgQUGg\n", "IFAQKLhJBwsKAgWBgkDBm3RQJwgUBAoCBTfpYEFBoCBQECg4pIMFBYGCQEGg4JAOFhQECgIFgYJv\n", "dwQLCgIFgYJAYY4f/V+pEwQKAgWBgueOYEFBoCBQECh47ggWFAQKAgWBgpt0sKAgUBAoCBQc0sGC\n", "gkBBoCBQcEgHCwoCBYGCQMEhHSwoCBQECgKFOQ7plQUFgYJAQaDgJh0sKAgUBAoCBYd0sKAgUBAo\n", "CBQc0sGCgkBBoCBQcEgHCwoCBYGCQMEhHSwoCBQECgIF3+4IFhQECgIFgYKbdLCgIFAQKAgUHNLB\n", "goJAQaAgUPB70kGdIFAQKAgU3KSDBQWBgkBBoOCDw2BBQaAgUBAouEkHCwoCBYGCQMFNOlhQECgI\n", "FAQKbtLBgoJAQaAgUHBIBwsKAgWBgkDBc0ewoCBQECgIFOY+DumNBQWBgkBBoOAmHSwoCBQECgIF\n", "b9LBgoJAQaAgUBAozLlv/wnfZkFBoCBQECj4T41gQUGgIFAQKHi0DxYUBAoCBYHCHF9/WVlQECgI\n", "FAQKnjuCBQWBgkBBoOC5I1hQECgIFAQKbtLBgoJAQaAgUJjz9l/wcRYUBAoCBYGCm3SwoCBQECgI\n", "FLxJBwsKAgWBgkDBL1AFCwoCBYGCQMFNOlhQECgIFAQKfrsjWFAQKAgUBAqeO4IFBYGCQEGg4Nsd\n", "wYKCQEGgIFDwPelgQUGgIFAQKLhJBwsKAgWBgkDBTTpYUBAoCBQECm7SwYKCQEGgIFDwPelgQUGg\n", "IFAQKIyvSe8sKAgUBAoCBTfpYEFBoCBQECi4SQcLCgIFgYJAwU06WFAQKAgUBApu0sGCgkBBoCBQ\n", "cJMOFhQECgIFgYJfwQsWFAQKAgWBgl/BCxYUBAoCBYGCm3SwoCBQECgIFOa4Sa8sKAgUBAoChblu\n", "0isLCgIFgYJAwbc7ggUFgYJAQaDge9LBgoJAQaAgUPDBYbCgIFAQKAgUfHAYLCgIFAQKAgUfHAYL\n", "CgIFgYJAwf8+K1hQECgIFAQKvt0RLCgIFAQKAgXPHcGCgkBBoCBQ8NwRLCgIFAQKAgU36WBBQaAg\n", "UBAo+ApesKAgUBAoCBT8Y5ZgQUGgIFAQKPhn4cGCgkBBoCBQcJMOFhQECgIFgYJDOlhQECgIFAQK\n", "/vdZwYKCQEGgIFBwkw4WFAQKAgWBgg8OgwUFgYJAQaDgJh0sKAgUBAoCBYd0sKAgUBAoCBQ8dwQL\n", "CgIFgYJAwU06WFAQKAgUBAp+BS9YUBAoCBQECn4FL1hQECgIFAQKnjuCBQWBgkBBoOCDw2BBQaAg\n", "UBAouEkHCwoCBYGCQGHu45TeWFAQKAgUBApu0sGCgkBBoCBQ8CYdLCgIFAQKAgU36WBBQaAgUBAo\n", "uEkHCwoCBYGCQMFNOlhQECgIFAQK/sVhsKAgUBAoCBTm+AreyoKCQEGgIFBwkw4WFAQKAgWBgpt0\n", "sKAgUBAoCBT8VGmwoCBQECgIFOZ671hZUBAoCBQECm7SwYKCQEGgIFDwPelgQUGgIFAQKPgVvGBB\n", "QaAgUBAouEkHCwoCBYGCQMFX8IIFBYGCQEGg4LkjWFAQKAgUBApu0sGCgkBBoCBQcEgHCwoCBYGC\n", "QGGOf8yysqAgUBAoCBS8SQcLCgIFgYJAwXNHsKAgUBAoCBQc0sGCgkBBoCBQcEgHCwoCBYGCQGHu\n", "4yeWNhYUBAoCBYGCm3SwoCBQECgIFOb83KQ3FhQECgIFgcIczx0rCwoCBYGCQMEhHSwoCBQECgIF\n", "HxwGCwoCBYGCQGHOzweHGwsKAgWBgkDBc0ewoCBQECgIFBzSwYKCQEGgIFDwJh0sKAgUBAoChTnP\n", "n7f/hk+zoCBQECgIFDx3BAsKAgWBgkBhrpv0yoKCQEGgIFBwkw4WFAQKAgWBgkM6WFAQKAgUBAqe\n", "O4IFBYGCQEGg4CYdLCgIFAQKAgU36WBBQaAgUBAo+McswYKCQEGgIFCYcx3SGwsKAgWBgkDBTTpY\n", "UBAoCBQECnPdpFcWFAQKAgWBgpt0sKAgUBAoCBR8uyNYUBAoCBQECj44DBYUBAoCBYGC545gQUGg\n", "IFAQKPjgMFhQECgIFAQK3qSDBQWBgkBBoOAmHSwoCBQECgIFb9LBgoJAQaAgUHCTDhYUBAoCBYGC\n", "N+lgQUGgIFAQKLhJBwsKAgWBgkDBm3SwoCBQECgIFOZezx0bCwoCBYGCQMFNOlhQECgIFAQK89z7\n", "9t/waRYUBAoCBYHCPG7SKwsKAgWBgkDBtzuCBQWBgkBBoOAmHSwoCBQECgIFHxwGCwoCBYGCQGEe\n", "zx0rCwoCBYGCQMFNOlhQECgIFAQK3qSDBQWBgkBBoPAf/6LvE1H0JiAAAAAASUVORK5CYII=\n", "\" transform=\"translate(2161, 126)\"/>\n", "</g>\n", "<g clip-path=\"url(#clip6500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 1422)\" x=\"2268.76\" y=\"1422\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip6500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 1422)\" x=\"2296.87\" y=\"1422\">20</text>\n", "</g>\n", "<g clip-path=\"url(#clip6500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 1261.75)\" x=\"2268.76\" y=\"1261.75\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip6500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 1261.75)\" x=\"2296.87\" y=\"1261.75\">15</text>\n", "</g>\n", "<g clip-path=\"url(#clip6500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 1101.5)\" x=\"2268.76\" y=\"1101.5\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip6500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 1101.5)\" x=\"2296.87\" y=\"1101.5\">10</text>\n", "</g>\n", "<g clip-path=\"url(#clip6500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 941.257)\" x=\"2268.76\" y=\"941.257\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip6500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 941.257)\" x=\"2296.87\" y=\"941.257\">5</text>\n", "</g>\n", "<g clip-path=\"url(#clip6500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 781.011)\" x=\"2268.76\" y=\"781.011\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip6500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 620.764)\" x=\"2268.76\" y=\"620.764\">5</text>\n", "</g>\n", "<g clip-path=\"url(#clip6500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 460.517)\" x=\"2268.76\" y=\"460.517\">10</text>\n", "</g>\n", "<g clip-path=\"url(#clip6500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 300.271)\" x=\"2268.76\" y=\"300.271\">15</text>\n", "</g>\n", "<g clip-path=\"url(#clip6500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 140.024)\" x=\"2268.76\" y=\"140.024\">20</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip6500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2232.76,1408.35 2232.76,1408.35 2256.76,1408.35 2232.76,1408.35 2232.76,1248.1 2256.76,1248.1 2232.76,1248.1 2232.76,1087.85 2256.76,1087.85 2232.76,1087.85 \n", " 2232.76,927.606 2256.76,927.606 2232.76,927.606 2232.76,767.359 2256.76,767.359 2232.76,767.359 2232.76,607.113 2256.76,607.113 2232.76,607.113 2232.76,446.866 \n", " 2256.76,446.866 2232.76,446.866 2232.76,286.62 2256.76,286.62 2232.76,286.62 2232.76,126.373 2256.76,126.373 2232.76,126.373 \n", " \"/>\n", "</svg>\n" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "delta=1\n", "x=-130:delta:130\n", "y=-20:delta:20\n", "ran=20\n", "display(heatmap(x,y,frepCouponBW, aspect_ratio=:equal))\n", "display(heatmap(x,y,frepCoupon,clim=(-ran,ran), aspect_ratio=:equal))" ] }, { "cell_type": "code", "execution_count": 91, "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=\"clip6900\">\n", " <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip6900)\" 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=\"clip6901\">\n", " <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip6900)\" d=\"\n", "M182.008 1407.86 L2112.76 1407.86 L2112.76 126.861 L182.008 126.861 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip6902\">\n", " <rect x=\"182\" y=\"126\" width=\"1932\" height=\"1282\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip6902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 407.632,1407.86 407.632,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 777.507,1407.86 777.507,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1147.38,1407.86 1147.38,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1517.26,1407.86 1517.26,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1887.13,1407.86 1887.13,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,1211.21 2112.76,1211.21 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,989.284 2112.76,989.284 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,767.359 2112.76,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,545.434 2112.76,545.434 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,323.509 2112.76,323.509 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1407.86 2112.76,1407.86 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1407.86 182.008,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 407.632,1407.86 407.632,1392.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.507,1407.86 777.507,1392.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,1407.86 1147.38,1392.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1517.26,1407.86 1517.26,1392.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1887.13,1407.86 1887.13,1392.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1211.21 205.177,1211.21 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,989.284 205.177,989.284 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,767.359 205.177,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,545.434 205.177,545.434 \n", " \"/>\n", "<polyline clip-path=\"url(#clip6900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,323.509 205.177,323.509 \n", " \"/>\n", "<g clip-path=\"url(#clip6900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 407.632, 1461.86)\" x=\"407.632\" y=\"1461.86\">-1.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip6900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 777.507, 1461.86)\" x=\"777.507\" y=\"1461.86\">-0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip6900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1147.38, 1461.86)\" x=\"1147.38\" y=\"1461.86\">0.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip6900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1517.26, 1461.86)\" x=\"1517.26\" y=\"1461.86\">0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip6900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1887.13, 1461.86)\" x=\"1887.13\" y=\"1461.86\">1.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip6900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 1228.71)\" x=\"158.008\" y=\"1228.71\">-0.6</text>\n", "</g>\n", "<g clip-path=\"url(#clip6900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 1006.78)\" x=\"158.008\" y=\"1006.78\">-0.3</text>\n", "</g>\n", "<g clip-path=\"url(#clip6900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 784.859)\" x=\"158.008\" y=\"784.859\">0.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip6900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 562.934)\" x=\"158.008\" y=\"562.934\">0.3</text>\n", "</g>\n", "<g clip-path=\"url(#clip6900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 341.009)\" x=\"158.008\" y=\"341.009\">0.6</text>\n", "</g>\n", "<g clip-path=\"url(#clip6902)\">\n", "<image width=\"1931\" height=\"303\" xlink:href=\"data:image/png;base64,\n", "iVBORw0KGgoAAAANSUhEUgAAB4sAAAEvCAYAAABc2CcwAAAMbklEQVR4nO3bQW7bQBQFQTGYg/Jo\n", "PCgBZmkE8SKGI37JXXUAzluO1Jjt8VjXAwAAAAAAAICUX9MDAAAAAAAAALifWAwAAAAAAAAQJBYD\n", "AAAAAAAABInFAAAAAAAAAEFiMQAAAAAAAECQWAwAAAAAAAAQJBYDAAAAAAAABInFAAAAAAAAAEFi\n", "MQAAAAAAAECQWAwAAAAAAAAQJBYDAAAAAAAABInFAAAAAAAAAEFiMQAAAAAAAECQWAwAAAAAAAAQ\n", "JBYDAAAAAAAABInFAAAAAAAAAEFiMQAAAAAAAECQWAwAAAAAAAAQJBYDAAAAAAAABInFAAAAAAAA\n", "AEFiMQAAAAAAAECQWAwAAAAAAAAQJBYDAAAAAAAABInFAAAAAAAAAEFiMQAAAAAAAECQWAwAAAAA\n", "AAAQJBYDAAAAAAAABInFAAAAAAAAAEFiMQAAAAAAAECQWAwAAAAAAAAQJBYDAAAAAAAABInFAAAA\n", "AAAAAEFiMQAAAAAAAECQWAwAAAAAAAAQJBYDAAAAAAAABInFAAAAAAAAAEFiMQAAAAAAAECQWAwA\n", "AAAAAAAQJBYDAAAAAAAABInFAAAAAAAAAEFiMQAAAAAAAECQWAwAAAAAAAAQJBYDAAAAAAAABInF\n", "AAAAAAAAAEFresDdzuuYngAA/Edr26cnAAAAcf5zBICfpfSfo5fFAAAAAAAAAEFiMQAAAAAAAECQ\n", "WAwAAAAAAAAQJBYDAAAAAAAABInFAAAAAAAAAEFiMQAAAAAAAEDQmh4AAPAd53U85btr25/yXQAA\n", "YM6zfj8AALwrL4sBAAAAAAAAgsRiAAAAAAAAgCCxGAAAAAAAACBILAYAAAAAAAAIEosBAAAAAAAA\n", "gsRiAAAAAAAAgCCxGAAAAAAAACBoTQ8AAHhF53WMnLu2feRcAAC409R9GwCAP3lZDAAAAAAAABAk\n", "FgMAAAAAAAAEicUAAAAAAAAAQWIxAAAAAAAAQJBYDAAAAAAAABAkFgMAAAAAAAAErekBAAB8OK/j\n", "9jPXtt9+JgAAr2PiDgoAwGvwshgAAAAAAAAgSCwGAAAAAAAACBKLAQAAAAAAAILEYgAAAAAAAIAg\n", "sRgAAAAAAAAgSCwGAAAAAAAACFrTAwAAmHVex/SEL1vbPj0BAOBT73i3AgCgy8tiAAAAAAAAgCCx\n", "GAAAAAAAACBILAYAAAAAAAAIEosBAAAAAAAAgsRiAAAAAAAAgCCxGAAAAAAAACBILAYAAAAAAAAI\n", "WtMDAADgq87rmJ4AAAAAAG/Py2IAAAAAAACAILEYAAAAAAAAIEgsBgAAAAAAAAgSiwEAAAAAAACC\n", "xGIAAAAAAACAILEYAAAAAAAAIEgsBgAAAAAAAAgSiwEAAAAAAACCxGIAAAAAAACAILEYAAAAAAAA\n", "IEgsBgAAAAAAAAgSiwEAAAAAAACCxGIAAAAAAACAILEYAAAAAAAAIEgsBgAAAAAAAAgSiwEAAAAA\n", "AACCxGIAAAAAAACAILEYAAAAAAAAIEgsBgAAAAAAAAgSiwEAAAAAAACCxGIAAAAAAACAILEYAAAA\n", "AAAAIEgsBgAAAAAAAAgSiwEAAAAAAACCxGIAAAAAAACAILEYAAAAAAAAIEgsBgAAAAAAAAgSiwEA\n", "AAAAAACCxGIAAAAAAACAILEYAAAAAAAAIEgsBgAAAAAAAAgSiwEAAAAAAACCxGIAAAAAAACAILEY\n", "AAAAAAAAIEgsBgAAAAAAAAgSiwEAAAAAAACCxGIAAAAAAACAILEYAAAAAAAAIEgsBgAAAAAAAAgS\n", "iwEAAAAAAACCxGIAAAAAAACAILEYAAAAAAAAIEgsBgAAAAAAAAgSiwEAAAAAAACCxGIAAAAAAACA\n", "ILEYAAAAAAAAIEgsBgAAAAAAAAgSiwEAAAAAAACCxGIAAAAAAACAILEYAAAAAAAAIEgsBgAAAAAA\n", "AAgSiwEAAAAAAACCxGIAAAAAAACAILEYAAAAAAAAIEgsBgAAAAAAAAgSiwEAAAAAAACCxGIAAAAA\n", "AACAILEYAAAAAAAAIEgsBgAAAAAAAAgSiwEAAAAAAACCxGIAAAAAAACAILEYAAAAAAAAIEgsBgAA\n", "AAAAAAgSiwEAAAAAAACCxGIAAAAAAACAILEYAAAAAAAAIEgsBgAAAAAAAAgSiwEAAAAAAACCxGIA\n", "AAAAAACAILEYAAAAAAAAIEgsBgAAAAAAAAgSiwEAAAAAAACCxGIAAAAAAACAILEYAAAAAAAAIEgs\n", "BgAAAAAAAAgSiwEAAAAAAACCxGIAAAAAAACAILEYAAAAAAAAIEgsBgAAAAAAAAgSiwEAAAAAAACC\n", "xGIAAAAAAACAILEYAAAAAAAAIEgsBgAAAAAAAAgSiwEAAAAAAACCxGIAAAAAAACAILEYAAAAAAAA\n", "IEgsBgAAAAAAAAgSiwEAAAAAAACCxGIAAAAAAACAILEYAAAAAAAAIEgsBgAAAAAAAAgSiwEAAAAA\n", "AACCxGIAAAAAAACAILEYAAAAAAAAIEgsBgAAAAAAAAgSiwEAAAAAAACCxGIAAAAAAACAILEYAAAA\n", "AAAAIEgsBgAAAAAAAAgSiwEAAAAAAACCxGIAAAAAAACAILEYAAAAAAAAIEgsBgAAAAAAAAgSiwEA\n", "AAAAAACCxGIAAAAAAACAILEYAAAAAAAAIEgsBgAAAAAAAAgSiwEAAAAAAACCxGIAAAAAAACAILEY\n", "AAAAAAAAIEgsBgAAAAAAAAgSiwEAAAAAAACCxGIAAAAAAACAILEYAAAAAAAAIEgsBgAAAAAAAAgS\n", "iwEAAAAAAACCxGIAAAAAAACAILEYAAAAAAAAIEgsBgAAAAAAAAgSiwEAAAAAAACCxGIAAAAAAACA\n", "ILEYAAAAAAAAIEgsBgAAAAAAAAgSiwEAAAAAAACCxGIAAAAAAACAILEYAAAAAAAAIEgsBgAAAAAA\n", "AAgSiwEAAAAAAACCxGIAAAAAAACAILEYAAAAAAAAIEgsBgAAAAAAAAgSiwEAAAAAAACCxGIAAAAA\n", "AACAILEYAAAAAAAAIEgsBgAAAAAAAAgSiwEAAAAAAACCxGIAAAAAAACAILEYAAAAAAAAIEgsBgAA\n", "AAAAAAha0wMAAOCr1rZPTwAA+NR5HdMTAADgn3lZDAAAAAAAABAkFgMAAAAAAAAEicUAAAAAAAAA\n", "QWIxAAAAAAAAQJBYDAAAAAAAABAkFgMAAAAAAAAEicUAAAAAAAAAQWt6AAAAs9a2T08AAPgx3vFu\n", "dV7H9AQAAIZ4WQwAAAAAAAAQJBYDAAAAAAAABInFAAAAAAAAAEFiMQAAAAAAAECQWAwAAAAAAAAQ\n", "JBYDAAAAAAAABK3pAQAAfFjbPj0BAICYiTvoeR23nwkAwN+8LAYAAAAAAAAIEosBAAAAAAAAgsRi\n", "AAAAAAAAgCCxGAAAAAAAACBILAYAAAAAAAAIEosBAAAAAAAAgtb0AACAV7S2fXoCAAD8WFP37fM6\n", "Rs4FAHhVXhYDAAAAAAAABInFAAAAAAAAAEFiMQAAAAAAAECQWAwAAAAAAAAQJBYDAAAAAAAABInF\n", "AAAAAAAAAEFiMQAAAAAAAEDQmh4AAPAda9unJwAAAG/iWb8fzut4yncBAJ7Ny2IAAAAAAACAILEY\n", "AAAAAAAAIEgsBgAAAAAAAAgSiwEAAAAAAACCxGIAAAAAAACAILEYAAAAAAAAIGh7PNY1PQIAAAAA\n", "AACAe3lZDAAAAAAAABAkFgMAAAAAAAAEicUAAAAAAAAAQWIxAAAAAAAAQJBYDAAAAAAAABAkFgMA\n", "AAAAAAAEicUAAAAAAAAAQWIxAAAAAAAAQJBYDAAAAAAAABAkFgMAAAAAAAAEicUAAAAAAAAAQWIx\n", "AAAAAAAAQJBYDAAAAAAAABAkFgMAAAAAAAAEicUAAAAAAAAAQWIxAAAAAAAAQJBYDAAAAAAAABAk\n", "FgMAAAAAAAAEicUAAAAAAAAAQWIxAAAAAAAAQJBYDAAAAAAAABAkFgMAAAAAAAAEicUAAAAAAAAA\n", "QWIxAAAAAAAAQJBYDAAAAAAAABAkFgMAAAAAAAAEicUAAAAAAAAAQWIxAAAAAAAAQJBYDAAAAAAA\n", "ABAkFgMAAAAAAAAEicUAAAAAAAAAQWIxAAAAAAAAQJBYDAAAAAAAABAkFgMAAAAAAAAEicUAAAAA\n", "AAAAQWIxAAAAAAAAQJBYDAAAAAAAABAkFgMAAAAAAAAEicUAAAAAAAAAQWIxAAAAAAAAQJBYDAAA\n", "AAAAABAkFgMAAAAAAAAEicUAAAAAAAAAQb8BVYY0FGac5n8AAAAASUVORK5CYII=\n", "\" transform=\"translate(182, 616)\"/>\n", "</g>\n", "<defs>\n", " <clipPath id=\"clip6903\">\n", " <rect x=\"2160\" y=\"126\" width=\"73\" height=\"1282\"/>\n", " </clipPath>\n", "</defs>\n", "<g clip-path=\"url(#clip6903)\">\n", "<image width=\"72\" height=\"1281\" xlink:href=\"data:image/png;base64,\n", "iVBORw0KGgoAAAANSUhEUgAAAEgAAAUBCAYAAAAvgsdEAAALHElEQVR4nO3dwa0kNxAFwR6h/LdC\n", "XkpLygJVHrsPERZ8JB4IgjM7+/v3/H0f/tdfb/8BXydQECgIFAQKc+6/b/8Nn2ZBQaAgUBAozHVI\n", "rywoCBQECgKFucchvbGgIFAQKAgU3KSDBQWBgkBBoOCQDhYUBAoCBYGCQzpYUBAoCBQECt6kgwUF\n", "gYJAQaDgJh0sKAgUBAoCBYd0sKAgUBAoCBTm8dyxsqAgUBAoCBQc0sGCgkBBoCBQmMdzx8qCgkBB\n", "oCBQcJMOFhQECgIFgYJDOlhQECgIFAQK85x/3v4bPs2CgkBBoCBQ8CYdLCgIFAQKAgXPHcGCgkBB\n", "oCBQcEgHCwoCBYGCQGF+98/bf8OnWVAQKAgUBArzHIf0xoKCQEGgIFCYn0N6ZUFBoCBQECi4SQcL\n", "CgIFgYJAYR5v0isLCgIFgYJAwXNHsKAgUBAoCBQ8dwQLCgIFgYJAwU06WFAQKAgUBApu0sGCgkBB\n", "oCBQmN85b/8Nn2ZBQaAgUBAouEkHCwoCBYGCQMEhHSwoCBQECgIFHxwGCwoCBYGCQGEeb9IrCwoC\n", "BYGCQMFNOlhQECgIFAQK3qSDBQWBgkBBoOCQDhYUBAoCBYGC70kHCwoCBYGCQMEHh8GCgkBBoCBQ\n", "8NwRLCgIFAQKAgU36WBBQaAgUBAoOKSDBQWBgkBBoOCDw2BBQaAgUBAoeJMOFhQECgIFgYLnjmBB\n", "QaAgUBAoOKSDBQWBgkBBoOCQDhYUBAoCBYHCPOe+/Td8mgUFgYJAQaAwz3WT3lhQECgIFAQKnjuC\n", "BQWBgkBBoOC5I1hQECgIFAQKbtLBgoJAQaAgUHBIBwsKAgWBgkDBc0ewoCBQECgIFNykgwUFgYJA\n", "QaAwjzN6ZUFBoCBQECg4pIMFBYGCQEGgMP4ty86CgkBBoCBQcJMOFhQECgIFgYJDOlhQECgIFAQK\n", "DulgQUGgIFAQKMzja9IrCwoCBYGCQGHu+b39N3yaBQWBgkBBoOC5I1hQECgIFAQK87hJrywoCBQE\n", "CgKFudchvbGgIFAQKAgU3KSDBQWBgkBBoOCQDhYUBAoCBYGC545gQUGgIFAQKLhJBwsKAgWBgkBh\n", "nqPRRp0gUBAoCBQ8dwQLCgIFgYJAwXNHsKAgUBAoCBT8s/BgQUGgIFAQKMxzNdqoEwQKAgWBgpt0\n", "sKAgUBAoCBQc0sGCgkBBoCBQ8BW8oE4QKAgUBAq+ghcsKAgUBAoCBV/BCxYUBAoCBYHCXM8dK3WC\n", "QEGgIFDw3BEsKAgUBAoCBc8dwYKCQEGgIFDw3BHUCQIFgYJAwXNHsKAgUBAoCBT8Y5ZgQUGgIFAQ\n", "KMz12x0rdYJAQaAgUPDBYbCgIFAQKAgUPHcECwoCBYGCQMEHh8GCgkBBoCBQ8BW8oE4QKAgUBApu\n", "0sGCgkBBoCBQ8CYdLCgIFAQKAgU36WBBQaAgUBAoeJMO6gSBgkBBoOAmHSwoCBQECgIFb9LBgoJA\n", "QaAgUHCTDhYUBAoCBYGCN+mgThAoCBQECm7SwYKCQEGgIFBwSAcLCgIFgYJAwSEdLCgIFAQKAgXf\n", "7ggWFAQKAgWBwhw/+r9SJwgUBAoCBc8dwYKCQEGgIFDw3BEsKAgUBAoCBTfpYEFBoCBQECg4pIMF\n", "BYGCQEGg4JAOFhQECgIFgYJDOlhQECgIFAQKcxzSKwsKAgWBgkDBTTpYUBAoCBQECg7pYEFBoCBQ\n", "ECg4pIMFBYGCQEGg4JAOFhQECgIFgYJDOlhQECgIFAQKvt0RLCgIFAQKAgU36WBBQaAgUBAoOKSD\n", "BQWBgkBBoOD3pIM6QaAgUBAouEkHCwoCBYGCQMEHh8GCgkBBoCBQcJMOFhQECgIFgYKbdLCgIFAQ\n", "KAgU3KSDBQWBgkBBoOCQDhYUBAoCBYGC545gQUGgIFAQKMx9HNIbCwoCBYGCQMFNOlhQECgIFAQK\n", "3qSDBQWBgkBBoDDnvv0nfJsFBYGCQEGg4CYdLCgIFAQKAgVv0sGCgkBBoCBQmOPbHSsLCgIFgYJA\n", "wXNHsKAgUBAoCBQ8dwQLCgIFgYJAwU06WFAQKAgUBApz3v4LPs6CgkBBoCBQcJMOFhQECgIFgYI3\n", "6WBBQaAgUBAo+IGlYEFBoCBQECi4SQcLCgIFgYJAwW93BAsKAgWBgkDBc0ewoCBQECgIFHy7I1hQ\n", "ECgIFAQKvicdLCgIFAQKAgU36WBBQaAgUBAouEkHCwoCBYGCQMFNOlhQECgIFAQKvicdLCgIFAQK\n", "AoXxNemdBQWBgkBBoOAmHSwoCBQECgIFN+lgQUGgIFAQKLhJBwsKAgWBgkDBTTpYUBAoCBQECm7S\n", "wYKCQEGgIFDwK3jBgoJAQaAgUPAreMGCgkBBoCBQcJMOFhQECgIFgcIcN+mVBQWBgkBBoDDXTXpl\n", "QUGgIFAQKPh2R7CgIFAQKAgUfE86WFAQKAgUBAo+OAwWFAQKAgWBgg8OgwUFgYJAQaDgg8NgQUGg\n", "IFAQKPjvs4IFBYGCQEGg4NsdwYKCQEGgIFDw3BEsKAgUBAoCBc8dwYKCQEGgIFBwkw4WFAQKAgWB\n", "gq/gBQsKAgWBgkDBP2YJFhQECgIFgYJ/Fh4sKAgUBAoCBTfpYEFBoCBQECg4pIMFBYGCQEGg4L/P\n", "ChYUBAoCBYGCm3SwoCBQECgIFHxwGCwoCBQECgIFN+lgQUGgIFAQKDikgwUFgYJAQaDguSNYUBAo\n", "CBQECm7SwYKCQEGgIFDwK3jBgoJAQaAgUPAreMGCgkBBoCBQ8NwRLCgIFAQKAgUfHAYLCgIFgYJA\n", "wU06WFAQKAgUBApzH6f0xoKCQEGgIFBwkw4WFAQKAgWBgjfpYEFBoCBQECi4SQcLCgIFgYJAwU06\n", "WFAQKAgUBApu0sGCgkBBoCBQ8C8OgwUFgYJAQaAwx1fwVhYUBAoCBYGCm3SwoCBQECgIFNykgwUF\n", "gYJAQaDgp0qDBQWBgkBBoDDXe8fKgoJAQaAgUHCTDhYUBAoCBYGC70kHCwoCBYGCQMGv4AULCgIF\n", "gYJAwU06WFAQKAgUBAq+ghcsKAgUBAoCBc8dwYKCQEGgIFBwkw4WFAQKAgWBgkM6WFAQKAgUBApz\n", "/GOWlQUFgYJAQaDgTTpYUBAoCBQECp47ggUFgYJAQaDgkA4WFAQKAgWBgkM6WFAQKAgUBApzHz+x\n", "tLGgIFAQKAgU3KSDBQWBgkBBoDDn5ya9saAgUBAoCBTmeO5YWVAQKAgUBAoO6WBBQaAgUBAo+OAw\n", "WFAQKAgUBApzfj443FhQECgIFAQKnjuCBQWBgkBBoOCQDhYUBAoCBYGCN+lgQUGgIFAQKMx5/rz9\n", "N3yaBQWBgkBBoOC5I1hQECgIFAQKc92kVxYUBAoCBYGCm3SwoCBQECgIFBzSwYKCQEGgIFDw3BEs\n", "KAgUBAoCBTfpYEFBoCBQECi4SQcLCgIFgYJAwT9mCRYUBAoCBYHCnOuQ3lhQECgIFAQKbtLBgoJA\n", "QaAgUJjrJr2yoCBQECgIFNykgwUFgYJAQaDg2x3BgoJAQaAgUPDBYbCgIFAQKAgUPHcECwoCBYGC\n", "QMEHh8GCgkBBoCBQ8CYdLCgIFAQKAgU36WBBQaAgUBAoeJMOFhQECgIFgYKbdLCgIFAQKAgUvEkH\n", "CwoCBYGCQMFNOlhQECgIFAQK3qSDBQWBgkBBoDD3eu7YWFAQKAgUBApu0sGCgkBBoCBQmOfet/+G\n", "T7OgIFAQKAgU5nGTXllQECgIFAQKvt0RLCgIFAQKAgU36WBBQaAgUBAo+OAwWFAQKAgUBArzeO5Y\n", "WVAQKAgUBApu0sGCgkBBoCBQ8CYdLCgIFAQKAoX/ADo+7xHJfnuOAAAAAElFTkSuQmCC\n", "\" transform=\"translate(2161, 127)\"/>\n", "</g>\n", "<g clip-path=\"url(#clip6900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 1421.51)\" x=\"2268.76\" y=\"1421.51\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip6900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 1293.41)\" x=\"2268.76\" y=\"1293.41\">0.1</text>\n", "</g>\n", "<g clip-path=\"url(#clip6900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 1165.31)\" x=\"2268.76\" y=\"1165.31\">0.2</text>\n", "</g>\n", "<g clip-path=\"url(#clip6900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 1037.21)\" x=\"2268.76\" y=\"1037.21\">0.3</text>\n", "</g>\n", "<g clip-path=\"url(#clip6900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 909.11)\" x=\"2268.76\" y=\"909.11\">0.4</text>\n", "</g>\n", "<g clip-path=\"url(#clip6900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 781.011)\" x=\"2268.76\" y=\"781.011\">0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip6900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 652.911)\" x=\"2268.76\" y=\"652.911\">0.6</text>\n", "</g>\n", "<g clip-path=\"url(#clip6900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 524.811)\" x=\"2268.76\" y=\"524.811\">0.7</text>\n", "</g>\n", "<g clip-path=\"url(#clip6900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 396.711)\" x=\"2268.76\" y=\"396.711\">0.8</text>\n", "</g>\n", "<g clip-path=\"url(#clip6900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 268.612)\" x=\"2268.76\" y=\"268.612\">0.9</text>\n", "</g>\n", "<g clip-path=\"url(#clip6900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 140.512)\" x=\"2268.76\" y=\"140.512\">1.0</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip6900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2232.76,1407.86 2232.76,1407.86 2256.76,1407.86 2232.76,1407.86 2232.76,1279.76 2256.76,1279.76 2232.76,1279.76 2232.76,1151.66 2256.76,1151.66 2232.76,1151.66 \n", " 2232.76,1023.56 2256.76,1023.56 2232.76,1023.56 2232.76,895.459 2256.76,895.459 2232.76,895.459 2232.76,767.359 2256.76,767.359 2232.76,767.359 2232.76,639.26 \n", " 2256.76,639.26 2232.76,639.26 2232.76,511.16 2256.76,511.16 2232.76,511.16 2232.76,383.06 2256.76,383.06 2232.76,383.06 2232.76,254.96 2256.76,254.96 \n", " 2232.76,254.96 2232.76,126.861 2256.76,126.861 2232.76,126.861 \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=\"clip7300\">\n", " <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip7300)\" 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=\"clip7301\">\n", " <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip7300)\" d=\"\n", "M182.008 1407.86 L2112.76 1407.86 L2112.76 126.861 L182.008 126.861 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip7302\">\n", " <rect x=\"182\" y=\"126\" width=\"1932\" height=\"1282\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip7302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 407.632,1407.86 407.632,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 777.507,1407.86 777.507,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1147.38,1407.86 1147.38,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1517.26,1407.86 1517.26,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1887.13,1407.86 1887.13,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,1211.21 2112.76,1211.21 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,989.284 2112.76,989.284 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,767.359 2112.76,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,545.434 2112.76,545.434 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,323.509 2112.76,323.509 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1407.86 2112.76,1407.86 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1407.86 182.008,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 407.632,1407.86 407.632,1392.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.507,1407.86 777.507,1392.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,1407.86 1147.38,1392.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1517.26,1407.86 1517.26,1392.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1887.13,1407.86 1887.13,1392.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1211.21 205.177,1211.21 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,989.284 205.177,989.284 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,767.359 205.177,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,545.434 205.177,545.434 \n", " \"/>\n", "<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,323.509 205.177,323.509 \n", " \"/>\n", "<g clip-path=\"url(#clip7300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 407.632, 1461.86)\" x=\"407.632\" y=\"1461.86\">-1.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip7300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 777.507, 1461.86)\" x=\"777.507\" y=\"1461.86\">-0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip7300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1147.38, 1461.86)\" x=\"1147.38\" y=\"1461.86\">0.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip7300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1517.26, 1461.86)\" x=\"1517.26\" y=\"1461.86\">0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip7300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1887.13, 1461.86)\" x=\"1887.13\" y=\"1461.86\">1.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip7300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 1228.71)\" x=\"158.008\" y=\"1228.71\">-0.6</text>\n", "</g>\n", "<g clip-path=\"url(#clip7300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 1006.78)\" x=\"158.008\" y=\"1006.78\">-0.3</text>\n", "</g>\n", "<g clip-path=\"url(#clip7300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 784.859)\" x=\"158.008\" y=\"784.859\">0.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip7300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 562.934)\" x=\"158.008\" y=\"562.934\">0.3</text>\n", "</g>\n", "<g clip-path=\"url(#clip7300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 341.009)\" x=\"158.008\" y=\"341.009\">0.6</text>\n", "</g>\n", "<g clip-path=\"url(#clip7302)\">\n", "<image width=\"1931\" height=\"303\" xlink:href=\"data:image/png;base64,\n", "iVBORw0KGgoAAAANSUhEUgAAB4sAAAEvCAYAAABc2CcwAAAgAElEQVR4nO3b3XIjSXIm0MgfsKqn\n", "R6YH2GfcSz24bHpmqglkpi4gs11TT3zeShQJknHO7VfuGQBJOCodmP7j//zfowV/WfvxyxRLAYAv\n", "Jk3+132KtSnPWT7TNeQpq/JbeLC3Pb8Huh39/Bqyqnfqu7X8YG8hr2q3I9RO2/m+rV+7T7l2D71T\n", "dpR9+8/xUTyeI/6FpL7PeU89tfQ3m/+eU+3U5lg7p9qjXzuXfUNt6Ntaa0tbQtavXY5+XWutLVOo\n", "LR7Pmq4bsnXKP7t17ueXojb/zvBRVa8xaS49Mu/SDEgzqapNM6m183MpzaTW8lxKc6fK01xKM6m1\n", "PJfq2fJ15lL12pTmUppJrZ2fS+XMCn3TTLrn5+ZSmklV3zSTytowW9JMai3PpUfm3RpKL/mhxryq\n", "fQn5yxzuv4asyk1uABjL69Gf/v+49bPibQwAAAAAAAAAX5FlMQAAAAAAAMCALIsBAAAAAAAABmRZ\n", "DAAAAAAAADAgy2IAAAAAAACAAVkWAwAAAAAAAAzIshgAAAAAAABgQOsjxZf5KPL9kfYAwCfy7Zhi\n", "/rr3P6N23fu1ryGra2Npu4b8FrJr8Vhv4UxbfvvUbkf/H6QzbaGu6lvVbi3Uhmxv+QcQa49cu8fr\n", "9rNjz491n0Jt6Fvnqe9z5N/iKu3nKWuttTn8/UxTP5urviGfi8/ILidrl3DeKq9q15O1a/Fx4NR3\n", "zkfi08o/2PSymGZHa+fnUtU31abZUeVpLlV901xKc6fK01xKM6m1PHeqmfWV5lI1d1KeZlJr5+dS\n", "PbPCbHmk9oG5E2fLI7VhLtV9Q20x7y4nay9F35dYm/96XkKeal+K+6tr8VoBAHwd13B/tbXWXrdz\n", "/7H3zWIAAAAAAACAAVkWAwAAAAAAAAzIshgAAAAAAABgQJbFAAAAAAAAAAOyLAYAAAAAAAAYkGUx\n", "AAAAAAAAwIDWt2x+mY+Q7W95aQDgg3nd+59Ru4bsdZ9i32vIH6m9hezaf4vz37UhK2vDmULtduTH\n", "usXafKj9ZO0jfff2NrXF01/U5uqq99m+b2Vq+Xcm157vO0/9PERtLvu+Te0SDpWyR/re83PZWvxY\n", "05ngf9qL2XJ2LqWZdM/7/yC9/le1j/RN8+GR2lRazcI0Px6ZLJ9tLlVVqW+aSa2dn0vVa+0jtWfn\n", "0mN9q9p+lubSWnyF5ZHaS6xN9yvz7//Lm9X2/wPx4h4qAAwl3Se9vtHbAt8sBgAAAAAAABiQZTEA\n", "AAAAAADAgCyLAQAAAAAAAAZkWQwAAAAAAAAwIMtiAAAAAAAAgAFZFgMAAAAAAAAMyLIYAAAAAAAA\n", "YEDrsy58mfdutk79DAD4nL4tUze77v3Pr6Wsyl/3/jWr2luovR657y28lbk9VHsua621LfTdijNt\n", "ofceaqt3dHvsmx9Q6p1KqzMdobh4imNePJwPZ8q/Ei3FRWmbQvP0116dKdXORfEc4tw3tm3hZS9m\n", "rbW2hAuvD/SFnynNhzSX0ky69+3/IqdrtnZ+LqWZdM/7/6CeLaFvrMuHinMnVn6tuVTOndi3mA+x\n", "9lxda3kuVbPl7Fwq506qLR5QmksxK/v2f1Gr2kus7WfpfmVrrb08UJvylM3lXzQA8NncjvP3Qt+C\n", "bxYDAAAAAAAADMiyGAAAAAAAAGBAlsUAAAAAAAAAA7IsBgAAAAAAABiQZTEAAAAAAADAgCyLAQAA\n", "AAAAAAa0PvsA/8pl3nO+5BwA+Fxue//za9eQVXnqW9VejynU9bP7dfv5LfSt8tR3O2Lb2LeqTfke\n", "sqpvqt2L5ynWhrqjONPR+teta885W/eo/Ayfr52Kxmdrq0+5zqm2OFPKlwf6ptqUtdbaOvV/M6rr\n", "wkeQXqerWZjmxyOz5ew8u+f9M5e1IUuzJc2kuva8zzaXqro0Wx6pTXPpkbnzyGw5O8+qPM2ksnbu\n", "11Z9U576ttbaJeSX0Le6J7mGvLyfGfLUFwD4fK5bvotxK/L39rFOAwAAAAAAAMC7sCwGAAAAAAAA\n", "GJBlMQAAAAAAAMCALIsBAAAAAAAABmRZDAAAAAAAADAgy2IAAAAAAACAAa3PPsAZl3kL2f6OJwEA\n", "3tp1z59te92WUNvPWmvtFnrfjulUXVVbPZ4tXjdkoe7e99w1qzz13UNW1+YzpdbputU7xSPUFg8n\n", "1sa6c2UPy89wURuKq76pNv11zEXjFM9TfpaXdKaQpbp73r9uylrzqV6+tuq1OM+d8/MuzYdUd6/t\n", "X7d6HT87l6q5kuKzM6nq+5bOzqU0V6q+Ve3ZuVQ9ljSXqtlydi5VcyfPrHymNdSu8/lZmO7xpWve\n", "r3uuNtXdz9S/J/my9LN7rXuWAPCVpHt81+1z/a/+c50WAAAAAAAAgJ/CshgAAAAAAABgQJbFAAAA\n", "AAAAAAOyLAYAAAAAAAAYkGUxAAAAAAAAwIAsiwEAAAAAAAAGZFkMAAAAAAAAMKD12Qf42S7LlvM5\n", "5wDAx7IX+XVbutktZK21dt37+XXvf6buFrLWWrsd52u3Ywp9+9m297N73/51tyOWxjOdzVprbQ/X\n", "rX7ue+h9xL75TKm2eJpiHmurxm8lPBX5Wcp5WRv+wRyejFTXWmvz1K+tPiE7h95L6JuyP5MD/3vV\n", "bDk7l9JMai3PpTSTWjs/l1Jdaw/MnSr/ZHPpoZlVzZaTcynNpHvfVJvPdHYu1TMrZfmd2TL3e68P\n", "nGmd+9ddizOl2kvM8n3DNdx3rO5J+sYOAHwu6b7hPf860/3rPBIAAAAAAAAA/jTLYgAAAAAAAIAB\n", "WRYDAAAAAAAADMiyGAAAAAAAAGBAlsUAAAAAAAAAA7IsBgAAAAAAABjQ+uwDvLd1uXWzy7K940kA\n", "gJ9hP6Zudt3yW53bvoTa/mfqUt09T7X5s3op346U9Z+H1lrb9n6e+la90/O/HbFt29u5vve8nx2x\n", "bz5Tqj3K2nPZR5Sf/ZxPRfEUno051Ka6qnaeitrQe0lnKvoC7+84OZfSTGotz6VHZsvZedZankvV\n", "q9Nne/WKc6eqfaPZcnae3fNQW5wpzaXUdylm1jLt/WyuatN1+33XuZ9VeV3bv8d3WVLffG/wEu4r\n", "Vu83AICP57qFe4PF/b+vxDeLAQAAAAAAAAZkWQwAAAAAAAAwIMtiAAAAAAAAgAFZFgMAAAAAAAAM\n", "yLIYAAAAAAAAYECWxQAAAAAAAAADsiwGAAAAAAAAGND67AN8JOu69bPl9o4nAQB+hn3Pn4u7bcu5\n", "bO9ndW0+0xbydN3tmE733Y7iTKF3yvbiTCmvao+TfVNda60dD9WGrOXH89FMxaOdwsOpHuk09Xun\n", "2jnUPV5b/XSBr656nX5ktpytTTOprs1n+kpzKc2ke23I3mi2VM9uqq1mVsqXk9k93/vZ3M+q3uvc\n", "v9dW9V1Dvi79vtV1U23Vdy7ODAB8PLetvwq9hnt4I/HNYgAAAAAAAIABWRYDAAAAAAAADMiyGAAA\n", "AAAAAGBAlsUAAAAAAAAAA7IsBgAAAAAAABiQZTEAAAAAAADAgNZnH+CzWJct5kuRAwAfz3FM3ey2\n", "Ld1sC1mV3/aqtv9ZvlS77fkzgNvRz7e9/zy01toea/vZHp7fKt+K2vSz21s/S3X3M4Vrhr6V0LYI\n", "31B4OOcfaWtT8YDmdN2pXztXT9QjhwZ4RPHydHYupZl0v6y59OfahtlSND47l1Jda60tqW9Rm/Jl\n", "3kNdP7vXhr5lbT9f5/79smXJfXPt+ft06R5f9bMDAD6e6j7dbbMKrfhmMQAAAAAAAMCALIsBAAAA\n", "AAAABmRZDAAAAAAAADAgy2IAAAAAAACAAVkWAwAAAAAAAAzIshgAAAAAAABgQOuzD/BVrOutn136\n", "GQDwMe17/zN1222JtdvWz1PWWmtbuO6+p775M4Cpb8paa20/ztXux1T07efpmlXtcTK79+1nR8u1\n", "7ZHaD2ZKD+b+D85EAPxE8ZW6eBn/UnOpeCipdq5qp35tyuaQ3fP9gdp+vsypbz+ralPWWmvLEq47\n", "bw/0DbUha621Ze3nc3FdAODjuV3768zqXhs13ywGAAAAAAAAGJBlMQAAAAAAAMCALIsBAAAAAAAA\n", "BmRZDAAAAAAAADAgy2IAAAAAAACAAVkWAwAAAAAAAAzIshgAAAAAAABgQOuzDzCCZb3l/JJzAOBj\n", "OY4p5vut/xZruy2xdtv6+b71P+eX6lprbd/7tSkra8NzUfZ9oDb9DFLf6md3tEdqz4Xpmq3VzwUA\n", "fAbzvMd8SsMyjMo8RVubpn7feM2idk59Q9Zafi5S30dqq+c/9i1ql2Xr1y792lTXWmvLGvoW99qq\n", "nwEA8LFs17yuvBU5j3HnCQAAAAAAAGBAlsUAAAAAAAAAA7IsBgAAAAAAABiQZTEAAAAAAADAgCyL\n", "AQAAAAAAAAZkWQwAAAAAAAAwoPXZB6C1Zb31s0s/AwA+n/2W337t29LNtlv/c36prsr3PX9+MOX7\n", "FrKi73Gk2qmo7edns7I2Vta9e35/fTlVBwBfybeX11N105QndJrOZW3Iz2attTbPqXYvavv5vIQs\n", "1NV9t1wb8mV9oG+4XwYAfD7btX9PLGW8Pd8sBgAAAAAAABiQZTEAAAAAAADAgCyLAQAAAAAAAAZk\n", "WQwAAAAAAAAwIMtiAAAAAAAAgAFZFgMAAAAAAAAMyLIYAAAAAAAAYEDrsw9Atlxu3Wx+6WcAwOd0\n", "bP3P8u3b0s9u/eyRvve8X3vsoW/Iqtpjn/KZUu3Rr03Zo7W3a/+t9e+vL93s+7ffY18AGN23l9du\n", "tob7Jq21Nk3HqeyR2nnec9859C1qU+9UOy9F32Xr961q137tI30BgM9nf+3fG9nCfROeyzeLAQAA\n", "AAAAAAZkWQwAAAAAAAAwIMtiAAAAAAAAgAFZFgMAAAAAAAAMyLIYAAAAAAAAYECWxQAAAAAAAAAD\n", "Wp99AM6bL7ecv+QcAPg6jlv+DOB+W/q1Wz+75/3ex97P9lBX1absnk/nsqN4nsKZX//5Pdberv23\n", "1t9eXmMtAHDOuuZ7Hy+//Ohm87LH2mnq59N8nMrueeqbz5TOHPtWj3XZ+tdc+1lrrU1r7g0AfB37\n", "a14rVjkfk28WAwAAAAAAAAzIshgAAAAAAABgQJbFAAAAAAAAAAOyLAYAAAAAAAAYkGUxAAAAAAAA\n", "wIAsiwEAAAAAAAAGtD77ALyd+XLtZtNle8eTAAAf2bHlzw+m/NiW033bHvruUz5Tqg3Xvf79e+z7\n", "+s+cJ99/+XG6FgB4f+vLa8wvv/Zn+7Ts/WzuZ/f86IdVbbru0r/Xk+r+TA4AjOO49u/17K/Wil+R\n", "bxYDAAAAAAAADMiyGAAAAAAAAGBAlsUAAAAAAAAAA7IsBgAAAAAAABiQZTEAAAAAAADAgCyLAQAA\n", "AAAAAAZkWQwAAAAAAAAwoPXZB+A5ppdbzi/7O50EAPjUtqkbHSFrrbVjD59b3PJnGrd/fO9mt7/3\n", "s0e8/PLjTfoCAJ/P8v21n/2leM+w9O+5THO+HzMtR+gbMgCA/3Zc8z2X47q800n4KHyzGAAAAAAA\n", "AGBAlsUAAAAAAAAAA7IsBgAAAAAAABiQZTEAAAAAAADAgCyLAQAAAAAAAAZkWQwAAAAAAAAwoPXZ\n", "B+Bjml5CmDIAYDBHN5lC1lprx297N9v//pw3HC+//HjKdQGAcczfb91s+us7HgQA+Lpe+9Fxfb9j\n", "8Dn4ZjEAAAAAAADAgCyLAQAAAAAAAAZkWQwAAAAAAAAwIMtiAAAAAAAAgAFZFgMAAAAAAAAMyLIY\n", "AAAAAAAAYECWxQAAAAAAAAADWp99AD6f6WXphy+X9zsIAPChHb/9ePYR/uDy68c7EwDAnzX99fuz\n", "jwAAfBSv1250vG7veBA+O98sBgAAAAAAABiQZTEAAAAAAADAgCyLAQAAAAAAAAZkWQwAAAAAAAAw\n", "IMtiAAAAAAAAgAFZFgMAAAAAAAAMaH32Afhivl1ifLx8e6eDAADvYfrbb88+wh+sv/549hEAAN7d\n", "8W9/ffYRAICfaHr9Pf+D1+v7HIQvzzeLAQAAAAAAAAZkWQwAAAAAAAAwIMtiAAAAAAAAgAFZFgMA\n", "AAAAAAAMyLIYAAAAAAAAYECWxQAAAAAAAAADWp99AAbz8q0bHd++v+NBAIA/a/rbfz77CH+w/OXH\n", "s48AAPBpHP/2788+AgDwL0y/h/sbr7+/30EYmm8WAwAAAAAAAAzIshgAAAAAAABgQJbFAAAAAAAA\n", "AAOyLAYAAAAAAAAYkGUxAAAAAAAAwIAsiwEAAAAAAAAGZFkMAAAAAAAAMKD12QdgMK+/d6MpZAAA\n", "/7/tH9+ffQQAgH9p+cuPZx/hD6a//eezjwAAwAflm8UAAAAAAAAAA7IsBgAAAAAAABiQZTEAAAAA\n", "AADAgCyLAQAAAAAAAAZkWQwAAAAAAAAwIMtiAAAAAAAAgAGtzz4AX8zv1xhPRQ4A8Kjb378/+wgA\n", "wBe3/vrj2Uf4g+lvvz37CAAAfEK+WQwAAAAAAAAwIMtiAAAAAAAAgAFZFgMAAAAAAAAMyLIYAAAA\n", "AAAAYECWxQAAAAAAAAADsiwGAAAAAAAAGND67APw+RyvWz9MGQDAk13//v3ZRwAAPonLrz+efYQ/\n", "OH77eGcCAOBz881iAAAAAAAAgAFZFgMAAAAAAAAMyLIYAAAAAAAAYECWxQAAAAAAAAADsiwGAAAA\n", "AAAAGJBlMQAAAAAAAMCALIsBAAAAAAAABrQ++wB8TMdrCFMGAIxlm7rREbLWWjv2j/e5xdd/fn/2\n", "EQCAd/Lyy4+nXHf/0b8dN73usXZajn6YMgAA6Ph4d+gAAAAAAAAAeHOWxQAAAAAAAAADsiwGAAAA\n", "AAAAGJBlMQAAAAAAAMCALIsBAAAAAAAABmRZDAAAAAAAADCg9dkH4DmO1/yjP17f6SAAwNMdW/78\n", "YMqPbTndt+2h7z7lM4Xat/L6z+/vfk0A4DEvv/x4k77bj5duthf3XKb56IfznmuXfj4t26m6P5MD\n", "APB1+WYxAAAAAAAAwIAsiwEAAAAAAAAGZFkMAAAAAAAAMCDLYgAAAAAAAIABWRYDAAAAAAAADMiy\n", "GAAAAAAAAGBAlsUAAAAAAAAAA1qffQDezn699MOUAQCfznHLnwHcb0u/dutn97zf+9j72R7qqtqU\n", "3fPpXHa83Wclf/zz+5v1BgD+te+//Dhde3t9ifl27d82m+bjVHbP91NZa63Ny7naKdTd861/zbWf\n", "tdbatObeAAB8bL5ZDAAAAAAAADAgy2IAAAAAAACAAVkWAwAAAAAAAAzIshgAAAAAAABgQJbFAAAA\n", "AAAAAAOyLAYAAAAAAAAY0PrsA3Defs0/vioHAD6eY+t/lm/fln5262eP9L3n/dpjD31DVtUe+5TP\n", "lGqPfm3KHq1Nfn99OV0LAKP79vLazW63fO9j++3XbjZNR6xNecrmec9959C3qE29U+28FH2Xrd+3\n", "ql37tY/0BQDgffhmMQAAAAAAAMCALIsBAAAAAAAABmRZDAAAAAAAADAgy2IAAAAAAACAAVkWAwAA\n", "AAAAAAzIshgAAAAAAABgQOuzD0C2Xfs/opQBAB/Tfsvze9+Wbrbd+p/zS3VVvu/584Mp37eQFX2P\n", "I9VORW0/P5uVtbGy7t3z++vLqToA+Eq+vbx2sx+/f+tmUzFH03SepjzdU342a621eU61e1Hbz+cl\n", "ZKGu7rvl2pAv6wN911vMAQD4OXyzGAAAAAAAAGBAlsUAAAAAAAAAA7IsBgAAAAAAABiQZTEAAAAA\n", "AADAgCyLAQAAAAAAAAZkWQwAAAAAAAAwIMtiAAAAAAAAgAGtzz4ArW23/o8hZQDAcxzHFPM9zvYl\n", "1m5bP9+3/uf8Ul1rre17vzZlZW14Lsq+D9Smn0HqW/3sjvZI7bkwXbO1+rkAgM9gnveYv6b7H2FU\n", "5ina2jT1h/CUp3esnVPfkLWWn4vU95Ha6vmPfYvaZdn6tUu/NtW11tqyhr7rLdZWPwMAAP4fd54A\n", "AAAAAAAABmRZDAAAAAAAADAgy2IAAAAAAACAAVkWAwAAAAAAAAzIshgAAAAAAABgQJbFAAAAAAAA\n", "AANan32AEWy3/DRXOQDw/va9/5m67bbE2m3r5ylrrbUtXHffU9/8GcDUN2WttbYf52r3Yyr69vN0\n", "zar2OJnd+/azo+Xa9kjtBzOlB3P/B2ciAH6i+EpdvIx/qblUPJRUO1e1U782ZXPI7vn+QG0/X+bU\n", "t59VtSlrrbVlCdedtwf6htqQtdbasvbzubguAMBofLMYAAAAAAAAYECWxQAAAAAAAAADsiwGAAAA\n", "AAAAGJBlMQAAAAAAAMCALIsBAAAAAAAABmRZDAAAAAAAADAgy2IAAAAAAACAAa3PPsBXcbv1n8qU\n", "AQDPcxxTN7ttSzfbQlblt72q7X+WL9Vue/4M4Hb0823vPw+ttbbH2n62h+e3yreiNv3s9tbPUt39\n", "TOGaoW8ltC3CNxQezvlH2tpUPKA5XXfq187VE/XIoQEeUbw8nZ1LaSbdL2su/bm2YbYUjc/OpVTX\n", "WmtL6lvUpnyZ91DXz+61oW9Z28/XeevXLblvru1nVb6GrPrZAQB8Rb5ZDAAAAAAAADAgy2IAAAAA\n", "AACAAVkWAwAAAAAAAAzIshgAAAAAAABgQJbFAAAAAAAAAAOyLAYAAAAAAAAY0PrsA3wWt215KAcA\n", "3t++58/Fpfkds/38+4JbcaYt5Om62zGd7rsdxZlC75TtxZlSXtUeJ/umutZaOx6qDVnLj+ejmYpH\n", "O4WHUz3Saer3TrVzqHu8tvrpAl9d9Tr9yGw5W5tmUl2bz/SV5lKaSffakL3RbKme3VRbzayULyez\n", "e773s7mfVb3XeTvddw35uvT7VtdNtVXfuTgzAMBn5JvFAAAAAAAAAAOyLAYAAAAAAAAYkGUxAAAA\n", "AAAAwIAsiwEAAAAAAAAGZFkMAAAAAAAAMCDLYgAAAAAAAIABrc8+wEdyuy2nMgDgefZj6mbXLb/V\n", "ue39+X7d+p+pS3X3PNXmz+qlfDtS1n8eWmtt2/t56lv1Ts//dsS2bW/n+t7zfnbEvvlMqfYoa89l\n", "H1F+9nM+FcVTeDbmUJvqqtp5KmpD7yWdqegLvL/j5FxKM6m1PJcemS1n51lreS5Vr06f7dUrzp2q\n", "9o1my9l5ds9DbXGmNJdS36WYWcu097O5qk3X7fdd535W5XXt1s0uS+rbr7vX3rpZ9X4DAOCj8s1i\n", "AAAAAAAAgAFZFgMAAAAAAAAMyLIYAAAAAAAAYECWxQAAAAAAAAADsiwGAAAAAAAAGJBlMQAAAAAA\n", "AMCALIsBAAAAAAAABrQ++wDv7bb1H3LKAIDn2Iv8ui3d7Bay1lq77v38uvc/U3cLWWut3Y7ztdsx\n", "hb79bNv72b1v/7rbEUvjmc5mrbW2h+tWP/c99D5i33ymVFs8TTGPtVXjtxKeivws5bysDf9gDk9G\n", "qmuttXnq11afkJ1D7yX0TdmfyYH/vWq2nJ1LaSa1ludSmkmtnZ9Lqa61B+ZOlX+yufTQzKpmy8m5\n", "lGbSvW+qzWc6O5fqmZWy/M5smfu91wfOtM79667FmVLtJWZb7rv080vIWvONHQDg4/I+BQAAAAAA\n", "AGBAlsUAAAAAAAAAA7IsBgAAAAAAABiQZTEAAAAAAADAgCyLAQAAAAAAAAZkWQwAAAAAAAAwoPXZ\n", "B/jZrtvyUA4AfCzXPX+27TXM9uue5/4t9L4d06m6qrZ6PFu8bshC3b3vuWtWeeq7h6yuzWdKrdN1\n", "93ykdoTa4uHE2lh3ruxh+RkuakNx1TfVzqF6LhqneJ7ys7ykM4Us1d3z/nVT1ppP9fK1Va/Fee6c\n", "n3dpPqS6e23/utXr+Nm5VM2VFJ+dSVXft3R2LqW5UvWtas/OpeqxpLlUzZazc6maO3lm5ffUa6hd\n", "5/Oz8DL3/0LSNe/XPVeb6u5n2rrZy9LP7rXVqx8AwHO4BwEAAAAAAAAwIMtiAAAAAAAAgAFZFgMA\n", "AAAAAAAMyLIYAAAAAAAAYECWxQAAAAAAAAADsiwGAAAAAAAAGJBlMQAAAAAAAMCA1mcf4IzrvpzK\n", "AICP6bb3P792DVmVp75V7fWYQl0/u1+3n99C3ypPfbcjto19q9qU7yGr+qbalJW1oe4o+qb4kdq3\n", "qHtU/k08XzsVjc/WVp9ynVNtcahUu8S++UxLuG7q21pr69T/zaiuCx9Bep2uZmGaH4/MlrPzrMrL\n", "2pCl2VLNh0dqY98Hah9x9qWtqksj4JHaNJeq1+k0l+rZcu66aSZVfdNMKmvnfm3Vd536z3Lq21pr\n", "l5BfwnUvc/qLbW2d+/cdL1uuTb3X4roAAG/JN4sBAAAAAAAABmRZDAAAAAAAADAgy2IAAAAAAACA\n", "AVkWAwAAAAAAAAzIshgAAAAAAABgQJbFAAAAAAAAAANan32Af+W65x12lQMAH8/epm6WZvsj7wte\n", "9/41q9pbqL0eue9tD9lDteey1lrbQt+tqg35nrLcNtce+VCpdyqtznSE4uJpinnxcD6cKf+ahr/m\n", "nN179/9F+muvzpRq56J4DnHuG9u2JeQpa621JTRfH+gLP1OaD2kupZlU9a1m1tm5lOruef8f1LMl\n", "9I11+VBx7sTKrzWXyrkT+xbzIdaeq2stz6VqtpydS+XcSbXFodJcWsNjXYsnap36v6hV7SXW9rPL\n", "nP+iXx6oTXnK5vIvGgDgMbauAAAAAAAAAAOyLAYAAAAAAAAYkGUxAAAAAAAAwIAsiwEAAAAAAAAG\n", "ZFkMAAAAAAAAMCDLYgAAAAAAAIABrc+68HXv76mvdtgA8OW8ptkfstd9in2vIX+k9hay6xHbttse\n", "sjeq3Yq+Kd+OXLyfrH2k797eprY4Uq4tzlS0Pt33rUwt/33k2vN955BPoTTVtdba/Ea1SzhUyh7p\n", "e8/PZWvxY01ngv8pvda2dn4u1TOr/w+qM52dS1XfNB8eqU1zqZqFaX48Mlk+21yqqlLfaj6cnUvV\n", "a+0jtWfn0mN9q9p+lubSWtz+W8OZqtpLrJ8kzosAAALTSURBVO3/jl+KJ+ol1uZD5dr+fwJeQgYA\n", "8DPYygIAAAAAAAAMyLIYAAAAAAAAYECWxQAAAAAAAAADsiwGAAAAAAAAGJBlMQAAAAAAAMCALIsB\n", "AAAAAAAABmRZDAAAAAAAADCg9S2bX/cpZMtbXhoAeGe3oz/3W2vtde9/Ri29Z3gNWV0bS9s15LeQ\n", "XY/cN9VuVe3R/we5b26c+la1Kd9aP9tb/gE8UrvH2n52FI91n0Jt6Fvnqe9z5L+sKu3nKWuttTm8\n", "VqTa+YG+c/EZ2SVet1+b6lprbZn6ecpaa209WbsWHwdOfed8JL6oPbwIpdnR2vm5VPWNc6eqPTlb\n", "Ul1Vm+ZOlae5lGZSa3nuVDPrK82lau7E2VK8fz07l6q+j8yWs7XV3Imz5ZHaMJfqvqG2mHeXWNsP\n", "L8UwfAnXvcz5r+cl5Je53/hlzu+L1+K1AgCg4pvFAAAAAAAAAAOyLAYAAAAAAAAYkGUxAAAAAAAA\n", "wIAsiwEAAAAAAAAGZFkMAAAAAAAAMCDLYgAAAAAAAIABrY8UX/epyJdH2gMAH8wRstfifUHKc5bP\n", "dA15yqr8Fh7sbU/PRGu3o59fQ1b1Tn23lh/sLeRV7XaE2mk737f1a/cp1+6hd8qOuerbf46P4vEc\n", "8S8k9c2/E29laulvNv89p9qp+DzqnGqPfu1c9g21oW9rrS2t//+WJfRdjvz/nVybz7Sm2pCtU/7Z\n", "rXM/vxS1+XeGj6p6jUlz6ZF5l2ZAmklVbZpJrZ2fS2kmtZbnUpo7VZ7mUppJreW5VM+WrzOXqtem\n", "NJfSTGrt/FwqZ1bom2bSPT83l1LdvTbMlqr25FxKM6m1PJcemXdrKL0UX6tJ+aV4PC8hf5n7f3ep\n", "rqo1uQGAP8M3iwEAAAAAAAAGZFkMAAAAAAAAMCDLYgAAAAAAAIABWRYDAAAAAAAADMiyGAAAAAAA\n", "AGBAlsUAAAAAAAAAA/ovW3VtXtOZ7k8AAAAASUVORK5CYII=\n", "\" transform=\"translate(182, 616)\"/>\n", "</g>\n", "<defs>\n", " <clipPath id=\"clip7303\">\n", " <rect x=\"2160\" y=\"126\" width=\"73\" height=\"1282\"/>\n", " </clipPath>\n", "</defs>\n", "<g clip-path=\"url(#clip7303)\">\n", "<image width=\"72\" height=\"1281\" xlink:href=\"data:image/png;base64,\n", "iVBORw0KGgoAAAANSUhEUgAAAEgAAAUBCAYAAAAvgsdEAAALHElEQVR4nO3dwa0kNxAFwR6h/LdC\n", "XkpLygJVHrsPERZ8JB4IgjM7+/v3/H0f/tdfb/8BXydQECgIFAQKc+6/b/8Nn2ZBQaAgUBAozHVI\n", "rywoCBQECgKFucchvbGgIFAQKAgU3KSDBQWBgkBBoOCQDhYUBAoCBYGCQzpYUBAoCBQECt6kgwUF\n", "gYJAQaDgJh0sKAgUBAoCBYd0sKAgUBAoCBTm8dyxsqAgUBAoCBQc0sGCgkBBoCBQmMdzx8qCgkBB\n", "oCBQcJMOFhQECgIFgYJDOlhQECgIFAQK85x/3v4bPs2CgkBBoCBQ8CYdLCgIFAQKAgXPHcGCgkBB\n", "oCBQcEgHCwoCBYGCQGF+98/bf8OnWVAQKAgUBArzHIf0xoKCQEGgIFCYn0N6ZUFBoCBQECi4SQcL\n", "CgIFgYJAYR5v0isLCgIFgYJAwXNHsKAgUBAoCBQ8dwQLCgIFgYJAwU06WFAQKAgUBApu0sGCgkBB\n", "oCBQmN85b/8Nn2ZBQaAgUBAouEkHCwoCBYGCQMEhHSwoCBQECgIFHxwGCwoCBYGCQGEeb9IrCwoC\n", "BYGCQMFNOlhQECgIFAQK3qSDBQWBgkBBoOCQDhYUBAoCBYGC70kHCwoCBYGCQMEHh8GCgkBBoCBQ\n", "8NwRLCgIFAQKAgU36WBBQaAgUBAoOKSDBQWBgkBBoOCDw2BBQaAgUBAoeJMOFhQECgIFgYLnjmBB\n", "QaAgUBAoOKSDBQWBgkBBoOCQDhYUBAoCBYHCPOe+/Td8mgUFgYJAQaAwz3WT3lhQECgIFAQKnjuC\n", "BQWBgkBBoOC5I1hQECgIFAQKbtLBgoJAQaAgUHBIBwsKAgWBgkDBc0ewoCBQECgIFNykgwUFgYJA\n", "QaAwjzN6ZUFBoCBQECg4pIMFBYGCQEGgMP4ty86CgkBBoCBQcJMOFhQECgIFgYJDOlhQECgIFAQK\n", "DulgQUGgIFAQKMzja9IrCwoCBYGCQGHu+b39N3yaBQWBgkBBoOC5I1hQECgIFAQK87hJrywoCBQE\n", "CgKFudchvbGgIFAQKAgU3KSDBQWBgkBBoOCQDhYUBAoCBYGC545gQUGgIFAQKLhJBwsKAgWBgkBh\n", "nqPRRp0gUBAoCBQ8dwQLCgIFgYJAwXNHsKAgUBAoCBT8s/BgQUGgIFAQKMxzNdqoEwQKAgWBgpt0\n", "sKAgUBAoCBQc0sGCgkBBoCBQ8BW8oE4QKAgUBAq+ghcsKAgUBAoCBV/BCxYUBAoCBYHCXM8dK3WC\n", "QEGgIFDw3BEsKAgUBAoCBc8dwYKCQEGgIFDw3BHUCQIFgYJAwXNHsKAgUBAoCBT8Y5ZgQUGgIFAQ\n", "KMz12x0rdYJAQaAgUPDBYbCgIFAQKAgUPHcECwoCBYGCQMEHh8GCgkBBoCBQ8BW8oE4QKAgUBApu\n", "0sGCgkBBoCBQ8CYdLCgIFAQKAgU36WBBQaAgUBAoeJMO6gSBgkBBoOAmHSwoCBQECgIFb9LBgoJA\n", "QaAgUHCTDhYUBAoCBYGCN+mgThAoCBQECm7SwYKCQEGgIFBwSAcLCgIFgYJAwSEdLCgIFAQKAgXf\n", "7ggWFAQKAgWBwhw/+r9SJwgUBAoCBc8dwYKCQEGgIFDw3BEsKAgUBAoCBTfpYEFBoCBQECg4pIMF\n", "BYGCQEGg4JAOFhQECgIFgYJDOlhQECgIFAQKcxzSKwsKAgWBgkDBTTpYUBAoCBQECg7pYEFBoCBQ\n", "ECg4pIMFBYGCQEGg4JAOFhQECgIFgYJDOlhQECgIFAQKvt0RLCgIFAQKAgU36WBBQaAgUBAoOKSD\n", "BQWBgkBBoOD3pIM6QaAgUBAouEkHCwoCBYGCQMEHh8GCgkBBoCBQcJMOFhQECgIFgYKbdLCgIFAQ\n", "KAgU3KSDBQWBgkBBoOCQDhYUBAoCBYGC545gQUGgIFAQKMx9HNIbCwoCBYGCQMFNOlhQECgIFAQK\n", "3qSDBQWBgkBBoDDnvv0nfJsFBYGCQEGg4CYdLCgIFAQKAgVv0sGCgkBBoCBQmOPbHSsLCgIFgYJA\n", "wXNHsKAgUBAoCBQ8dwQLCgIFgYJAwU06WFAQKAgUBApz3v4LPs6CgkBBoCBQcJMOFhQECgIFgYI3\n", "6WBBQaAgUBAo+IGlYEFBoCBQECi4SQcLCgIFgYJAwW93BAsKAgWBgkDBc0ewoCBQECgIFHy7I1hQ\n", "ECgIFAQKvicdLCgIFAQKAgU36WBBQaAgUBAouEkHCwoCBYGCQMFNOlhQECgIFAQKvicdLCgIFAQK\n", "AoXxNemdBQWBgkBBoOAmHSwoCBQECgIFN+lgQUGgIFAQKLhJBwsKAgWBgkDBTTpYUBAoCBQECm7S\n", "wYKCQEGgIFDwK3jBgoJAQaAgUPAreMGCgkBBoCBQcJMOFhQECgIFgcIcN+mVBQWBgkBBoDDXTXpl\n", "QUGgIFAQKPh2R7CgIFAQKAgUfE86WFAQKAgUBAo+OAwWFAQKAgWBgg8OgwUFgYJAQaDgg8NgQUGg\n", "IFAQKPjvs4IFBYGCQEGg4NsdwYKCQEGgIFDw3BEsKAgUBAoCBc8dwYKCQEGgIFBwkw4WFAQKAgWB\n", "gq/gBQsKAgWBgkDBP2YJFhQECgIFgYJ/Fh4sKAgUBAoCBTfpYEFBoCBQECg4pIMFBYGCQEGg4L/P\n", "ChYUBAoCBYGCm3SwoCBQECgIFHxwGCwoCBQECgIFN+lgQUGgIFAQKDikgwUFgYJAQaDguSNYUBAo\n", "CBQECm7SwYKCQEGgIFDwK3jBgoJAQaAgUPAreMGCgkBBoCBQ8NwRLCgIFAQKAgUfHAYLCgIFgYJA\n", "wU06WFAQKAgUBApzH6f0xoKCQEGgIFBwkw4WFAQKAgWBgjfpYEFBoCBQECi4SQcLCgIFgYJAwU06\n", "WFAQKAgUBApu0sGCgkBBoCBQ8C8OgwUFgYJAQaAwx1fwVhYUBAoCBYGCm3SwoCBQECgIFNykgwUF\n", "gYJAQaDgp0qDBQWBgkBBoDDXe8fKgoJAQaAgUHCTDhYUBAoCBYGC70kHCwoCBYGCQMGv4AULCgIF\n", "gYJAwU06WFAQKAgUBAq+ghcsKAgUBAoCBc8dwYKCQEGgIFBwkw4WFAQKAgWBgkM6WFAQKAgUBApz\n", "/GOWlQUFgYJAQaDgTTpYUBAoCBQECp47ggUFgYJAQaDgkA4WFAQKAgWBgkM6WFAQKAgUBApzHz+x\n", "tLGgIFAQKAgU3KSDBQWBgkBBoDDn5ya9saAgUBAoCBTmeO5YWVAQKAgUBAoO6WBBQaAgUBAo+OAw\n", "WFAQKAgUBApzfj443FhQECgIFAQKnjuCBQWBgkBBoOCQDhYUBAoCBYGCN+lgQUGgIFAQKMx5/rz9\n", "N3yaBQWBgkBBoOC5I1hQECgIFAQKc92kVxYUBAoCBYGCm3SwoCBQECgIFBzSwYKCQEGgIFDw3BEs\n", "KAgUBAoCBTfpYEFBoCBQECi4SQcLCgIFgYJAwT9mCRYUBAoCBYHCnOuQ3lhQECgIFAQKbtLBgoJA\n", "QaAgUJjrJr2yoCBQECgIFNykgwUFgYJAQaDg2x3BgoJAQaAgUPDBYbCgIFAQKAgUPHcECwoCBYGC\n", "QMEHh8GCgkBBoCBQ8CYdLCgIFAQKAgU36WBBQaAgUBAoeJMOFhQECgIFgYKbdLCgIFAQKAgUvEkH\n", "CwoCBYGCQMFNOlhQECgIFAQK3qSDBQWBgkBBoDD3eu7YWFAQKAgUBApu0sGCgkBBoCBQmOfet/+G\n", "T7OgIFAQKAgU5nGTXllQECgIFAQKvt0RLCgIFAQKAgU36WBBQaAgUBAo+OAwWFAQKAgUBArzeO5Y\n", "WVAQKAgUBApu0sGCgkBBoCBQ8CYdLCgIFAQKAoX/ADo+7xHJfnuOAAAAAElFTkSuQmCC\n", "\" transform=\"translate(2161, 127)\"/>\n", "</g>\n", "<g clip-path=\"url(#clip7300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 1421.51)\" x=\"2268.76\" y=\"1421.51\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip7300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 1421.51)\" x=\"2296.87\" y=\"1421.51\">0.20</text>\n", "</g>\n", "<g clip-path=\"url(#clip7300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 1261.38)\" x=\"2268.76\" y=\"1261.38\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip7300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 1261.38)\" x=\"2296.87\" y=\"1261.38\">0.15</text>\n", "</g>\n", "<g clip-path=\"url(#clip7300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 1101.26)\" x=\"2268.76\" y=\"1101.26\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip7300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 1101.26)\" x=\"2296.87\" y=\"1101.26\">0.10</text>\n", "</g>\n", "<g clip-path=\"url(#clip7300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 941.135)\" x=\"2268.76\" y=\"941.135\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip7300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 941.135)\" x=\"2296.87\" y=\"941.135\">0.05</text>\n", "</g>\n", "<g clip-path=\"url(#clip7300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 781.011)\" x=\"2268.76\" y=\"781.011\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip7300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 620.886)\" x=\"2268.76\" y=\"620.886\">0.05</text>\n", "</g>\n", "<g clip-path=\"url(#clip7300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 460.761)\" x=\"2268.76\" y=\"460.761\">0.10</text>\n", "</g>\n", "<g clip-path=\"url(#clip7300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 300.637)\" x=\"2268.76\" y=\"300.637\">0.15</text>\n", "</g>\n", "<g clip-path=\"url(#clip7300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 140.512)\" x=\"2268.76\" y=\"140.512\">0.20</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip7300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2232.76,1407.86 2232.76,1407.86 2256.76,1407.86 2232.76,1407.86 2232.76,1247.73 2256.76,1247.73 2232.76,1247.73 2232.76,1087.61 2256.76,1087.61 2232.76,1087.61 \n", " 2232.76,927.484 2256.76,927.484 2232.76,927.484 2232.76,767.359 2256.76,767.359 2232.76,767.359 2232.76,607.235 2256.76,607.235 2232.76,607.235 2232.76,447.11 \n", " 2256.76,447.11 2232.76,447.11 2232.76,286.985 2256.76,286.985 2232.76,286.985 2232.76,126.861 2256.76,126.861 2232.76,126.861 \n", " \"/>\n", "</svg>\n" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "delta=1/100\n", "x=-130/100:delta:130/100\n", "y=-20/100:delta:20/100\n", "ran=20/100\n", "display(heatmap(x,y,frepCouponBWScale, aspect_ratio=:equal))\n", "display(heatmap(x,y,frepCouponScale,clim=(-ran,ran), aspect_ratio=:equal))" ] }, { "cell_type": "code", "execution_count": 117, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "getSetup (generic function with 1 method)" ] }, "execution_count": 117, "metadata": {}, "output_type": "execute_result" } ], "source": [ "function getSetup(fileName)\n", " setup = Dict()\n", " open(fileName, \"r\") do f\n", " dicttxt = read(f,String) # file information to string\n", " setup=JSON.parse(dicttxt) # parse and transform data\n", " end\n", " return setup\n", " \n", "end\n" ] }, { "cell_type": "code", "execution_count": 11, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "nodeAt (generic function with 1 method)" ] }, "execution_count": 11, "metadata": {}, "output_type": "execute_result" } ], "source": [ "function nodeAt(i,j,nodes)\n", " f=findall(x->(x[1] == i && x[2] == j),nodes)\n", " if length(f)>0 \n", " return f[1]\n", " else\n", " return -1\n", " end\n", "end" ] }, { "cell_type": "code", "execution_count": 12, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "nodeAt (generic function with 2 methods)" ] }, "execution_count": 12, "metadata": {}, "output_type": "execute_result" } ], "source": [ "function nodeAt(i,j,nodes,tol)\n", " f=findall(x->((x[1] < (i+tol ))&& (x[1] > (i-tol)) && (x[2] > (j-tol))&& (x[2] < (j+tol))),nodes)\n", " if length(f)>0 \n", " return f[1]\n", " else\n", " return -1\n", " end\n", "end" ] }, { "cell_type": "code", "execution_count": 13, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "edgeAt (generic function with 1 method)" ] }, "execution_count": 13, "metadata": {}, "output_type": "execute_result" } ], "source": [ "function edgeAt(i,j,edges)\n", " f=findall(x->(x[2] == i && x[1] == j),edges)\n", " if length(f)>0 \n", " return f[1]\n", " else\n", " return -1\n", " end\n", "end" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "# Setup" ] }, { "cell_type": "code", "execution_count": 437, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "1" ] }, "execution_count": 437, "metadata": {}, "output_type": "execute_result" } ], "source": [ "fileName=\"../../json/setupSimple.json\"\n", "setup=getSetup(fileName)\n", "setup[\"nodes\"]=[]\n", "setup[\"edges\"]=[]\n", "scale1=5e3\n", "\n", "node= Dict()\n", "node[\"id\"]=\"n\"\n", "node[\"position\"]= Dict()\n", "node[\"position\"][\"x\"]=0\n", "node[\"position\"][\"y\"]=0\n", "node[\"position\"][\"z\"]=0\n", "\n", "node[\"force\"]= Dict()\n", "node[\"force\"][\"x\"]=0\n", "node[\"force\"][\"y\"]=0\n", "node[\"force\"][\"z\"]=0\n", "\n", "node[\"angle\"]= Dict()\n", "node[\"angle\"][\"x\"]=0\n", "node[\"angle\"][\"y\"]=0\n", "node[\"angle\"][\"z\"]=0\n", "\n", "node[\"displacement\"]= Dict()\n", "node[\"displacement\"][\"x\"]=0\n", "node[\"displacement\"][\"y\"]=0\n", "node[\"displacement\"][\"z\"]=0\n", "\n", "node[\"fixedDisplacement\"]= Dict()\n", "node[\"fixedDisplacement\"][\"x\"]=0\n", "node[\"fixedDisplacement\"][\"y\"]=0\n", "node[\"fixedDisplacement\"][\"z\"]=0\n", "\n", "node[\"restrained_degrees_of_freedom\"]= [false,false,false,true,true,true];\n", "node[\"material\"]= Dict()\n", "node[\"material\"][\"cTE\"]= 0\n", "node[\"material\"][\"poissonRatio\"]= 0\n", "node[\"material\"][\"density\"]= 1000\n", "node[\"material\"][\"area\"]= 0.000001\n", "node[\"material\"][\"stiffness\"]= 1000000\n", "\n", "node[\"nomSize\"]= 1\n", "\n", "\n", "edge= Dict()\n", "edge[\"id\"]=\"e\"\n", "edge[\"source\"]= 0\n", "edge[\"target\"]=0\n", "edge[\"stress\"]=0\n", "\n", "edge[\"material\"]= Dict()\n", "edge[\"material\"][\"cTE\"]= 0\n", "edge[\"material\"][\"poissonRatio\"]= 0\n", "edge[\"material\"][\"density\"]= 1000\n", "edge[\"material\"][\"area\"]= 0.000001\n", "edge[\"material\"][\"stiffness\"]= 1000000\n", "\n", "\n", "voxelSize=0.001\n", "gridSize=10\n", "setup[\"gridSize\"]=gridSize\n", "\n", "#scaling params\n", "setup[\"voxelSize\"]=voxelSize; #voxel size\n", "setup[\"scale\"]=1e4; #scale for visualization\n", "setup[\"hierarchical\"]=true; #hierachical simualtion\n", "\n", "\n", "#simulation params\n", "setup[\"numTimeSteps\"]=5000; #num of saved timesteps for simulation\n", "\n", "setup[\"poisson\"]=false; # account for poisson ration (only for hierarchical)\n", "setup[\"linear\"]=true; # linear vs non-linear\n", "setup[\"thermal\"]=true; #if there is change in temperature\n", "setup[\"globalDamping\"]=0.15; # (usually from 0.1 to 0.4)\n", "\n", "\n", "#visualization params\n", "setup[\"maxNumFiles\"]=200; #num of saved timesteps for visualization\n", "\n", "\n", "######################### 2.b. Materials #########################\n", "\n", "#default material\n", "material1= Dict()\n", "material1[\"area\"]=voxelSize*voxelSize\n", "material1[\"density\"]=1e3\n", "material1[\"stiffness\"]=1e6\n", "material1[\"poissonRatio\"]=0.0\n", "material1[\"cTE\"]=0.0 #coefficient of thermal expansion\n", "\n", "# #large bounding box for default material\n", "# boundingBoxMaterial1=Dict()\n", "# boundingBoxMaterial1[\"min\"]=Dict()\n", "# boundingBoxMaterial1[\"max\"]=Dict()\n", "\n", "# boundingBoxMaterial1[\"min\"][\"x\"]=-voxelSize*gridSize;\n", "# boundingBoxMaterial1[\"min\"][\"y\"]=-voxelSize*gridSize;\n", "# boundingBoxMaterial1[\"min\"][\"z\"]=-voxelSize*gridSize;\n", "\n", "# boundingBoxMaterial1[\"max\"][\"x\"]= voxelSize*gridSize;\n", "# boundingBoxMaterial1[\"max\"][\"y\"]= voxelSize*gridSize;\n", "# boundingBoxMaterial1[\"max\"][\"z\"]= voxelSize*gridSize;\n", "\n", "# #second material\n", "# material2= Dict()\n", "# material2[\"area\"]=voxelSize*voxelSize\n", "# material2[\"density\"]=1e3\n", "# material2[\"stiffness\"]=1e6\n", "# material2[\"poissonRatio\"]=0.0\n", "# material2[\"cTE\"]=0.1 #coefficient of thermal expansion\n", "\n", "# #bounding box material 2\n", "# boundingBoxMaterial2=Dict()\n", "# boundingBoxMaterial2[\"min\"]=Dict()\n", "# boundingBoxMaterial2[\"max\"]=Dict()\n", "\n", "\n", "# boundingBoxMaterial2[\"min\"][\"x\"]=0;\n", "# boundingBoxMaterial2[\"min\"][\"y\"]=voxelSize;\n", "# boundingBoxMaterial2[\"min\"][\"z\"]=0;\n", "\n", "# boundingBoxMaterial2[\"max\"][\"x\"]= voxelSize*(latticeSizeX);\n", "# boundingBoxMaterial2[\"max\"][\"y\"]= voxelSize*(latticeSizeY);\n", "# boundingBoxMaterial2[\"max\"][\"z\"]= voxelSize*(latticeSizeZ);\n", "\n", "setup[\"materials\"]=[\n", "# [boundingBoxMaterial1,material1],\n", "# [boundingBoxMaterial2,material2]\n", "];\n", "\n", "######################### 2.c. Supports #########################\n", "\n", "#x,y,z,rx,ry,rz (default is pinned joing i.e [false,false,false,true,true,true])\n", "dof=[true,true,true,true,true,true]\n", "\n", "boundingBoxSupport1=Dict()\n", "boundingBoxSupport1[\"min\"]=Dict()\n", "boundingBoxSupport1[\"max\"]=Dict()\n", "\n", "\n", "boundingBoxSupport1[\"min\"][\"x\"]= 100/scale1;\n", "boundingBoxSupport1[\"min\"][\"y\"]= -40/scale1;\n", "boundingBoxSupport1[\"min\"][\"z\"]= -1/scale1;\n", "\n", "boundingBoxSupport1[\"max\"][\"x\"]= 150/scale1;\n", "boundingBoxSupport1[\"max\"][\"y\"]= 40/scale1;\n", "boundingBoxSupport1[\"max\"][\"z\"]= 1/scale1;\n", "\n", "setup[\"supports\"]=[\n", " [boundingBoxSupport1,dof]\n", " ];\n", "\n", "######################### 2.d. Loads #########################\n", "#### 2.d.1 Static Loads\n", "load1=Dict()\n", "load1[\"x\"]=0.0\n", "load1[\"y\"]=0.0\n", "load1[\"z\"]=0.0\n", "\n", "boundingBoxLoad1=Dict()\n", "boundingBoxLoad1[\"min\"]=Dict()\n", "boundingBoxLoad1[\"max\"]=Dict()\n", "\n", "boundingBoxLoad1[\"min\"][\"x\"]=-150/scale1;\n", "boundingBoxLoad1[\"min\"][\"y\"]=-40/scale1;\n", "boundingBoxLoad1[\"min\"][\"z\"]=-1/scale1;\n", "\n", "boundingBoxLoad1[\"max\"][\"x\"]=-100/scale1;\n", "boundingBoxLoad1[\"max\"][\"y\"]=40/scale1;\n", "boundingBoxLoad1[\"max\"][\"z\"]=1/scale1;\n", "\n", "\n", "setup[\"loads\"]=[\n", " [boundingBoxLoad1,load1]\n", " ];\n", "\n", "setup[\"fixedDisplacements\"]=[];\n", "\n", "setup[\"viz\"]=Dict()\n", "setup[\"viz\"][\"minStress\"]= 10000000\n", "setup[\"viz\"][\"maxStress\"]= -10000000\n", "setup[\"viz\"][\"colorMaps\"]= []\n", "setup[\"viz\"][\"colorMap\"]= 0\n", "setup[\"viz\"][\"exaggeration\"]= 1" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Square Lattice" ] }, { "cell_type": "code", "execution_count": 440, "metadata": {}, "outputs": [], "source": [ "delta=5\n", "x=-130:delta:130\n", "y=-20:delta:20\n", "Xs=[]\n", "Ys=[]\n", "edgesX=[]\n", "edgesY=[]\n", "for i in x\n", " for j in y\n", " if frepCouponBW(i,j)>0\n", " append!(Xs,i)\n", " append!(Ys,j)\n", " if frepCouponBW(i-delta,j)>0\n", " append!(edgesX,[[i,i-delta]])\n", " append!(edgesY,[[j,j]])\n", " end\n", " if frepCouponBW(i,j-delta)>0\n", " append!(edgesX,[[i,i]])\n", " append!(edgesY,[[j,j-delta]])\n", " end\n", " end\n", " end\n", "end\n", "# plot(edgesX,edgesY, aspect_ratio=:equal,label=\"\")\n", "# display(scatter!(Xs,Ys, aspect_ratio=:equal,label=\"\"))\n", "# display(plot(edgesX,edgesY, aspect_ratio=:equal,label=\"\"))" ] }, { "cell_type": "code", "execution_count": 407, "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=\"clip3300\">\n", " <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip3300)\" 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=\"clip3301\">\n", " <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip3300)\" d=\"\n", "M168.627 1487.47 L2352.76 1487.47 L2352.76 47.2441 L168.627 47.2441 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip3302\">\n", " <rect x=\"168\" y=\"47\" width=\"2185\" height=\"1441\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 402.15,1487.47 402.15,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 831.421,1487.47 831.421,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1260.69,1487.47 1260.69,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1689.96,1487.47 1689.96,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2119.23,1487.47 2119.23,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,1282.48 2352.76,1282.48 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,1024.92 2352.76,1024.92 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,767.359 2352.76,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,509.797 2352.76,509.797 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,252.235 2352.76,252.235 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,1487.47 2352.76,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,1487.47 168.627,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 402.15,1487.47 402.15,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 831.421,1487.47 831.421,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,1487.47 1260.69,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1689.96,1487.47 1689.96,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2119.23,1487.47 2119.23,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,1282.48 194.836,1282.48 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,1024.92 194.836,1024.92 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,767.359 194.836,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,509.797 194.836,509.797 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,252.235 194.836,252.235 \n", " \"/>\n", "<g clip-path=\"url(#clip3300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 402.15, 1541.47)\" x=\"402.15\" y=\"1541.47\">-100</text>\n", "</g>\n", "<g clip-path=\"url(#clip3300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 831.421, 1541.47)\" x=\"831.421\" y=\"1541.47\">-50</text>\n", "</g>\n", "<g clip-path=\"url(#clip3300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1260.69, 1541.47)\" x=\"1260.69\" y=\"1541.47\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip3300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1689.96, 1541.47)\" x=\"1689.96\" y=\"1541.47\">50</text>\n", "</g>\n", "<g clip-path=\"url(#clip3300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 2119.23, 1541.47)\" x=\"2119.23\" y=\"1541.47\">100</text>\n", "</g>\n", "<g clip-path=\"url(#clip3300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 1299.98)\" x=\"144.627\" y=\"1299.98\">-60</text>\n", "</g>\n", "<g clip-path=\"url(#clip3300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 1042.42)\" x=\"144.627\" y=\"1042.42\">-30</text>\n", "</g>\n", "<g clip-path=\"url(#clip3300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 784.859)\" x=\"144.627\" y=\"784.859\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip3300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 527.297)\" x=\"144.627\" y=\"527.297\">30</text>\n", "</g>\n", "<g clip-path=\"url(#clip3300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 269.735)\" x=\"144.627\" y=\"269.735\">60</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.442,810.286 230.442,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.442,767.359 230.442,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.442,724.432 230.442,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.442,681.505 230.442,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 273.369,853.214 230.442,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 273.369,810.286 230.442,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 273.369,810.286 273.369,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 273.369,767.359 230.442,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 273.369,767.359 273.369,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 273.369,724.432 230.442,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 273.369,724.432 273.369,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 273.369,681.505 230.442,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 273.369,681.505 273.369,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 316.296,853.214 273.369,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 316.296,810.286 273.369,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 316.296,810.286 316.296,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 316.296,767.359 273.369,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 316.296,767.359 316.296,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 316.296,724.432 273.369,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 316.296,724.432 316.296,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 316.296,681.505 273.369,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 316.296,681.505 316.296,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 359.223,853.214 316.296,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 359.223,810.286 316.296,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 359.223,810.286 359.223,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 359.223,767.359 316.296,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 359.223,767.359 359.223,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 359.223,724.432 316.296,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 359.223,724.432 359.223,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 359.223,681.505 316.296,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 359.223,681.505 359.223,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 402.15,853.214 359.223,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 402.15,810.286 359.223,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 402.15,810.286 402.15,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 402.15,767.359 359.223,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 402.15,767.359 402.15,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 402.15,724.432 359.223,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 402.15,724.432 402.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 402.15,681.505 359.223,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 402.15,681.505 402.15,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 445.077,853.214 402.15,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 445.077,810.286 402.15,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 445.077,810.286 445.077,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 445.077,767.359 402.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 445.077,767.359 445.077,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 445.077,724.432 402.15,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 445.077,724.432 445.077,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 445.077,681.505 402.15,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 445.077,681.505 445.077,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 488.004,853.214 445.077,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 488.004,810.286 445.077,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 488.004,810.286 488.004,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 488.004,767.359 445.077,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 488.004,767.359 488.004,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 488.004,724.432 445.077,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 488.004,724.432 488.004,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 488.004,681.505 445.077,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 488.004,681.505 488.004,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 530.931,853.214 488.004,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 530.931,810.286 488.004,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 530.931,810.286 530.931,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 530.931,767.359 488.004,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 530.931,767.359 530.931,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 530.931,724.432 488.004,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 530.931,724.432 530.931,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 530.931,681.505 488.004,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 530.931,681.505 530.931,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 573.858,853.214 530.931,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 573.858,810.286 530.931,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 573.858,810.286 573.858,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 573.858,767.359 530.931,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 573.858,767.359 573.858,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 573.858,724.432 530.931,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 573.858,724.432 573.858,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 573.858,681.505 530.931,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 573.858,681.505 573.858,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 616.785,853.214 573.858,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 616.785,810.286 573.858,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 616.785,810.286 616.785,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 616.785,767.359 573.858,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 616.785,767.359 616.785,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 616.785,724.432 573.858,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 616.785,724.432 616.785,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 616.785,681.505 573.858,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 616.785,681.505 616.785,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 659.713,853.214 616.785,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 659.713,810.286 616.785,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 659.713,810.286 659.713,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 659.713,767.359 616.785,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 659.713,767.359 659.713,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 659.713,724.432 616.785,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 659.713,724.432 659.713,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 659.713,681.505 616.785,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 659.713,681.505 659.713,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 702.64,853.214 659.713,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 702.64,810.286 659.713,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 702.64,810.286 702.64,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 702.64,767.359 659.713,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 702.64,767.359 702.64,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 702.64,724.432 659.713,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 702.64,724.432 702.64,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 702.64,681.505 659.713,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 702.64,681.505 702.64,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,853.214 702.64,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,810.286 702.64,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,810.286 745.567,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,767.359 702.64,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,767.359 745.567,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,724.432 702.64,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,724.432 745.567,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,681.505 702.64,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,681.505 745.567,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 788.494,853.214 745.567,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 788.494,810.286 745.567,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 788.494,810.286 788.494,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 788.494,767.359 745.567,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 788.494,767.359 788.494,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 788.494,724.432 745.567,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 788.494,724.432 788.494,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 788.494,681.505 745.567,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 788.494,681.505 788.494,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 831.421,853.214 788.494,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 831.421,810.286 788.494,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 831.421,810.286 831.421,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 831.421,767.359 788.494,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 831.421,767.359 831.421,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 831.421,724.432 788.494,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 831.421,724.432 831.421,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 831.421,681.505 788.494,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 831.421,681.505 831.421,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 874.348,853.214 831.421,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 874.348,810.286 831.421,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 874.348,810.286 874.348,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 874.348,767.359 831.421,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 874.348,767.359 874.348,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 874.348,724.432 831.421,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 874.348,724.432 874.348,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 874.348,681.505 831.421,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 874.348,681.505 874.348,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 917.275,853.214 874.348,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 917.275,810.286 874.348,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 917.275,810.286 917.275,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 917.275,767.359 874.348,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 917.275,767.359 917.275,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 917.275,724.432 874.348,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 917.275,724.432 917.275,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 917.275,681.505 874.348,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 917.275,681.505 917.275,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 960.202,810.286 917.275,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 960.202,767.359 917.275,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 960.202,767.359 960.202,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 960.202,724.432 917.275,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 960.202,724.432 960.202,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1003.13,810.286 960.202,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1003.13,767.359 960.202,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1003.13,767.359 1003.13,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1003.13,724.432 960.202,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1003.13,724.432 1003.13,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1046.06,810.286 1003.13,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1046.06,767.359 1003.13,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1046.06,767.359 1046.06,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1046.06,724.432 1003.13,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1046.06,724.432 1046.06,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1088.98,810.286 1046.06,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1088.98,767.359 1046.06,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1088.98,767.359 1088.98,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1088.98,724.432 1046.06,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1088.98,724.432 1088.98,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.91,810.286 1088.98,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.91,767.359 1088.98,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.91,767.359 1131.91,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.91,724.432 1088.98,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.91,724.432 1131.91,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1174.84,810.286 1131.91,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1174.84,767.359 1131.91,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1174.84,767.359 1174.84,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1174.84,724.432 1131.91,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1174.84,724.432 1174.84,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1217.76,810.286 1174.84,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1217.76,767.359 1174.84,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1217.76,767.359 1217.76,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1217.76,724.432 1174.84,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1217.76,724.432 1217.76,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,810.286 1217.76,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,767.359 1217.76,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,767.359 1260.69,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,724.432 1217.76,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,724.432 1260.69,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1303.62,810.286 1260.69,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1303.62,767.359 1260.69,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1303.62,767.359 1303.62,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1303.62,724.432 1260.69,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1303.62,724.432 1303.62,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1346.55,810.286 1303.62,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1346.55,767.359 1303.62,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1346.55,767.359 1346.55,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1346.55,724.432 1303.62,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1346.55,724.432 1346.55,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1389.47,810.286 1346.55,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1389.47,767.359 1346.55,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1389.47,767.359 1389.47,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1389.47,724.432 1346.55,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1389.47,724.432 1389.47,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1432.4,810.286 1389.47,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1432.4,767.359 1389.47,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1432.4,767.359 1432.4,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1432.4,724.432 1389.47,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1432.4,724.432 1432.4,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1475.33,810.286 1432.4,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1475.33,767.359 1432.4,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1475.33,767.359 1475.33,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1475.33,724.432 1432.4,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1475.33,724.432 1475.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1518.25,810.286 1475.33,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1518.25,767.359 1475.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1518.25,767.359 1518.25,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1518.25,724.432 1475.33,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1518.25,724.432 1518.25,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1561.18,810.286 1518.25,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1561.18,767.359 1518.25,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1561.18,767.359 1561.18,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1561.18,724.432 1518.25,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1561.18,724.432 1561.18,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1604.11,810.286 1561.18,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1604.11,810.286 1604.11,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1604.11,767.359 1561.18,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1604.11,767.359 1604.11,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1604.11,724.432 1561.18,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1604.11,724.432 1604.11,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1604.11,681.505 1604.11,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1647.03,853.214 1604.11,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1647.03,810.286 1604.11,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1647.03,810.286 1647.03,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1647.03,767.359 1604.11,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1647.03,767.359 1647.03,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1647.03,724.432 1604.11,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1647.03,724.432 1647.03,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1647.03,681.505 1604.11,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1647.03,681.505 1647.03,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1689.96,853.214 1647.03,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1689.96,810.286 1647.03,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1689.96,810.286 1689.96,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1689.96,767.359 1647.03,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1689.96,767.359 1689.96,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1689.96,724.432 1647.03,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1689.96,724.432 1689.96,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1689.96,681.505 1647.03,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1689.96,681.505 1689.96,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1732.89,853.214 1689.96,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1732.89,810.286 1689.96,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1732.89,810.286 1732.89,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1732.89,767.359 1689.96,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1732.89,767.359 1732.89,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1732.89,724.432 1689.96,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1732.89,724.432 1732.89,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1732.89,681.505 1689.96,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1732.89,681.505 1732.89,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,853.214 1732.89,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,810.286 1732.89,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,810.286 1775.82,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,767.359 1732.89,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,767.359 1775.82,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,724.432 1732.89,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,724.432 1775.82,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,681.505 1732.89,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,681.505 1775.82,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1818.74,853.214 1775.82,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1818.74,810.286 1775.82,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1818.74,810.286 1818.74,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1818.74,767.359 1775.82,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1818.74,767.359 1818.74,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1818.74,724.432 1775.82,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1818.74,724.432 1818.74,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1818.74,681.505 1775.82,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1818.74,681.505 1818.74,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1861.67,853.214 1818.74,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1861.67,810.286 1818.74,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1861.67,810.286 1861.67,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1861.67,767.359 1818.74,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1861.67,767.359 1861.67,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1861.67,724.432 1818.74,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1861.67,724.432 1861.67,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1861.67,681.505 1818.74,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1861.67,681.505 1861.67,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1904.6,853.214 1861.67,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1904.6,810.286 1861.67,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1904.6,810.286 1904.6,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1904.6,767.359 1861.67,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1904.6,767.359 1904.6,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1904.6,724.432 1861.67,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1904.6,724.432 1904.6,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1904.6,681.505 1861.67,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1904.6,681.505 1904.6,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1947.52,853.214 1904.6,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1947.52,810.286 1904.6,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1947.52,810.286 1947.52,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1947.52,767.359 1904.6,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1947.52,767.359 1947.52,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1947.52,724.432 1904.6,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1947.52,724.432 1947.52,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1947.52,681.505 1904.6,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1947.52,681.505 1947.52,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1990.45,853.214 1947.52,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1990.45,810.286 1947.52,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1990.45,810.286 1990.45,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1990.45,767.359 1947.52,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1990.45,767.359 1990.45,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1990.45,724.432 1947.52,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1990.45,724.432 1990.45,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1990.45,681.505 1947.52,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1990.45,681.505 1990.45,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2033.38,853.214 1990.45,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2033.38,810.286 1990.45,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2033.38,810.286 2033.38,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2033.38,767.359 1990.45,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2033.38,767.359 2033.38,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2033.38,724.432 1990.45,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2033.38,724.432 2033.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2033.38,681.505 1990.45,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2033.38,681.505 2033.38,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2076.31,853.214 2033.38,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2076.31,810.286 2033.38,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2076.31,810.286 2076.31,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2076.31,767.359 2033.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2076.31,767.359 2076.31,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2076.31,724.432 2033.38,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2076.31,724.432 2076.31,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2076.31,681.505 2033.38,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2076.31,681.505 2076.31,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2119.23,853.214 2076.31,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2119.23,810.286 2076.31,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2119.23,810.286 2119.23,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2119.23,767.359 2076.31,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2119.23,767.359 2119.23,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2119.23,724.432 2076.31,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2119.23,724.432 2119.23,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2119.23,681.505 2076.31,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2119.23,681.505 2119.23,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2162.16,853.214 2119.23,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2162.16,810.286 2119.23,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2162.16,810.286 2162.16,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2162.16,767.359 2119.23,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2162.16,767.359 2162.16,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2162.16,724.432 2119.23,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2162.16,724.432 2162.16,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2162.16,681.505 2119.23,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2162.16,681.505 2162.16,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2205.09,853.214 2162.16,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2205.09,810.286 2162.16,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2205.09,810.286 2205.09,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2205.09,767.359 2162.16,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2205.09,767.359 2205.09,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2205.09,724.432 2162.16,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2205.09,724.432 2205.09,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2205.09,681.505 2162.16,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2205.09,681.505 2205.09,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.01,853.214 2205.09,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.01,810.286 2205.09,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.01,810.286 2248.01,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.01,767.359 2205.09,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.01,767.359 2248.01,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.01,724.432 2205.09,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.01,724.432 2248.01,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.01,681.505 2205.09,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.01,681.505 2248.01,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,853.214 2248.01,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,810.286 2248.01,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,810.286 2290.94,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,767.359 2248.01,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,767.359 2290.94,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,724.432 2248.01,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,724.432 2290.94,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,681.505 2248.01,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3302)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,681.505 2290.94,724.432 \n", " \"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"230.442\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"230.442\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"230.442\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"230.442\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"230.442\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"273.369\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"273.369\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"273.369\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"273.369\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"273.369\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"316.296\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"316.296\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"316.296\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"316.296\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"316.296\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"359.223\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"359.223\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"359.223\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"359.223\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"359.223\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"402.15\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"402.15\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"402.15\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"402.15\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"402.15\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"445.077\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"445.077\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"445.077\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"445.077\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"445.077\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"488.004\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"488.004\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"488.004\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"488.004\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"488.004\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"530.931\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"530.931\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"530.931\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"530.931\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"530.931\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"573.858\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"573.858\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"573.858\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"573.858\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"573.858\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"616.785\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"616.785\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"616.785\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"616.785\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"616.785\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"659.713\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"659.713\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"659.713\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"659.713\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"659.713\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"702.64\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"702.64\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"702.64\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"702.64\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"702.64\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"745.567\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"745.567\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"745.567\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"745.567\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"745.567\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"788.494\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"788.494\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"788.494\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"788.494\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"788.494\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"831.421\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"831.421\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"831.421\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"831.421\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"831.421\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"874.348\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"874.348\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"874.348\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"874.348\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"874.348\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"917.275\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"917.275\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"917.275\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"917.275\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"917.275\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"960.202\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"960.202\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"960.202\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1003.13\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1003.13\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1003.13\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1046.06\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1046.06\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1046.06\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1088.98\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1088.98\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1088.98\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1131.91\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1131.91\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1131.91\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1174.84\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1174.84\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1174.84\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1217.76\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1217.76\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1217.76\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1260.69\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1260.69\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1260.69\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1303.62\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1303.62\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1303.62\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1346.55\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1346.55\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1346.55\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1389.47\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1389.47\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1389.47\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1432.4\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1432.4\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1432.4\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1475.33\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1475.33\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1475.33\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1518.25\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1518.25\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1518.25\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1561.18\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1561.18\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1561.18\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1604.11\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1604.11\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1604.11\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1604.11\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1604.11\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1647.03\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1647.03\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1647.03\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1647.03\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1647.03\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1689.96\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1689.96\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1689.96\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1689.96\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1689.96\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1732.89\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1732.89\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1732.89\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1732.89\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1732.89\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1775.82\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1775.82\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1775.82\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1775.82\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1775.82\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1818.74\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1818.74\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1818.74\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1818.74\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1818.74\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1861.67\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1861.67\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1861.67\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1861.67\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1861.67\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1904.6\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1904.6\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1904.6\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1904.6\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1904.6\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1947.52\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1947.52\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1947.52\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1947.52\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1947.52\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1990.45\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1990.45\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1990.45\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1990.45\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"1990.45\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2033.38\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2033.38\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2033.38\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2033.38\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2033.38\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2076.31\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2076.31\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2076.31\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2076.31\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2076.31\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2119.23\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2119.23\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2119.23\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2119.23\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2119.23\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2162.16\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2162.16\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2162.16\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2162.16\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2162.16\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2205.09\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2205.09\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2205.09\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2205.09\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2205.09\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2248.01\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2248.01\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2248.01\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2248.01\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2248.01\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2290.94\" cy=\"853.214\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2290.94\" cy=\"810.286\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2290.94\" cy=\"767.359\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2290.94\" cy=\"724.432\" r=\"14\" fill=\"#dd64b5\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip3302)\" cx=\"2290.94\" cy=\"681.505\" r=\"14\" fill=\"#dd64b5\" 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=\"clip3700\">\n", " <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip3700)\" 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=\"clip3701\">\n", " <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip3700)\" d=\"\n", "M168.627 1487.47 L2352.76 1487.47 L2352.76 47.2441 L168.627 47.2441 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip3702\">\n", " <rect x=\"168\" y=\"47\" width=\"2185\" height=\"1441\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 402.15,1487.47 402.15,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 831.421,1487.47 831.421,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1260.69,1487.47 1260.69,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1689.96,1487.47 1689.96,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2119.23,1487.47 2119.23,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,1282.48 2352.76,1282.48 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,1024.92 2352.76,1024.92 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,767.359 2352.76,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,509.797 2352.76,509.797 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,252.235 2352.76,252.235 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,1487.47 2352.76,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,1487.47 168.627,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 402.15,1487.47 402.15,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 831.421,1487.47 831.421,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,1487.47 1260.69,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1689.96,1487.47 1689.96,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2119.23,1487.47 2119.23,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,1282.48 194.836,1282.48 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,1024.92 194.836,1024.92 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,767.359 194.836,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,509.797 194.836,509.797 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,252.235 194.836,252.235 \n", " \"/>\n", "<g clip-path=\"url(#clip3700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 402.15, 1541.47)\" x=\"402.15\" y=\"1541.47\">-100</text>\n", "</g>\n", "<g clip-path=\"url(#clip3700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 831.421, 1541.47)\" x=\"831.421\" y=\"1541.47\">-50</text>\n", "</g>\n", "<g clip-path=\"url(#clip3700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1260.69, 1541.47)\" x=\"1260.69\" y=\"1541.47\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip3700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1689.96, 1541.47)\" x=\"1689.96\" y=\"1541.47\">50</text>\n", "</g>\n", "<g clip-path=\"url(#clip3700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 2119.23, 1541.47)\" x=\"2119.23\" y=\"1541.47\">100</text>\n", "</g>\n", "<g clip-path=\"url(#clip3700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 1299.98)\" x=\"144.627\" y=\"1299.98\">-60</text>\n", "</g>\n", "<g clip-path=\"url(#clip3700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 1042.42)\" x=\"144.627\" y=\"1042.42\">-30</text>\n", "</g>\n", "<g clip-path=\"url(#clip3700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 784.859)\" x=\"144.627\" y=\"784.859\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip3700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 527.297)\" x=\"144.627\" y=\"527.297\">30</text>\n", "</g>\n", "<g clip-path=\"url(#clip3700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 269.735)\" x=\"144.627\" y=\"269.735\">60</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.442,810.286 230.442,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.442,767.359 230.442,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.442,724.432 230.442,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.442,681.505 230.442,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 273.369,853.214 230.442,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 273.369,810.286 230.442,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 273.369,810.286 273.369,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 273.369,767.359 230.442,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 273.369,767.359 273.369,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 273.369,724.432 230.442,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 273.369,724.432 273.369,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 273.369,681.505 230.442,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 273.369,681.505 273.369,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 316.296,853.214 273.369,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 316.296,810.286 273.369,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 316.296,810.286 316.296,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 316.296,767.359 273.369,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 316.296,767.359 316.296,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 316.296,724.432 273.369,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 316.296,724.432 316.296,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 316.296,681.505 273.369,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 316.296,681.505 316.296,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 359.223,853.214 316.296,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 359.223,810.286 316.296,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 359.223,810.286 359.223,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 359.223,767.359 316.296,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 359.223,767.359 359.223,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 359.223,724.432 316.296,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 359.223,724.432 359.223,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 359.223,681.505 316.296,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 359.223,681.505 359.223,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 402.15,853.214 359.223,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 402.15,810.286 359.223,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 402.15,810.286 402.15,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 402.15,767.359 359.223,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 402.15,767.359 402.15,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 402.15,724.432 359.223,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 402.15,724.432 402.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 402.15,681.505 359.223,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 402.15,681.505 402.15,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 445.077,853.214 402.15,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 445.077,810.286 402.15,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 445.077,810.286 445.077,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 445.077,767.359 402.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 445.077,767.359 445.077,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 445.077,724.432 402.15,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 445.077,724.432 445.077,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 445.077,681.505 402.15,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 445.077,681.505 445.077,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 488.004,853.214 445.077,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 488.004,810.286 445.077,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 488.004,810.286 488.004,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 488.004,767.359 445.077,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 488.004,767.359 488.004,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 488.004,724.432 445.077,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 488.004,724.432 488.004,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 488.004,681.505 445.077,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 488.004,681.505 488.004,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 530.931,853.214 488.004,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 530.931,810.286 488.004,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 530.931,810.286 530.931,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 530.931,767.359 488.004,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 530.931,767.359 530.931,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 530.931,724.432 488.004,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 530.931,724.432 530.931,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 530.931,681.505 488.004,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 530.931,681.505 530.931,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 573.858,853.214 530.931,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 573.858,810.286 530.931,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 573.858,810.286 573.858,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 573.858,767.359 530.931,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 573.858,767.359 573.858,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 573.858,724.432 530.931,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 573.858,724.432 573.858,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 573.858,681.505 530.931,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 573.858,681.505 573.858,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 616.785,853.214 573.858,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 616.785,810.286 573.858,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 616.785,810.286 616.785,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 616.785,767.359 573.858,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 616.785,767.359 616.785,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 616.785,724.432 573.858,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 616.785,724.432 616.785,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 616.785,681.505 573.858,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 616.785,681.505 616.785,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 659.713,853.214 616.785,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 659.713,810.286 616.785,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 659.713,810.286 659.713,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 659.713,767.359 616.785,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 659.713,767.359 659.713,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 659.713,724.432 616.785,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 659.713,724.432 659.713,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 659.713,681.505 616.785,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 659.713,681.505 659.713,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 702.64,853.214 659.713,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 702.64,810.286 659.713,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 702.64,810.286 702.64,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 702.64,767.359 659.713,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 702.64,767.359 702.64,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 702.64,724.432 659.713,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 702.64,724.432 702.64,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 702.64,681.505 659.713,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 702.64,681.505 702.64,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,853.214 702.64,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,810.286 702.64,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,810.286 745.567,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,767.359 702.64,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,767.359 745.567,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,724.432 702.64,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,724.432 745.567,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,681.505 702.64,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,681.505 745.567,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 788.494,853.214 745.567,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 788.494,810.286 745.567,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 788.494,810.286 788.494,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 788.494,767.359 745.567,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 788.494,767.359 788.494,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 788.494,724.432 745.567,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 788.494,724.432 788.494,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 788.494,681.505 745.567,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 788.494,681.505 788.494,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 831.421,853.214 788.494,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 831.421,810.286 788.494,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 831.421,810.286 831.421,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 831.421,767.359 788.494,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 831.421,767.359 831.421,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 831.421,724.432 788.494,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 831.421,724.432 831.421,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 831.421,681.505 788.494,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 831.421,681.505 831.421,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 874.348,853.214 831.421,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 874.348,810.286 831.421,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 874.348,810.286 874.348,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 874.348,767.359 831.421,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 874.348,767.359 874.348,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 874.348,724.432 831.421,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 874.348,724.432 874.348,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 874.348,681.505 831.421,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 874.348,681.505 874.348,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 917.275,853.214 874.348,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 917.275,810.286 874.348,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 917.275,810.286 917.275,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 917.275,767.359 874.348,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 917.275,767.359 917.275,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 917.275,724.432 874.348,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 917.275,724.432 917.275,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 917.275,681.505 874.348,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 917.275,681.505 917.275,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 960.202,810.286 917.275,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 960.202,767.359 917.275,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 960.202,767.359 960.202,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 960.202,724.432 917.275,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 960.202,724.432 960.202,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1003.13,810.286 960.202,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1003.13,767.359 960.202,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1003.13,767.359 1003.13,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1003.13,724.432 960.202,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1003.13,724.432 1003.13,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1046.06,810.286 1003.13,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1046.06,767.359 1003.13,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1046.06,767.359 1046.06,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1046.06,724.432 1003.13,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1046.06,724.432 1046.06,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1088.98,810.286 1046.06,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1088.98,767.359 1046.06,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1088.98,767.359 1088.98,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1088.98,724.432 1046.06,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1088.98,724.432 1088.98,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.91,810.286 1088.98,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.91,767.359 1088.98,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.91,767.359 1131.91,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.91,724.432 1088.98,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.91,724.432 1131.91,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1174.84,810.286 1131.91,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1174.84,767.359 1131.91,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1174.84,767.359 1174.84,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1174.84,724.432 1131.91,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1174.84,724.432 1174.84,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1217.76,810.286 1174.84,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1217.76,767.359 1174.84,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1217.76,767.359 1217.76,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1217.76,724.432 1174.84,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1217.76,724.432 1217.76,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,810.286 1217.76,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,767.359 1217.76,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,767.359 1260.69,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,724.432 1217.76,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,724.432 1260.69,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1303.62,810.286 1260.69,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1303.62,767.359 1260.69,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1303.62,767.359 1303.62,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1303.62,724.432 1260.69,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1303.62,724.432 1303.62,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1346.55,810.286 1303.62,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1346.55,767.359 1303.62,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1346.55,767.359 1346.55,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1346.55,724.432 1303.62,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1346.55,724.432 1346.55,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1389.47,810.286 1346.55,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1389.47,767.359 1346.55,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1389.47,767.359 1389.47,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1389.47,724.432 1346.55,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1389.47,724.432 1389.47,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1432.4,810.286 1389.47,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1432.4,767.359 1389.47,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1432.4,767.359 1432.4,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1432.4,724.432 1389.47,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1432.4,724.432 1432.4,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1475.33,810.286 1432.4,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1475.33,767.359 1432.4,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1475.33,767.359 1475.33,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1475.33,724.432 1432.4,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1475.33,724.432 1475.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1518.25,810.286 1475.33,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1518.25,767.359 1475.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1518.25,767.359 1518.25,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1518.25,724.432 1475.33,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1518.25,724.432 1518.25,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1561.18,810.286 1518.25,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1561.18,767.359 1518.25,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1561.18,767.359 1561.18,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1561.18,724.432 1518.25,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1561.18,724.432 1561.18,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1604.11,810.286 1561.18,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1604.11,810.286 1604.11,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1604.11,767.359 1561.18,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1604.11,767.359 1604.11,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1604.11,724.432 1561.18,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1604.11,724.432 1604.11,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1604.11,681.505 1604.11,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1647.03,853.214 1604.11,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1647.03,810.286 1604.11,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1647.03,810.286 1647.03,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1647.03,767.359 1604.11,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1647.03,767.359 1647.03,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1647.03,724.432 1604.11,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1647.03,724.432 1647.03,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1647.03,681.505 1604.11,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1647.03,681.505 1647.03,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1689.96,853.214 1647.03,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1689.96,810.286 1647.03,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1689.96,810.286 1689.96,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1689.96,767.359 1647.03,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1689.96,767.359 1689.96,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1689.96,724.432 1647.03,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1689.96,724.432 1689.96,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1689.96,681.505 1647.03,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1689.96,681.505 1689.96,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1732.89,853.214 1689.96,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1732.89,810.286 1689.96,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1732.89,810.286 1732.89,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1732.89,767.359 1689.96,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1732.89,767.359 1732.89,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1732.89,724.432 1689.96,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1732.89,724.432 1732.89,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1732.89,681.505 1689.96,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1732.89,681.505 1732.89,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,853.214 1732.89,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,810.286 1732.89,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,810.286 1775.82,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,767.359 1732.89,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,767.359 1775.82,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,724.432 1732.89,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,724.432 1775.82,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,681.505 1732.89,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,681.505 1775.82,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1818.74,853.214 1775.82,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1818.74,810.286 1775.82,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1818.74,810.286 1818.74,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1818.74,767.359 1775.82,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1818.74,767.359 1818.74,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1818.74,724.432 1775.82,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1818.74,724.432 1818.74,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1818.74,681.505 1775.82,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1818.74,681.505 1818.74,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1861.67,853.214 1818.74,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1861.67,810.286 1818.74,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1861.67,810.286 1861.67,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1861.67,767.359 1818.74,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1861.67,767.359 1861.67,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1861.67,724.432 1818.74,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1861.67,724.432 1861.67,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1861.67,681.505 1818.74,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1861.67,681.505 1861.67,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1904.6,853.214 1861.67,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1904.6,810.286 1861.67,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1904.6,810.286 1904.6,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1904.6,767.359 1861.67,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1904.6,767.359 1904.6,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1904.6,724.432 1861.67,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1904.6,724.432 1904.6,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1904.6,681.505 1861.67,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1904.6,681.505 1904.6,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1947.52,853.214 1904.6,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1947.52,810.286 1904.6,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1947.52,810.286 1947.52,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1947.52,767.359 1904.6,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1947.52,767.359 1947.52,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1947.52,724.432 1904.6,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1947.52,724.432 1947.52,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1947.52,681.505 1904.6,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1947.52,681.505 1947.52,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1990.45,853.214 1947.52,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1990.45,810.286 1947.52,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1990.45,810.286 1990.45,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1990.45,767.359 1947.52,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1990.45,767.359 1990.45,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1990.45,724.432 1947.52,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1990.45,724.432 1990.45,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1990.45,681.505 1947.52,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1990.45,681.505 1990.45,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2033.38,853.214 1990.45,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2033.38,810.286 1990.45,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2033.38,810.286 2033.38,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2033.38,767.359 1990.45,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2033.38,767.359 2033.38,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2033.38,724.432 1990.45,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2033.38,724.432 2033.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2033.38,681.505 1990.45,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2033.38,681.505 2033.38,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2076.31,853.214 2033.38,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2076.31,810.286 2033.38,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2076.31,810.286 2076.31,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2076.31,767.359 2033.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2076.31,767.359 2076.31,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2076.31,724.432 2033.38,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2076.31,724.432 2076.31,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2076.31,681.505 2033.38,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2076.31,681.505 2076.31,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2119.23,853.214 2076.31,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2119.23,810.286 2076.31,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2119.23,810.286 2119.23,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2119.23,767.359 2076.31,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2119.23,767.359 2119.23,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2119.23,724.432 2076.31,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2119.23,724.432 2119.23,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2119.23,681.505 2076.31,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2119.23,681.505 2119.23,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2162.16,853.214 2119.23,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2162.16,810.286 2119.23,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2162.16,810.286 2162.16,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2162.16,767.359 2119.23,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2162.16,767.359 2162.16,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2162.16,724.432 2119.23,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2162.16,724.432 2162.16,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2162.16,681.505 2119.23,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2162.16,681.505 2162.16,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2205.09,853.214 2162.16,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2205.09,810.286 2162.16,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2205.09,810.286 2205.09,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2205.09,767.359 2162.16,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2205.09,767.359 2205.09,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2205.09,724.432 2162.16,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2205.09,724.432 2205.09,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2205.09,681.505 2162.16,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2205.09,681.505 2205.09,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.01,853.214 2205.09,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.01,810.286 2205.09,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.01,810.286 2248.01,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.01,767.359 2205.09,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.01,767.359 2248.01,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.01,724.432 2205.09,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.01,724.432 2248.01,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.01,681.505 2205.09,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.01,681.505 2248.01,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,853.214 2248.01,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,810.286 2248.01,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,810.286 2290.94,853.214 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,767.359 2248.01,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,767.359 2290.94,810.286 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,724.432 2248.01,724.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,724.432 2290.94,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,681.505 2248.01,681.505 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,681.505 2290.94,724.432 \n", " \"/>\n", "</svg>\n" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "delta=5\n", "x=-130:delta:130\n", "y=-20:delta:20\n", "Xs=[]\n", "Ys=[]\n", "nodes=[]\n", "edges=[]\n", "edgesX=[]\n", "edgesY=[]\n", "\n", "count=1\n", "for i in x\n", " for j in y\n", " if frepCouponBW(i,j)>0\n", " append!(Xs,i)\n", " append!(Ys,j)\n", " append!(nodes,[[i,j]])\n", " \n", " node1=deepcopy(node)\n", " node1[\"id\"]=\"n$(count-1)\"\n", " node1[\"position\"][\"x\"]=i/scale1\n", " node1[\"position\"][\"y\"]=j/scale1\n", " node1[\"position\"][\"z\"]=0\n", " if(i<-100)\n", " node1[\"force\"][\"x\"]=-0.5*0.1\n", " node1[\"force\"][\"y\"]=0\n", " node1[\"force\"][\"z\"]=0\n", " elseif(i>100)\n", " node1[\"force\"][\"x\"]=0.5*0.1\n", " node1[\"force\"][\"y\"]=0\n", " node1[\"force\"][\"z\"]=0\n", " end\n", " \n", " append!(setup[\"nodes\"],[node1])\n", " \n", " \n", " id=nodeAt(i-delta,j,nodes)\n", " if id>0\n", " append!(edgesX,[[i,i-delta]])\n", " append!(edgesY,[[j,j]])\n", " append!(edges,[[count,id]])\n", " \n", " edge1=deepcopy(edge)\n", " edge1[\"id\"]=\"e$(count-1)\"\n", " edge1[\"source\"]=(count-1)\n", " edge1[\"target\"]=(id-1)\n", " \n", " append!(setup[\"edges\"],[edge1])\n", " end\n", " id=nodeAt(i,j-delta,nodes)\n", " if id>0\n", " append!(edgesX,[[i,i]])\n", " append!(edgesY,[[j,j-delta]])\n", " append!(edges,[[count,id]])\n", " \n", " edge1=deepcopy(edge)\n", " edge1[\"id\"]=\"e$(count-1)\"\n", " edge1[\"source\"]=(count-1)\n", " edge1[\"target\"]=(id-1)\n", " \n", " append!(setup[\"edges\"],[edge1])\n", " \n", " end\n", " count+=1\n", " end\n", " end\n", "end\n", "edges=reshape(vcat(edges...),2,length(edges))\n", "\n", "plot(edgesX,edgesY, aspect_ratio=:equal,label=\"\")\n", "display(scatter!(Xs,Ys, aspect_ratio=:equal,label=\"\"))\n", "display(plot(edgesX,edgesY, aspect_ratio=:equal,label=\"\"))\n", "\n" ] }, { "cell_type": "code", "execution_count": 408, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "127089" ] }, "execution_count": 408, "metadata": {}, "output_type": "execute_result" } ], "source": [ "newSetup=Dict()\n", "newSetup[\"setup\"]=setup\n", "fileName=\"../../json/coupon.json\"\n", "fileName\n", "# pass data as a json string (how it shall be displayed in a file)\n", "stringdata = JSON.json(newSetup)\n", "\n", "# write the file with the stringdata variable information\n", "open(fileName, \"w\") do f\n", " write(f, stringdata)\n", "end" ] }, { "cell_type": "code", "execution_count": 441, "metadata": {}, "outputs": [ { "ename": "BoundsError", "evalue": "BoundsError: attempt to access 215-element Array{Any,1} at index [216]", "output_type": "error", "traceback": [ "BoundsError: attempt to access 215-element Array{Any,1} at index [216]", "", "Stacktrace:", " [1] getindex(::Array{Any,1}, ::Int64) at .\\array.jl:728", " [2] top-level scope at .\\In[441]:3" ] } ], "source": [ "p=plot(aspect_ratio=:equal,label=\"\")\n", "for c in 1:size(edges)[2]\n", " p=plot!([Xs[edges[1,c]],Xs[edges[2,c]]],[Ys[edges[1,c]],Ys[edges[2,c]]],label=\"\")\n", "end\n", "p;" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Hex lattice" ] }, { "cell_type": "code", "execution_count": 442, "metadata": {}, "outputs": [], "source": [ "delta=5\n", "deltaS=sqrt(delta^2-(delta/2)^2)\n", "x=-130:delta:130\n", "y=-20:deltaS:20\n", "Xs=[]\n", "Ys=[]\n", "edgesX=[]\n", "edgesY=[]\n", "for i in 1:length(x)\n", " for j in 1:length(y)\n", " ii=x[i]\n", " jj=y[j]\n", " if j%(2)==0\n", " ii+=delta/2.0\n", " end\n", " if frepCouponBW(ii,jj)>0\n", " append!(Xs,ii)\n", " append!(Ys,jj)\n", " if frepCouponBW(ii-delta,jj)>0\n", " append!(edgesX,[[ii,ii-delta]])\n", " append!(edgesY,[[jj,jj]])\n", " end\n", " if frepCouponBW(ii-delta/2.0,jj-deltaS)>0\n", " append!(edgesX,[[ii,ii-delta/2.0]])\n", " append!(edgesY,[[jj,jj-deltaS]])\n", " end\n", " if frepCouponBW(ii+delta/2.0,jj-deltaS)>0\n", " append!(edgesX,[[ii,ii+delta/2.0]])\n", " append!(edgesY,[[jj,jj-deltaS]])\n", " end\n", " count+=1\n", " end\n", " end\n", "end\n", "# plot(edgesX,edgesY, aspect_ratio=:equal,label=\"\")\n", "# display(scatter!(Xs,Ys, aspect_ratio=:equal,label=\"\"))\n", "# display(plot(edgesX,edgesY, aspect_ratio=:equal,label=\"\"))" ] }, { "cell_type": "code", "execution_count": 438, "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=\"clip2100\">\n", " <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip2100)\" 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=\"clip2101\">\n", " <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip2100)\" d=\"\n", "M168.627 1487.47 L2352.76 1487.47 L2352.76 47.2441 L168.627 47.2441 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip2102\">\n", " <rect x=\"168\" y=\"47\" width=\"2185\" height=\"1441\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 419.671,1487.47 419.671,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 840.181,1487.47 840.181,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1260.69,1487.47 1260.69,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1681.2,1487.47 1681.2,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2101.71,1487.47 2101.71,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,1267.64 2352.76,1267.64 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,1015.34 2352.76,1015.34 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,763.033 2352.76,763.033 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,510.727 2352.76,510.727 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,258.421 2352.76,258.421 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,1487.47 2352.76,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,1487.47 168.627,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,1487.47 419.671,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,1487.47 840.181,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,1487.47 1260.69,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,1487.47 1681.2,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,1487.47 2101.71,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,1267.64 194.836,1267.64 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,1015.34 194.836,1015.34 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,763.033 194.836,763.033 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,510.727 194.836,510.727 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,258.421 194.836,258.421 \n", " \"/>\n", "<g clip-path=\"url(#clip2100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 419.671, 1541.47)\" x=\"419.671\" y=\"1541.47\">-100</text>\n", "</g>\n", "<g clip-path=\"url(#clip2100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 840.181, 1541.47)\" x=\"840.181\" y=\"1541.47\">-50</text>\n", "</g>\n", "<g clip-path=\"url(#clip2100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1260.69, 1541.47)\" x=\"1260.69\" y=\"1541.47\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip2100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1681.2, 1541.47)\" x=\"1681.2\" y=\"1541.47\">50</text>\n", "</g>\n", "<g clip-path=\"url(#clip2100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 2101.71, 1541.47)\" x=\"2101.71\" y=\"1541.47\">100</text>\n", "</g>\n", "<g clip-path=\"url(#clip2100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 1285.14)\" x=\"144.627\" y=\"1285.14\">-60</text>\n", "</g>\n", "<g clip-path=\"url(#clip2100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 1032.84)\" x=\"144.627\" y=\"1032.84\">-30</text>\n", "</g>\n", "<g clip-path=\"url(#clip2100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 780.533)\" x=\"144.627\" y=\"780.533\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip2100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 528.227)\" x=\"144.627\" y=\"528.227\">30</text>\n", "</g>\n", "<g clip-path=\"url(#clip2100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 275.921)\" x=\"144.627\" y=\"275.921\">60</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.442,858.402 240.955,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 240.955,840.194 230.442,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.442,821.985 240.955,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 240.955,803.777 230.442,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.442,785.568 240.955,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 240.955,767.359 230.442,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.442,749.151 240.955,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 240.955,730.942 230.442,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.442,712.734 240.955,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 240.955,694.525 230.442,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.442,676.316 240.955,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 240.955,658.108 230.442,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,876.611 240.955,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,858.402 230.442,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,858.402 240.955,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,858.402 261.98,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,858.402 240.955,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,840.194 240.955,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,840.194 251.467,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,821.985 230.442,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,821.985 240.955,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,821.985 261.98,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,821.985 240.955,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,803.777 240.955,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,803.777 251.467,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,785.568 230.442,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,785.568 240.955,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,785.568 261.98,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,785.568 240.955,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,767.359 240.955,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,767.359 251.467,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,749.151 230.442,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,749.151 240.955,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,749.151 261.98,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,749.151 240.955,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,730.942 240.955,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,730.942 251.467,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,712.734 230.442,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,712.734 240.955,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,712.734 261.98,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,712.734 240.955,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,694.525 240.955,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,694.525 251.467,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,676.316 230.442,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,676.316 240.955,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,676.316 261.98,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,676.316 240.955,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,658.108 240.955,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,658.108 251.467,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,876.611 261.98,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,858.402 251.467,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,858.402 261.98,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,858.402 283.006,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,858.402 261.98,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,840.194 261.98,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,840.194 272.493,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,821.985 251.467,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,821.985 261.98,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,821.985 283.006,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,821.985 261.98,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,803.777 261.98,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,803.777 272.493,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,785.568 251.467,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,785.568 261.98,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,785.568 283.006,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,785.568 261.98,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,767.359 261.98,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,767.359 272.493,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,749.151 251.467,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,749.151 261.98,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,749.151 283.006,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,749.151 261.98,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,730.942 261.98,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,730.942 272.493,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,712.734 251.467,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,712.734 261.98,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,712.734 283.006,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,712.734 261.98,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,694.525 261.98,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,694.525 272.493,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,676.316 251.467,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,676.316 261.98,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,676.316 283.006,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,676.316 261.98,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,658.108 261.98,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,658.108 272.493,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,876.611 283.006,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,858.402 272.493,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,858.402 283.006,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,858.402 304.031,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,858.402 283.006,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,840.194 283.006,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,840.194 293.518,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,821.985 272.493,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,821.985 283.006,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,821.985 304.031,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,821.985 283.006,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,803.777 283.006,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,803.777 293.518,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,785.568 272.493,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,785.568 283.006,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,785.568 304.031,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,785.568 283.006,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,767.359 283.006,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,767.359 293.518,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,749.151 272.493,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,749.151 283.006,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,749.151 304.031,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,749.151 283.006,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,730.942 283.006,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,730.942 293.518,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,712.734 272.493,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,712.734 283.006,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,712.734 304.031,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,712.734 283.006,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,694.525 283.006,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,694.525 293.518,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,676.316 272.493,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,676.316 283.006,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,676.316 304.031,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,676.316 283.006,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,658.108 283.006,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,658.108 293.518,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,876.611 304.031,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,858.402 293.518,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,858.402 304.031,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,858.402 325.057,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,858.402 304.031,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,840.194 304.031,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,840.194 314.544,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,821.985 293.518,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,821.985 304.031,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,821.985 325.057,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,821.985 304.031,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,803.777 304.031,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,803.777 314.544,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,785.568 293.518,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,785.568 304.031,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,785.568 325.057,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,785.568 304.031,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,767.359 304.031,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,767.359 314.544,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,749.151 293.518,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,749.151 304.031,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,749.151 325.057,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,749.151 304.031,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,730.942 304.031,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,730.942 314.544,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,712.734 293.518,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,712.734 304.031,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,712.734 325.057,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,712.734 304.031,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,694.525 304.031,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,694.525 314.544,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,676.316 293.518,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,676.316 304.031,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,676.316 325.057,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,676.316 304.031,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,658.108 304.031,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,658.108 314.544,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,876.611 325.057,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,858.402 314.544,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,858.402 325.057,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,858.402 346.082,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,858.402 325.057,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,840.194 325.057,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,840.194 335.569,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,821.985 314.544,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,821.985 325.057,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,821.985 346.082,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,821.985 325.057,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,803.777 325.057,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,803.777 335.569,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,785.568 314.544,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,785.568 325.057,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,785.568 346.082,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,785.568 325.057,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,767.359 325.057,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,767.359 335.569,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,749.151 314.544,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,749.151 325.057,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,749.151 346.082,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,749.151 325.057,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,730.942 325.057,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,730.942 335.569,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,712.734 314.544,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,712.734 325.057,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,712.734 346.082,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,712.734 325.057,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,694.525 325.057,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,694.525 335.569,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,676.316 314.544,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,676.316 325.057,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,676.316 346.082,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,676.316 325.057,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,658.108 325.057,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,658.108 335.569,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,876.611 346.082,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,858.402 335.569,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,858.402 346.082,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,858.402 367.108,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,858.402 346.082,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,840.194 346.082,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,840.194 356.595,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,821.985 335.569,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,821.985 346.082,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,821.985 367.108,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,821.985 346.082,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,803.777 346.082,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,803.777 356.595,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,785.568 335.569,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,785.568 346.082,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,785.568 367.108,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,785.568 346.082,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,767.359 346.082,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,767.359 356.595,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,749.151 335.569,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,749.151 346.082,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,749.151 367.108,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,749.151 346.082,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,730.942 346.082,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,730.942 356.595,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,712.734 335.569,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,712.734 346.082,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,712.734 367.108,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,712.734 346.082,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,694.525 346.082,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,694.525 356.595,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,676.316 335.569,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,676.316 346.082,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,676.316 367.108,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,676.316 346.082,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,658.108 346.082,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,658.108 356.595,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,876.611 367.108,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,858.402 356.595,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,858.402 367.108,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,858.402 388.133,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,858.402 367.108,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,840.194 367.108,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,840.194 377.62,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,821.985 356.595,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,821.985 367.108,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,821.985 388.133,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,821.985 367.108,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,803.777 367.108,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,803.777 377.62,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,785.568 356.595,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,785.568 367.108,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,785.568 388.133,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,785.568 367.108,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,767.359 367.108,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,767.359 377.62,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,749.151 356.595,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,749.151 367.108,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,749.151 388.133,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,749.151 367.108,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,730.942 367.108,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,730.942 377.62,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,712.734 356.595,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,712.734 367.108,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,712.734 388.133,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,712.734 367.108,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,694.525 367.108,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,694.525 377.62,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,676.316 356.595,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,676.316 367.108,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,676.316 388.133,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,676.316 367.108,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,658.108 367.108,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,658.108 377.62,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,876.611 388.133,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,858.402 377.62,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,858.402 388.133,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,858.402 409.159,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,858.402 388.133,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,840.194 388.133,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,840.194 398.646,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,821.985 377.62,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,821.985 388.133,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,821.985 409.159,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,821.985 388.133,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,803.777 388.133,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,803.777 398.646,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,785.568 377.62,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,785.568 388.133,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,785.568 409.159,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,785.568 388.133,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,767.359 388.133,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,767.359 398.646,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,749.151 377.62,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,749.151 388.133,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,749.151 409.159,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,749.151 388.133,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,730.942 388.133,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,730.942 398.646,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,712.734 377.62,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,712.734 388.133,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,712.734 409.159,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,712.734 388.133,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,694.525 388.133,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,694.525 398.646,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,676.316 377.62,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,676.316 388.133,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,676.316 409.159,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,676.316 388.133,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,658.108 388.133,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,658.108 398.646,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,876.611 409.159,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,858.402 398.646,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,858.402 409.159,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,858.402 430.184,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,858.402 409.159,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,840.194 409.159,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,840.194 419.671,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,821.985 398.646,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,821.985 409.159,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,821.985 430.184,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,821.985 409.159,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,803.777 409.159,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,803.777 419.671,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,785.568 398.646,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,785.568 409.159,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,785.568 430.184,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,785.568 409.159,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,767.359 409.159,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,767.359 419.671,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,749.151 398.646,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,749.151 409.159,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,749.151 430.184,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,749.151 409.159,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,730.942 409.159,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,730.942 419.671,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,712.734 398.646,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,712.734 409.159,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,712.734 430.184,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,712.734 409.159,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,694.525 409.159,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,694.525 419.671,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,676.316 398.646,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,676.316 409.159,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,676.316 430.184,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,676.316 409.159,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,658.108 409.159,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,658.108 419.671,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,876.611 430.184,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,858.402 419.671,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,858.402 430.184,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,858.402 451.21,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,858.402 430.184,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,840.194 430.184,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,840.194 440.697,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,821.985 419.671,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,821.985 430.184,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,821.985 451.21,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,821.985 430.184,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,803.777 430.184,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,803.777 440.697,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,785.568 419.671,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,785.568 430.184,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,785.568 451.21,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,785.568 430.184,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,767.359 430.184,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,767.359 440.697,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,749.151 419.671,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,749.151 430.184,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,749.151 451.21,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,749.151 430.184,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,730.942 430.184,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,730.942 440.697,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,712.734 419.671,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,712.734 430.184,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,712.734 451.21,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,712.734 430.184,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,694.525 430.184,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,694.525 440.697,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,676.316 419.671,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,676.316 430.184,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,676.316 451.21,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,676.316 430.184,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,658.108 430.184,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,658.108 440.697,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,876.611 451.21,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,858.402 440.697,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,858.402 451.21,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,858.402 472.235,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,858.402 451.21,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,840.194 451.21,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,840.194 461.722,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,821.985 440.697,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,821.985 451.21,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,821.985 472.235,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,821.985 451.21,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,803.777 451.21,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,803.777 461.722,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,785.568 440.697,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,785.568 451.21,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,785.568 472.235,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,785.568 451.21,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,767.359 451.21,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,767.359 461.722,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,749.151 440.697,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,749.151 451.21,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,749.151 472.235,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,749.151 451.21,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,730.942 451.21,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,730.942 461.722,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,712.734 440.697,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,712.734 451.21,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,712.734 472.235,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,712.734 451.21,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,694.525 451.21,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,694.525 461.722,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,676.316 440.697,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,676.316 451.21,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,676.316 472.235,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,676.316 451.21,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,658.108 451.21,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,658.108 461.722,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,876.611 472.235,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,858.402 461.722,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,858.402 472.235,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,858.402 493.261,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,858.402 472.235,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,840.194 472.235,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,840.194 482.748,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,821.985 461.722,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,821.985 472.235,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,821.985 493.261,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,821.985 472.235,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,803.777 472.235,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,803.777 482.748,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,785.568 461.722,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,785.568 472.235,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,785.568 493.261,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,785.568 472.235,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,767.359 472.235,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,767.359 482.748,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,749.151 461.722,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,749.151 472.235,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,749.151 493.261,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,749.151 472.235,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,730.942 472.235,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,730.942 482.748,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,712.734 461.722,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,712.734 472.235,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,712.734 493.261,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,712.734 472.235,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,694.525 472.235,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,694.525 482.748,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,676.316 461.722,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,676.316 472.235,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,676.316 493.261,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,676.316 472.235,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,658.108 472.235,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,658.108 482.748,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,876.611 493.261,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,858.402 482.748,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,858.402 493.261,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,858.402 514.286,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,858.402 493.261,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,840.194 493.261,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,840.194 503.773,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,821.985 482.748,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,821.985 493.261,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,821.985 514.286,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,821.985 493.261,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,803.777 493.261,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,803.777 503.773,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,785.568 482.748,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,785.568 493.261,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,785.568 514.286,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,785.568 493.261,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,767.359 493.261,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,767.359 503.773,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,749.151 482.748,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,749.151 493.261,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,749.151 514.286,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,749.151 493.261,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,730.942 493.261,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,730.942 503.773,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,712.734 482.748,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,712.734 493.261,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,712.734 514.286,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,712.734 493.261,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,694.525 493.261,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,694.525 503.773,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,676.316 482.748,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,676.316 493.261,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,676.316 514.286,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,676.316 493.261,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,658.108 493.261,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,658.108 503.773,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,876.611 514.286,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,858.402 503.773,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,858.402 514.286,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,858.402 535.312,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,858.402 514.286,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,840.194 514.286,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,840.194 524.799,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,821.985 503.773,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,821.985 514.286,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,821.985 535.312,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,821.985 514.286,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,803.777 514.286,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,803.777 524.799,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,785.568 503.773,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,785.568 514.286,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,785.568 535.312,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,785.568 514.286,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,767.359 514.286,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,767.359 524.799,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,749.151 503.773,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,749.151 514.286,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,749.151 535.312,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,749.151 514.286,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,730.942 514.286,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,730.942 524.799,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,712.734 503.773,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,712.734 514.286,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,712.734 535.312,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,712.734 514.286,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,694.525 514.286,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,694.525 524.799,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,676.316 503.773,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,676.316 514.286,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,676.316 535.312,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,676.316 514.286,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,658.108 514.286,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,658.108 524.799,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,876.611 535.312,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,858.402 524.799,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,858.402 535.312,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,858.402 556.337,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,858.402 535.312,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,840.194 535.312,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,840.194 545.824,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,821.985 524.799,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,821.985 535.312,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,821.985 556.337,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,821.985 535.312,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,803.777 535.312,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,803.777 545.824,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,785.568 524.799,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,785.568 535.312,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,785.568 556.337,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,785.568 535.312,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,767.359 535.312,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,767.359 545.824,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,749.151 524.799,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,749.151 535.312,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,749.151 556.337,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,749.151 535.312,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,730.942 535.312,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,730.942 545.824,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,712.734 524.799,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,712.734 535.312,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,712.734 556.337,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,712.734 535.312,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,694.525 535.312,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,694.525 545.824,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,676.316 524.799,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,676.316 535.312,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,676.316 556.337,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,676.316 535.312,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,658.108 535.312,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,658.108 545.824,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,876.611 556.337,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,858.402 545.824,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,858.402 556.337,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,858.402 577.363,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,858.402 556.337,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,840.194 556.337,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,840.194 566.85,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,821.985 545.824,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,821.985 556.337,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,821.985 577.363,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,821.985 556.337,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,803.777 556.337,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,803.777 566.85,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,785.568 545.824,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,785.568 556.337,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,785.568 577.363,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,785.568 556.337,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,767.359 556.337,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,767.359 566.85,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,749.151 545.824,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,749.151 556.337,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,749.151 577.363,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,749.151 556.337,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,730.942 556.337,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,730.942 566.85,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,712.734 545.824,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,712.734 556.337,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,712.734 577.363,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,712.734 556.337,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,694.525 556.337,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,694.525 566.85,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,676.316 545.824,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,676.316 556.337,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,676.316 577.363,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,676.316 556.337,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,658.108 556.337,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,658.108 566.85,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,876.611 577.363,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,858.402 566.85,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,858.402 577.363,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,858.402 598.388,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,858.402 577.363,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,840.194 577.363,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,840.194 587.875,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,821.985 566.85,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,821.985 577.363,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,821.985 598.388,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,821.985 577.363,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,803.777 577.363,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,803.777 587.875,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,785.568 566.85,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,785.568 577.363,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,785.568 598.388,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,785.568 577.363,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,767.359 577.363,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,767.359 587.875,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,749.151 566.85,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,749.151 577.363,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,749.151 598.388,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,749.151 577.363,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,730.942 577.363,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,730.942 587.875,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,712.734 566.85,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,712.734 577.363,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,712.734 598.388,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,712.734 577.363,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,694.525 577.363,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,694.525 587.875,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,676.316 566.85,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,676.316 577.363,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,676.316 598.388,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,676.316 577.363,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,658.108 577.363,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,658.108 587.875,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,876.611 598.388,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,858.402 587.875,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,858.402 598.388,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,858.402 619.414,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,858.402 598.388,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,840.194 598.388,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,840.194 608.901,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,821.985 587.875,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,821.985 598.388,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,821.985 619.414,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,821.985 598.388,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,803.777 598.388,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,803.777 608.901,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,785.568 587.875,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,785.568 598.388,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,785.568 619.414,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,785.568 598.388,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,767.359 598.388,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,767.359 608.901,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,749.151 587.875,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,749.151 598.388,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,749.151 619.414,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,749.151 598.388,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,730.942 598.388,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,730.942 608.901,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,712.734 587.875,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,712.734 598.388,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,712.734 619.414,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,712.734 598.388,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,694.525 598.388,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,694.525 608.901,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,676.316 587.875,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,676.316 598.388,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,676.316 619.414,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,676.316 598.388,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,658.108 598.388,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,658.108 608.901,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,876.611 619.414,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,858.402 608.901,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,858.402 619.414,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,858.402 640.439,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,858.402 619.414,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,840.194 619.414,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,840.194 629.926,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,821.985 608.901,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,821.985 619.414,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,821.985 640.439,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,821.985 619.414,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,803.777 619.414,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,803.777 629.926,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,785.568 608.901,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,785.568 619.414,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,785.568 640.439,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,785.568 619.414,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,767.359 619.414,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,767.359 629.926,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,749.151 608.901,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,749.151 619.414,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,749.151 640.439,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,749.151 619.414,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,730.942 619.414,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,730.942 629.926,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,712.734 608.901,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,712.734 619.414,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,712.734 640.439,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,712.734 619.414,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,694.525 619.414,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,694.525 629.926,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,676.316 608.901,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,676.316 619.414,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,676.316 640.439,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,676.316 619.414,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,658.108 619.414,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,658.108 629.926,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,876.611 640.439,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,858.402 629.926,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,858.402 640.439,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,858.402 661.465,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,858.402 640.439,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,840.194 640.439,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,840.194 650.952,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,821.985 629.926,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,821.985 640.439,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,821.985 661.465,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,821.985 640.439,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,803.777 640.439,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,803.777 650.952,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,785.568 629.926,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,785.568 640.439,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,785.568 661.465,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,785.568 640.439,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,767.359 640.439,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,767.359 650.952,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,749.151 629.926,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,749.151 640.439,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,749.151 661.465,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,749.151 640.439,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,730.942 640.439,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,730.942 650.952,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,712.734 629.926,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,712.734 640.439,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,712.734 661.465,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,712.734 640.439,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,694.525 640.439,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,694.525 650.952,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,676.316 629.926,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,676.316 640.439,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,676.316 661.465,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,676.316 640.439,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,658.108 640.439,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,658.108 650.952,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,876.611 661.465,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,858.402 650.952,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,858.402 661.465,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,858.402 682.49,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,858.402 661.465,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,840.194 661.465,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,840.194 671.977,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,821.985 650.952,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,821.985 661.465,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,821.985 682.49,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,821.985 661.465,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,803.777 661.465,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,803.777 671.977,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,785.568 650.952,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,785.568 661.465,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,785.568 682.49,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,785.568 661.465,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,767.359 661.465,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,767.359 671.977,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,749.151 650.952,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,749.151 661.465,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,749.151 682.49,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,749.151 661.465,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,730.942 661.465,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,730.942 671.977,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,712.734 650.952,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,712.734 661.465,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,712.734 682.49,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,712.734 661.465,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,694.525 661.465,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,694.525 671.977,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,676.316 650.952,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,676.316 661.465,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,676.316 682.49,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,676.316 661.465,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,658.108 661.465,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,658.108 671.977,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,876.611 682.49,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,858.402 671.977,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,858.402 682.49,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,858.402 703.516,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,858.402 682.49,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,840.194 682.49,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,840.194 693.003,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,821.985 671.977,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,821.985 682.49,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,821.985 703.516,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,821.985 682.49,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,803.777 682.49,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,803.777 693.003,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,785.568 671.977,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,785.568 682.49,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,785.568 703.516,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,785.568 682.49,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,767.359 682.49,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,767.359 693.003,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,749.151 671.977,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,749.151 682.49,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,749.151 703.516,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,749.151 682.49,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,730.942 682.49,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,730.942 693.003,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,712.734 671.977,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,712.734 682.49,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,712.734 703.516,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,712.734 682.49,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,694.525 682.49,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,694.525 693.003,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,676.316 671.977,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,676.316 682.49,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,676.316 703.516,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,676.316 682.49,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,658.108 682.49,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,658.108 693.003,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,876.611 703.516,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,858.402 693.003,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,858.402 703.516,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,858.402 724.541,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,858.402 703.516,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,840.194 703.516,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,840.194 714.028,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,821.985 693.003,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,821.985 703.516,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,821.985 724.541,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,821.985 703.516,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,803.777 703.516,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,803.777 714.028,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,785.568 693.003,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,785.568 703.516,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,785.568 724.541,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,785.568 703.516,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,767.359 703.516,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,767.359 714.028,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,749.151 693.003,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,749.151 703.516,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,749.151 724.541,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,749.151 703.516,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,730.942 703.516,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,730.942 714.028,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,712.734 693.003,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,712.734 703.516,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,712.734 724.541,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,712.734 703.516,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,694.525 703.516,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,694.525 714.028,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,676.316 693.003,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,676.316 703.516,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,676.316 724.541,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,676.316 703.516,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,658.108 703.516,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,658.108 714.028,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,876.611 724.541,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,858.402 714.028,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,858.402 724.541,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,858.402 745.567,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,858.402 724.541,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,840.194 724.541,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,840.194 735.054,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,821.985 714.028,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,821.985 724.541,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,821.985 745.567,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,821.985 724.541,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,803.777 724.541,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,803.777 735.054,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,785.568 714.028,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,785.568 724.541,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,785.568 745.567,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,785.568 724.541,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,767.359 724.541,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,767.359 735.054,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,749.151 714.028,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,749.151 724.541,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,749.151 745.567,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,749.151 724.541,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,730.942 724.541,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,730.942 735.054,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,712.734 714.028,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,712.734 724.541,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,712.734 745.567,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,712.734 724.541,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,694.525 724.541,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,694.525 735.054,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,676.316 714.028,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,676.316 724.541,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,676.316 745.567,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,676.316 724.541,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,658.108 724.541,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,658.108 735.054,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,876.611 745.567,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,858.402 735.054,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,858.402 745.567,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,858.402 766.592,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,858.402 745.567,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,840.194 745.567,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,840.194 756.079,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,821.985 735.054,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,821.985 745.567,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,821.985 766.592,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,821.985 745.567,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,803.777 745.567,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,803.777 756.079,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,785.568 735.054,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,785.568 745.567,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,785.568 766.592,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,785.568 745.567,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,767.359 745.567,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,767.359 756.079,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,749.151 735.054,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,749.151 745.567,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,749.151 766.592,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,749.151 745.567,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,730.942 745.567,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,730.942 756.079,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,712.734 735.054,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,712.734 745.567,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,712.734 766.592,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,712.734 745.567,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,694.525 745.567,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,694.525 756.079,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,676.316 735.054,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,676.316 745.567,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,676.316 766.592,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,676.316 745.567,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,658.108 745.567,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,658.108 756.079,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,876.611 766.592,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,858.402 756.079,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,858.402 766.592,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,858.402 787.618,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,858.402 766.592,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,840.194 766.592,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,840.194 777.105,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,821.985 756.079,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,821.985 766.592,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,821.985 787.618,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,821.985 766.592,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,803.777 766.592,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,803.777 777.105,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,785.568 756.079,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,785.568 766.592,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,785.568 787.618,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,785.568 766.592,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,767.359 766.592,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,767.359 777.105,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,749.151 756.079,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,749.151 766.592,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,749.151 787.618,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,749.151 766.592,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,730.942 766.592,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,730.942 777.105,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,712.734 756.079,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,712.734 766.592,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,712.734 787.618,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,712.734 766.592,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,694.525 766.592,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,694.525 777.105,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,676.316 756.079,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,676.316 766.592,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,676.316 787.618,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,676.316 766.592,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,658.108 766.592,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,658.108 777.105,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,876.611 787.618,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,858.402 777.105,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,858.402 787.618,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,858.402 808.643,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,858.402 787.618,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,840.194 787.618,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,840.194 798.13,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,821.985 777.105,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,821.985 787.618,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,821.985 808.643,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,821.985 787.618,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,803.777 787.618,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,803.777 798.13,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,785.568 777.105,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,785.568 787.618,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,785.568 808.643,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,785.568 787.618,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,767.359 787.618,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,767.359 798.13,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,749.151 777.105,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,749.151 787.618,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,749.151 808.643,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,749.151 787.618,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,730.942 787.618,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,730.942 798.13,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,712.734 777.105,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,712.734 787.618,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,712.734 808.643,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,712.734 787.618,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,694.525 787.618,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,694.525 798.13,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,676.316 777.105,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,676.316 787.618,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,676.316 808.643,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,676.316 787.618,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,658.108 787.618,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,658.108 798.13,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,858.402 798.13,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,858.402 808.643,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,858.402 808.643,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,840.194 808.643,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,840.194 819.156,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,821.985 798.13,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,821.985 808.643,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,821.985 829.669,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,821.985 808.643,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,803.777 808.643,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,803.777 819.156,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,785.568 798.13,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,785.568 808.643,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,785.568 829.669,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,785.568 808.643,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,767.359 808.643,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,767.359 819.156,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,749.151 798.13,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,749.151 808.643,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,749.151 829.669,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,749.151 808.643,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,730.942 808.643,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,730.942 819.156,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,712.734 798.13,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,712.734 808.643,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,712.734 829.669,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,712.734 808.643,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,694.525 808.643,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,694.525 819.156,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,676.316 798.13,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,676.316 808.643,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,676.316 829.669,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,676.316 808.643,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,658.108 808.643,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,658.108 819.156,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,858.402 819.156,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,858.402 829.669,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,840.194 829.669,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,840.194 840.181,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,821.985 819.156,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,821.985 829.669,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,821.985 850.694,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,821.985 829.669,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,803.777 829.669,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,803.777 840.181,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,785.568 819.156,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,785.568 829.669,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,785.568 850.694,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,785.568 829.669,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,767.359 829.669,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,767.359 840.181,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,749.151 819.156,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,749.151 829.669,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,749.151 850.694,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,749.151 829.669,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,730.942 829.669,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,730.942 840.181,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,712.734 819.156,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,712.734 829.669,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,712.734 850.694,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,712.734 829.669,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,694.525 829.669,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,694.525 840.181,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,676.316 819.156,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,676.316 829.669,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,676.316 850.694,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,676.316 829.669,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,858.402 840.181,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,858.402 850.694,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,840.194 850.694,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,840.194 861.207,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,821.985 840.181,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,821.985 850.694,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,821.985 871.72,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,821.985 850.694,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,803.777 850.694,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,803.777 861.207,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,785.568 840.181,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,785.568 850.694,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,785.568 871.72,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,785.568 850.694,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,767.359 850.694,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,767.359 861.207,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,749.151 840.181,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,749.151 850.694,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,749.151 871.72,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,749.151 850.694,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,730.942 850.694,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,730.942 861.207,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,712.734 840.181,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,712.734 850.694,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,712.734 871.72,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,712.734 850.694,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,694.525 850.694,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,694.525 861.207,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,676.316 840.181,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,676.316 850.694,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,676.316 871.72,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,840.194 871.72,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,821.985 861.207,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,821.985 871.72,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,821.985 892.745,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,821.985 871.72,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,803.777 871.72,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,803.777 882.232,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,785.568 861.207,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,785.568 871.72,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,785.568 892.745,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,785.568 871.72,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,767.359 871.72,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,767.359 882.232,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,749.151 861.207,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,749.151 871.72,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,749.151 892.745,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,749.151 871.72,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,730.942 871.72,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,730.942 882.232,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,712.734 861.207,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,712.734 871.72,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,712.734 892.745,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,712.734 871.72,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,694.525 871.72,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,694.525 882.232,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,676.316 861.207,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,676.316 871.72,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,676.316 892.745,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,840.194 892.745,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,821.985 882.232,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,821.985 892.745,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,821.985 913.771,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,821.985 892.745,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,803.777 892.745,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,803.777 903.258,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,785.568 882.232,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,785.568 892.745,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,785.568 913.771,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,785.568 892.745,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,767.359 892.745,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,767.359 903.258,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,749.151 882.232,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,749.151 892.745,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,749.151 913.771,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,749.151 892.745,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,730.942 892.745,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,730.942 903.258,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,712.734 882.232,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,712.734 892.745,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,712.734 913.771,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,712.734 892.745,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,694.525 892.745,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,694.525 903.258,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,676.316 882.232,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,676.316 892.745,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,676.316 913.771,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,840.194 913.771,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,821.985 903.258,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,821.985 913.771,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,821.985 934.796,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,821.985 913.771,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,803.777 913.771,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,803.777 924.283,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,785.568 903.258,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,785.568 913.771,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,785.568 934.796,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,785.568 913.771,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,767.359 913.771,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,767.359 924.283,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,749.151 903.258,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,749.151 913.771,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,749.151 934.796,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,749.151 913.771,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,730.942 913.771,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,730.942 924.283,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,712.734 903.258,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,712.734 913.771,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,712.734 934.796,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,712.734 913.771,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,694.525 913.771,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,694.525 924.283,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,676.316 903.258,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,676.316 913.771,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,676.316 934.796,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,840.194 934.796,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,821.985 924.283,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,821.985 934.796,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,821.985 955.822,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,821.985 934.796,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,803.777 934.796,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,803.777 945.309,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,785.568 924.283,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,785.568 934.796,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,785.568 955.822,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,785.568 934.796,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,767.359 934.796,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,767.359 945.309,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,749.151 924.283,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,749.151 934.796,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,749.151 955.822,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,749.151 934.796,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,730.942 934.796,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,730.942 945.309,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,712.734 924.283,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,712.734 934.796,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,712.734 955.822,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,712.734 934.796,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,694.525 934.796,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,694.525 945.309,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,840.194 955.822,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,821.985 945.309,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,821.985 955.822,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,821.985 976.847,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,821.985 955.822,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,803.777 955.822,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,803.777 966.334,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,785.568 945.309,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,785.568 955.822,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,785.568 976.847,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,785.568 955.822,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,767.359 955.822,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,767.359 966.334,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,749.151 945.309,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,749.151 955.822,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,749.151 976.847,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,749.151 955.822,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,730.942 955.822,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,730.942 966.334,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,712.734 945.309,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,712.734 955.822,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,712.734 976.847,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,712.734 955.822,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,694.525 955.822,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,694.525 966.334,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,840.194 976.847,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,821.985 966.334,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,821.985 976.847,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,821.985 997.873,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,821.985 976.847,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,803.777 976.847,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,803.777 987.36,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,785.568 966.334,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,785.568 976.847,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,785.568 997.873,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,785.568 976.847,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,767.359 976.847,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,767.359 987.36,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,749.151 966.334,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,749.151 976.847,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,749.151 997.873,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,749.151 976.847,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,730.942 976.847,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,730.942 987.36,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,712.734 966.334,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,712.734 976.847,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,712.734 997.873,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,712.734 976.847,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,694.525 976.847,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,694.525 987.36,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,840.194 997.873,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,821.985 987.36,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,821.985 997.873,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,821.985 1018.9,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,821.985 997.873,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,803.777 997.873,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,803.777 1008.39,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,785.568 987.36,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,785.568 997.873,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,785.568 1018.9,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,785.568 997.873,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,767.359 997.873,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,767.359 1008.39,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,749.151 987.36,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,749.151 997.873,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,749.151 1018.9,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,749.151 997.873,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,730.942 997.873,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,730.942 1008.39,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,712.734 987.36,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,712.734 997.873,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,712.734 1018.9,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,712.734 997.873,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,694.525 997.873,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,694.525 1008.39,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,840.194 1018.9,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,821.985 1008.39,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,821.985 1018.9,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,821.985 1039.92,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,821.985 1018.9,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,803.777 1018.9,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,803.777 1029.41,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,785.568 1008.39,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,785.568 1018.9,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,785.568 1039.92,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,785.568 1018.9,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,767.359 1018.9,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,767.359 1029.41,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,749.151 1008.39,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,749.151 1018.9,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,749.151 1039.92,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,749.151 1018.9,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,730.942 1018.9,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,730.942 1029.41,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,712.734 1008.39,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,712.734 1018.9,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,712.734 1039.92,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,712.734 1018.9,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,694.525 1018.9,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,694.525 1029.41,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,840.194 1039.92,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,821.985 1029.41,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,821.985 1039.92,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,821.985 1060.95,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,821.985 1039.92,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,803.777 1039.92,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,803.777 1050.44,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,785.568 1029.41,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,785.568 1039.92,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,785.568 1060.95,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,785.568 1039.92,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,767.359 1039.92,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,767.359 1050.44,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,749.151 1029.41,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,749.151 1039.92,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,749.151 1060.95,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,749.151 1039.92,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,730.942 1039.92,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,730.942 1050.44,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,712.734 1029.41,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,712.734 1039.92,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,712.734 1060.95,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,712.734 1039.92,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,694.525 1039.92,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,694.525 1050.44,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,840.194 1060.95,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,821.985 1050.44,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,821.985 1060.95,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,821.985 1081.97,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,821.985 1060.95,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,803.777 1060.95,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,803.777 1071.46,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,785.568 1050.44,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,785.568 1060.95,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,785.568 1081.97,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,785.568 1060.95,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,767.359 1060.95,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,767.359 1071.46,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,749.151 1050.44,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,749.151 1060.95,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,749.151 1081.97,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,749.151 1060.95,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,730.942 1060.95,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,730.942 1071.46,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,712.734 1050.44,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,712.734 1060.95,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,712.734 1081.97,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,712.734 1060.95,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,694.525 1060.95,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,694.525 1071.46,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,840.194 1081.97,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,821.985 1071.46,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,821.985 1081.97,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,821.985 1103,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,821.985 1081.97,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,803.777 1081.97,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,803.777 1092.49,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,785.568 1071.46,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,785.568 1081.97,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,785.568 1103,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,785.568 1081.97,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,767.359 1081.97,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,767.359 1092.49,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,749.151 1071.46,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,749.151 1081.97,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,749.151 1103,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,749.151 1081.97,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,730.942 1081.97,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,730.942 1092.49,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,712.734 1071.46,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,712.734 1081.97,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,712.734 1103,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,712.734 1081.97,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,694.525 1081.97,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,694.525 1092.49,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,840.194 1103,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,821.985 1092.49,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,821.985 1103,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,821.985 1124.03,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,821.985 1103,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,803.777 1103,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,803.777 1113.51,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,785.568 1092.49,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,785.568 1103,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,785.568 1124.03,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,785.568 1103,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,767.359 1103,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,767.359 1113.51,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,749.151 1092.49,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,749.151 1103,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,749.151 1124.03,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,749.151 1103,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,730.942 1103,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,730.942 1113.51,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,712.734 1092.49,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,712.734 1103,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,712.734 1124.03,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,712.734 1103,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,694.525 1103,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,694.525 1113.51,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,840.194 1124.03,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,821.985 1113.51,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,821.985 1124.03,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,821.985 1145.05,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,821.985 1124.03,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,803.777 1124.03,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,803.777 1134.54,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,785.568 1113.51,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,785.568 1124.03,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,785.568 1145.05,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,785.568 1124.03,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,767.359 1124.03,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,767.359 1134.54,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,749.151 1113.51,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,749.151 1124.03,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,749.151 1145.05,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,749.151 1124.03,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,730.942 1124.03,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,730.942 1134.54,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,712.734 1113.51,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,712.734 1124.03,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,712.734 1145.05,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,712.734 1124.03,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,694.525 1124.03,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,694.525 1134.54,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,840.194 1145.05,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,821.985 1134.54,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,821.985 1145.05,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,821.985 1166.08,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,821.985 1145.05,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,803.777 1145.05,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,803.777 1155.56,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,785.568 1134.54,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,785.568 1145.05,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,785.568 1166.08,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,785.568 1145.05,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,767.359 1145.05,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,767.359 1155.56,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,749.151 1134.54,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,749.151 1145.05,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,749.151 1166.08,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,749.151 1145.05,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,730.942 1145.05,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,730.942 1155.56,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,712.734 1134.54,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,712.734 1145.05,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,712.734 1166.08,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,712.734 1145.05,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,694.525 1145.05,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,694.525 1155.56,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,840.194 1166.08,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,821.985 1155.56,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,821.985 1166.08,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,821.985 1187.1,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,821.985 1166.08,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,803.777 1166.08,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,803.777 1176.59,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,785.568 1155.56,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,785.568 1166.08,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,785.568 1187.1,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,785.568 1166.08,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,767.359 1166.08,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,767.359 1176.59,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,749.151 1155.56,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,749.151 1166.08,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,749.151 1187.1,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,749.151 1166.08,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,730.942 1166.08,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,730.942 1176.59,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,712.734 1155.56,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,712.734 1166.08,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,712.734 1187.1,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,712.734 1166.08,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,694.525 1166.08,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,694.525 1176.59,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,840.194 1187.1,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,821.985 1176.59,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,821.985 1187.1,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,821.985 1208.13,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,821.985 1187.1,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,803.777 1187.1,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,803.777 1197.61,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,785.568 1176.59,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,785.568 1187.1,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,785.568 1208.13,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,785.568 1187.1,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,767.359 1187.1,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,767.359 1197.61,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,749.151 1176.59,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,749.151 1187.1,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,749.151 1208.13,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,749.151 1187.1,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,730.942 1187.1,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,730.942 1197.61,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,712.734 1176.59,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,712.734 1187.1,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,712.734 1208.13,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,712.734 1187.1,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,694.525 1187.1,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,694.525 1197.61,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,840.194 1208.13,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,821.985 1197.61,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,821.985 1208.13,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,821.985 1229.15,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,821.985 1208.13,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,803.777 1208.13,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,803.777 1218.64,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,785.568 1197.61,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,785.568 1208.13,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,785.568 1229.15,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,785.568 1208.13,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,767.359 1208.13,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,767.359 1218.64,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,749.151 1197.61,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,749.151 1208.13,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,749.151 1229.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,749.151 1208.13,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,730.942 1208.13,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,730.942 1218.64,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,712.734 1197.61,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,712.734 1208.13,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,712.734 1229.15,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,712.734 1208.13,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,694.525 1208.13,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,694.525 1218.64,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,840.194 1229.15,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,821.985 1218.64,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,821.985 1229.15,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,821.985 1250.18,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,821.985 1229.15,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,803.777 1229.15,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,803.777 1239.67,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,785.568 1218.64,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,785.568 1229.15,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,785.568 1250.18,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,785.568 1229.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,767.359 1229.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,767.359 1239.67,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,749.151 1218.64,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,749.151 1229.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,749.151 1250.18,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,749.151 1229.15,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,730.942 1229.15,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,730.942 1239.67,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,712.734 1218.64,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,712.734 1229.15,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,712.734 1250.18,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,712.734 1229.15,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,694.525 1229.15,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,694.525 1239.67,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,840.194 1250.18,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,821.985 1239.67,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,821.985 1250.18,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,821.985 1271.2,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,821.985 1250.18,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,803.777 1250.18,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,803.777 1260.69,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,785.568 1239.67,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,785.568 1250.18,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,785.568 1271.2,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,785.568 1250.18,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,767.359 1250.18,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,767.359 1260.69,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,749.151 1239.67,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,749.151 1250.18,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,749.151 1271.2,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,749.151 1250.18,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,730.942 1250.18,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,730.942 1260.69,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,712.734 1239.67,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,712.734 1250.18,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,712.734 1271.2,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,712.734 1250.18,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,694.525 1250.18,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,694.525 1260.69,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,840.194 1271.2,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,821.985 1260.69,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,821.985 1271.2,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,821.985 1292.23,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,821.985 1271.2,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,803.777 1271.2,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,803.777 1281.72,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,785.568 1260.69,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,785.568 1271.2,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,785.568 1292.23,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,785.568 1271.2,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,767.359 1271.2,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,767.359 1281.72,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,749.151 1260.69,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,749.151 1271.2,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,749.151 1292.23,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,749.151 1271.2,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,730.942 1271.2,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,730.942 1281.72,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,712.734 1260.69,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,712.734 1271.2,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,712.734 1292.23,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,712.734 1271.2,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,694.525 1271.2,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,694.525 1281.72,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,840.194 1292.23,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,821.985 1281.72,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,821.985 1292.23,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,821.985 1313.26,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,821.985 1292.23,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,803.777 1292.23,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,803.777 1302.74,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,785.568 1281.72,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,785.568 1292.23,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,785.568 1313.26,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,785.568 1292.23,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,767.359 1292.23,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,767.359 1302.74,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,749.151 1281.72,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,749.151 1292.23,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,749.151 1313.26,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,749.151 1292.23,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,730.942 1292.23,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,730.942 1302.74,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,712.734 1281.72,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,712.734 1292.23,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,712.734 1313.26,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,712.734 1292.23,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,694.525 1292.23,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,694.525 1302.74,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,840.194 1313.26,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,821.985 1302.74,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,821.985 1313.26,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,821.985 1334.28,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,821.985 1313.26,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,803.777 1313.26,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,803.777 1323.77,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,785.568 1302.74,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,785.568 1313.26,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,785.568 1334.28,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,785.568 1313.26,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,767.359 1313.26,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,767.359 1323.77,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,749.151 1302.74,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,749.151 1313.26,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,749.151 1334.28,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,749.151 1313.26,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,730.942 1313.26,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,730.942 1323.77,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,712.734 1302.74,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,712.734 1313.26,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,712.734 1334.28,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,712.734 1313.26,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,694.525 1313.26,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,694.525 1323.77,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,840.194 1334.28,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,821.985 1323.77,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,821.985 1334.28,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,821.985 1355.31,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,821.985 1334.28,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,803.777 1334.28,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,803.777 1344.79,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,785.568 1323.77,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,785.568 1334.28,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,785.568 1355.31,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,785.568 1334.28,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,767.359 1334.28,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,767.359 1344.79,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,749.151 1323.77,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,749.151 1334.28,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,749.151 1355.31,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,749.151 1334.28,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,730.942 1334.28,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,730.942 1344.79,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,712.734 1323.77,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,712.734 1334.28,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,712.734 1355.31,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,712.734 1334.28,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,694.525 1334.28,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,694.525 1344.79,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,840.194 1355.31,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,821.985 1344.79,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,821.985 1355.31,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,821.985 1376.33,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,821.985 1355.31,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,803.777 1355.31,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,803.777 1365.82,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,785.568 1344.79,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,785.568 1355.31,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,785.568 1376.33,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,785.568 1355.31,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,767.359 1355.31,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,767.359 1365.82,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,749.151 1344.79,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,749.151 1355.31,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,749.151 1376.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,749.151 1355.31,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,730.942 1355.31,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,730.942 1365.82,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,712.734 1344.79,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,712.734 1355.31,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,712.734 1376.33,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,712.734 1355.31,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,694.525 1355.31,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,694.525 1365.82,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,840.194 1376.33,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,821.985 1365.82,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,821.985 1376.33,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,821.985 1397.36,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,821.985 1376.33,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,803.777 1376.33,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,803.777 1386.84,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,785.568 1365.82,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,785.568 1376.33,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,785.568 1397.36,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,785.568 1376.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,767.359 1376.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,767.359 1386.84,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,749.151 1365.82,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,749.151 1376.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,749.151 1397.36,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,749.151 1376.33,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,730.942 1376.33,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,730.942 1386.84,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,712.734 1365.82,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,712.734 1376.33,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,712.734 1397.36,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,712.734 1376.33,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,694.525 1376.33,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,694.525 1386.84,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,840.194 1397.36,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,821.985 1386.84,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,821.985 1397.36,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,821.985 1418.38,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,821.985 1397.36,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,803.777 1397.36,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,803.777 1407.87,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,785.568 1386.84,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,785.568 1397.36,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,785.568 1418.38,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,785.568 1397.36,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,767.359 1397.36,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,767.359 1407.87,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,749.151 1386.84,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,749.151 1397.36,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,749.151 1418.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,749.151 1397.36,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,730.942 1397.36,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,730.942 1407.87,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,712.734 1386.84,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,712.734 1397.36,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,712.734 1418.38,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,712.734 1397.36,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,694.525 1397.36,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,694.525 1407.87,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,840.194 1418.38,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,821.985 1407.87,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,821.985 1418.38,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,821.985 1439.41,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,821.985 1418.38,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,803.777 1418.38,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,803.777 1428.9,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,785.568 1407.87,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,785.568 1418.38,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,785.568 1439.41,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,785.568 1418.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,767.359 1418.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,767.359 1428.9,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,749.151 1407.87,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,749.151 1418.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,749.151 1439.41,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,749.151 1418.38,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,730.942 1418.38,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,730.942 1428.9,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,712.734 1407.87,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,712.734 1418.38,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,712.734 1439.41,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,712.734 1418.38,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,694.525 1418.38,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,694.525 1428.9,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,840.194 1439.41,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,821.985 1428.9,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,821.985 1439.41,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,821.985 1460.43,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,821.985 1439.41,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,803.777 1439.41,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,803.777 1449.92,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,785.568 1428.9,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,785.568 1439.41,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,785.568 1460.43,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,785.568 1439.41,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,767.359 1439.41,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,767.359 1449.92,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,749.151 1428.9,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,749.151 1439.41,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,749.151 1460.43,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,749.151 1439.41,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,730.942 1439.41,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,730.942 1449.92,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,712.734 1428.9,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,712.734 1439.41,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,712.734 1460.43,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,712.734 1439.41,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,694.525 1439.41,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,694.525 1449.92,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,840.194 1460.43,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,821.985 1449.92,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,821.985 1460.43,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,821.985 1481.46,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,821.985 1460.43,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,803.777 1460.43,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,803.777 1470.95,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,785.568 1449.92,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,785.568 1460.43,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,785.568 1481.46,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,785.568 1460.43,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,767.359 1460.43,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,767.359 1470.95,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,749.151 1449.92,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,749.151 1460.43,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,749.151 1481.46,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,749.151 1460.43,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,730.942 1460.43,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,730.942 1470.95,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,712.734 1449.92,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,712.734 1460.43,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,712.734 1481.46,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,712.734 1460.43,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,694.525 1460.43,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,694.525 1470.95,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,840.194 1481.46,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,821.985 1470.95,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,821.985 1481.46,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,821.985 1502.48,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,821.985 1481.46,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,803.777 1481.46,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,803.777 1491.97,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,785.568 1470.95,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,785.568 1481.46,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,785.568 1502.48,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,785.568 1481.46,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,767.359 1481.46,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,767.359 1491.97,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,749.151 1470.95,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,749.151 1481.46,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,749.151 1502.48,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,749.151 1481.46,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,730.942 1481.46,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,730.942 1491.97,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,712.734 1470.95,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,712.734 1481.46,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,712.734 1502.48,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,712.734 1481.46,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,694.525 1481.46,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,694.525 1491.97,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,840.194 1502.48,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,821.985 1491.97,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,821.985 1502.48,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,821.985 1523.51,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,821.985 1502.48,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,803.777 1502.48,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,803.777 1513,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,785.568 1491.97,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,785.568 1502.48,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,785.568 1523.51,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,785.568 1502.48,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,767.359 1502.48,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,767.359 1513,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,749.151 1491.97,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,749.151 1502.48,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,749.151 1523.51,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,749.151 1502.48,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,730.942 1502.48,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,730.942 1513,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,712.734 1491.97,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,712.734 1502.48,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,712.734 1523.51,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,712.734 1502.48,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,694.525 1502.48,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,694.525 1513,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,840.194 1523.51,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,821.985 1513,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,821.985 1523.51,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,821.985 1544.54,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,821.985 1523.51,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,803.777 1523.51,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,803.777 1534.02,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,785.568 1513,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,785.568 1523.51,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,785.568 1544.54,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,785.568 1523.51,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,767.359 1523.51,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,767.359 1534.02,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,749.151 1513,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,749.151 1523.51,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,749.151 1544.54,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,749.151 1523.51,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,730.942 1523.51,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,730.942 1534.02,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,712.734 1513,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,712.734 1523.51,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,712.734 1544.54,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,712.734 1523.51,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,694.525 1523.51,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,694.525 1534.02,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,840.194 1544.54,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,821.985 1534.02,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,821.985 1544.54,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,821.985 1565.56,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,821.985 1544.54,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,803.777 1544.54,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,803.777 1555.05,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,785.568 1534.02,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,785.568 1544.54,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,785.568 1565.56,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,785.568 1544.54,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,767.359 1544.54,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,767.359 1555.05,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,749.151 1534.02,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,749.151 1544.54,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,749.151 1565.56,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,749.151 1544.54,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,730.942 1544.54,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,730.942 1555.05,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,712.734 1534.02,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,712.734 1544.54,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,712.734 1565.56,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,712.734 1544.54,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,694.525 1544.54,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,694.525 1555.05,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,840.194 1565.56,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,821.985 1555.05,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,821.985 1565.56,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,821.985 1586.59,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,821.985 1565.56,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,803.777 1565.56,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,803.777 1576.07,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,785.568 1555.05,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,785.568 1565.56,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,785.568 1586.59,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,785.568 1565.56,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,767.359 1565.56,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,767.359 1576.07,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,749.151 1555.05,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,749.151 1565.56,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,749.151 1586.59,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,749.151 1565.56,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,730.942 1565.56,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,730.942 1576.07,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,712.734 1555.05,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,712.734 1565.56,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,712.734 1586.59,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,712.734 1565.56,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,694.525 1565.56,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,694.525 1576.07,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,840.194 1586.59,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,821.985 1576.07,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,821.985 1586.59,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,821.985 1607.61,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,821.985 1586.59,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,803.777 1586.59,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,803.777 1597.1,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,785.568 1576.07,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,785.568 1586.59,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,785.568 1607.61,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,785.568 1586.59,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,767.359 1586.59,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,767.359 1597.1,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,749.151 1576.07,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,749.151 1586.59,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,749.151 1607.61,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,749.151 1586.59,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,730.942 1586.59,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,730.942 1597.1,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,712.734 1576.07,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,712.734 1586.59,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,712.734 1607.61,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,712.734 1586.59,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,694.525 1586.59,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,694.525 1597.1,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,676.316 1586.59,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,676.316 1607.61,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,840.194 1607.61,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,821.985 1597.1,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,821.985 1607.61,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,821.985 1628.64,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,821.985 1607.61,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,803.777 1607.61,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,803.777 1618.12,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,785.568 1597.1,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,785.568 1607.61,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,785.568 1628.64,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,785.568 1607.61,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,767.359 1607.61,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,767.359 1618.12,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,749.151 1597.1,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,749.151 1607.61,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,749.151 1628.64,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,749.151 1607.61,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,730.942 1607.61,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,730.942 1618.12,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,712.734 1597.1,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,712.734 1607.61,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,712.734 1628.64,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,712.734 1607.61,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,694.525 1607.61,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,694.525 1618.12,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,676.316 1597.1,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,676.316 1607.61,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,676.316 1628.64,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,840.194 1628.64,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,821.985 1618.12,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,821.985 1628.64,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,821.985 1649.66,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,821.985 1628.64,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,803.777 1628.64,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,803.777 1639.15,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,785.568 1618.12,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,785.568 1628.64,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,785.568 1649.66,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,785.568 1628.64,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,767.359 1628.64,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,767.359 1639.15,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,749.151 1618.12,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,749.151 1628.64,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,749.151 1649.66,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,749.151 1628.64,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,730.942 1628.64,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,730.942 1639.15,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,712.734 1618.12,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,712.734 1628.64,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,712.734 1649.66,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,712.734 1628.64,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,694.525 1628.64,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,694.525 1639.15,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,676.316 1618.12,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,676.316 1628.64,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,676.316 1649.66,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,858.402 1649.66,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,840.194 1649.66,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,840.194 1660.18,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,821.985 1639.15,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,821.985 1649.66,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,821.985 1670.69,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,821.985 1649.66,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,803.777 1649.66,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,803.777 1660.18,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,785.568 1639.15,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,785.568 1649.66,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,785.568 1670.69,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,785.568 1649.66,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,767.359 1649.66,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,767.359 1660.18,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,749.151 1639.15,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,749.151 1649.66,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,749.151 1670.69,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,749.151 1649.66,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,730.942 1649.66,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,730.942 1660.18,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,712.734 1639.15,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,712.734 1649.66,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,712.734 1670.69,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,712.734 1649.66,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,694.525 1649.66,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,694.525 1660.18,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,676.316 1639.15,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,676.316 1649.66,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,676.316 1670.69,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,858.402 1660.18,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,858.402 1670.69,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,840.194 1670.69,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,840.194 1681.2,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,821.985 1660.18,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,821.985 1670.69,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,821.985 1691.71,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,821.985 1670.69,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,803.777 1670.69,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,803.777 1681.2,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,785.568 1660.18,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,785.568 1670.69,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,785.568 1691.71,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,785.568 1670.69,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,767.359 1670.69,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,767.359 1681.2,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,749.151 1660.18,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,749.151 1670.69,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,749.151 1691.71,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,749.151 1670.69,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,730.942 1670.69,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,730.942 1681.2,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,712.734 1660.18,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,712.734 1670.69,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,712.734 1691.71,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,712.734 1670.69,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,694.525 1670.69,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,694.525 1681.2,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,676.316 1660.18,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,676.316 1670.69,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,676.316 1691.71,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,658.108 1681.2,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,858.402 1681.2,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,858.402 1712.74,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,858.402 1691.71,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,840.194 1691.71,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,840.194 1702.23,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,821.985 1681.2,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,821.985 1691.71,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,821.985 1712.74,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,821.985 1691.71,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,803.777 1691.71,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,803.777 1702.23,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,785.568 1681.2,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,785.568 1691.71,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,785.568 1712.74,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,785.568 1691.71,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,767.359 1691.71,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,767.359 1702.23,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,749.151 1681.2,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,749.151 1691.71,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,749.151 1712.74,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,749.151 1691.71,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,730.942 1691.71,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,730.942 1702.23,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,712.734 1681.2,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,712.734 1691.71,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,712.734 1712.74,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,712.734 1691.71,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,694.525 1691.71,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,694.525 1702.23,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,676.316 1681.2,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,676.316 1691.71,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,676.316 1712.74,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,676.316 1691.71,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,658.108 1691.71,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,658.108 1702.23,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,876.611 1712.74,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,858.402 1702.23,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,858.402 1712.74,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,858.402 1733.77,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,858.402 1712.74,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,840.194 1712.74,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,840.194 1723.25,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,821.985 1702.23,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,821.985 1712.74,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,821.985 1733.77,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,821.985 1712.74,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,803.777 1712.74,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,803.777 1723.25,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,785.568 1702.23,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,785.568 1712.74,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,785.568 1733.77,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,785.568 1712.74,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,767.359 1712.74,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,767.359 1723.25,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,749.151 1702.23,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,749.151 1712.74,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,749.151 1733.77,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,749.151 1712.74,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,730.942 1712.74,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,730.942 1723.25,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,712.734 1702.23,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,712.734 1712.74,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,712.734 1733.77,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,712.734 1712.74,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,694.525 1712.74,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,694.525 1723.25,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,676.316 1702.23,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,676.316 1712.74,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,676.316 1733.77,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,676.316 1712.74,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,658.108 1712.74,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,658.108 1723.25,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,876.611 1733.77,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,858.402 1723.25,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,858.402 1733.77,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,858.402 1754.79,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,858.402 1733.77,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,840.194 1733.77,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,840.194 1744.28,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,821.985 1723.25,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,821.985 1733.77,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,821.985 1754.79,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,821.985 1733.77,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,803.777 1733.77,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,803.777 1744.28,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,785.568 1723.25,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,785.568 1733.77,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,785.568 1754.79,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,785.568 1733.77,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,767.359 1733.77,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,767.359 1744.28,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,749.151 1723.25,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,749.151 1733.77,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,749.151 1754.79,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,749.151 1733.77,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,730.942 1733.77,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,730.942 1744.28,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,712.734 1723.25,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,712.734 1733.77,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,712.734 1754.79,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,712.734 1733.77,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,694.525 1733.77,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,694.525 1744.28,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,676.316 1723.25,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,676.316 1733.77,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,676.316 1754.79,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,676.316 1733.77,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,658.108 1733.77,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,658.108 1744.28,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,876.611 1754.79,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,858.402 1744.28,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,858.402 1754.79,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,858.402 1775.82,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,858.402 1754.79,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,840.194 1754.79,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,840.194 1765.3,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,821.985 1744.28,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,821.985 1754.79,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,821.985 1775.82,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,821.985 1754.79,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,803.777 1754.79,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,803.777 1765.3,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,785.568 1744.28,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,785.568 1754.79,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,785.568 1775.82,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,785.568 1754.79,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,767.359 1754.79,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,767.359 1765.3,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,749.151 1744.28,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,749.151 1754.79,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,749.151 1775.82,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,749.151 1754.79,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,730.942 1754.79,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,730.942 1765.3,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,712.734 1744.28,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,712.734 1754.79,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,712.734 1775.82,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,712.734 1754.79,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,694.525 1754.79,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,694.525 1765.3,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,676.316 1744.28,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,676.316 1754.79,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,676.316 1775.82,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,676.316 1754.79,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,658.108 1754.79,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,658.108 1765.3,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,876.611 1775.82,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,858.402 1765.3,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,858.402 1775.82,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,858.402 1796.84,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,858.402 1775.82,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,840.194 1775.82,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,840.194 1786.33,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,821.985 1765.3,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,821.985 1775.82,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,821.985 1796.84,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,821.985 1775.82,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,803.777 1775.82,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,803.777 1786.33,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,785.568 1765.3,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,785.568 1775.82,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,785.568 1796.84,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,785.568 1775.82,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,767.359 1775.82,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,767.359 1786.33,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,749.151 1765.3,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,749.151 1775.82,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,749.151 1796.84,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,749.151 1775.82,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,730.942 1775.82,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,730.942 1786.33,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,712.734 1765.3,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,712.734 1775.82,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,712.734 1796.84,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,712.734 1775.82,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,694.525 1775.82,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,694.525 1786.33,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,676.316 1765.3,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,676.316 1775.82,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,676.316 1796.84,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,676.316 1775.82,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,658.108 1775.82,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,658.108 1786.33,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,876.611 1796.84,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,858.402 1786.33,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,858.402 1796.84,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,858.402 1817.87,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,858.402 1796.84,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,840.194 1796.84,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,840.194 1807.35,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,821.985 1786.33,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,821.985 1796.84,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,821.985 1817.87,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,821.985 1796.84,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,803.777 1796.84,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,803.777 1807.35,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,785.568 1786.33,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,785.568 1796.84,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,785.568 1817.87,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,785.568 1796.84,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,767.359 1796.84,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,767.359 1807.35,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,749.151 1786.33,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,749.151 1796.84,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,749.151 1817.87,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,749.151 1796.84,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,730.942 1796.84,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,730.942 1807.35,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,712.734 1786.33,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,712.734 1796.84,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,712.734 1817.87,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,712.734 1796.84,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,694.525 1796.84,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,694.525 1807.35,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,676.316 1786.33,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,676.316 1796.84,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,676.316 1817.87,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,676.316 1796.84,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,658.108 1796.84,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,658.108 1807.35,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,876.611 1817.87,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,858.402 1807.35,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,858.402 1817.87,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,858.402 1838.89,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,858.402 1817.87,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,840.194 1817.87,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,840.194 1828.38,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,821.985 1807.35,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,821.985 1817.87,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,821.985 1838.89,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,821.985 1817.87,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,803.777 1817.87,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,803.777 1828.38,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,785.568 1807.35,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,785.568 1817.87,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,785.568 1838.89,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,785.568 1817.87,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,767.359 1817.87,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,767.359 1828.38,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,749.151 1807.35,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,749.151 1817.87,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,749.151 1838.89,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,749.151 1817.87,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,730.942 1817.87,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,730.942 1828.38,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,712.734 1807.35,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,712.734 1817.87,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,712.734 1838.89,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,712.734 1817.87,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,694.525 1817.87,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,694.525 1828.38,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,676.316 1807.35,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,676.316 1817.87,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,676.316 1838.89,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,676.316 1817.87,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,658.108 1817.87,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,658.108 1828.38,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,876.611 1838.89,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,858.402 1828.38,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,858.402 1838.89,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,858.402 1859.92,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,858.402 1838.89,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,840.194 1838.89,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,840.194 1849.41,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,821.985 1828.38,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,821.985 1838.89,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,821.985 1859.92,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,821.985 1838.89,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,803.777 1838.89,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,803.777 1849.41,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,785.568 1828.38,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,785.568 1838.89,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,785.568 1859.92,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,785.568 1838.89,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,767.359 1838.89,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,767.359 1849.41,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,749.151 1828.38,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,749.151 1838.89,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,749.151 1859.92,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,749.151 1838.89,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,730.942 1838.89,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,730.942 1849.41,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,712.734 1828.38,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,712.734 1838.89,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,712.734 1859.92,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,712.734 1838.89,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,694.525 1838.89,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,694.525 1849.41,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,676.316 1828.38,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,676.316 1838.89,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,676.316 1859.92,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,676.316 1838.89,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,658.108 1838.89,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,658.108 1849.41,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,876.611 1859.92,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,858.402 1849.41,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,858.402 1859.92,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,858.402 1880.94,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,858.402 1859.92,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,840.194 1859.92,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,840.194 1870.43,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,821.985 1849.41,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,821.985 1859.92,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,821.985 1880.94,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,821.985 1859.92,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,803.777 1859.92,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,803.777 1870.43,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,785.568 1849.41,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,785.568 1859.92,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,785.568 1880.94,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,785.568 1859.92,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,767.359 1859.92,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,767.359 1870.43,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,749.151 1849.41,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,749.151 1859.92,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,749.151 1880.94,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,749.151 1859.92,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,730.942 1859.92,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,730.942 1870.43,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,712.734 1849.41,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,712.734 1859.92,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,712.734 1880.94,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,712.734 1859.92,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,694.525 1859.92,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,694.525 1870.43,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,676.316 1849.41,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,676.316 1859.92,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,676.316 1880.94,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,676.316 1859.92,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,658.108 1859.92,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,658.108 1870.43,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,876.611 1880.94,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,858.402 1870.43,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,858.402 1880.94,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,858.402 1901.97,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,858.402 1880.94,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,840.194 1880.94,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,840.194 1891.46,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,821.985 1870.43,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,821.985 1880.94,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,821.985 1901.97,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,821.985 1880.94,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,803.777 1880.94,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,803.777 1891.46,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,785.568 1870.43,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,785.568 1880.94,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,785.568 1901.97,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,785.568 1880.94,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,767.359 1880.94,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,767.359 1891.46,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,749.151 1870.43,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,749.151 1880.94,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,749.151 1901.97,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,749.151 1880.94,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,730.942 1880.94,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,730.942 1891.46,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,712.734 1870.43,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,712.734 1880.94,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,712.734 1901.97,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,712.734 1880.94,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,694.525 1880.94,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,694.525 1891.46,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,676.316 1870.43,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,676.316 1880.94,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,676.316 1901.97,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,676.316 1880.94,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,658.108 1880.94,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,658.108 1891.46,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,876.611 1901.97,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,858.402 1891.46,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,858.402 1901.97,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,858.402 1922.99,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,858.402 1901.97,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,840.194 1901.97,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,840.194 1912.48,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,821.985 1891.46,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,821.985 1901.97,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,821.985 1922.99,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,821.985 1901.97,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,803.777 1901.97,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,803.777 1912.48,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,785.568 1891.46,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,785.568 1901.97,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,785.568 1922.99,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,785.568 1901.97,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,767.359 1901.97,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,767.359 1912.48,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,749.151 1891.46,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,749.151 1901.97,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,749.151 1922.99,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,749.151 1901.97,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,730.942 1901.97,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,730.942 1912.48,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,712.734 1891.46,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,712.734 1901.97,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,712.734 1922.99,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,712.734 1901.97,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,694.525 1901.97,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,694.525 1912.48,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,676.316 1891.46,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,676.316 1901.97,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,676.316 1922.99,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,676.316 1901.97,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,658.108 1901.97,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,658.108 1912.48,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,876.611 1922.99,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,858.402 1912.48,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,858.402 1922.99,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,858.402 1944.02,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,858.402 1922.99,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,840.194 1922.99,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,840.194 1933.51,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,821.985 1912.48,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,821.985 1922.99,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,821.985 1944.02,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,821.985 1922.99,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,803.777 1922.99,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,803.777 1933.51,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,785.568 1912.48,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,785.568 1922.99,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,785.568 1944.02,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,785.568 1922.99,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,767.359 1922.99,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,767.359 1933.51,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,749.151 1912.48,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,749.151 1922.99,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,749.151 1944.02,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,749.151 1922.99,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,730.942 1922.99,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,730.942 1933.51,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,712.734 1912.48,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,712.734 1922.99,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,712.734 1944.02,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,712.734 1922.99,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,694.525 1922.99,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,694.525 1933.51,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,676.316 1912.48,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,676.316 1922.99,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,676.316 1944.02,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,676.316 1922.99,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,658.108 1922.99,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,658.108 1933.51,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,876.611 1944.02,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,858.402 1933.51,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,858.402 1944.02,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,858.402 1965.05,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,858.402 1944.02,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,840.194 1944.02,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,840.194 1954.53,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,821.985 1933.51,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,821.985 1944.02,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,821.985 1965.05,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,821.985 1944.02,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,803.777 1944.02,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,803.777 1954.53,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,785.568 1933.51,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,785.568 1944.02,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,785.568 1965.05,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,785.568 1944.02,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,767.359 1944.02,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,767.359 1954.53,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,749.151 1933.51,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,749.151 1944.02,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,749.151 1965.05,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,749.151 1944.02,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,730.942 1944.02,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,730.942 1954.53,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,712.734 1933.51,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,712.734 1944.02,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,712.734 1965.05,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,712.734 1944.02,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,694.525 1944.02,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,694.525 1954.53,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,676.316 1933.51,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,676.316 1944.02,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,676.316 1965.05,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,676.316 1944.02,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,658.108 1944.02,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,658.108 1954.53,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,876.611 1965.05,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,858.402 1954.53,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,858.402 1965.05,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,858.402 1986.07,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,858.402 1965.05,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,840.194 1965.05,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,840.194 1975.56,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,821.985 1954.53,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,821.985 1965.05,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,821.985 1986.07,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,821.985 1965.05,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,803.777 1965.05,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,803.777 1975.56,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,785.568 1954.53,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,785.568 1965.05,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,785.568 1986.07,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,785.568 1965.05,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,767.359 1965.05,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,767.359 1975.56,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,749.151 1954.53,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,749.151 1965.05,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,749.151 1986.07,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,749.151 1965.05,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,730.942 1965.05,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,730.942 1975.56,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,712.734 1954.53,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,712.734 1965.05,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,712.734 1986.07,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,712.734 1965.05,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,694.525 1965.05,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,694.525 1975.56,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,676.316 1954.53,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,676.316 1965.05,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,676.316 1986.07,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,676.316 1965.05,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,658.108 1965.05,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,658.108 1975.56,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,876.611 1986.07,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,858.402 1975.56,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,858.402 1986.07,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,858.402 2007.1,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,858.402 1986.07,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,840.194 1986.07,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,840.194 1996.58,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,821.985 1975.56,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,821.985 1986.07,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,821.985 2007.1,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,821.985 1986.07,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,803.777 1986.07,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,803.777 1996.58,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,785.568 1975.56,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,785.568 1986.07,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,785.568 2007.1,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,785.568 1986.07,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,767.359 1986.07,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,767.359 1996.58,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,749.151 1975.56,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,749.151 1986.07,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,749.151 2007.1,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,749.151 1986.07,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,730.942 1986.07,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,730.942 1996.58,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,712.734 1975.56,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,712.734 1986.07,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,712.734 2007.1,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,712.734 1986.07,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,694.525 1986.07,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,694.525 1996.58,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,676.316 1975.56,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,676.316 1986.07,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,676.316 2007.1,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,676.316 1986.07,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,658.108 1986.07,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,658.108 1996.58,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,876.611 2007.1,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,858.402 1996.58,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,858.402 2007.1,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,858.402 2028.12,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,858.402 2007.1,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,840.194 2007.1,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,840.194 2017.61,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,821.985 1996.58,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,821.985 2007.1,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,821.985 2028.12,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,821.985 2007.1,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,803.777 2007.1,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,803.777 2017.61,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,785.568 1996.58,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,785.568 2007.1,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,785.568 2028.12,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,785.568 2007.1,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,767.359 2007.1,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,767.359 2017.61,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,749.151 1996.58,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,749.151 2007.1,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,749.151 2028.12,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,749.151 2007.1,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,730.942 2007.1,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,730.942 2017.61,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,712.734 1996.58,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,712.734 2007.1,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,712.734 2028.12,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,712.734 2007.1,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,694.525 2007.1,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,694.525 2017.61,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,676.316 1996.58,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,676.316 2007.1,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,676.316 2028.12,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,676.316 2007.1,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,658.108 2007.1,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,658.108 2017.61,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,876.611 2028.12,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,858.402 2017.61,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,858.402 2028.12,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,858.402 2049.15,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,858.402 2028.12,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,840.194 2028.12,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,840.194 2038.63,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,821.985 2017.61,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,821.985 2028.12,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,821.985 2049.15,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,821.985 2028.12,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,803.777 2028.12,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,803.777 2038.63,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,785.568 2017.61,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,785.568 2028.12,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,785.568 2049.15,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,785.568 2028.12,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,767.359 2028.12,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,767.359 2038.63,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,749.151 2017.61,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,749.151 2028.12,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,749.151 2049.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,749.151 2028.12,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,730.942 2028.12,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,730.942 2038.63,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,712.734 2017.61,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,712.734 2028.12,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,712.734 2049.15,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,712.734 2028.12,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,694.525 2028.12,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,694.525 2038.63,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,676.316 2017.61,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,676.316 2028.12,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,676.316 2049.15,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,676.316 2028.12,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,658.108 2028.12,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,658.108 2038.63,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,876.611 2049.15,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,858.402 2038.63,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,858.402 2049.15,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,858.402 2070.17,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,858.402 2049.15,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,840.194 2049.15,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,840.194 2059.66,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,821.985 2038.63,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,821.985 2049.15,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,821.985 2070.17,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,821.985 2049.15,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,803.777 2049.15,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,803.777 2059.66,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,785.568 2038.63,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,785.568 2049.15,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,785.568 2070.17,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,785.568 2049.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,767.359 2049.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,767.359 2059.66,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,749.151 2038.63,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,749.151 2049.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,749.151 2070.17,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,749.151 2049.15,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,730.942 2049.15,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,730.942 2059.66,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,712.734 2038.63,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,712.734 2049.15,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,712.734 2070.17,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,712.734 2049.15,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,694.525 2049.15,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,694.525 2059.66,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,676.316 2038.63,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,676.316 2049.15,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,676.316 2070.17,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,676.316 2049.15,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,658.108 2049.15,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,658.108 2059.66,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,876.611 2070.17,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,858.402 2059.66,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,858.402 2070.17,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,858.402 2091.2,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,858.402 2070.17,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,840.194 2070.17,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,840.194 2080.69,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,821.985 2059.66,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,821.985 2070.17,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,821.985 2091.2,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,821.985 2070.17,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,803.777 2070.17,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,803.777 2080.69,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,785.568 2059.66,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,785.568 2070.17,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,785.568 2091.2,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,785.568 2070.17,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,767.359 2070.17,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,767.359 2080.69,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,749.151 2059.66,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,749.151 2070.17,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,749.151 2091.2,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,749.151 2070.17,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,730.942 2070.17,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,730.942 2080.69,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,712.734 2059.66,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,712.734 2070.17,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,712.734 2091.2,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,712.734 2070.17,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,694.525 2070.17,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,694.525 2080.69,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,676.316 2059.66,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,676.316 2070.17,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,676.316 2091.2,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,676.316 2070.17,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,658.108 2070.17,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,658.108 2080.69,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,876.611 2091.2,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,858.402 2080.69,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,858.402 2091.2,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,858.402 2112.22,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,858.402 2091.2,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,840.194 2091.2,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,840.194 2101.71,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,821.985 2080.69,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,821.985 2091.2,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,821.985 2112.22,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,821.985 2091.2,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,803.777 2091.2,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,803.777 2101.71,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,785.568 2080.69,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,785.568 2091.2,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,785.568 2112.22,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,785.568 2091.2,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,767.359 2091.2,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,767.359 2101.71,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,749.151 2080.69,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,749.151 2091.2,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,749.151 2112.22,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,749.151 2091.2,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,730.942 2091.2,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,730.942 2101.71,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,712.734 2080.69,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,712.734 2091.2,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,712.734 2112.22,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,712.734 2091.2,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,694.525 2091.2,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,694.525 2101.71,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,676.316 2080.69,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,676.316 2091.2,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,676.316 2112.22,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,676.316 2091.2,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,658.108 2091.2,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,658.108 2101.71,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,876.611 2112.22,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,858.402 2101.71,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,858.402 2112.22,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,858.402 2133.25,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,858.402 2112.22,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,840.194 2112.22,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,840.194 2122.74,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,821.985 2101.71,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,821.985 2112.22,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,821.985 2133.25,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,821.985 2112.22,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,803.777 2112.22,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,803.777 2122.74,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,785.568 2101.71,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,785.568 2112.22,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,785.568 2133.25,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,785.568 2112.22,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,767.359 2112.22,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,767.359 2122.74,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,749.151 2101.71,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,749.151 2112.22,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,749.151 2133.25,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,749.151 2112.22,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,730.942 2112.22,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,730.942 2122.74,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,712.734 2101.71,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,712.734 2112.22,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,712.734 2133.25,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,712.734 2112.22,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,694.525 2112.22,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,694.525 2122.74,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,676.316 2101.71,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,676.316 2112.22,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,676.316 2133.25,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,676.316 2112.22,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,658.108 2112.22,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,658.108 2122.74,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,876.611 2133.25,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,858.402 2122.74,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,858.402 2133.25,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,858.402 2154.28,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,858.402 2133.25,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,840.194 2133.25,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,840.194 2143.76,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,821.985 2122.74,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,821.985 2133.25,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,821.985 2154.28,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,821.985 2133.25,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,803.777 2133.25,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,803.777 2143.76,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,785.568 2122.74,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,785.568 2133.25,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,785.568 2154.28,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,785.568 2133.25,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,767.359 2133.25,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,767.359 2143.76,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,749.151 2122.74,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,749.151 2133.25,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,749.151 2154.28,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,749.151 2133.25,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,730.942 2133.25,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,730.942 2143.76,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,712.734 2122.74,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,712.734 2133.25,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,712.734 2154.28,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,712.734 2133.25,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,694.525 2133.25,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,694.525 2143.76,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,676.316 2122.74,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,676.316 2133.25,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,676.316 2154.28,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,676.316 2133.25,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,658.108 2133.25,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,658.108 2143.76,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,876.611 2154.28,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,858.402 2143.76,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,858.402 2154.28,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,858.402 2175.3,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,858.402 2154.28,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,840.194 2154.28,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,840.194 2164.79,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,821.985 2143.76,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,821.985 2154.28,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,821.985 2175.3,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,821.985 2154.28,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,803.777 2154.28,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,803.777 2164.79,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,785.568 2143.76,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,785.568 2154.28,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,785.568 2175.3,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,785.568 2154.28,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,767.359 2154.28,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,767.359 2164.79,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,749.151 2143.76,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,749.151 2154.28,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,749.151 2175.3,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,749.151 2154.28,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,730.942 2154.28,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,730.942 2164.79,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,712.734 2143.76,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,712.734 2154.28,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,712.734 2175.3,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,712.734 2154.28,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,694.525 2154.28,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,694.525 2164.79,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,676.316 2143.76,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,676.316 2154.28,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,676.316 2175.3,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,676.316 2154.28,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,658.108 2154.28,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,658.108 2164.79,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,876.611 2175.3,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,858.402 2164.79,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,858.402 2175.3,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,858.402 2196.33,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,858.402 2175.3,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,840.194 2175.3,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,840.194 2185.81,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,821.985 2164.79,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,821.985 2175.3,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,821.985 2196.33,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,821.985 2175.3,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,803.777 2175.3,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,803.777 2185.81,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,785.568 2164.79,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,785.568 2175.3,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,785.568 2196.33,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,785.568 2175.3,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,767.359 2175.3,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,767.359 2185.81,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,749.151 2164.79,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,749.151 2175.3,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,749.151 2196.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,749.151 2175.3,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,730.942 2175.3,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,730.942 2185.81,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,712.734 2164.79,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,712.734 2175.3,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,712.734 2196.33,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,712.734 2175.3,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,694.525 2175.3,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,694.525 2185.81,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,676.316 2164.79,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,676.316 2175.3,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,676.316 2196.33,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,676.316 2175.3,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,658.108 2175.3,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,658.108 2185.81,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,876.611 2196.33,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,858.402 2185.81,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,858.402 2196.33,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,858.402 2217.35,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,858.402 2196.33,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,840.194 2196.33,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,840.194 2206.84,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,821.985 2185.81,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,821.985 2196.33,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,821.985 2217.35,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,821.985 2196.33,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,803.777 2196.33,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,803.777 2206.84,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,785.568 2185.81,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,785.568 2196.33,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,785.568 2217.35,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,785.568 2196.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,767.359 2196.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,767.359 2206.84,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,749.151 2185.81,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,749.151 2196.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,749.151 2217.35,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,749.151 2196.33,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,730.942 2196.33,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,730.942 2206.84,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,712.734 2185.81,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,712.734 2196.33,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,712.734 2217.35,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,712.734 2196.33,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,694.525 2196.33,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,694.525 2206.84,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,676.316 2185.81,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,676.316 2196.33,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,676.316 2217.35,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,676.316 2196.33,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,658.108 2196.33,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,658.108 2206.84,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,876.611 2217.35,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,858.402 2206.84,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,858.402 2217.35,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,858.402 2238.38,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,858.402 2217.35,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,840.194 2217.35,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,840.194 2227.86,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,821.985 2206.84,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,821.985 2217.35,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,821.985 2238.38,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,821.985 2217.35,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,803.777 2217.35,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,803.777 2227.86,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,785.568 2206.84,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,785.568 2217.35,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,785.568 2238.38,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,785.568 2217.35,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,767.359 2217.35,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,767.359 2227.86,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,749.151 2206.84,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,749.151 2217.35,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,749.151 2238.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,749.151 2217.35,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,730.942 2217.35,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,730.942 2227.86,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,712.734 2206.84,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,712.734 2217.35,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,712.734 2238.38,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,712.734 2217.35,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,694.525 2217.35,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,694.525 2227.86,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,676.316 2206.84,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,676.316 2217.35,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,676.316 2238.38,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,676.316 2217.35,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,658.108 2217.35,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,658.108 2227.86,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,876.611 2238.38,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,858.402 2227.86,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,858.402 2238.38,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,858.402 2259.4,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,858.402 2238.38,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,840.194 2238.38,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,840.194 2248.89,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,821.985 2227.86,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,821.985 2238.38,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,821.985 2259.4,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,821.985 2238.38,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,803.777 2238.38,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,803.777 2248.89,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,785.568 2227.86,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,785.568 2238.38,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,785.568 2259.4,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,785.568 2238.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,767.359 2238.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,767.359 2248.89,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,749.151 2227.86,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,749.151 2238.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,749.151 2259.4,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,749.151 2238.38,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,730.942 2238.38,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,730.942 2248.89,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,712.734 2227.86,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,712.734 2238.38,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,712.734 2259.4,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,712.734 2238.38,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,694.525 2238.38,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,694.525 2248.89,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,676.316 2227.86,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,676.316 2238.38,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,676.316 2259.4,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,676.316 2238.38,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,658.108 2238.38,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,658.108 2248.89,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,876.611 2259.4,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,858.402 2248.89,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,858.402 2259.4,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,858.402 2280.43,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,858.402 2259.4,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,840.194 2259.4,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,840.194 2269.92,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,821.985 2248.89,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,821.985 2259.4,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,821.985 2280.43,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,821.985 2259.4,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,803.777 2259.4,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,803.777 2269.92,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,785.568 2248.89,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,785.568 2259.4,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,785.568 2280.43,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,785.568 2259.4,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,767.359 2259.4,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,767.359 2269.92,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,749.151 2248.89,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,749.151 2259.4,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,749.151 2280.43,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,749.151 2259.4,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,730.942 2259.4,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,730.942 2269.92,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,712.734 2248.89,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,712.734 2259.4,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,712.734 2280.43,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,712.734 2259.4,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,694.525 2259.4,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,694.525 2269.92,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,676.316 2248.89,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,676.316 2259.4,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,676.316 2280.43,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,676.316 2259.4,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,658.108 2259.4,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,658.108 2269.92,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,858.402 2269.92,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,858.402 2280.43,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,858.402 2280.43,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,821.985 2269.92,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,821.985 2280.43,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,821.985 2280.43,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,785.568 2269.92,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,785.568 2280.43,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,785.568 2280.43,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,749.151 2269.92,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,749.151 2280.43,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,749.151 2280.43,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,712.734 2269.92,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,712.734 2280.43,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,712.734 2280.43,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,676.316 2269.92,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,676.316 2280.43,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2102)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,676.316 2280.43,658.108 \n", " \"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"240.955\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"230.442\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"240.955\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"230.442\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"240.955\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"230.442\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"240.955\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"230.442\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"240.955\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"230.442\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"240.955\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"230.442\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"240.955\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"261.98\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"251.467\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"261.98\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"251.467\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"261.98\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"251.467\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"261.98\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"251.467\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"261.98\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"251.467\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"261.98\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"251.467\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"261.98\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"283.006\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"272.493\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"283.006\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"272.493\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"283.006\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"272.493\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"283.006\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"272.493\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"283.006\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"272.493\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"283.006\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"272.493\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"283.006\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"304.031\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"293.518\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"304.031\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"293.518\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"304.031\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"293.518\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"304.031\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"293.518\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"304.031\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"293.518\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"304.031\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"293.518\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"304.031\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"325.057\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"314.544\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"325.057\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"314.544\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"325.057\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"314.544\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"325.057\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"314.544\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"325.057\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"314.544\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"325.057\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"314.544\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"325.057\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"346.082\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"335.569\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"346.082\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"335.569\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"346.082\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"335.569\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"346.082\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"335.569\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"346.082\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"335.569\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"346.082\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"335.569\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"346.082\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"367.108\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"356.595\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"367.108\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"356.595\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"367.108\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"356.595\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"367.108\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"356.595\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"367.108\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"356.595\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"367.108\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"356.595\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"367.108\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"388.133\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"377.62\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"388.133\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"377.62\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"388.133\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"377.62\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"388.133\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"377.62\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"388.133\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"377.62\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"388.133\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"377.62\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"388.133\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"409.159\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"398.646\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"409.159\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"398.646\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"409.159\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"398.646\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"409.159\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"398.646\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"409.159\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"398.646\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"409.159\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"398.646\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"409.159\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"430.184\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"419.671\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"430.184\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"419.671\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"430.184\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"419.671\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"430.184\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"419.671\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"430.184\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"419.671\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"430.184\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"419.671\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"430.184\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"451.21\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"440.697\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"451.21\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"440.697\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"451.21\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"440.697\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"451.21\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"440.697\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"451.21\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"440.697\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"451.21\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"440.697\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"451.21\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"472.235\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"461.722\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"472.235\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"461.722\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"472.235\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"461.722\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"472.235\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"461.722\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"472.235\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"461.722\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"472.235\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"461.722\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"472.235\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"493.261\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"482.748\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"493.261\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"482.748\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"493.261\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"482.748\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"493.261\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"482.748\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"493.261\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"482.748\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"493.261\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"482.748\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"493.261\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"514.286\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"503.773\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"514.286\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"503.773\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"514.286\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"503.773\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"514.286\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"503.773\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"514.286\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"503.773\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"514.286\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"503.773\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"514.286\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"535.312\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"524.799\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"535.312\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"524.799\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"535.312\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"524.799\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"535.312\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"524.799\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"535.312\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"524.799\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"535.312\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"524.799\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"535.312\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"556.337\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"545.824\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"556.337\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"545.824\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"556.337\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"545.824\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"556.337\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"545.824\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"556.337\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"545.824\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"556.337\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"545.824\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"556.337\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"577.363\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"566.85\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"577.363\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"566.85\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"577.363\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"566.85\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"577.363\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"566.85\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"577.363\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"566.85\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"577.363\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"566.85\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"577.363\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"598.388\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"587.875\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"598.388\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"587.875\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"598.388\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"587.875\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"598.388\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"587.875\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"598.388\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"587.875\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"598.388\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"587.875\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"598.388\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"619.414\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"608.901\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"619.414\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"608.901\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"619.414\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"608.901\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"619.414\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"608.901\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"619.414\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"608.901\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"619.414\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"608.901\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"619.414\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"640.439\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"629.926\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"640.439\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"629.926\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"640.439\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"629.926\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"640.439\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"629.926\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"640.439\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"629.926\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"640.439\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"629.926\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"640.439\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"661.465\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"650.952\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"661.465\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"650.952\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"661.465\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"650.952\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"661.465\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"650.952\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"661.465\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"650.952\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"661.465\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"650.952\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"661.465\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"682.49\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"671.977\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"682.49\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"671.977\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"682.49\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"671.977\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"682.49\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"671.977\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"682.49\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"671.977\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"682.49\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"671.977\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"682.49\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"703.516\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"693.003\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"703.516\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"693.003\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"703.516\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"693.003\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"703.516\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"693.003\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"703.516\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"693.003\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"703.516\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"693.003\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"703.516\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"724.541\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"714.028\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"724.541\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"714.028\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"724.541\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"714.028\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"724.541\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"714.028\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"724.541\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"714.028\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"724.541\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"714.028\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"724.541\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"745.567\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"735.054\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"745.567\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"735.054\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"745.567\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"735.054\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"745.567\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"735.054\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"745.567\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"735.054\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"745.567\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"735.054\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"745.567\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"766.592\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"756.079\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"766.592\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"756.079\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"766.592\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"756.079\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"766.592\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"756.079\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"766.592\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"756.079\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"766.592\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"756.079\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"766.592\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"787.618\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"777.105\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"787.618\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"777.105\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"787.618\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"777.105\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"787.618\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"777.105\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"787.618\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"777.105\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"787.618\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"777.105\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"787.618\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"808.643\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"798.13\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"808.643\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"798.13\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"808.643\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"798.13\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"808.643\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"798.13\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"808.643\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"798.13\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"808.643\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"798.13\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"808.643\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"819.156\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"829.669\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"819.156\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"829.669\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"819.156\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"829.669\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"819.156\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"829.669\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"819.156\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"829.669\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"819.156\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"829.669\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"840.181\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"850.694\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"840.181\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"850.694\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"840.181\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"850.694\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"840.181\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"850.694\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"840.181\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"850.694\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"840.181\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"861.207\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"871.72\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"861.207\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"871.72\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"861.207\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"871.72\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"861.207\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"871.72\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"861.207\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"871.72\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"861.207\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"892.745\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"882.232\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"892.745\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"882.232\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"892.745\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"882.232\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"892.745\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"882.232\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"892.745\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"882.232\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"913.771\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"903.258\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"913.771\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"903.258\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"913.771\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"903.258\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"913.771\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"903.258\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"913.771\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"903.258\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"934.796\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"924.283\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"934.796\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"924.283\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"934.796\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"924.283\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"934.796\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"924.283\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"934.796\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"924.283\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"955.822\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"945.309\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"955.822\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"945.309\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"955.822\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"945.309\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"955.822\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"945.309\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"955.822\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"976.847\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"966.334\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"976.847\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"966.334\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"976.847\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"966.334\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"976.847\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"966.334\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"976.847\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"997.873\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"987.36\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"997.873\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"987.36\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"997.873\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"987.36\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"997.873\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"987.36\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"997.873\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1018.9\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1008.39\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1018.9\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1008.39\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1018.9\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1008.39\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1018.9\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1008.39\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1018.9\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1039.92\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1029.41\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1039.92\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1029.41\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1039.92\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1029.41\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1039.92\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1029.41\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1039.92\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1060.95\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1050.44\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1060.95\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1050.44\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1060.95\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1050.44\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1060.95\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1050.44\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1060.95\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1081.97\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1071.46\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1081.97\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1071.46\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1081.97\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1071.46\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1081.97\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1071.46\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1081.97\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1103\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1092.49\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1103\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1092.49\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1103\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1092.49\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1103\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1092.49\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1103\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1124.03\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1113.51\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1124.03\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1113.51\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1124.03\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1113.51\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1124.03\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1113.51\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1124.03\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1145.05\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1134.54\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1145.05\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1134.54\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1145.05\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1134.54\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1145.05\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1134.54\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1145.05\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1166.08\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1155.56\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1166.08\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1155.56\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1166.08\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1155.56\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1166.08\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1155.56\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1166.08\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1187.1\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1176.59\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1187.1\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1176.59\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1187.1\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1176.59\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1187.1\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1176.59\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1187.1\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1208.13\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1197.61\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1208.13\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1197.61\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1208.13\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1197.61\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1208.13\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1197.61\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1208.13\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1229.15\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1218.64\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1229.15\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1218.64\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1229.15\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1218.64\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1229.15\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1218.64\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1229.15\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1250.18\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1239.67\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1250.18\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1239.67\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1250.18\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1239.67\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1250.18\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1239.67\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1250.18\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1271.2\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1260.69\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1271.2\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1260.69\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1271.2\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1260.69\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1271.2\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1260.69\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1271.2\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1292.23\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1281.72\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1292.23\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1281.72\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1292.23\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1281.72\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1292.23\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1281.72\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1292.23\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1313.26\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1302.74\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1313.26\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1302.74\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1313.26\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1302.74\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1313.26\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1302.74\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1313.26\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1334.28\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1323.77\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1334.28\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1323.77\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1334.28\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1323.77\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1334.28\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1323.77\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1334.28\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1355.31\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1344.79\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1355.31\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1344.79\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1355.31\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1344.79\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1355.31\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1344.79\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1355.31\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1376.33\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1365.82\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1376.33\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1365.82\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1376.33\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1365.82\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1376.33\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1365.82\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1376.33\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1397.36\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1386.84\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1397.36\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1386.84\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1397.36\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1386.84\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1397.36\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1386.84\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1397.36\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1418.38\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1407.87\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1418.38\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1407.87\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1418.38\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1407.87\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1418.38\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1407.87\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1418.38\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1439.41\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1428.9\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1439.41\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1428.9\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1439.41\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1428.9\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1439.41\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1428.9\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1439.41\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1460.43\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1449.92\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1460.43\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1449.92\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1460.43\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1449.92\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1460.43\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1449.92\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1460.43\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1481.46\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1470.95\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1481.46\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1470.95\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1481.46\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1470.95\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1481.46\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1470.95\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1481.46\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1502.48\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1491.97\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1502.48\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1491.97\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1502.48\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1491.97\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1502.48\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1491.97\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1502.48\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1523.51\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1513\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1523.51\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1513\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1523.51\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1513\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1523.51\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1513\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1523.51\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1544.54\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1534.02\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1544.54\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1534.02\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1544.54\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1534.02\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1544.54\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1534.02\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1544.54\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1565.56\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1555.05\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1565.56\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1555.05\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1565.56\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1555.05\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1565.56\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1555.05\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1565.56\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1586.59\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1576.07\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1586.59\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1576.07\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1586.59\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1576.07\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1586.59\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1576.07\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1586.59\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1607.61\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1597.1\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1607.61\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1597.1\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1607.61\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1597.1\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1607.61\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1597.1\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1607.61\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1597.1\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1628.64\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1618.12\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1628.64\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1618.12\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1628.64\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1618.12\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1628.64\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1618.12\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1628.64\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1618.12\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1649.66\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1639.15\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1649.66\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1639.15\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1649.66\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1639.15\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1649.66\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1639.15\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1649.66\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1639.15\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1660.18\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1670.69\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1660.18\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1670.69\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1660.18\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1670.69\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1660.18\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1670.69\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1660.18\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1670.69\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1660.18\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1681.2\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1691.71\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1681.2\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1691.71\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1681.2\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1691.71\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1681.2\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1691.71\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1681.2\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1691.71\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1681.2\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1691.71\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1712.74\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1702.23\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1712.74\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1702.23\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1712.74\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1702.23\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1712.74\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1702.23\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1712.74\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1702.23\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1712.74\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1702.23\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1712.74\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1733.77\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1723.25\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1733.77\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1723.25\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1733.77\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1723.25\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1733.77\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1723.25\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1733.77\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1723.25\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1733.77\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1723.25\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1733.77\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1754.79\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1744.28\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1754.79\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1744.28\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1754.79\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1744.28\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1754.79\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1744.28\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1754.79\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1744.28\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1754.79\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1744.28\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1754.79\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1775.82\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1765.3\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1775.82\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1765.3\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1775.82\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1765.3\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1775.82\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1765.3\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1775.82\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1765.3\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1775.82\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1765.3\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1775.82\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1796.84\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1786.33\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1796.84\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1786.33\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1796.84\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1786.33\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1796.84\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1786.33\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1796.84\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1786.33\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1796.84\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1786.33\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1796.84\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1817.87\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1807.35\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1817.87\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1807.35\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1817.87\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1807.35\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1817.87\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1807.35\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1817.87\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1807.35\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1817.87\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1807.35\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1817.87\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1838.89\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1828.38\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1838.89\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1828.38\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1838.89\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1828.38\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1838.89\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1828.38\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1838.89\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1828.38\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1838.89\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1828.38\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1838.89\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1859.92\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1849.41\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1859.92\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1849.41\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1859.92\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1849.41\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1859.92\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1849.41\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1859.92\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1849.41\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1859.92\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1849.41\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1859.92\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1880.94\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1870.43\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1880.94\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1870.43\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1880.94\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1870.43\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1880.94\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1870.43\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1880.94\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1870.43\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1880.94\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1870.43\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1880.94\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1901.97\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1891.46\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1901.97\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1891.46\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1901.97\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1891.46\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1901.97\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1891.46\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1901.97\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1891.46\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1901.97\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1891.46\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1901.97\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1922.99\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1912.48\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1922.99\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1912.48\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1922.99\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1912.48\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1922.99\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1912.48\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1922.99\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1912.48\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1922.99\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1912.48\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1922.99\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1944.02\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1933.51\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1944.02\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1933.51\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1944.02\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1933.51\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1944.02\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1933.51\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1944.02\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1933.51\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1944.02\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1933.51\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1944.02\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1965.05\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1954.53\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1965.05\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1954.53\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1965.05\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1954.53\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1965.05\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1954.53\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1965.05\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1954.53\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1965.05\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1954.53\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1965.05\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1986.07\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1975.56\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1986.07\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1975.56\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1986.07\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1975.56\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1986.07\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1975.56\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1986.07\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1975.56\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1986.07\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1975.56\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1986.07\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2007.1\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1996.58\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2007.1\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1996.58\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2007.1\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1996.58\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2007.1\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1996.58\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2007.1\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1996.58\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2007.1\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"1996.58\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2007.1\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2028.12\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2017.61\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2028.12\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2017.61\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2028.12\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2017.61\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2028.12\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2017.61\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2028.12\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2017.61\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2028.12\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2017.61\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2028.12\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2049.15\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2038.63\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2049.15\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2038.63\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2049.15\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2038.63\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2049.15\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2038.63\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2049.15\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2038.63\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2049.15\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2038.63\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2049.15\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2070.17\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2059.66\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2070.17\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2059.66\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2070.17\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2059.66\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2070.17\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2059.66\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2070.17\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2059.66\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2070.17\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2059.66\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2070.17\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2091.2\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2080.69\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2091.2\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2080.69\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2091.2\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2080.69\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2091.2\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2080.69\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2091.2\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2080.69\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2091.2\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2080.69\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2091.2\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2112.22\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2101.71\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2112.22\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2101.71\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2112.22\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2101.71\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2112.22\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2101.71\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2112.22\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2101.71\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2112.22\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2101.71\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2112.22\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2133.25\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2122.74\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2133.25\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2122.74\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2133.25\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2122.74\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2133.25\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2122.74\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2133.25\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2122.74\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2133.25\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2122.74\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2133.25\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2154.28\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2143.76\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2154.28\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2143.76\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2154.28\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2143.76\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2154.28\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2143.76\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2154.28\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2143.76\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2154.28\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2143.76\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2154.28\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2175.3\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2164.79\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2175.3\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2164.79\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2175.3\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2164.79\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2175.3\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2164.79\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2175.3\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2164.79\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2175.3\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2164.79\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2175.3\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2196.33\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2185.81\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2196.33\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2185.81\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2196.33\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2185.81\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2196.33\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2185.81\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2196.33\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2185.81\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2196.33\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2185.81\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2196.33\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2217.35\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2206.84\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2217.35\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2206.84\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2217.35\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2206.84\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2217.35\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2206.84\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2217.35\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2206.84\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2217.35\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2206.84\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2217.35\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2238.38\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2227.86\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2238.38\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2227.86\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2238.38\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2227.86\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2238.38\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2227.86\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2238.38\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2227.86\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2238.38\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2227.86\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2238.38\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2259.4\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2248.89\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2259.4\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2248.89\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2259.4\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2248.89\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2259.4\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2248.89\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2259.4\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2248.89\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2259.4\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2248.89\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2259.4\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2280.43\" cy=\"876.611\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2269.92\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2280.43\" cy=\"840.194\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2269.92\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2280.43\" cy=\"803.777\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2269.92\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2280.43\" cy=\"767.359\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2269.92\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2280.43\" cy=\"730.942\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2269.92\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2280.43\" cy=\"694.525\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2269.92\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2280.43\" cy=\"658.108\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2290.94\" cy=\"858.402\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2290.94\" cy=\"821.985\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2290.94\" cy=\"785.568\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2290.94\" cy=\"749.151\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2290.94\" cy=\"712.734\" r=\"14\" fill=\"#6b9e32\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"3.2\"/>\n", "<circle clip-path=\"url(#clip2102)\" cx=\"2290.94\" cy=\"676.316\" r=\"14\" fill=\"#6b9e32\" 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=\"clip2500\">\n", " <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip2500)\" 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=\"clip2501\">\n", " <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip2500)\" d=\"\n", "M168.627 1487.47 L2352.76 1487.47 L2352.76 47.2441 L168.627 47.2441 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip2502\">\n", " <rect x=\"168\" y=\"47\" width=\"2185\" height=\"1441\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 419.671,1487.47 419.671,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 840.181,1487.47 840.181,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1260.69,1487.47 1260.69,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1681.2,1487.47 1681.2,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2101.71,1487.47 2101.71,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,1267.64 2352.76,1267.64 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,1015.34 2352.76,1015.34 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,763.033 2352.76,763.033 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,510.727 2352.76,510.727 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,258.421 2352.76,258.421 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,1487.47 2352.76,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,1487.47 168.627,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,1487.47 419.671,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,1487.47 840.181,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,1487.47 1260.69,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,1487.47 1681.2,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,1487.47 2101.71,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,1267.64 194.836,1267.64 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,1015.34 194.836,1015.34 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,763.033 194.836,763.033 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,510.727 194.836,510.727 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,258.421 194.836,258.421 \n", " \"/>\n", "<g clip-path=\"url(#clip2500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 419.671, 1541.47)\" x=\"419.671\" y=\"1541.47\">-100</text>\n", "</g>\n", "<g clip-path=\"url(#clip2500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 840.181, 1541.47)\" x=\"840.181\" y=\"1541.47\">-50</text>\n", "</g>\n", "<g clip-path=\"url(#clip2500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1260.69, 1541.47)\" x=\"1260.69\" y=\"1541.47\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip2500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1681.2, 1541.47)\" x=\"1681.2\" y=\"1541.47\">50</text>\n", "</g>\n", "<g clip-path=\"url(#clip2500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 2101.71, 1541.47)\" x=\"2101.71\" y=\"1541.47\">100</text>\n", "</g>\n", "<g clip-path=\"url(#clip2500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 1285.14)\" x=\"144.627\" y=\"1285.14\">-60</text>\n", "</g>\n", "<g clip-path=\"url(#clip2500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 1032.84)\" x=\"144.627\" y=\"1032.84\">-30</text>\n", "</g>\n", "<g clip-path=\"url(#clip2500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 780.533)\" x=\"144.627\" y=\"780.533\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip2500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 528.227)\" x=\"144.627\" y=\"528.227\">30</text>\n", "</g>\n", "<g clip-path=\"url(#clip2500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 275.921)\" x=\"144.627\" y=\"275.921\">60</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.442,858.402 240.955,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 240.955,840.194 230.442,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.442,821.985 240.955,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 240.955,803.777 230.442,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.442,785.568 240.955,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 240.955,767.359 230.442,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.442,749.151 240.955,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 240.955,730.942 230.442,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.442,712.734 240.955,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 240.955,694.525 230.442,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.442,676.316 240.955,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 240.955,658.108 230.442,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,876.611 240.955,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,858.402 230.442,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,858.402 240.955,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,858.402 261.98,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,858.402 240.955,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,840.194 240.955,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,840.194 251.467,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,821.985 230.442,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,821.985 240.955,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,821.985 261.98,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,821.985 240.955,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,803.777 240.955,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,803.777 251.467,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,785.568 230.442,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,785.568 240.955,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,785.568 261.98,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,785.568 240.955,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,767.359 240.955,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,767.359 251.467,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,749.151 230.442,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,749.151 240.955,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,749.151 261.98,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,749.151 240.955,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,730.942 240.955,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,730.942 251.467,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,712.734 230.442,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,712.734 240.955,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,712.734 261.98,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,712.734 240.955,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,694.525 240.955,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,694.525 251.467,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,676.316 230.442,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,676.316 240.955,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,676.316 261.98,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,676.316 240.955,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,658.108 240.955,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,658.108 251.467,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,876.611 261.98,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,858.402 251.467,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,858.402 261.98,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,858.402 283.006,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,858.402 261.98,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,840.194 261.98,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,840.194 272.493,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,821.985 251.467,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,821.985 261.98,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,821.985 283.006,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,821.985 261.98,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,803.777 261.98,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,803.777 272.493,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,785.568 251.467,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,785.568 261.98,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,785.568 283.006,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,785.568 261.98,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,767.359 261.98,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,767.359 272.493,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,749.151 251.467,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,749.151 261.98,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,749.151 283.006,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,749.151 261.98,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,730.942 261.98,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,730.942 272.493,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,712.734 251.467,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,712.734 261.98,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,712.734 283.006,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,712.734 261.98,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,694.525 261.98,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,694.525 272.493,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,676.316 251.467,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,676.316 261.98,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,676.316 283.006,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,676.316 261.98,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,658.108 261.98,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,658.108 272.493,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,876.611 283.006,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,858.402 272.493,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,858.402 283.006,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,858.402 304.031,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,858.402 283.006,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,840.194 283.006,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,840.194 293.518,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,821.985 272.493,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,821.985 283.006,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,821.985 304.031,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,821.985 283.006,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,803.777 283.006,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,803.777 293.518,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,785.568 272.493,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,785.568 283.006,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,785.568 304.031,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,785.568 283.006,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,767.359 283.006,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,767.359 293.518,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,749.151 272.493,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,749.151 283.006,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,749.151 304.031,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,749.151 283.006,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,730.942 283.006,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,730.942 293.518,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,712.734 272.493,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,712.734 283.006,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,712.734 304.031,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,712.734 283.006,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,694.525 283.006,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,694.525 293.518,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,676.316 272.493,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,676.316 283.006,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,676.316 304.031,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,676.316 283.006,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,658.108 283.006,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,658.108 293.518,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,876.611 304.031,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,858.402 293.518,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,858.402 304.031,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,858.402 325.057,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,858.402 304.031,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,840.194 304.031,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,840.194 314.544,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,821.985 293.518,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,821.985 304.031,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,821.985 325.057,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,821.985 304.031,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,803.777 304.031,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,803.777 314.544,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,785.568 293.518,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,785.568 304.031,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,785.568 325.057,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,785.568 304.031,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,767.359 304.031,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,767.359 314.544,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,749.151 293.518,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,749.151 304.031,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,749.151 325.057,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,749.151 304.031,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,730.942 304.031,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,730.942 314.544,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,712.734 293.518,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,712.734 304.031,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,712.734 325.057,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,712.734 304.031,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,694.525 304.031,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,694.525 314.544,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,676.316 293.518,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,676.316 304.031,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,676.316 325.057,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,676.316 304.031,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,658.108 304.031,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,658.108 314.544,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,876.611 325.057,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,858.402 314.544,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,858.402 325.057,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,858.402 346.082,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,858.402 325.057,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,840.194 325.057,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,840.194 335.569,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,821.985 314.544,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,821.985 325.057,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,821.985 346.082,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,821.985 325.057,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,803.777 325.057,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,803.777 335.569,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,785.568 314.544,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,785.568 325.057,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,785.568 346.082,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,785.568 325.057,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,767.359 325.057,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,767.359 335.569,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,749.151 314.544,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,749.151 325.057,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,749.151 346.082,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,749.151 325.057,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,730.942 325.057,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,730.942 335.569,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,712.734 314.544,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,712.734 325.057,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,712.734 346.082,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,712.734 325.057,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,694.525 325.057,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,694.525 335.569,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,676.316 314.544,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,676.316 325.057,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,676.316 346.082,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,676.316 325.057,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,658.108 325.057,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,658.108 335.569,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,876.611 346.082,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,858.402 335.569,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,858.402 346.082,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,858.402 367.108,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,858.402 346.082,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,840.194 346.082,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,840.194 356.595,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,821.985 335.569,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,821.985 346.082,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,821.985 367.108,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,821.985 346.082,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,803.777 346.082,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,803.777 356.595,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,785.568 335.569,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,785.568 346.082,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,785.568 367.108,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,785.568 346.082,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,767.359 346.082,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,767.359 356.595,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,749.151 335.569,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,749.151 346.082,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,749.151 367.108,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,749.151 346.082,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,730.942 346.082,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,730.942 356.595,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,712.734 335.569,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,712.734 346.082,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,712.734 367.108,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,712.734 346.082,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,694.525 346.082,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,694.525 356.595,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,676.316 335.569,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,676.316 346.082,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,676.316 367.108,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,676.316 346.082,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,658.108 346.082,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,658.108 356.595,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,876.611 367.108,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,858.402 356.595,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,858.402 367.108,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,858.402 388.133,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,858.402 367.108,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,840.194 367.108,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,840.194 377.62,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,821.985 356.595,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,821.985 367.108,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,821.985 388.133,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,821.985 367.108,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,803.777 367.108,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,803.777 377.62,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,785.568 356.595,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,785.568 367.108,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,785.568 388.133,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,785.568 367.108,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,767.359 367.108,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,767.359 377.62,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,749.151 356.595,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,749.151 367.108,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,749.151 388.133,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,749.151 367.108,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,730.942 367.108,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,730.942 377.62,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,712.734 356.595,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,712.734 367.108,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,712.734 388.133,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,712.734 367.108,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,694.525 367.108,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,694.525 377.62,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,676.316 356.595,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,676.316 367.108,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,676.316 388.133,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,676.316 367.108,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,658.108 367.108,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,658.108 377.62,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,876.611 388.133,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,858.402 377.62,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,858.402 388.133,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,858.402 409.159,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,858.402 388.133,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,840.194 388.133,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,840.194 398.646,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,821.985 377.62,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,821.985 388.133,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,821.985 409.159,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,821.985 388.133,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,803.777 388.133,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,803.777 398.646,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,785.568 377.62,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,785.568 388.133,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,785.568 409.159,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,785.568 388.133,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,767.359 388.133,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,767.359 398.646,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,749.151 377.62,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,749.151 388.133,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,749.151 409.159,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,749.151 388.133,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,730.942 388.133,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,730.942 398.646,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,712.734 377.62,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,712.734 388.133,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,712.734 409.159,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,712.734 388.133,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,694.525 388.133,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,694.525 398.646,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,676.316 377.62,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,676.316 388.133,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,676.316 409.159,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,676.316 388.133,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,658.108 388.133,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,658.108 398.646,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,876.611 409.159,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,858.402 398.646,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,858.402 409.159,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,858.402 430.184,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,858.402 409.159,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,840.194 409.159,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,840.194 419.671,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,821.985 398.646,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,821.985 409.159,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,821.985 430.184,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,821.985 409.159,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,803.777 409.159,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,803.777 419.671,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,785.568 398.646,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,785.568 409.159,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,785.568 430.184,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,785.568 409.159,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,767.359 409.159,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,767.359 419.671,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,749.151 398.646,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,749.151 409.159,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,749.151 430.184,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,749.151 409.159,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,730.942 409.159,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,730.942 419.671,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,712.734 398.646,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,712.734 409.159,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,712.734 430.184,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,712.734 409.159,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,694.525 409.159,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,694.525 419.671,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,676.316 398.646,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,676.316 409.159,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,676.316 430.184,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,676.316 409.159,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,658.108 409.159,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,658.108 419.671,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,876.611 430.184,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,858.402 419.671,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,858.402 430.184,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,858.402 451.21,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,858.402 430.184,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,840.194 430.184,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,840.194 440.697,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,821.985 419.671,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,821.985 430.184,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,821.985 451.21,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,821.985 430.184,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,803.777 430.184,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,803.777 440.697,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,785.568 419.671,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,785.568 430.184,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,785.568 451.21,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,785.568 430.184,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,767.359 430.184,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,767.359 440.697,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,749.151 419.671,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,749.151 430.184,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,749.151 451.21,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,749.151 430.184,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,730.942 430.184,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,730.942 440.697,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,712.734 419.671,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,712.734 430.184,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,712.734 451.21,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,712.734 430.184,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,694.525 430.184,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,694.525 440.697,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,676.316 419.671,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,676.316 430.184,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,676.316 451.21,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,676.316 430.184,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,658.108 430.184,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,658.108 440.697,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,876.611 451.21,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,858.402 440.697,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,858.402 451.21,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,858.402 472.235,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,858.402 451.21,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,840.194 451.21,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,840.194 461.722,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,821.985 440.697,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,821.985 451.21,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,821.985 472.235,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,821.985 451.21,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,803.777 451.21,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,803.777 461.722,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,785.568 440.697,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,785.568 451.21,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,785.568 472.235,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,785.568 451.21,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,767.359 451.21,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,767.359 461.722,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,749.151 440.697,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,749.151 451.21,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,749.151 472.235,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,749.151 451.21,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,730.942 451.21,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,730.942 461.722,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,712.734 440.697,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,712.734 451.21,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,712.734 472.235,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,712.734 451.21,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,694.525 451.21,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,694.525 461.722,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,676.316 440.697,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,676.316 451.21,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,676.316 472.235,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,676.316 451.21,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,658.108 451.21,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,658.108 461.722,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,876.611 472.235,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,858.402 461.722,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,858.402 472.235,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,858.402 493.261,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,858.402 472.235,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,840.194 472.235,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,840.194 482.748,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,821.985 461.722,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,821.985 472.235,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,821.985 493.261,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,821.985 472.235,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,803.777 472.235,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,803.777 482.748,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,785.568 461.722,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,785.568 472.235,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,785.568 493.261,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,785.568 472.235,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,767.359 472.235,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,767.359 482.748,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,749.151 461.722,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,749.151 472.235,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,749.151 493.261,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,749.151 472.235,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,730.942 472.235,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,730.942 482.748,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,712.734 461.722,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,712.734 472.235,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,712.734 493.261,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,712.734 472.235,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,694.525 472.235,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,694.525 482.748,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,676.316 461.722,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,676.316 472.235,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,676.316 493.261,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,676.316 472.235,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,658.108 472.235,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,658.108 482.748,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,876.611 493.261,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,858.402 482.748,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,858.402 493.261,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,858.402 514.286,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,858.402 493.261,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,840.194 493.261,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,840.194 503.773,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,821.985 482.748,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,821.985 493.261,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,821.985 514.286,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,821.985 493.261,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,803.777 493.261,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,803.777 503.773,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,785.568 482.748,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,785.568 493.261,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,785.568 514.286,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,785.568 493.261,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,767.359 493.261,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,767.359 503.773,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,749.151 482.748,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,749.151 493.261,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,749.151 514.286,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,749.151 493.261,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,730.942 493.261,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,730.942 503.773,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,712.734 482.748,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,712.734 493.261,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,712.734 514.286,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,712.734 493.261,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,694.525 493.261,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,694.525 503.773,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,676.316 482.748,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,676.316 493.261,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,676.316 514.286,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,676.316 493.261,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,658.108 493.261,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,658.108 503.773,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,876.611 514.286,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,858.402 503.773,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,858.402 514.286,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,858.402 535.312,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,858.402 514.286,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,840.194 514.286,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,840.194 524.799,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,821.985 503.773,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,821.985 514.286,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,821.985 535.312,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,821.985 514.286,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,803.777 514.286,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,803.777 524.799,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,785.568 503.773,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,785.568 514.286,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,785.568 535.312,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,785.568 514.286,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,767.359 514.286,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,767.359 524.799,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,749.151 503.773,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,749.151 514.286,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,749.151 535.312,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,749.151 514.286,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,730.942 514.286,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,730.942 524.799,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,712.734 503.773,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,712.734 514.286,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,712.734 535.312,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,712.734 514.286,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,694.525 514.286,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,694.525 524.799,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,676.316 503.773,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,676.316 514.286,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,676.316 535.312,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,676.316 514.286,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,658.108 514.286,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,658.108 524.799,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,876.611 535.312,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,858.402 524.799,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,858.402 535.312,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,858.402 556.337,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,858.402 535.312,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,840.194 535.312,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,840.194 545.824,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,821.985 524.799,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,821.985 535.312,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,821.985 556.337,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,821.985 535.312,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,803.777 535.312,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,803.777 545.824,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,785.568 524.799,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,785.568 535.312,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,785.568 556.337,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,785.568 535.312,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,767.359 535.312,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,767.359 545.824,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,749.151 524.799,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,749.151 535.312,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,749.151 556.337,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,749.151 535.312,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,730.942 535.312,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,730.942 545.824,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,712.734 524.799,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,712.734 535.312,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,712.734 556.337,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,712.734 535.312,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,694.525 535.312,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,694.525 545.824,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,676.316 524.799,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,676.316 535.312,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,676.316 556.337,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,676.316 535.312,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,658.108 535.312,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,658.108 545.824,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,876.611 556.337,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,858.402 545.824,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,858.402 556.337,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,858.402 577.363,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,858.402 556.337,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,840.194 556.337,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,840.194 566.85,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,821.985 545.824,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,821.985 556.337,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,821.985 577.363,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,821.985 556.337,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,803.777 556.337,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,803.777 566.85,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,785.568 545.824,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,785.568 556.337,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,785.568 577.363,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,785.568 556.337,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,767.359 556.337,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,767.359 566.85,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,749.151 545.824,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,749.151 556.337,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,749.151 577.363,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,749.151 556.337,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,730.942 556.337,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,730.942 566.85,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,712.734 545.824,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,712.734 556.337,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,712.734 577.363,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,712.734 556.337,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,694.525 556.337,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,694.525 566.85,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,676.316 545.824,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,676.316 556.337,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,676.316 577.363,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,676.316 556.337,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,658.108 556.337,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,658.108 566.85,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,876.611 577.363,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,858.402 566.85,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,858.402 577.363,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,858.402 598.388,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,858.402 577.363,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,840.194 577.363,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,840.194 587.875,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,821.985 566.85,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,821.985 577.363,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,821.985 598.388,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,821.985 577.363,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,803.777 577.363,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,803.777 587.875,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,785.568 566.85,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,785.568 577.363,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,785.568 598.388,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,785.568 577.363,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,767.359 577.363,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,767.359 587.875,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,749.151 566.85,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,749.151 577.363,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,749.151 598.388,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,749.151 577.363,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,730.942 577.363,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,730.942 587.875,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,712.734 566.85,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,712.734 577.363,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,712.734 598.388,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,712.734 577.363,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,694.525 577.363,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,694.525 587.875,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,676.316 566.85,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,676.316 577.363,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,676.316 598.388,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,676.316 577.363,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,658.108 577.363,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,658.108 587.875,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,876.611 598.388,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,858.402 587.875,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,858.402 598.388,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,858.402 619.414,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,858.402 598.388,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,840.194 598.388,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,840.194 608.901,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,821.985 587.875,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,821.985 598.388,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,821.985 619.414,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,821.985 598.388,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,803.777 598.388,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,803.777 608.901,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,785.568 587.875,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,785.568 598.388,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,785.568 619.414,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,785.568 598.388,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,767.359 598.388,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,767.359 608.901,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,749.151 587.875,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,749.151 598.388,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,749.151 619.414,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,749.151 598.388,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,730.942 598.388,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,730.942 608.901,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,712.734 587.875,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,712.734 598.388,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,712.734 619.414,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,712.734 598.388,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,694.525 598.388,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,694.525 608.901,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,676.316 587.875,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,676.316 598.388,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,676.316 619.414,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,676.316 598.388,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,658.108 598.388,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,658.108 608.901,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,876.611 619.414,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,858.402 608.901,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,858.402 619.414,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,858.402 640.439,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,858.402 619.414,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,840.194 619.414,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,840.194 629.926,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,821.985 608.901,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,821.985 619.414,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,821.985 640.439,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,821.985 619.414,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,803.777 619.414,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,803.777 629.926,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,785.568 608.901,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,785.568 619.414,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,785.568 640.439,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,785.568 619.414,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,767.359 619.414,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,767.359 629.926,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,749.151 608.901,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,749.151 619.414,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,749.151 640.439,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,749.151 619.414,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,730.942 619.414,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,730.942 629.926,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,712.734 608.901,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,712.734 619.414,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,712.734 640.439,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,712.734 619.414,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,694.525 619.414,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,694.525 629.926,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,676.316 608.901,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,676.316 619.414,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,676.316 640.439,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,676.316 619.414,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,658.108 619.414,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,658.108 629.926,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,876.611 640.439,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,858.402 629.926,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,858.402 640.439,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,858.402 661.465,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,858.402 640.439,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,840.194 640.439,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,840.194 650.952,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,821.985 629.926,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,821.985 640.439,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,821.985 661.465,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,821.985 640.439,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,803.777 640.439,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,803.777 650.952,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,785.568 629.926,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,785.568 640.439,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,785.568 661.465,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,785.568 640.439,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,767.359 640.439,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,767.359 650.952,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,749.151 629.926,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,749.151 640.439,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,749.151 661.465,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,749.151 640.439,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,730.942 640.439,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,730.942 650.952,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,712.734 629.926,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,712.734 640.439,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,712.734 661.465,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,712.734 640.439,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,694.525 640.439,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,694.525 650.952,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,676.316 629.926,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,676.316 640.439,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,676.316 661.465,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,676.316 640.439,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,658.108 640.439,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,658.108 650.952,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,876.611 661.465,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,858.402 650.952,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,858.402 661.465,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,858.402 682.49,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,858.402 661.465,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,840.194 661.465,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,840.194 671.977,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,821.985 650.952,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,821.985 661.465,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,821.985 682.49,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,821.985 661.465,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,803.777 661.465,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,803.777 671.977,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,785.568 650.952,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,785.568 661.465,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,785.568 682.49,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,785.568 661.465,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,767.359 661.465,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,767.359 671.977,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,749.151 650.952,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,749.151 661.465,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,749.151 682.49,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,749.151 661.465,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,730.942 661.465,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,730.942 671.977,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,712.734 650.952,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,712.734 661.465,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,712.734 682.49,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,712.734 661.465,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,694.525 661.465,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,694.525 671.977,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,676.316 650.952,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,676.316 661.465,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,676.316 682.49,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,676.316 661.465,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,658.108 661.465,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,658.108 671.977,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,876.611 682.49,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,858.402 671.977,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,858.402 682.49,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,858.402 703.516,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,858.402 682.49,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,840.194 682.49,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,840.194 693.003,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,821.985 671.977,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,821.985 682.49,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,821.985 703.516,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,821.985 682.49,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,803.777 682.49,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,803.777 693.003,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,785.568 671.977,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,785.568 682.49,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,785.568 703.516,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,785.568 682.49,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,767.359 682.49,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,767.359 693.003,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,749.151 671.977,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,749.151 682.49,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,749.151 703.516,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,749.151 682.49,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,730.942 682.49,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,730.942 693.003,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,712.734 671.977,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,712.734 682.49,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,712.734 703.516,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,712.734 682.49,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,694.525 682.49,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,694.525 693.003,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,676.316 671.977,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,676.316 682.49,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,676.316 703.516,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,676.316 682.49,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,658.108 682.49,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,658.108 693.003,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,876.611 703.516,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,858.402 693.003,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,858.402 703.516,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,858.402 724.541,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,858.402 703.516,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,840.194 703.516,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,840.194 714.028,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,821.985 693.003,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,821.985 703.516,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,821.985 724.541,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,821.985 703.516,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,803.777 703.516,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,803.777 714.028,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,785.568 693.003,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,785.568 703.516,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,785.568 724.541,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,785.568 703.516,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,767.359 703.516,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,767.359 714.028,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,749.151 693.003,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,749.151 703.516,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,749.151 724.541,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,749.151 703.516,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,730.942 703.516,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,730.942 714.028,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,712.734 693.003,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,712.734 703.516,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,712.734 724.541,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,712.734 703.516,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,694.525 703.516,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,694.525 714.028,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,676.316 693.003,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,676.316 703.516,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,676.316 724.541,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,676.316 703.516,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,658.108 703.516,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,658.108 714.028,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,876.611 724.541,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,858.402 714.028,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,858.402 724.541,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,858.402 745.567,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,858.402 724.541,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,840.194 724.541,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,840.194 735.054,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,821.985 714.028,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,821.985 724.541,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,821.985 745.567,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,821.985 724.541,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,803.777 724.541,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,803.777 735.054,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,785.568 714.028,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,785.568 724.541,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,785.568 745.567,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,785.568 724.541,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,767.359 724.541,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,767.359 735.054,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,749.151 714.028,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,749.151 724.541,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,749.151 745.567,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,749.151 724.541,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,730.942 724.541,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,730.942 735.054,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,712.734 714.028,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,712.734 724.541,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,712.734 745.567,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,712.734 724.541,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,694.525 724.541,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,694.525 735.054,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,676.316 714.028,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,676.316 724.541,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,676.316 745.567,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,676.316 724.541,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,658.108 724.541,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,658.108 735.054,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,876.611 745.567,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,858.402 735.054,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,858.402 745.567,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,858.402 766.592,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,858.402 745.567,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,840.194 745.567,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,840.194 756.079,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,821.985 735.054,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,821.985 745.567,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,821.985 766.592,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,821.985 745.567,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,803.777 745.567,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,803.777 756.079,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,785.568 735.054,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,785.568 745.567,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,785.568 766.592,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,785.568 745.567,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,767.359 745.567,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,767.359 756.079,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,749.151 735.054,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,749.151 745.567,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,749.151 766.592,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,749.151 745.567,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,730.942 745.567,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,730.942 756.079,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,712.734 735.054,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,712.734 745.567,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,712.734 766.592,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,712.734 745.567,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,694.525 745.567,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,694.525 756.079,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,676.316 735.054,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,676.316 745.567,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,676.316 766.592,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,676.316 745.567,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,658.108 745.567,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,658.108 756.079,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,876.611 766.592,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,858.402 756.079,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,858.402 766.592,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,858.402 787.618,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,858.402 766.592,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,840.194 766.592,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,840.194 777.105,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,821.985 756.079,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,821.985 766.592,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,821.985 787.618,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,821.985 766.592,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,803.777 766.592,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,803.777 777.105,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,785.568 756.079,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,785.568 766.592,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,785.568 787.618,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,785.568 766.592,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,767.359 766.592,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,767.359 777.105,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,749.151 756.079,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,749.151 766.592,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,749.151 787.618,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,749.151 766.592,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,730.942 766.592,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,730.942 777.105,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,712.734 756.079,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,712.734 766.592,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,712.734 787.618,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,712.734 766.592,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,694.525 766.592,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,694.525 777.105,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,676.316 756.079,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,676.316 766.592,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,676.316 787.618,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,676.316 766.592,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,658.108 766.592,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,658.108 777.105,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,876.611 787.618,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,858.402 777.105,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,858.402 787.618,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,858.402 808.643,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,858.402 787.618,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,840.194 787.618,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,840.194 798.13,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,821.985 777.105,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,821.985 787.618,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,821.985 808.643,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,821.985 787.618,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,803.777 787.618,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,803.777 798.13,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,785.568 777.105,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,785.568 787.618,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,785.568 808.643,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,785.568 787.618,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,767.359 787.618,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,767.359 798.13,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,749.151 777.105,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,749.151 787.618,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,749.151 808.643,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,749.151 787.618,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,730.942 787.618,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,730.942 798.13,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,712.734 777.105,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,712.734 787.618,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,712.734 808.643,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,712.734 787.618,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,694.525 787.618,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,694.525 798.13,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,676.316 777.105,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,676.316 787.618,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,676.316 808.643,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,676.316 787.618,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,658.108 787.618,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,658.108 798.13,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,858.402 798.13,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,858.402 808.643,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,858.402 808.643,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,840.194 808.643,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,840.194 819.156,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,821.985 798.13,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,821.985 808.643,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,821.985 829.669,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,821.985 808.643,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,803.777 808.643,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,803.777 819.156,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,785.568 798.13,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,785.568 808.643,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,785.568 829.669,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,785.568 808.643,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,767.359 808.643,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,767.359 819.156,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,749.151 798.13,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,749.151 808.643,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,749.151 829.669,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,749.151 808.643,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,730.942 808.643,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,730.942 819.156,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,712.734 798.13,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,712.734 808.643,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,712.734 829.669,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,712.734 808.643,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,694.525 808.643,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,694.525 819.156,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,676.316 798.13,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,676.316 808.643,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,676.316 829.669,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,676.316 808.643,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,658.108 808.643,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,658.108 819.156,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,858.402 819.156,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,858.402 829.669,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,840.194 829.669,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,840.194 840.181,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,821.985 819.156,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,821.985 829.669,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,821.985 850.694,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,821.985 829.669,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,803.777 829.669,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,803.777 840.181,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,785.568 819.156,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,785.568 829.669,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,785.568 850.694,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,785.568 829.669,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,767.359 829.669,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,767.359 840.181,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,749.151 819.156,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,749.151 829.669,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,749.151 850.694,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,749.151 829.669,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,730.942 829.669,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,730.942 840.181,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,712.734 819.156,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,712.734 829.669,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,712.734 850.694,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,712.734 829.669,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,694.525 829.669,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,694.525 840.181,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,676.316 819.156,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,676.316 829.669,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,676.316 850.694,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,676.316 829.669,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,858.402 840.181,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,858.402 850.694,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,840.194 850.694,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,840.194 861.207,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,821.985 840.181,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,821.985 850.694,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,821.985 871.72,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,821.985 850.694,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,803.777 850.694,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,803.777 861.207,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,785.568 840.181,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,785.568 850.694,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,785.568 871.72,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,785.568 850.694,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,767.359 850.694,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,767.359 861.207,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,749.151 840.181,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,749.151 850.694,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,749.151 871.72,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,749.151 850.694,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,730.942 850.694,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,730.942 861.207,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,712.734 840.181,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,712.734 850.694,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,712.734 871.72,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,712.734 850.694,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,694.525 850.694,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,694.525 861.207,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,676.316 840.181,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,676.316 850.694,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,676.316 871.72,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,840.194 871.72,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,821.985 861.207,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,821.985 871.72,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,821.985 892.745,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,821.985 871.72,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,803.777 871.72,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,803.777 882.232,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,785.568 861.207,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,785.568 871.72,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,785.568 892.745,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,785.568 871.72,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,767.359 871.72,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,767.359 882.232,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,749.151 861.207,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,749.151 871.72,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,749.151 892.745,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,749.151 871.72,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,730.942 871.72,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,730.942 882.232,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,712.734 861.207,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,712.734 871.72,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,712.734 892.745,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,712.734 871.72,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,694.525 871.72,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,694.525 882.232,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,676.316 861.207,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,676.316 871.72,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,676.316 892.745,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,840.194 892.745,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,821.985 882.232,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,821.985 892.745,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,821.985 913.771,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,821.985 892.745,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,803.777 892.745,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,803.777 903.258,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,785.568 882.232,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,785.568 892.745,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,785.568 913.771,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,785.568 892.745,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,767.359 892.745,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,767.359 903.258,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,749.151 882.232,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,749.151 892.745,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,749.151 913.771,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,749.151 892.745,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,730.942 892.745,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,730.942 903.258,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,712.734 882.232,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,712.734 892.745,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,712.734 913.771,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,712.734 892.745,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,694.525 892.745,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,694.525 903.258,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,676.316 882.232,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,676.316 892.745,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,676.316 913.771,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,840.194 913.771,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,821.985 903.258,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,821.985 913.771,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,821.985 934.796,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,821.985 913.771,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,803.777 913.771,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,803.777 924.283,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,785.568 903.258,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,785.568 913.771,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,785.568 934.796,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,785.568 913.771,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,767.359 913.771,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,767.359 924.283,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,749.151 903.258,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,749.151 913.771,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,749.151 934.796,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,749.151 913.771,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,730.942 913.771,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,730.942 924.283,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,712.734 903.258,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,712.734 913.771,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,712.734 934.796,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,712.734 913.771,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,694.525 913.771,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,694.525 924.283,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,676.316 903.258,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,676.316 913.771,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,676.316 934.796,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,840.194 934.796,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,821.985 924.283,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,821.985 934.796,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,821.985 955.822,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,821.985 934.796,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,803.777 934.796,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,803.777 945.309,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,785.568 924.283,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,785.568 934.796,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,785.568 955.822,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,785.568 934.796,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,767.359 934.796,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,767.359 945.309,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,749.151 924.283,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,749.151 934.796,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,749.151 955.822,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,749.151 934.796,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,730.942 934.796,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,730.942 945.309,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,712.734 924.283,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,712.734 934.796,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,712.734 955.822,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,712.734 934.796,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,694.525 934.796,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,694.525 945.309,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,840.194 955.822,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,821.985 945.309,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,821.985 955.822,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,821.985 976.847,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,821.985 955.822,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,803.777 955.822,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,803.777 966.334,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,785.568 945.309,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,785.568 955.822,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,785.568 976.847,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,785.568 955.822,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,767.359 955.822,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,767.359 966.334,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,749.151 945.309,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,749.151 955.822,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,749.151 976.847,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,749.151 955.822,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,730.942 955.822,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,730.942 966.334,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,712.734 945.309,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,712.734 955.822,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,712.734 976.847,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,712.734 955.822,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,694.525 955.822,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,694.525 966.334,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,840.194 976.847,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,821.985 966.334,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,821.985 976.847,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,821.985 997.873,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,821.985 976.847,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,803.777 976.847,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,803.777 987.36,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,785.568 966.334,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,785.568 976.847,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,785.568 997.873,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,785.568 976.847,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,767.359 976.847,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,767.359 987.36,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,749.151 966.334,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,749.151 976.847,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,749.151 997.873,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,749.151 976.847,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,730.942 976.847,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,730.942 987.36,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,712.734 966.334,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,712.734 976.847,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,712.734 997.873,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,712.734 976.847,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,694.525 976.847,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,694.525 987.36,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,840.194 997.873,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,821.985 987.36,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,821.985 997.873,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,821.985 1018.9,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,821.985 997.873,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,803.777 997.873,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,803.777 1008.39,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,785.568 987.36,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,785.568 997.873,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,785.568 1018.9,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,785.568 997.873,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,767.359 997.873,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,767.359 1008.39,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,749.151 987.36,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,749.151 997.873,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,749.151 1018.9,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,749.151 997.873,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,730.942 997.873,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,730.942 1008.39,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,712.734 987.36,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,712.734 997.873,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,712.734 1018.9,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,712.734 997.873,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,694.525 997.873,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,694.525 1008.39,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,840.194 1018.9,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,821.985 1008.39,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,821.985 1018.9,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,821.985 1039.92,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,821.985 1018.9,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,803.777 1018.9,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,803.777 1029.41,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,785.568 1008.39,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,785.568 1018.9,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,785.568 1039.92,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,785.568 1018.9,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,767.359 1018.9,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,767.359 1029.41,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,749.151 1008.39,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,749.151 1018.9,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,749.151 1039.92,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,749.151 1018.9,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,730.942 1018.9,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,730.942 1029.41,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,712.734 1008.39,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,712.734 1018.9,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,712.734 1039.92,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,712.734 1018.9,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,694.525 1018.9,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,694.525 1029.41,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,840.194 1039.92,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,821.985 1029.41,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,821.985 1039.92,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,821.985 1060.95,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,821.985 1039.92,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,803.777 1039.92,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,803.777 1050.44,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,785.568 1029.41,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,785.568 1039.92,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,785.568 1060.95,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,785.568 1039.92,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,767.359 1039.92,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,767.359 1050.44,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,749.151 1029.41,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,749.151 1039.92,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,749.151 1060.95,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,749.151 1039.92,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,730.942 1039.92,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,730.942 1050.44,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,712.734 1029.41,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,712.734 1039.92,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,712.734 1060.95,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,712.734 1039.92,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,694.525 1039.92,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,694.525 1050.44,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,840.194 1060.95,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,821.985 1050.44,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,821.985 1060.95,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,821.985 1081.97,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,821.985 1060.95,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,803.777 1060.95,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,803.777 1071.46,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,785.568 1050.44,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,785.568 1060.95,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,785.568 1081.97,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,785.568 1060.95,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,767.359 1060.95,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,767.359 1071.46,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,749.151 1050.44,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,749.151 1060.95,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,749.151 1081.97,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,749.151 1060.95,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,730.942 1060.95,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,730.942 1071.46,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,712.734 1050.44,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,712.734 1060.95,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,712.734 1081.97,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,712.734 1060.95,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,694.525 1060.95,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,694.525 1071.46,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,840.194 1081.97,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,821.985 1071.46,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,821.985 1081.97,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,821.985 1103,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,821.985 1081.97,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,803.777 1081.97,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,803.777 1092.49,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,785.568 1071.46,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,785.568 1081.97,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,785.568 1103,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,785.568 1081.97,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,767.359 1081.97,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,767.359 1092.49,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,749.151 1071.46,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,749.151 1081.97,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,749.151 1103,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,749.151 1081.97,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,730.942 1081.97,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,730.942 1092.49,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,712.734 1071.46,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,712.734 1081.97,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,712.734 1103,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,712.734 1081.97,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,694.525 1081.97,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,694.525 1092.49,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,840.194 1103,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,821.985 1092.49,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,821.985 1103,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,821.985 1124.03,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,821.985 1103,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,803.777 1103,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,803.777 1113.51,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,785.568 1092.49,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,785.568 1103,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,785.568 1124.03,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,785.568 1103,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,767.359 1103,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,767.359 1113.51,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,749.151 1092.49,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,749.151 1103,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,749.151 1124.03,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,749.151 1103,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,730.942 1103,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,730.942 1113.51,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,712.734 1092.49,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,712.734 1103,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,712.734 1124.03,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,712.734 1103,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,694.525 1103,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,694.525 1113.51,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,840.194 1124.03,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,821.985 1113.51,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,821.985 1124.03,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,821.985 1145.05,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,821.985 1124.03,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,803.777 1124.03,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,803.777 1134.54,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,785.568 1113.51,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,785.568 1124.03,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,785.568 1145.05,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,785.568 1124.03,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,767.359 1124.03,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,767.359 1134.54,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,749.151 1113.51,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,749.151 1124.03,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,749.151 1145.05,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,749.151 1124.03,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,730.942 1124.03,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,730.942 1134.54,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,712.734 1113.51,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,712.734 1124.03,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,712.734 1145.05,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,712.734 1124.03,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,694.525 1124.03,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,694.525 1134.54,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,840.194 1145.05,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,821.985 1134.54,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,821.985 1145.05,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,821.985 1166.08,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,821.985 1145.05,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,803.777 1145.05,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,803.777 1155.56,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,785.568 1134.54,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,785.568 1145.05,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,785.568 1166.08,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,785.568 1145.05,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,767.359 1145.05,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,767.359 1155.56,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,749.151 1134.54,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,749.151 1145.05,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,749.151 1166.08,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,749.151 1145.05,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,730.942 1145.05,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,730.942 1155.56,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,712.734 1134.54,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,712.734 1145.05,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,712.734 1166.08,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,712.734 1145.05,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,694.525 1145.05,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,694.525 1155.56,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,840.194 1166.08,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,821.985 1155.56,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,821.985 1166.08,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,821.985 1187.1,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,821.985 1166.08,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,803.777 1166.08,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,803.777 1176.59,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,785.568 1155.56,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,785.568 1166.08,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,785.568 1187.1,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,785.568 1166.08,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,767.359 1166.08,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,767.359 1176.59,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,749.151 1155.56,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,749.151 1166.08,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,749.151 1187.1,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,749.151 1166.08,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,730.942 1166.08,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,730.942 1176.59,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,712.734 1155.56,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,712.734 1166.08,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,712.734 1187.1,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,712.734 1166.08,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,694.525 1166.08,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,694.525 1176.59,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,840.194 1187.1,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,821.985 1176.59,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,821.985 1187.1,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,821.985 1208.13,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,821.985 1187.1,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,803.777 1187.1,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,803.777 1197.61,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,785.568 1176.59,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,785.568 1187.1,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,785.568 1208.13,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,785.568 1187.1,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,767.359 1187.1,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,767.359 1197.61,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,749.151 1176.59,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,749.151 1187.1,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,749.151 1208.13,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,749.151 1187.1,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,730.942 1187.1,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,730.942 1197.61,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,712.734 1176.59,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,712.734 1187.1,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,712.734 1208.13,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,712.734 1187.1,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,694.525 1187.1,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,694.525 1197.61,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,840.194 1208.13,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,821.985 1197.61,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,821.985 1208.13,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,821.985 1229.15,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,821.985 1208.13,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,803.777 1208.13,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,803.777 1218.64,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,785.568 1197.61,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,785.568 1208.13,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,785.568 1229.15,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,785.568 1208.13,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,767.359 1208.13,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,767.359 1218.64,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,749.151 1197.61,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,749.151 1208.13,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,749.151 1229.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,749.151 1208.13,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,730.942 1208.13,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,730.942 1218.64,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,712.734 1197.61,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,712.734 1208.13,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,712.734 1229.15,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,712.734 1208.13,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,694.525 1208.13,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,694.525 1218.64,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,840.194 1229.15,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,821.985 1218.64,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,821.985 1229.15,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,821.985 1250.18,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,821.985 1229.15,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,803.777 1229.15,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,803.777 1239.67,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,785.568 1218.64,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,785.568 1229.15,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,785.568 1250.18,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,785.568 1229.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,767.359 1229.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,767.359 1239.67,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,749.151 1218.64,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,749.151 1229.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,749.151 1250.18,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,749.151 1229.15,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,730.942 1229.15,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,730.942 1239.67,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,712.734 1218.64,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,712.734 1229.15,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,712.734 1250.18,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,712.734 1229.15,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,694.525 1229.15,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,694.525 1239.67,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,840.194 1250.18,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,821.985 1239.67,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,821.985 1250.18,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,821.985 1271.2,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,821.985 1250.18,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,803.777 1250.18,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,803.777 1260.69,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,785.568 1239.67,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,785.568 1250.18,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,785.568 1271.2,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,785.568 1250.18,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,767.359 1250.18,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,767.359 1260.69,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,749.151 1239.67,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,749.151 1250.18,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,749.151 1271.2,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,749.151 1250.18,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,730.942 1250.18,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,730.942 1260.69,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,712.734 1239.67,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,712.734 1250.18,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,712.734 1271.2,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,712.734 1250.18,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,694.525 1250.18,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,694.525 1260.69,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,840.194 1271.2,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,821.985 1260.69,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,821.985 1271.2,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,821.985 1292.23,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,821.985 1271.2,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,803.777 1271.2,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,803.777 1281.72,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,785.568 1260.69,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,785.568 1271.2,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,785.568 1292.23,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,785.568 1271.2,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,767.359 1271.2,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,767.359 1281.72,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,749.151 1260.69,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,749.151 1271.2,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,749.151 1292.23,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,749.151 1271.2,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,730.942 1271.2,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,730.942 1281.72,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,712.734 1260.69,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,712.734 1271.2,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,712.734 1292.23,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,712.734 1271.2,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,694.525 1271.2,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,694.525 1281.72,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,840.194 1292.23,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,821.985 1281.72,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,821.985 1292.23,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,821.985 1313.26,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,821.985 1292.23,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,803.777 1292.23,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,803.777 1302.74,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,785.568 1281.72,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,785.568 1292.23,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,785.568 1313.26,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,785.568 1292.23,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,767.359 1292.23,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,767.359 1302.74,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,749.151 1281.72,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,749.151 1292.23,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,749.151 1313.26,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,749.151 1292.23,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,730.942 1292.23,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,730.942 1302.74,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,712.734 1281.72,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,712.734 1292.23,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,712.734 1313.26,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,712.734 1292.23,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,694.525 1292.23,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,694.525 1302.74,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,840.194 1313.26,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,821.985 1302.74,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,821.985 1313.26,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,821.985 1334.28,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,821.985 1313.26,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,803.777 1313.26,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,803.777 1323.77,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,785.568 1302.74,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,785.568 1313.26,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,785.568 1334.28,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,785.568 1313.26,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,767.359 1313.26,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,767.359 1323.77,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,749.151 1302.74,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,749.151 1313.26,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,749.151 1334.28,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,749.151 1313.26,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,730.942 1313.26,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,730.942 1323.77,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,712.734 1302.74,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,712.734 1313.26,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,712.734 1334.28,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,712.734 1313.26,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,694.525 1313.26,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,694.525 1323.77,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,840.194 1334.28,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,821.985 1323.77,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,821.985 1334.28,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,821.985 1355.31,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,821.985 1334.28,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,803.777 1334.28,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,803.777 1344.79,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,785.568 1323.77,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,785.568 1334.28,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,785.568 1355.31,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,785.568 1334.28,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,767.359 1334.28,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,767.359 1344.79,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,749.151 1323.77,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,749.151 1334.28,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,749.151 1355.31,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,749.151 1334.28,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,730.942 1334.28,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,730.942 1344.79,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,712.734 1323.77,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,712.734 1334.28,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,712.734 1355.31,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,712.734 1334.28,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,694.525 1334.28,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,694.525 1344.79,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,840.194 1355.31,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,821.985 1344.79,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,821.985 1355.31,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,821.985 1376.33,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,821.985 1355.31,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,803.777 1355.31,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,803.777 1365.82,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,785.568 1344.79,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,785.568 1355.31,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,785.568 1376.33,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,785.568 1355.31,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,767.359 1355.31,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,767.359 1365.82,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,749.151 1344.79,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,749.151 1355.31,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,749.151 1376.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,749.151 1355.31,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,730.942 1355.31,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,730.942 1365.82,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,712.734 1344.79,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,712.734 1355.31,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,712.734 1376.33,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,712.734 1355.31,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,694.525 1355.31,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,694.525 1365.82,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,840.194 1376.33,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,821.985 1365.82,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,821.985 1376.33,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,821.985 1397.36,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,821.985 1376.33,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,803.777 1376.33,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,803.777 1386.84,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,785.568 1365.82,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,785.568 1376.33,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,785.568 1397.36,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,785.568 1376.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,767.359 1376.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,767.359 1386.84,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,749.151 1365.82,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,749.151 1376.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,749.151 1397.36,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,749.151 1376.33,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,730.942 1376.33,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,730.942 1386.84,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,712.734 1365.82,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,712.734 1376.33,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,712.734 1397.36,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,712.734 1376.33,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,694.525 1376.33,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,694.525 1386.84,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,840.194 1397.36,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,821.985 1386.84,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,821.985 1397.36,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,821.985 1418.38,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,821.985 1397.36,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,803.777 1397.36,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,803.777 1407.87,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,785.568 1386.84,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,785.568 1397.36,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,785.568 1418.38,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,785.568 1397.36,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,767.359 1397.36,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,767.359 1407.87,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,749.151 1386.84,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,749.151 1397.36,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,749.151 1418.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,749.151 1397.36,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,730.942 1397.36,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,730.942 1407.87,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,712.734 1386.84,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,712.734 1397.36,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,712.734 1418.38,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,712.734 1397.36,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,694.525 1397.36,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,694.525 1407.87,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,840.194 1418.38,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,821.985 1407.87,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,821.985 1418.38,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,821.985 1439.41,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,821.985 1418.38,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,803.777 1418.38,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,803.777 1428.9,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,785.568 1407.87,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,785.568 1418.38,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,785.568 1439.41,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,785.568 1418.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,767.359 1418.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,767.359 1428.9,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,749.151 1407.87,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,749.151 1418.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,749.151 1439.41,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,749.151 1418.38,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,730.942 1418.38,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,730.942 1428.9,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,712.734 1407.87,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,712.734 1418.38,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,712.734 1439.41,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,712.734 1418.38,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,694.525 1418.38,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,694.525 1428.9,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,840.194 1439.41,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,821.985 1428.9,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,821.985 1439.41,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,821.985 1460.43,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,821.985 1439.41,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,803.777 1439.41,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,803.777 1449.92,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,785.568 1428.9,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,785.568 1439.41,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,785.568 1460.43,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,785.568 1439.41,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,767.359 1439.41,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,767.359 1449.92,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,749.151 1428.9,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,749.151 1439.41,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,749.151 1460.43,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,749.151 1439.41,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,730.942 1439.41,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,730.942 1449.92,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,712.734 1428.9,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,712.734 1439.41,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,712.734 1460.43,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,712.734 1439.41,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,694.525 1439.41,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,694.525 1449.92,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,840.194 1460.43,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,821.985 1449.92,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,821.985 1460.43,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,821.985 1481.46,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,821.985 1460.43,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,803.777 1460.43,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,803.777 1470.95,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,785.568 1449.92,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,785.568 1460.43,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,785.568 1481.46,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,785.568 1460.43,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,767.359 1460.43,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,767.359 1470.95,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,749.151 1449.92,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,749.151 1460.43,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,749.151 1481.46,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,749.151 1460.43,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,730.942 1460.43,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,730.942 1470.95,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,712.734 1449.92,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,712.734 1460.43,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,712.734 1481.46,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,712.734 1460.43,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,694.525 1460.43,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,694.525 1470.95,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,840.194 1481.46,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,821.985 1470.95,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,821.985 1481.46,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,821.985 1502.48,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,821.985 1481.46,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,803.777 1481.46,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,803.777 1491.97,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,785.568 1470.95,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,785.568 1481.46,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,785.568 1502.48,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,785.568 1481.46,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,767.359 1481.46,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,767.359 1491.97,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,749.151 1470.95,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,749.151 1481.46,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,749.151 1502.48,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,749.151 1481.46,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,730.942 1481.46,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,730.942 1491.97,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,712.734 1470.95,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,712.734 1481.46,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,712.734 1502.48,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,712.734 1481.46,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,694.525 1481.46,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,694.525 1491.97,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,840.194 1502.48,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,821.985 1491.97,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,821.985 1502.48,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,821.985 1523.51,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,821.985 1502.48,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,803.777 1502.48,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,803.777 1513,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,785.568 1491.97,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,785.568 1502.48,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,785.568 1523.51,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,785.568 1502.48,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,767.359 1502.48,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,767.359 1513,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,749.151 1491.97,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,749.151 1502.48,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,749.151 1523.51,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,749.151 1502.48,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,730.942 1502.48,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,730.942 1513,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,712.734 1491.97,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,712.734 1502.48,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,712.734 1523.51,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,712.734 1502.48,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,694.525 1502.48,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,694.525 1513,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,840.194 1523.51,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,821.985 1513,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,821.985 1523.51,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,821.985 1544.54,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,821.985 1523.51,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,803.777 1523.51,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,803.777 1534.02,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,785.568 1513,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,785.568 1523.51,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,785.568 1544.54,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,785.568 1523.51,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,767.359 1523.51,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,767.359 1534.02,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,749.151 1513,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,749.151 1523.51,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,749.151 1544.54,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,749.151 1523.51,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,730.942 1523.51,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,730.942 1534.02,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,712.734 1513,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,712.734 1523.51,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,712.734 1544.54,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,712.734 1523.51,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,694.525 1523.51,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,694.525 1534.02,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,840.194 1544.54,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,821.985 1534.02,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,821.985 1544.54,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,821.985 1565.56,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,821.985 1544.54,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,803.777 1544.54,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,803.777 1555.05,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,785.568 1534.02,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,785.568 1544.54,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,785.568 1565.56,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,785.568 1544.54,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,767.359 1544.54,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,767.359 1555.05,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,749.151 1534.02,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,749.151 1544.54,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,749.151 1565.56,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,749.151 1544.54,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,730.942 1544.54,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,730.942 1555.05,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,712.734 1534.02,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,712.734 1544.54,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,712.734 1565.56,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,712.734 1544.54,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,694.525 1544.54,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,694.525 1555.05,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,840.194 1565.56,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,821.985 1555.05,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,821.985 1565.56,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,821.985 1586.59,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,821.985 1565.56,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,803.777 1565.56,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,803.777 1576.07,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,785.568 1555.05,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,785.568 1565.56,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,785.568 1586.59,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,785.568 1565.56,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,767.359 1565.56,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,767.359 1576.07,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,749.151 1555.05,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,749.151 1565.56,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,749.151 1586.59,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,749.151 1565.56,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,730.942 1565.56,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,730.942 1576.07,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,712.734 1555.05,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,712.734 1565.56,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,712.734 1586.59,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,712.734 1565.56,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,694.525 1565.56,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,694.525 1576.07,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,840.194 1586.59,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,821.985 1576.07,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,821.985 1586.59,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,821.985 1607.61,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,821.985 1586.59,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,803.777 1586.59,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,803.777 1597.1,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,785.568 1576.07,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,785.568 1586.59,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,785.568 1607.61,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,785.568 1586.59,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,767.359 1586.59,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,767.359 1597.1,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,749.151 1576.07,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,749.151 1586.59,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,749.151 1607.61,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,749.151 1586.59,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,730.942 1586.59,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,730.942 1597.1,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,712.734 1576.07,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,712.734 1586.59,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,712.734 1607.61,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,712.734 1586.59,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,694.525 1586.59,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,694.525 1597.1,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,676.316 1586.59,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,676.316 1607.61,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,840.194 1607.61,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,821.985 1597.1,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,821.985 1607.61,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,821.985 1628.64,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,821.985 1607.61,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,803.777 1607.61,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,803.777 1618.12,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,785.568 1597.1,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,785.568 1607.61,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,785.568 1628.64,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,785.568 1607.61,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,767.359 1607.61,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,767.359 1618.12,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,749.151 1597.1,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,749.151 1607.61,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,749.151 1628.64,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,749.151 1607.61,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,730.942 1607.61,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,730.942 1618.12,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,712.734 1597.1,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,712.734 1607.61,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,712.734 1628.64,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,712.734 1607.61,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,694.525 1607.61,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,694.525 1618.12,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,676.316 1597.1,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,676.316 1607.61,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,676.316 1628.64,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,840.194 1628.64,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,821.985 1618.12,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,821.985 1628.64,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,821.985 1649.66,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,821.985 1628.64,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,803.777 1628.64,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,803.777 1639.15,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,785.568 1618.12,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,785.568 1628.64,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,785.568 1649.66,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,785.568 1628.64,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,767.359 1628.64,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,767.359 1639.15,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,749.151 1618.12,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,749.151 1628.64,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,749.151 1649.66,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,749.151 1628.64,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,730.942 1628.64,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,730.942 1639.15,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,712.734 1618.12,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,712.734 1628.64,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,712.734 1649.66,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,712.734 1628.64,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,694.525 1628.64,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,694.525 1639.15,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,676.316 1618.12,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,676.316 1628.64,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,676.316 1649.66,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,858.402 1649.66,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,840.194 1649.66,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,840.194 1660.18,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,821.985 1639.15,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,821.985 1649.66,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,821.985 1670.69,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,821.985 1649.66,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,803.777 1649.66,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,803.777 1660.18,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,785.568 1639.15,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,785.568 1649.66,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,785.568 1670.69,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,785.568 1649.66,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,767.359 1649.66,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,767.359 1660.18,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,749.151 1639.15,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,749.151 1649.66,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,749.151 1670.69,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,749.151 1649.66,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,730.942 1649.66,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,730.942 1660.18,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,712.734 1639.15,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,712.734 1649.66,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,712.734 1670.69,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,712.734 1649.66,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,694.525 1649.66,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,694.525 1660.18,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,676.316 1639.15,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,676.316 1649.66,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,676.316 1670.69,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,858.402 1660.18,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,858.402 1670.69,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,840.194 1670.69,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,840.194 1681.2,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,821.985 1660.18,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,821.985 1670.69,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,821.985 1691.71,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,821.985 1670.69,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,803.777 1670.69,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,803.777 1681.2,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,785.568 1660.18,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,785.568 1670.69,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,785.568 1691.71,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,785.568 1670.69,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,767.359 1670.69,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,767.359 1681.2,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,749.151 1660.18,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,749.151 1670.69,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,749.151 1691.71,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,749.151 1670.69,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,730.942 1670.69,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,730.942 1681.2,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,712.734 1660.18,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,712.734 1670.69,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,712.734 1691.71,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,712.734 1670.69,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,694.525 1670.69,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,694.525 1681.2,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,676.316 1660.18,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,676.316 1670.69,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,676.316 1691.71,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,658.108 1681.2,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,858.402 1681.2,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,858.402 1712.74,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,858.402 1691.71,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,840.194 1691.71,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,840.194 1702.23,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,821.985 1681.2,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,821.985 1691.71,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,821.985 1712.74,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,821.985 1691.71,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,803.777 1691.71,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,803.777 1702.23,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,785.568 1681.2,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,785.568 1691.71,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,785.568 1712.74,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,785.568 1691.71,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,767.359 1691.71,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,767.359 1702.23,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,749.151 1681.2,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,749.151 1691.71,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,749.151 1712.74,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,749.151 1691.71,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,730.942 1691.71,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,730.942 1702.23,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,712.734 1681.2,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,712.734 1691.71,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,712.734 1712.74,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,712.734 1691.71,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,694.525 1691.71,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,694.525 1702.23,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,676.316 1681.2,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,676.316 1691.71,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,676.316 1712.74,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,676.316 1691.71,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,658.108 1691.71,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,658.108 1702.23,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,876.611 1712.74,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,858.402 1702.23,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,858.402 1712.74,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,858.402 1733.77,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,858.402 1712.74,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,840.194 1712.74,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,840.194 1723.25,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,821.985 1702.23,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,821.985 1712.74,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,821.985 1733.77,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,821.985 1712.74,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,803.777 1712.74,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,803.777 1723.25,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,785.568 1702.23,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,785.568 1712.74,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,785.568 1733.77,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,785.568 1712.74,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,767.359 1712.74,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,767.359 1723.25,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,749.151 1702.23,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,749.151 1712.74,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,749.151 1733.77,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,749.151 1712.74,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,730.942 1712.74,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,730.942 1723.25,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,712.734 1702.23,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,712.734 1712.74,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,712.734 1733.77,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,712.734 1712.74,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,694.525 1712.74,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,694.525 1723.25,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,676.316 1702.23,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,676.316 1712.74,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,676.316 1733.77,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,676.316 1712.74,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,658.108 1712.74,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,658.108 1723.25,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,876.611 1733.77,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,858.402 1723.25,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,858.402 1733.77,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,858.402 1754.79,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,858.402 1733.77,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,840.194 1733.77,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,840.194 1744.28,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,821.985 1723.25,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,821.985 1733.77,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,821.985 1754.79,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,821.985 1733.77,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,803.777 1733.77,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,803.777 1744.28,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,785.568 1723.25,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,785.568 1733.77,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,785.568 1754.79,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,785.568 1733.77,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,767.359 1733.77,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,767.359 1744.28,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,749.151 1723.25,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,749.151 1733.77,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,749.151 1754.79,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,749.151 1733.77,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,730.942 1733.77,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,730.942 1744.28,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,712.734 1723.25,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,712.734 1733.77,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,712.734 1754.79,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,712.734 1733.77,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,694.525 1733.77,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,694.525 1744.28,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,676.316 1723.25,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,676.316 1733.77,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,676.316 1754.79,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,676.316 1733.77,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,658.108 1733.77,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,658.108 1744.28,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,876.611 1754.79,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,858.402 1744.28,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,858.402 1754.79,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,858.402 1775.82,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,858.402 1754.79,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,840.194 1754.79,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,840.194 1765.3,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,821.985 1744.28,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,821.985 1754.79,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,821.985 1775.82,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,821.985 1754.79,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,803.777 1754.79,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,803.777 1765.3,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,785.568 1744.28,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,785.568 1754.79,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,785.568 1775.82,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,785.568 1754.79,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,767.359 1754.79,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,767.359 1765.3,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,749.151 1744.28,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,749.151 1754.79,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,749.151 1775.82,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,749.151 1754.79,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,730.942 1754.79,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,730.942 1765.3,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,712.734 1744.28,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,712.734 1754.79,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,712.734 1775.82,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,712.734 1754.79,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,694.525 1754.79,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,694.525 1765.3,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,676.316 1744.28,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,676.316 1754.79,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,676.316 1775.82,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,676.316 1754.79,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,658.108 1754.79,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,658.108 1765.3,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,876.611 1775.82,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,858.402 1765.3,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,858.402 1775.82,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,858.402 1796.84,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,858.402 1775.82,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,840.194 1775.82,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,840.194 1786.33,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,821.985 1765.3,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,821.985 1775.82,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,821.985 1796.84,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,821.985 1775.82,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,803.777 1775.82,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,803.777 1786.33,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,785.568 1765.3,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,785.568 1775.82,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,785.568 1796.84,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,785.568 1775.82,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,767.359 1775.82,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,767.359 1786.33,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,749.151 1765.3,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,749.151 1775.82,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,749.151 1796.84,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,749.151 1775.82,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,730.942 1775.82,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,730.942 1786.33,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,712.734 1765.3,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,712.734 1775.82,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,712.734 1796.84,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,712.734 1775.82,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,694.525 1775.82,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,694.525 1786.33,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,676.316 1765.3,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,676.316 1775.82,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,676.316 1796.84,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,676.316 1775.82,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,658.108 1775.82,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,658.108 1786.33,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,876.611 1796.84,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,858.402 1786.33,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,858.402 1796.84,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,858.402 1817.87,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,858.402 1796.84,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,840.194 1796.84,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,840.194 1807.35,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,821.985 1786.33,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,821.985 1796.84,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,821.985 1817.87,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,821.985 1796.84,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,803.777 1796.84,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,803.777 1807.35,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,785.568 1786.33,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,785.568 1796.84,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,785.568 1817.87,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,785.568 1796.84,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,767.359 1796.84,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,767.359 1807.35,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,749.151 1786.33,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,749.151 1796.84,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,749.151 1817.87,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,749.151 1796.84,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,730.942 1796.84,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,730.942 1807.35,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,712.734 1786.33,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,712.734 1796.84,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,712.734 1817.87,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,712.734 1796.84,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,694.525 1796.84,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,694.525 1807.35,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,676.316 1786.33,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,676.316 1796.84,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,676.316 1817.87,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,676.316 1796.84,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,658.108 1796.84,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,658.108 1807.35,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,876.611 1817.87,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,858.402 1807.35,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,858.402 1817.87,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,858.402 1838.89,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,858.402 1817.87,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,840.194 1817.87,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,840.194 1828.38,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,821.985 1807.35,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,821.985 1817.87,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,821.985 1838.89,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,821.985 1817.87,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,803.777 1817.87,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,803.777 1828.38,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,785.568 1807.35,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,785.568 1817.87,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,785.568 1838.89,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,785.568 1817.87,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,767.359 1817.87,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,767.359 1828.38,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,749.151 1807.35,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,749.151 1817.87,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,749.151 1838.89,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,749.151 1817.87,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,730.942 1817.87,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,730.942 1828.38,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,712.734 1807.35,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,712.734 1817.87,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,712.734 1838.89,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,712.734 1817.87,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,694.525 1817.87,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,694.525 1828.38,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,676.316 1807.35,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,676.316 1817.87,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,676.316 1838.89,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,676.316 1817.87,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,658.108 1817.87,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,658.108 1828.38,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,876.611 1838.89,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,858.402 1828.38,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,858.402 1838.89,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,858.402 1859.92,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,858.402 1838.89,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,840.194 1838.89,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,840.194 1849.41,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,821.985 1828.38,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,821.985 1838.89,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,821.985 1859.92,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,821.985 1838.89,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,803.777 1838.89,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,803.777 1849.41,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,785.568 1828.38,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,785.568 1838.89,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,785.568 1859.92,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,785.568 1838.89,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,767.359 1838.89,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,767.359 1849.41,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,749.151 1828.38,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,749.151 1838.89,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,749.151 1859.92,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,749.151 1838.89,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,730.942 1838.89,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,730.942 1849.41,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,712.734 1828.38,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,712.734 1838.89,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,712.734 1859.92,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,712.734 1838.89,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,694.525 1838.89,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,694.525 1849.41,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,676.316 1828.38,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,676.316 1838.89,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,676.316 1859.92,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,676.316 1838.89,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,658.108 1838.89,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,658.108 1849.41,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,876.611 1859.92,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,858.402 1849.41,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,858.402 1859.92,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,858.402 1880.94,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,858.402 1859.92,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,840.194 1859.92,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,840.194 1870.43,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,821.985 1849.41,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,821.985 1859.92,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,821.985 1880.94,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,821.985 1859.92,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,803.777 1859.92,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,803.777 1870.43,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,785.568 1849.41,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,785.568 1859.92,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,785.568 1880.94,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,785.568 1859.92,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,767.359 1859.92,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,767.359 1870.43,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,749.151 1849.41,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,749.151 1859.92,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,749.151 1880.94,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,749.151 1859.92,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,730.942 1859.92,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,730.942 1870.43,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,712.734 1849.41,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,712.734 1859.92,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,712.734 1880.94,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,712.734 1859.92,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,694.525 1859.92,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,694.525 1870.43,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,676.316 1849.41,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,676.316 1859.92,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,676.316 1880.94,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,676.316 1859.92,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,658.108 1859.92,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,658.108 1870.43,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,876.611 1880.94,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,858.402 1870.43,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,858.402 1880.94,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,858.402 1901.97,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,858.402 1880.94,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,840.194 1880.94,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,840.194 1891.46,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,821.985 1870.43,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,821.985 1880.94,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,821.985 1901.97,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,821.985 1880.94,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,803.777 1880.94,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,803.777 1891.46,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,785.568 1870.43,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,785.568 1880.94,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,785.568 1901.97,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,785.568 1880.94,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,767.359 1880.94,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,767.359 1891.46,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,749.151 1870.43,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,749.151 1880.94,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,749.151 1901.97,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,749.151 1880.94,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,730.942 1880.94,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,730.942 1891.46,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,712.734 1870.43,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,712.734 1880.94,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,712.734 1901.97,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,712.734 1880.94,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,694.525 1880.94,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,694.525 1891.46,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,676.316 1870.43,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,676.316 1880.94,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,676.316 1901.97,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,676.316 1880.94,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,658.108 1880.94,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,658.108 1891.46,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,876.611 1901.97,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,858.402 1891.46,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,858.402 1901.97,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,858.402 1922.99,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,858.402 1901.97,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,840.194 1901.97,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,840.194 1912.48,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,821.985 1891.46,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,821.985 1901.97,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,821.985 1922.99,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,821.985 1901.97,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,803.777 1901.97,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,803.777 1912.48,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,785.568 1891.46,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,785.568 1901.97,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,785.568 1922.99,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,785.568 1901.97,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,767.359 1901.97,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,767.359 1912.48,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,749.151 1891.46,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,749.151 1901.97,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,749.151 1922.99,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,749.151 1901.97,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,730.942 1901.97,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,730.942 1912.48,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,712.734 1891.46,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,712.734 1901.97,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,712.734 1922.99,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,712.734 1901.97,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,694.525 1901.97,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,694.525 1912.48,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,676.316 1891.46,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,676.316 1901.97,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,676.316 1922.99,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,676.316 1901.97,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,658.108 1901.97,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,658.108 1912.48,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,876.611 1922.99,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,858.402 1912.48,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,858.402 1922.99,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,858.402 1944.02,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,858.402 1922.99,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,840.194 1922.99,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,840.194 1933.51,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,821.985 1912.48,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,821.985 1922.99,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,821.985 1944.02,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,821.985 1922.99,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,803.777 1922.99,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,803.777 1933.51,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,785.568 1912.48,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,785.568 1922.99,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,785.568 1944.02,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,785.568 1922.99,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,767.359 1922.99,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,767.359 1933.51,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,749.151 1912.48,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,749.151 1922.99,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,749.151 1944.02,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,749.151 1922.99,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,730.942 1922.99,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,730.942 1933.51,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,712.734 1912.48,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,712.734 1922.99,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,712.734 1944.02,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,712.734 1922.99,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,694.525 1922.99,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,694.525 1933.51,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,676.316 1912.48,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,676.316 1922.99,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,676.316 1944.02,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,676.316 1922.99,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,658.108 1922.99,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,658.108 1933.51,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,876.611 1944.02,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,858.402 1933.51,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,858.402 1944.02,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,858.402 1965.05,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,858.402 1944.02,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,840.194 1944.02,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,840.194 1954.53,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,821.985 1933.51,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,821.985 1944.02,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,821.985 1965.05,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,821.985 1944.02,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,803.777 1944.02,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,803.777 1954.53,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,785.568 1933.51,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,785.568 1944.02,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,785.568 1965.05,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,785.568 1944.02,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,767.359 1944.02,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,767.359 1954.53,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,749.151 1933.51,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,749.151 1944.02,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,749.151 1965.05,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,749.151 1944.02,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,730.942 1944.02,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,730.942 1954.53,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,712.734 1933.51,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,712.734 1944.02,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,712.734 1965.05,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,712.734 1944.02,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,694.525 1944.02,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,694.525 1954.53,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,676.316 1933.51,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,676.316 1944.02,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,676.316 1965.05,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,676.316 1944.02,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,658.108 1944.02,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,658.108 1954.53,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,876.611 1965.05,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,858.402 1954.53,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,858.402 1965.05,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,858.402 1986.07,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,858.402 1965.05,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,840.194 1965.05,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,840.194 1975.56,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,821.985 1954.53,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,821.985 1965.05,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,821.985 1986.07,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,821.985 1965.05,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,803.777 1965.05,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,803.777 1975.56,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,785.568 1954.53,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,785.568 1965.05,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,785.568 1986.07,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,785.568 1965.05,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,767.359 1965.05,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,767.359 1975.56,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,749.151 1954.53,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,749.151 1965.05,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,749.151 1986.07,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,749.151 1965.05,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,730.942 1965.05,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,730.942 1975.56,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,712.734 1954.53,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,712.734 1965.05,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,712.734 1986.07,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,712.734 1965.05,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,694.525 1965.05,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,694.525 1975.56,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,676.316 1954.53,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,676.316 1965.05,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,676.316 1986.07,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,676.316 1965.05,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,658.108 1965.05,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,658.108 1975.56,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,876.611 1986.07,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,858.402 1975.56,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,858.402 1986.07,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,858.402 2007.1,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,858.402 1986.07,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,840.194 1986.07,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,840.194 1996.58,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,821.985 1975.56,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,821.985 1986.07,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,821.985 2007.1,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,821.985 1986.07,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,803.777 1986.07,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,803.777 1996.58,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,785.568 1975.56,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,785.568 1986.07,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,785.568 2007.1,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,785.568 1986.07,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,767.359 1986.07,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,767.359 1996.58,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,749.151 1975.56,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,749.151 1986.07,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,749.151 2007.1,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,749.151 1986.07,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,730.942 1986.07,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,730.942 1996.58,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,712.734 1975.56,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,712.734 1986.07,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,712.734 2007.1,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,712.734 1986.07,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,694.525 1986.07,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,694.525 1996.58,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,676.316 1975.56,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,676.316 1986.07,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,676.316 2007.1,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,676.316 1986.07,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,658.108 1986.07,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,658.108 1996.58,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,876.611 2007.1,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,858.402 1996.58,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,858.402 2007.1,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,858.402 2028.12,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,858.402 2007.1,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,840.194 2007.1,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,840.194 2017.61,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,821.985 1996.58,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,821.985 2007.1,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,821.985 2028.12,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,821.985 2007.1,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,803.777 2007.1,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,803.777 2017.61,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,785.568 1996.58,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,785.568 2007.1,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,785.568 2028.12,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,785.568 2007.1,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,767.359 2007.1,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,767.359 2017.61,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,749.151 1996.58,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,749.151 2007.1,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,749.151 2028.12,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,749.151 2007.1,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,730.942 2007.1,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,730.942 2017.61,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,712.734 1996.58,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,712.734 2007.1,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,712.734 2028.12,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,712.734 2007.1,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,694.525 2007.1,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,694.525 2017.61,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,676.316 1996.58,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,676.316 2007.1,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,676.316 2028.12,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,676.316 2007.1,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,658.108 2007.1,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,658.108 2017.61,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,876.611 2028.12,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,858.402 2017.61,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,858.402 2028.12,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,858.402 2049.15,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,858.402 2028.12,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,840.194 2028.12,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,840.194 2038.63,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,821.985 2017.61,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,821.985 2028.12,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,821.985 2049.15,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,821.985 2028.12,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,803.777 2028.12,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,803.777 2038.63,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,785.568 2017.61,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,785.568 2028.12,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,785.568 2049.15,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,785.568 2028.12,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,767.359 2028.12,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,767.359 2038.63,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,749.151 2017.61,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,749.151 2028.12,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,749.151 2049.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,749.151 2028.12,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,730.942 2028.12,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,730.942 2038.63,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,712.734 2017.61,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,712.734 2028.12,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,712.734 2049.15,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,712.734 2028.12,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,694.525 2028.12,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,694.525 2038.63,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,676.316 2017.61,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,676.316 2028.12,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,676.316 2049.15,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,676.316 2028.12,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,658.108 2028.12,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,658.108 2038.63,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,876.611 2049.15,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,858.402 2038.63,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,858.402 2049.15,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,858.402 2070.17,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,858.402 2049.15,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,840.194 2049.15,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,840.194 2059.66,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,821.985 2038.63,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,821.985 2049.15,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,821.985 2070.17,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,821.985 2049.15,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,803.777 2049.15,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,803.777 2059.66,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,785.568 2038.63,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,785.568 2049.15,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,785.568 2070.17,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,785.568 2049.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,767.359 2049.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,767.359 2059.66,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,749.151 2038.63,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,749.151 2049.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,749.151 2070.17,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,749.151 2049.15,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,730.942 2049.15,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,730.942 2059.66,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,712.734 2038.63,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,712.734 2049.15,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,712.734 2070.17,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,712.734 2049.15,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,694.525 2049.15,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,694.525 2059.66,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,676.316 2038.63,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,676.316 2049.15,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,676.316 2070.17,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,676.316 2049.15,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,658.108 2049.15,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,658.108 2059.66,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,876.611 2070.17,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,858.402 2059.66,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,858.402 2070.17,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,858.402 2091.2,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,858.402 2070.17,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,840.194 2070.17,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,840.194 2080.69,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,821.985 2059.66,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,821.985 2070.17,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,821.985 2091.2,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,821.985 2070.17,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,803.777 2070.17,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,803.777 2080.69,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,785.568 2059.66,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,785.568 2070.17,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,785.568 2091.2,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,785.568 2070.17,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,767.359 2070.17,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,767.359 2080.69,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,749.151 2059.66,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,749.151 2070.17,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,749.151 2091.2,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,749.151 2070.17,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,730.942 2070.17,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,730.942 2080.69,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,712.734 2059.66,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,712.734 2070.17,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,712.734 2091.2,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,712.734 2070.17,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,694.525 2070.17,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,694.525 2080.69,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,676.316 2059.66,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,676.316 2070.17,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,676.316 2091.2,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,676.316 2070.17,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,658.108 2070.17,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,658.108 2080.69,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,876.611 2091.2,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,858.402 2080.69,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,858.402 2091.2,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,858.402 2112.22,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,858.402 2091.2,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,840.194 2091.2,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,840.194 2101.71,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,821.985 2080.69,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,821.985 2091.2,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,821.985 2112.22,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,821.985 2091.2,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,803.777 2091.2,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,803.777 2101.71,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,785.568 2080.69,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,785.568 2091.2,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,785.568 2112.22,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,785.568 2091.2,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,767.359 2091.2,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,767.359 2101.71,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,749.151 2080.69,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,749.151 2091.2,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,749.151 2112.22,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,749.151 2091.2,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,730.942 2091.2,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,730.942 2101.71,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,712.734 2080.69,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,712.734 2091.2,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,712.734 2112.22,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,712.734 2091.2,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,694.525 2091.2,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,694.525 2101.71,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,676.316 2080.69,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,676.316 2091.2,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,676.316 2112.22,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,676.316 2091.2,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,658.108 2091.2,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,658.108 2101.71,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,876.611 2112.22,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,858.402 2101.71,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,858.402 2112.22,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,858.402 2133.25,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,858.402 2112.22,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,840.194 2112.22,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,840.194 2122.74,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,821.985 2101.71,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,821.985 2112.22,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,821.985 2133.25,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,821.985 2112.22,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,803.777 2112.22,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,803.777 2122.74,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,785.568 2101.71,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,785.568 2112.22,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,785.568 2133.25,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,785.568 2112.22,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,767.359 2112.22,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,767.359 2122.74,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,749.151 2101.71,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,749.151 2112.22,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,749.151 2133.25,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,749.151 2112.22,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,730.942 2112.22,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,730.942 2122.74,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,712.734 2101.71,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,712.734 2112.22,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,712.734 2133.25,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,712.734 2112.22,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,694.525 2112.22,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,694.525 2122.74,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,676.316 2101.71,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,676.316 2112.22,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,676.316 2133.25,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,676.316 2112.22,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,658.108 2112.22,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,658.108 2122.74,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,876.611 2133.25,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,858.402 2122.74,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,858.402 2133.25,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,858.402 2154.28,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,858.402 2133.25,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,840.194 2133.25,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,840.194 2143.76,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,821.985 2122.74,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,821.985 2133.25,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,821.985 2154.28,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,821.985 2133.25,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,803.777 2133.25,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,803.777 2143.76,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,785.568 2122.74,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,785.568 2133.25,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,785.568 2154.28,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,785.568 2133.25,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,767.359 2133.25,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,767.359 2143.76,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,749.151 2122.74,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,749.151 2133.25,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,749.151 2154.28,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,749.151 2133.25,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,730.942 2133.25,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,730.942 2143.76,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,712.734 2122.74,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,712.734 2133.25,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,712.734 2154.28,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,712.734 2133.25,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,694.525 2133.25,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,694.525 2143.76,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,676.316 2122.74,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,676.316 2133.25,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,676.316 2154.28,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,676.316 2133.25,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,658.108 2133.25,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,658.108 2143.76,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,876.611 2154.28,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,858.402 2143.76,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,858.402 2154.28,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,858.402 2175.3,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,858.402 2154.28,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,840.194 2154.28,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,840.194 2164.79,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,821.985 2143.76,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,821.985 2154.28,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,821.985 2175.3,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,821.985 2154.28,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,803.777 2154.28,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,803.777 2164.79,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,785.568 2143.76,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,785.568 2154.28,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,785.568 2175.3,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,785.568 2154.28,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,767.359 2154.28,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,767.359 2164.79,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,749.151 2143.76,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,749.151 2154.28,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,749.151 2175.3,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,749.151 2154.28,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,730.942 2154.28,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,730.942 2164.79,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,712.734 2143.76,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,712.734 2154.28,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,712.734 2175.3,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,712.734 2154.28,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,694.525 2154.28,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,694.525 2164.79,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,676.316 2143.76,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,676.316 2154.28,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,676.316 2175.3,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,676.316 2154.28,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,658.108 2154.28,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,658.108 2164.79,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,876.611 2175.3,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,858.402 2164.79,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,858.402 2175.3,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,858.402 2196.33,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,858.402 2175.3,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,840.194 2175.3,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,840.194 2185.81,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,821.985 2164.79,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,821.985 2175.3,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,821.985 2196.33,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,821.985 2175.3,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,803.777 2175.3,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,803.777 2185.81,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,785.568 2164.79,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,785.568 2175.3,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,785.568 2196.33,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,785.568 2175.3,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,767.359 2175.3,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,767.359 2185.81,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,749.151 2164.79,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,749.151 2175.3,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,749.151 2196.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,749.151 2175.3,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,730.942 2175.3,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,730.942 2185.81,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,712.734 2164.79,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,712.734 2175.3,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,712.734 2196.33,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,712.734 2175.3,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,694.525 2175.3,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,694.525 2185.81,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,676.316 2164.79,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,676.316 2175.3,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,676.316 2196.33,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,676.316 2175.3,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,658.108 2175.3,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,658.108 2185.81,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,876.611 2196.33,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,858.402 2185.81,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,858.402 2196.33,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,858.402 2217.35,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,858.402 2196.33,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,840.194 2196.33,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,840.194 2206.84,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,821.985 2185.81,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,821.985 2196.33,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,821.985 2217.35,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,821.985 2196.33,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,803.777 2196.33,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,803.777 2206.84,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,785.568 2185.81,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,785.568 2196.33,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,785.568 2217.35,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,785.568 2196.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,767.359 2196.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,767.359 2206.84,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,749.151 2185.81,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,749.151 2196.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,749.151 2217.35,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,749.151 2196.33,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,730.942 2196.33,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,730.942 2206.84,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,712.734 2185.81,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,712.734 2196.33,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,712.734 2217.35,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,712.734 2196.33,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,694.525 2196.33,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,694.525 2206.84,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,676.316 2185.81,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,676.316 2196.33,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,676.316 2217.35,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,676.316 2196.33,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,658.108 2196.33,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,658.108 2206.84,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,876.611 2217.35,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,858.402 2206.84,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,858.402 2217.35,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,858.402 2238.38,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,858.402 2217.35,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,840.194 2217.35,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,840.194 2227.86,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,821.985 2206.84,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,821.985 2217.35,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,821.985 2238.38,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,821.985 2217.35,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,803.777 2217.35,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,803.777 2227.86,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,785.568 2206.84,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,785.568 2217.35,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,785.568 2238.38,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,785.568 2217.35,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,767.359 2217.35,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,767.359 2227.86,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,749.151 2206.84,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,749.151 2217.35,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,749.151 2238.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,749.151 2217.35,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,730.942 2217.35,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,730.942 2227.86,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,712.734 2206.84,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,712.734 2217.35,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,712.734 2238.38,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,712.734 2217.35,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,694.525 2217.35,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,694.525 2227.86,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,676.316 2206.84,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,676.316 2217.35,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,676.316 2238.38,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,676.316 2217.35,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,658.108 2217.35,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,658.108 2227.86,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,876.611 2238.38,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,858.402 2227.86,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,858.402 2238.38,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,858.402 2259.4,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,858.402 2238.38,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,840.194 2238.38,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,840.194 2248.89,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,821.985 2227.86,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,821.985 2238.38,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,821.985 2259.4,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,821.985 2238.38,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,803.777 2238.38,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,803.777 2248.89,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,785.568 2227.86,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,785.568 2238.38,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,785.568 2259.4,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,785.568 2238.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,767.359 2238.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,767.359 2248.89,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,749.151 2227.86,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,749.151 2238.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,749.151 2259.4,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,749.151 2238.38,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,730.942 2238.38,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,730.942 2248.89,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,712.734 2227.86,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,712.734 2238.38,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,712.734 2259.4,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,712.734 2238.38,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,694.525 2238.38,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,694.525 2248.89,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,676.316 2227.86,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,676.316 2238.38,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,676.316 2259.4,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,676.316 2238.38,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,658.108 2238.38,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,658.108 2248.89,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,876.611 2259.4,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,858.402 2248.89,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,858.402 2259.4,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,858.402 2280.43,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,858.402 2259.4,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,840.194 2259.4,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,840.194 2269.92,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,821.985 2248.89,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,821.985 2259.4,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,821.985 2280.43,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,821.985 2259.4,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,803.777 2259.4,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,803.777 2269.92,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,785.568 2248.89,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,785.568 2259.4,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,785.568 2280.43,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,785.568 2259.4,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,767.359 2259.4,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,767.359 2269.92,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,749.151 2248.89,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,749.151 2259.4,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,749.151 2280.43,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,749.151 2259.4,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,730.942 2259.4,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,730.942 2269.92,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,712.734 2248.89,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,712.734 2259.4,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,712.734 2280.43,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,712.734 2259.4,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,694.525 2259.4,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,694.525 2269.92,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,676.316 2248.89,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,676.316 2259.4,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,676.316 2280.43,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,676.316 2259.4,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,658.108 2259.4,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,658.108 2269.92,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,858.402 2269.92,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,858.402 2280.43,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,858.402 2280.43,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,821.985 2269.92,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,821.985 2280.43,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,821.985 2280.43,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,785.568 2269.92,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,785.568 2280.43,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,785.568 2280.43,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,749.151 2269.92,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,749.151 2280.43,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,749.151 2280.43,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,712.734 2269.92,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,712.734 2280.43,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,712.734 2280.43,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,676.316 2269.92,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,676.316 2280.43,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2502)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,676.316 2280.43,658.108 \n", " \"/>\n", "</svg>\n" ] }, "metadata": {}, "output_type": "display_data" } ], "source": [ "delta=2.5\n", "deltaS=sqrt(delta^2-(delta/2.0)^2)\n", "x=-130.0:delta:130.0\n", "y=-20.0:deltaS:20.0\n", "Xs=[]\n", "Ys=[]\n", "\n", "edgesX=[]\n", "edgesY=[]\n", "\n", "nodes=[]\n", "edges=[]\n", "count=1\n", "tol=1e-5\n", "\n", "for i in 1:length(x)\n", " for j in 1:length(y)\n", " ii=x[i]\n", " jj=y[j]\n", " if j%(2.0)==0.0\n", " ii=x[i]+delta/2.0\n", " end\n", " \n", " if frepCouponBW(ii,jj)>0\n", " append!(Xs,ii)\n", " append!(Ys,jj)\n", " \n", " append!(nodes,[[ii,jj]])\n", " \n", " node1=deepcopy(node)\n", " node1[\"id\"]=\"n$(count-1)\"\n", " node1[\"position\"][\"x\"]=ii/scale1\n", " node1[\"position\"][\"y\"]=jj/scale1\n", " node1[\"position\"][\"z\"]=0\n", " if(ii<-100)\n", " node1[\"force\"][\"x\"]=-0.5*0.01\n", " node1[\"force\"][\"y\"]=0\n", " node1[\"force\"][\"z\"]=0\n", " elseif(ii>100)\n", " node1[\"force\"][\"x\"]=0.5*0.01\n", " node1[\"force\"][\"y\"]=0\n", " node1[\"force\"][\"z\"]=0\n", " end\n", " \n", " append!(setup[\"nodes\"],[node1])\n", " \n", " \n", " \n", " id=nodeAt(ii-delta,jj,nodes,tol)\n", " if id>0\n", " append!(edgesX,[[ii,ii-delta]])\n", " append!(edgesY,[[jj,jj]])\n", " if edgeAt(id,count,edges)<0\n", " append!(edges,[[count,id]])\n", " edge1=deepcopy(edge)\n", " edge1[\"id\"]=\"e$(count-1)\"\n", " edge1[\"source\"]=(count-1)\n", " edge1[\"target\"]=(id-1)\n", "\n", " append!(setup[\"edges\"],[edge1])\n", " end\n", " end\n", " id=nodeAt(ii- delta/2.0,jj-deltaS,nodes,tol)\n", " if id>0\n", " append!(edgesX,[[ii,ii-delta/2.0]])\n", " append!(edgesY,[[jj,jj-deltaS]])\n", " if edgeAt(id,count,edges)<0\n", " append!(edges,[[count,id]])\n", " edge1=deepcopy(edge)\n", " edge1[\"id\"]=\"e$(count-1)\"\n", " edge1[\"source\"]=(count-1)\n", " edge1[\"target\"]=(id-1)\n", "\n", " append!(setup[\"edges\"],[edge1])\n", " end\n", " end\n", " id=nodeAt(ii+ (delta/2.0),jj-deltaS,nodes,tol)\n", " if id>0\n", " append!(edgesX,[[ii,ii+delta/2.0]])\n", " append!(edgesY,[[jj,jj-deltaS]])\n", " if edgeAt(id,count,edges)<0\n", " append!(edges,[[count,id]])\n", " edge1=deepcopy(edge)\n", " edge1[\"id\"]=\"e$(count-1)\"\n", " edge1[\"source\"]=(count-1)\n", " edge1[\"target\"]=(id-1)\n", "\n", " append!(setup[\"edges\"],[edge1])\n", " end\n", " end\n", " \n", " id=nodeAt(ii- delta/2.0,jj+deltaS,nodes,tol)\n", " if id>0\n", " append!(edgesX,[[ii,ii-delta/2.0]])\n", " append!(edgesY,[[jj,jj+deltaS]])\n", " if edgeAt(id,count,edges)<0\n", " append!(edges,[[count,id]])\n", " edge1=deepcopy(edge)\n", " edge1[\"id\"]=\"e$(count-1)\"\n", " edge1[\"source\"]=(count-1)\n", " edge1[\"target\"]=(id-1)\n", "\n", " append!(setup[\"edges\"],[edge1])\n", " end\n", " end\n", " id=nodeAt(ii+ (delta/2.0),jj+deltaS,nodes,tol)\n", " if id>0\n", " append!(edgesX,[[ii,ii+delta/2.0]])\n", " append!(edgesY,[[jj,jj+deltaS]])\n", " if edgeAt(id,count,edges)<0\n", " append!(edges,[[count,id]])\n", " edge1=deepcopy(edge)\n", " edge1[\"id\"]=\"e$(count-1)\"\n", " edge1[\"source\"]=(count-1)\n", " edge1[\"target\"]=(id-1)\n", "\n", " append!(setup[\"edges\"],[edge1])\n", " end\n", " end\n", " \n", " count+=1\n", " end\n", " end\n", "end\n", "edges=reshape(vcat(edges...),2,length(edges))\n", "\n", "plot(edgesX,edgesY, aspect_ratio=:equal,label=\"\")\n", "display(scatter!(Xs,Ys, aspect_ratio=:equal,label=\"\"))\n", "display(plot(edgesX,edgesY, aspect_ratio=:equal,label=\"\"))" ] }, { "cell_type": "code", "execution_count": 439, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "854652" ] }, "execution_count": 439, "metadata": {}, "output_type": "execute_result" } ], "source": [ "newSetup=Dict()\n", "newSetup[\"setup\"]=setup\n", "fileName=\"../../json/couponHex.json\"\n", "fileName\n", "# pass data as a json string (how it shall be displayed in a file)\n", "stringdata = JSON.json(newSetup)\n", "\n", "# write the file with the stringdata variable information\n", "open(fileName, \"w\") do f\n", " write(f, stringdata)\n", "end" ] }, { "cell_type": "code", "execution_count": 436, "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=\"clip1700\">\n", " <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip1700)\" 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=\"clip1701\">\n", " <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip1700)\" d=\"\n", "M168.627 1487.47 L2352.76 1487.47 L2352.76 47.2441 L168.627 47.2441 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip1702\">\n", " <rect x=\"168\" y=\"47\" width=\"2185\" height=\"1441\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 419.671,1487.47 419.671,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 840.181,1487.47 840.181,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1260.69,1487.47 1260.69,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1681.2,1487.47 1681.2,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2101.71,1487.47 2101.71,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,1267.64 2352.76,1267.64 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,1015.34 2352.76,1015.34 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,763.033 2352.76,763.033 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,510.727 2352.76,510.727 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 168.627,258.421 2352.76,258.421 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,1487.47 2352.76,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,1487.47 168.627,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,1487.47 419.671,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,1487.47 840.181,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,1487.47 1260.69,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,1487.47 1681.2,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,1487.47 2101.71,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,1267.64 194.836,1267.64 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,1015.34 194.836,1015.34 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,763.033 194.836,763.033 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,510.727 194.836,510.727 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 168.627,258.421 194.836,258.421 \n", " \"/>\n", "<g clip-path=\"url(#clip1700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 419.671, 1541.47)\" x=\"419.671\" y=\"1541.47\">-100</text>\n", "</g>\n", "<g clip-path=\"url(#clip1700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 840.181, 1541.47)\" x=\"840.181\" y=\"1541.47\">-50</text>\n", "</g>\n", "<g clip-path=\"url(#clip1700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1260.69, 1541.47)\" x=\"1260.69\" y=\"1541.47\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip1700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1681.2, 1541.47)\" x=\"1681.2\" y=\"1541.47\">50</text>\n", "</g>\n", "<g clip-path=\"url(#clip1700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 2101.71, 1541.47)\" x=\"2101.71\" y=\"1541.47\">100</text>\n", "</g>\n", "<g clip-path=\"url(#clip1700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 1285.14)\" x=\"144.627\" y=\"1285.14\">-60</text>\n", "</g>\n", "<g clip-path=\"url(#clip1700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 1032.84)\" x=\"144.627\" y=\"1032.84\">-30</text>\n", "</g>\n", "<g clip-path=\"url(#clip1700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 780.533)\" x=\"144.627\" y=\"780.533\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip1700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 528.227)\" x=\"144.627\" y=\"528.227\">30</text>\n", "</g>\n", "<g clip-path=\"url(#clip1700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 144.627, 275.921)\" x=\"144.627\" y=\"275.921\">60</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.442,858.402 240.955,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 240.955,840.194 230.442,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.442,821.985 240.955,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 240.955,803.777 230.442,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.442,785.568 240.955,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 240.955,767.359 230.442,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.442,749.151 240.955,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 240.955,730.942 230.442,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.442,712.734 240.955,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 240.955,694.525 230.442,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 230.442,676.316 240.955,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 240.955,658.108 230.442,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,876.611 240.955,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,858.402 230.442,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,858.402 240.955,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,858.402 261.98,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,858.402 240.955,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,840.194 240.955,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,840.194 251.467,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,821.985 230.442,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,821.985 240.955,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,821.985 261.98,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,821.985 240.955,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,803.777 240.955,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,803.777 251.467,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,785.568 230.442,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,785.568 240.955,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,785.568 261.98,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,785.568 240.955,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,767.359 240.955,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,767.359 251.467,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,749.151 230.442,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,749.151 240.955,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,749.151 261.98,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,749.151 240.955,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,730.942 240.955,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,730.942 251.467,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,712.734 230.442,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,712.734 240.955,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,712.734 261.98,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,712.734 240.955,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,694.525 240.955,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,694.525 251.467,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,676.316 230.442,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,676.316 240.955,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,676.316 261.98,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 251.467,676.316 240.955,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,658.108 240.955,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 261.98,658.108 251.467,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,876.611 261.98,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,858.402 251.467,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,858.402 261.98,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,858.402 283.006,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,858.402 261.98,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,840.194 261.98,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,840.194 272.493,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,821.985 251.467,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,821.985 261.98,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,821.985 283.006,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,821.985 261.98,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,803.777 261.98,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,803.777 272.493,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,785.568 251.467,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,785.568 261.98,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,785.568 283.006,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,785.568 261.98,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,767.359 261.98,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,767.359 272.493,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,749.151 251.467,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,749.151 261.98,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,749.151 283.006,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,749.151 261.98,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,730.942 261.98,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,730.942 272.493,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,712.734 251.467,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,712.734 261.98,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,712.734 283.006,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,712.734 261.98,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,694.525 261.98,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,694.525 272.493,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,676.316 251.467,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,676.316 261.98,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,676.316 283.006,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 272.493,676.316 261.98,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,658.108 261.98,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 283.006,658.108 272.493,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,876.611 283.006,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,858.402 272.493,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,858.402 283.006,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,858.402 304.031,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,858.402 283.006,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,840.194 283.006,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,840.194 293.518,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,821.985 272.493,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,821.985 283.006,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,821.985 304.031,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,821.985 283.006,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,803.777 283.006,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,803.777 293.518,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,785.568 272.493,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,785.568 283.006,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,785.568 304.031,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,785.568 283.006,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,767.359 283.006,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,767.359 293.518,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,749.151 272.493,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,749.151 283.006,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,749.151 304.031,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,749.151 283.006,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,730.942 283.006,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,730.942 293.518,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,712.734 272.493,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,712.734 283.006,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,712.734 304.031,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,712.734 283.006,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,694.525 283.006,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,694.525 293.518,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,676.316 272.493,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,676.316 283.006,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,676.316 304.031,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 293.518,676.316 283.006,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,658.108 283.006,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 304.031,658.108 293.518,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,876.611 304.031,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,858.402 293.518,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,858.402 304.031,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,858.402 325.057,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,858.402 304.031,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,840.194 304.031,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,840.194 314.544,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,821.985 293.518,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,821.985 304.031,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,821.985 325.057,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,821.985 304.031,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,803.777 304.031,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,803.777 314.544,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,785.568 293.518,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,785.568 304.031,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,785.568 325.057,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,785.568 304.031,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,767.359 304.031,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,767.359 314.544,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,749.151 293.518,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,749.151 304.031,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,749.151 325.057,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,749.151 304.031,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,730.942 304.031,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,730.942 314.544,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,712.734 293.518,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,712.734 304.031,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,712.734 325.057,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,712.734 304.031,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,694.525 304.031,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,694.525 314.544,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,676.316 293.518,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,676.316 304.031,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,676.316 325.057,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 314.544,676.316 304.031,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,658.108 304.031,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 325.057,658.108 314.544,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,876.611 325.057,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,858.402 314.544,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,858.402 325.057,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,858.402 346.082,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,858.402 325.057,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,840.194 325.057,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,840.194 335.569,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,821.985 314.544,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,821.985 325.057,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,821.985 346.082,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,821.985 325.057,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,803.777 325.057,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,803.777 335.569,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,785.568 314.544,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,785.568 325.057,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,785.568 346.082,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,785.568 325.057,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,767.359 325.057,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,767.359 335.569,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,749.151 314.544,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,749.151 325.057,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,749.151 346.082,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,749.151 325.057,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,730.942 325.057,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,730.942 335.569,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,712.734 314.544,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,712.734 325.057,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,712.734 346.082,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,712.734 325.057,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,694.525 325.057,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,694.525 335.569,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,676.316 314.544,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,676.316 325.057,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,676.316 346.082,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 335.569,676.316 325.057,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,658.108 325.057,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 346.082,658.108 335.569,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,876.611 346.082,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,858.402 335.569,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,858.402 346.082,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,858.402 367.108,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,858.402 346.082,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,840.194 346.082,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,840.194 356.595,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,821.985 335.569,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,821.985 346.082,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,821.985 367.108,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,821.985 346.082,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,803.777 346.082,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,803.777 356.595,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,785.568 335.569,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,785.568 346.082,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,785.568 367.108,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,785.568 346.082,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,767.359 346.082,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,767.359 356.595,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,749.151 335.569,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,749.151 346.082,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,749.151 367.108,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,749.151 346.082,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,730.942 346.082,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,730.942 356.595,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,712.734 335.569,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,712.734 346.082,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,712.734 367.108,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,712.734 346.082,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,694.525 346.082,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,694.525 356.595,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,676.316 335.569,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,676.316 346.082,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,676.316 367.108,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 356.595,676.316 346.082,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,658.108 346.082,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 367.108,658.108 356.595,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,876.611 367.108,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,858.402 356.595,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,858.402 367.108,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,858.402 388.133,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,858.402 367.108,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,840.194 367.108,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,840.194 377.62,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,821.985 356.595,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,821.985 367.108,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,821.985 388.133,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,821.985 367.108,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,803.777 367.108,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,803.777 377.62,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,785.568 356.595,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,785.568 367.108,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,785.568 388.133,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,785.568 367.108,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,767.359 367.108,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,767.359 377.62,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,749.151 356.595,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,749.151 367.108,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,749.151 388.133,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,749.151 367.108,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,730.942 367.108,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,730.942 377.62,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,712.734 356.595,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,712.734 367.108,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,712.734 388.133,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,712.734 367.108,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,694.525 367.108,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,694.525 377.62,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,676.316 356.595,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,676.316 367.108,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,676.316 388.133,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 377.62,676.316 367.108,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,658.108 367.108,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 388.133,658.108 377.62,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,876.611 388.133,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,858.402 377.62,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,858.402 388.133,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,858.402 409.159,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,858.402 388.133,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,840.194 388.133,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,840.194 398.646,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,821.985 377.62,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,821.985 388.133,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,821.985 409.159,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,821.985 388.133,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,803.777 388.133,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,803.777 398.646,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,785.568 377.62,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,785.568 388.133,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,785.568 409.159,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,785.568 388.133,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,767.359 388.133,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,767.359 398.646,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,749.151 377.62,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,749.151 388.133,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,749.151 409.159,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,749.151 388.133,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,730.942 388.133,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,730.942 398.646,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,712.734 377.62,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,712.734 388.133,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,712.734 409.159,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,712.734 388.133,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,694.525 388.133,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,694.525 398.646,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,676.316 377.62,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,676.316 388.133,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,676.316 409.159,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 398.646,676.316 388.133,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,658.108 388.133,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 409.159,658.108 398.646,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,876.611 409.159,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,858.402 398.646,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,858.402 409.159,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,858.402 430.184,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,858.402 409.159,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,840.194 409.159,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,840.194 419.671,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,821.985 398.646,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,821.985 409.159,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,821.985 430.184,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,821.985 409.159,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,803.777 409.159,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,803.777 419.671,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,785.568 398.646,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,785.568 409.159,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,785.568 430.184,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,785.568 409.159,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,767.359 409.159,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,767.359 419.671,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,749.151 398.646,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,749.151 409.159,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,749.151 430.184,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,749.151 409.159,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,730.942 409.159,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,730.942 419.671,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,712.734 398.646,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,712.734 409.159,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,712.734 430.184,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,712.734 409.159,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,694.525 409.159,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,694.525 419.671,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,676.316 398.646,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,676.316 409.159,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,676.316 430.184,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 419.671,676.316 409.159,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,658.108 409.159,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 430.184,658.108 419.671,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,876.611 430.184,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,858.402 419.671,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,858.402 430.184,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,858.402 451.21,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,858.402 430.184,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,840.194 430.184,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,840.194 440.697,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,821.985 419.671,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,821.985 430.184,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,821.985 451.21,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,821.985 430.184,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,803.777 430.184,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,803.777 440.697,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,785.568 419.671,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,785.568 430.184,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,785.568 451.21,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,785.568 430.184,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,767.359 430.184,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,767.359 440.697,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,749.151 419.671,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,749.151 430.184,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,749.151 451.21,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,749.151 430.184,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,730.942 430.184,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,730.942 440.697,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,712.734 419.671,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,712.734 430.184,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,712.734 451.21,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,712.734 430.184,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,694.525 430.184,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,694.525 440.697,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,676.316 419.671,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,676.316 430.184,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,676.316 451.21,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 440.697,676.316 430.184,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,658.108 430.184,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 451.21,658.108 440.697,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,876.611 451.21,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,858.402 440.697,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,858.402 451.21,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,858.402 472.235,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,858.402 451.21,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,840.194 451.21,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,840.194 461.722,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,821.985 440.697,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,821.985 451.21,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,821.985 472.235,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,821.985 451.21,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,803.777 451.21,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,803.777 461.722,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,785.568 440.697,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,785.568 451.21,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,785.568 472.235,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,785.568 451.21,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,767.359 451.21,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,767.359 461.722,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,749.151 440.697,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,749.151 451.21,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,749.151 472.235,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,749.151 451.21,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,730.942 451.21,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,730.942 461.722,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,712.734 440.697,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,712.734 451.21,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,712.734 472.235,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,712.734 451.21,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,694.525 451.21,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,694.525 461.722,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,676.316 440.697,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,676.316 451.21,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,676.316 472.235,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 461.722,676.316 451.21,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,658.108 451.21,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 472.235,658.108 461.722,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,876.611 472.235,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,858.402 461.722,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,858.402 472.235,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,858.402 493.261,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,858.402 472.235,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,840.194 472.235,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,840.194 482.748,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,821.985 461.722,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,821.985 472.235,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,821.985 493.261,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,821.985 472.235,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,803.777 472.235,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,803.777 482.748,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,785.568 461.722,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,785.568 472.235,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,785.568 493.261,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,785.568 472.235,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,767.359 472.235,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,767.359 482.748,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,749.151 461.722,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,749.151 472.235,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,749.151 493.261,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,749.151 472.235,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,730.942 472.235,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,730.942 482.748,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,712.734 461.722,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,712.734 472.235,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,712.734 493.261,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,712.734 472.235,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,694.525 472.235,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,694.525 482.748,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,676.316 461.722,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,676.316 472.235,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,676.316 493.261,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 482.748,676.316 472.235,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,658.108 472.235,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 493.261,658.108 482.748,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,876.611 493.261,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,858.402 482.748,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,858.402 493.261,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,858.402 514.286,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,858.402 493.261,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,840.194 493.261,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,840.194 503.773,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,821.985 482.748,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,821.985 493.261,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,821.985 514.286,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,821.985 493.261,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,803.777 493.261,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,803.777 503.773,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,785.568 482.748,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,785.568 493.261,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,785.568 514.286,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,785.568 493.261,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,767.359 493.261,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,767.359 503.773,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,749.151 482.748,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,749.151 493.261,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,749.151 514.286,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,749.151 493.261,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,730.942 493.261,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,730.942 503.773,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,712.734 482.748,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,712.734 493.261,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,712.734 514.286,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,712.734 493.261,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,694.525 493.261,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,694.525 503.773,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,676.316 482.748,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,676.316 493.261,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,676.316 514.286,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.773,676.316 493.261,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,658.108 493.261,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 514.286,658.108 503.773,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,876.611 514.286,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,858.402 503.773,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,858.402 514.286,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,858.402 535.312,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,858.402 514.286,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,840.194 514.286,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,840.194 524.799,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,821.985 503.773,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,821.985 514.286,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,821.985 535.312,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,821.985 514.286,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,803.777 514.286,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,803.777 524.799,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,785.568 503.773,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,785.568 514.286,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,785.568 535.312,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,785.568 514.286,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,767.359 514.286,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,767.359 524.799,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,749.151 503.773,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,749.151 514.286,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,749.151 535.312,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,749.151 514.286,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,730.942 514.286,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,730.942 524.799,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,712.734 503.773,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,712.734 514.286,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,712.734 535.312,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,712.734 514.286,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,694.525 514.286,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,694.525 524.799,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,676.316 503.773,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,676.316 514.286,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,676.316 535.312,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 524.799,676.316 514.286,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,658.108 514.286,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 535.312,658.108 524.799,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,876.611 535.312,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,858.402 524.799,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,858.402 535.312,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,858.402 556.337,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,858.402 535.312,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,840.194 535.312,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,840.194 545.824,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,821.985 524.799,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,821.985 535.312,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,821.985 556.337,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,821.985 535.312,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,803.777 535.312,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,803.777 545.824,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,785.568 524.799,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,785.568 535.312,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,785.568 556.337,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,785.568 535.312,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,767.359 535.312,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,767.359 545.824,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,749.151 524.799,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,749.151 535.312,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,749.151 556.337,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,749.151 535.312,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,730.942 535.312,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,730.942 545.824,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,712.734 524.799,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,712.734 535.312,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,712.734 556.337,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,712.734 535.312,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,694.525 535.312,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,694.525 545.824,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,676.316 524.799,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,676.316 535.312,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,676.316 556.337,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 545.824,676.316 535.312,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,658.108 535.312,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 556.337,658.108 545.824,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,876.611 556.337,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,858.402 545.824,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,858.402 556.337,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,858.402 577.363,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,858.402 556.337,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,840.194 556.337,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,840.194 566.85,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,821.985 545.824,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,821.985 556.337,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,821.985 577.363,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,821.985 556.337,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,803.777 556.337,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,803.777 566.85,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,785.568 545.824,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,785.568 556.337,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,785.568 577.363,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,785.568 556.337,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,767.359 556.337,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,767.359 566.85,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,749.151 545.824,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,749.151 556.337,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,749.151 577.363,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,749.151 556.337,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,730.942 556.337,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,730.942 566.85,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,712.734 545.824,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,712.734 556.337,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,712.734 577.363,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,712.734 556.337,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,694.525 556.337,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,694.525 566.85,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,676.316 545.824,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,676.316 556.337,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,676.316 577.363,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 566.85,676.316 556.337,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,658.108 556.337,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 577.363,658.108 566.85,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,876.611 577.363,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,858.402 566.85,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,858.402 577.363,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,858.402 598.388,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,858.402 577.363,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,840.194 577.363,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,840.194 587.875,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,821.985 566.85,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,821.985 577.363,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,821.985 598.388,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,821.985 577.363,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,803.777 577.363,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,803.777 587.875,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,785.568 566.85,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,785.568 577.363,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,785.568 598.388,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,785.568 577.363,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,767.359 577.363,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,767.359 587.875,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,749.151 566.85,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,749.151 577.363,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,749.151 598.388,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,749.151 577.363,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,730.942 577.363,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,730.942 587.875,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,712.734 566.85,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,712.734 577.363,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,712.734 598.388,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,712.734 577.363,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,694.525 577.363,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,694.525 587.875,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,676.316 566.85,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,676.316 577.363,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,676.316 598.388,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 587.875,676.316 577.363,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,658.108 577.363,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 598.388,658.108 587.875,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,876.611 598.388,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,858.402 587.875,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,858.402 598.388,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,858.402 619.414,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,858.402 598.388,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,840.194 598.388,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,840.194 608.901,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,821.985 587.875,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,821.985 598.388,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,821.985 619.414,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,821.985 598.388,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,803.777 598.388,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,803.777 608.901,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,785.568 587.875,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,785.568 598.388,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,785.568 619.414,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,785.568 598.388,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,767.359 598.388,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,767.359 608.901,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,749.151 587.875,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,749.151 598.388,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,749.151 619.414,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,749.151 598.388,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,730.942 598.388,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,730.942 608.901,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,712.734 587.875,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,712.734 598.388,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,712.734 619.414,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,712.734 598.388,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,694.525 598.388,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,694.525 608.901,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,676.316 587.875,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,676.316 598.388,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,676.316 619.414,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 608.901,676.316 598.388,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,658.108 598.388,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 619.414,658.108 608.901,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,876.611 619.414,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,858.402 608.901,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,858.402 619.414,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,858.402 640.439,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,858.402 619.414,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,840.194 619.414,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,840.194 629.926,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,821.985 608.901,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,821.985 619.414,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,821.985 640.439,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,821.985 619.414,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,803.777 619.414,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,803.777 629.926,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,785.568 608.901,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,785.568 619.414,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,785.568 640.439,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,785.568 619.414,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,767.359 619.414,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,767.359 629.926,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,749.151 608.901,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,749.151 619.414,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,749.151 640.439,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,749.151 619.414,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,730.942 619.414,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,730.942 629.926,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,712.734 608.901,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,712.734 619.414,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,712.734 640.439,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,712.734 619.414,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,694.525 619.414,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,694.525 629.926,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,676.316 608.901,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,676.316 619.414,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,676.316 640.439,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 629.926,676.316 619.414,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,658.108 619.414,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 640.439,658.108 629.926,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,876.611 640.439,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,858.402 629.926,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,858.402 640.439,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,858.402 661.465,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,858.402 640.439,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,840.194 640.439,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,840.194 650.952,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,821.985 629.926,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,821.985 640.439,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,821.985 661.465,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,821.985 640.439,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,803.777 640.439,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,803.777 650.952,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,785.568 629.926,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,785.568 640.439,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,785.568 661.465,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,785.568 640.439,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,767.359 640.439,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,767.359 650.952,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,749.151 629.926,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,749.151 640.439,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,749.151 661.465,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,749.151 640.439,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,730.942 640.439,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,730.942 650.952,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,712.734 629.926,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,712.734 640.439,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,712.734 661.465,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,712.734 640.439,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,694.525 640.439,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,694.525 650.952,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,676.316 629.926,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,676.316 640.439,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,676.316 661.465,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 650.952,676.316 640.439,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,658.108 640.439,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 661.465,658.108 650.952,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,876.611 661.465,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,858.402 650.952,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,858.402 661.465,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,858.402 682.49,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,858.402 661.465,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,840.194 661.465,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,840.194 671.977,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,821.985 650.952,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,821.985 661.465,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,821.985 682.49,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,821.985 661.465,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,803.777 661.465,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,803.777 671.977,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,785.568 650.952,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,785.568 661.465,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,785.568 682.49,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,785.568 661.465,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,767.359 661.465,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,767.359 671.977,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,749.151 650.952,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,749.151 661.465,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,749.151 682.49,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,749.151 661.465,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,730.942 661.465,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,730.942 671.977,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,712.734 650.952,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,712.734 661.465,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,712.734 682.49,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,712.734 661.465,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,694.525 661.465,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,694.525 671.977,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,676.316 650.952,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,676.316 661.465,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,676.316 682.49,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 671.977,676.316 661.465,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,658.108 661.465,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 682.49,658.108 671.977,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,876.611 682.49,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,858.402 671.977,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,858.402 682.49,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,858.402 703.516,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,858.402 682.49,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,840.194 682.49,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,840.194 693.003,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,821.985 671.977,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,821.985 682.49,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,821.985 703.516,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,821.985 682.49,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,803.777 682.49,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,803.777 693.003,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,785.568 671.977,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,785.568 682.49,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,785.568 703.516,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,785.568 682.49,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,767.359 682.49,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,767.359 693.003,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,749.151 671.977,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,749.151 682.49,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,749.151 703.516,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,749.151 682.49,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,730.942 682.49,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,730.942 693.003,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,712.734 671.977,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,712.734 682.49,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,712.734 703.516,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,712.734 682.49,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,694.525 682.49,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,694.525 693.003,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,676.316 671.977,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,676.316 682.49,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,676.316 703.516,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 693.003,676.316 682.49,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,658.108 682.49,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 703.516,658.108 693.003,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,876.611 703.516,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,858.402 693.003,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,858.402 703.516,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,858.402 724.541,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,858.402 703.516,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,840.194 703.516,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,840.194 714.028,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,821.985 693.003,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,821.985 703.516,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,821.985 724.541,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,821.985 703.516,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,803.777 703.516,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,803.777 714.028,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,785.568 693.003,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,785.568 703.516,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,785.568 724.541,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,785.568 703.516,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,767.359 703.516,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,767.359 714.028,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,749.151 693.003,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,749.151 703.516,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,749.151 724.541,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,749.151 703.516,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,730.942 703.516,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,730.942 714.028,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,712.734 693.003,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,712.734 703.516,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,712.734 724.541,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,712.734 703.516,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,694.525 703.516,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,694.525 714.028,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,676.316 693.003,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,676.316 703.516,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,676.316 724.541,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 714.028,676.316 703.516,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,658.108 703.516,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.541,658.108 714.028,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,876.611 724.541,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,858.402 714.028,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,858.402 724.541,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,858.402 745.567,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,858.402 724.541,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,840.194 724.541,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,840.194 735.054,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,821.985 714.028,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,821.985 724.541,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,821.985 745.567,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,821.985 724.541,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,803.777 724.541,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,803.777 735.054,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,785.568 714.028,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,785.568 724.541,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,785.568 745.567,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,785.568 724.541,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,767.359 724.541,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,767.359 735.054,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,749.151 714.028,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,749.151 724.541,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,749.151 745.567,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,749.151 724.541,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,730.942 724.541,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,730.942 735.054,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,712.734 714.028,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,712.734 724.541,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,712.734 745.567,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,712.734 724.541,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,694.525 724.541,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,694.525 735.054,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,676.316 714.028,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,676.316 724.541,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,676.316 745.567,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 735.054,676.316 724.541,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,658.108 724.541,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 745.567,658.108 735.054,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,876.611 745.567,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,858.402 735.054,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,858.402 745.567,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,858.402 766.592,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,858.402 745.567,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,840.194 745.567,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,840.194 756.079,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,821.985 735.054,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,821.985 745.567,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,821.985 766.592,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,821.985 745.567,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,803.777 745.567,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,803.777 756.079,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,785.568 735.054,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,785.568 745.567,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,785.568 766.592,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,785.568 745.567,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,767.359 745.567,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,767.359 756.079,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,749.151 735.054,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,749.151 745.567,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,749.151 766.592,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,749.151 745.567,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,730.942 745.567,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,730.942 756.079,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,712.734 735.054,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,712.734 745.567,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,712.734 766.592,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,712.734 745.567,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,694.525 745.567,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,694.525 756.079,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,676.316 735.054,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,676.316 745.567,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,676.316 766.592,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 756.079,676.316 745.567,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,658.108 745.567,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 766.592,658.108 756.079,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,876.611 766.592,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,858.402 756.079,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,858.402 766.592,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,858.402 787.618,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,858.402 766.592,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,840.194 766.592,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,840.194 777.105,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,821.985 756.079,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,821.985 766.592,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,821.985 787.618,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,821.985 766.592,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,803.777 766.592,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,803.777 777.105,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,785.568 756.079,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,785.568 766.592,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,785.568 787.618,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,785.568 766.592,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,767.359 766.592,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,767.359 777.105,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,749.151 756.079,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,749.151 766.592,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,749.151 787.618,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,749.151 766.592,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,730.942 766.592,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,730.942 777.105,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,712.734 756.079,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,712.734 766.592,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,712.734 787.618,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,712.734 766.592,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,694.525 766.592,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,694.525 777.105,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,676.316 756.079,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,676.316 766.592,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,676.316 787.618,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 777.105,676.316 766.592,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,658.108 766.592,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 787.618,658.108 777.105,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,876.611 787.618,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,858.402 777.105,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,858.402 787.618,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,858.402 808.643,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,858.402 787.618,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,840.194 787.618,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,840.194 798.13,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,821.985 777.105,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,821.985 787.618,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,821.985 808.643,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,821.985 787.618,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,803.777 787.618,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,803.777 798.13,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,785.568 777.105,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,785.568 787.618,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,785.568 808.643,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,785.568 787.618,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,767.359 787.618,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,767.359 798.13,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,749.151 777.105,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,749.151 787.618,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,749.151 808.643,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,749.151 787.618,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,730.942 787.618,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,730.942 798.13,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,712.734 777.105,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,712.734 787.618,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,712.734 808.643,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,712.734 787.618,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,694.525 787.618,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,694.525 798.13,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,676.316 777.105,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,676.316 787.618,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,676.316 808.643,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 798.13,676.316 787.618,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,658.108 787.618,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 808.643,658.108 798.13,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,858.402 798.13,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,858.402 808.643,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,858.402 808.643,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,840.194 808.643,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,840.194 819.156,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,821.985 798.13,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,821.985 808.643,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,821.985 829.669,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,821.985 808.643,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,803.777 808.643,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,803.777 819.156,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,785.568 798.13,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,785.568 808.643,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,785.568 829.669,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,785.568 808.643,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,767.359 808.643,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,767.359 819.156,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,749.151 798.13,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,749.151 808.643,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,749.151 829.669,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,749.151 808.643,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,730.942 808.643,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,730.942 819.156,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,712.734 798.13,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,712.734 808.643,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,712.734 829.669,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,712.734 808.643,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,694.525 808.643,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,694.525 819.156,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,676.316 798.13,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,676.316 808.643,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,676.316 829.669,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 819.156,676.316 808.643,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,658.108 808.643,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 829.669,658.108 819.156,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,858.402 819.156,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,858.402 829.669,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,840.194 829.669,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,840.194 840.181,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,821.985 819.156,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,821.985 829.669,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,821.985 850.694,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,821.985 829.669,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,803.777 829.669,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,803.777 840.181,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,785.568 819.156,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,785.568 829.669,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,785.568 850.694,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,785.568 829.669,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,767.359 829.669,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,767.359 840.181,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,749.151 819.156,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,749.151 829.669,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,749.151 850.694,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,749.151 829.669,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,730.942 829.669,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,730.942 840.181,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,712.734 819.156,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,712.734 829.669,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,712.734 850.694,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,712.734 829.669,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,694.525 829.669,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 850.694,694.525 840.181,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,676.316 819.156,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,676.316 829.669,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,676.316 850.694,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 840.181,676.316 829.669,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,858.402 840.181,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,858.402 850.694,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,840.194 850.694,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,840.194 861.207,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,821.985 840.181,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,821.985 850.694,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,821.985 871.72,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,821.985 850.694,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,803.777 850.694,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,803.777 861.207,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,785.568 840.181,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,785.568 850.694,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,785.568 871.72,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,785.568 850.694,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,767.359 850.694,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,767.359 861.207,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,749.151 840.181,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,749.151 850.694,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,749.151 871.72,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,749.151 850.694,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,730.942 850.694,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,730.942 861.207,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,712.734 840.181,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,712.734 850.694,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,712.734 871.72,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,712.734 850.694,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,694.525 850.694,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 871.72,694.525 861.207,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,676.316 840.181,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,676.316 850.694,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 861.207,676.316 871.72,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,840.194 871.72,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,821.985 861.207,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,821.985 871.72,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,821.985 892.745,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,821.985 871.72,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,803.777 871.72,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,803.777 882.232,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,785.568 861.207,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,785.568 871.72,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,785.568 892.745,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,785.568 871.72,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,767.359 871.72,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,767.359 882.232,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,749.151 861.207,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,749.151 871.72,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,749.151 892.745,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,749.151 871.72,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,730.942 871.72,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,730.942 882.232,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,712.734 861.207,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,712.734 871.72,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,712.734 892.745,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,712.734 871.72,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,694.525 871.72,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 892.745,694.525 882.232,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,676.316 861.207,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,676.316 871.72,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 882.232,676.316 892.745,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,840.194 892.745,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,821.985 882.232,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,821.985 892.745,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,821.985 913.771,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,821.985 892.745,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,803.777 892.745,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,803.777 903.258,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,785.568 882.232,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,785.568 892.745,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,785.568 913.771,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,785.568 892.745,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,767.359 892.745,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,767.359 903.258,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,749.151 882.232,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,749.151 892.745,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,749.151 913.771,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,749.151 892.745,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,730.942 892.745,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,730.942 903.258,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,712.734 882.232,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,712.734 892.745,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,712.734 913.771,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,712.734 892.745,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,694.525 892.745,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 913.771,694.525 903.258,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,676.316 882.232,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,676.316 892.745,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 903.258,676.316 913.771,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,840.194 913.771,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,821.985 903.258,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,821.985 913.771,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,821.985 934.796,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,821.985 913.771,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,803.777 913.771,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,803.777 924.283,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,785.568 903.258,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,785.568 913.771,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,785.568 934.796,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,785.568 913.771,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,767.359 913.771,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,767.359 924.283,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,749.151 903.258,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,749.151 913.771,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,749.151 934.796,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,749.151 913.771,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,730.942 913.771,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,730.942 924.283,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,712.734 903.258,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,712.734 913.771,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,712.734 934.796,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,712.734 913.771,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,694.525 913.771,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 934.796,694.525 924.283,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,676.316 903.258,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,676.316 913.771,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 924.283,676.316 934.796,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,840.194 934.796,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,821.985 924.283,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,821.985 934.796,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,821.985 955.822,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,821.985 934.796,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,803.777 934.796,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,803.777 945.309,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,785.568 924.283,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,785.568 934.796,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,785.568 955.822,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,785.568 934.796,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,767.359 934.796,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,767.359 945.309,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,749.151 924.283,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,749.151 934.796,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,749.151 955.822,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,749.151 934.796,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,730.942 934.796,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,730.942 945.309,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,712.734 924.283,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,712.734 934.796,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,712.734 955.822,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 945.309,712.734 934.796,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,694.525 934.796,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 955.822,694.525 945.309,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,840.194 955.822,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,821.985 945.309,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,821.985 955.822,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,821.985 976.847,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,821.985 955.822,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,803.777 955.822,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,803.777 966.334,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,785.568 945.309,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,785.568 955.822,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,785.568 976.847,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,785.568 955.822,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,767.359 955.822,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,767.359 966.334,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,749.151 945.309,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,749.151 955.822,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,749.151 976.847,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,749.151 955.822,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,730.942 955.822,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,730.942 966.334,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,712.734 945.309,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,712.734 955.822,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,712.734 976.847,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 966.334,712.734 955.822,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,694.525 955.822,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 976.847,694.525 966.334,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,840.194 976.847,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,821.985 966.334,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,821.985 976.847,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,821.985 997.873,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,821.985 976.847,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,803.777 976.847,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,803.777 987.36,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,785.568 966.334,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,785.568 976.847,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,785.568 997.873,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,785.568 976.847,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,767.359 976.847,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,767.359 987.36,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,749.151 966.334,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,749.151 976.847,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,749.151 997.873,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,749.151 976.847,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,730.942 976.847,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,730.942 987.36,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,712.734 966.334,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,712.734 976.847,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,712.734 997.873,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 987.36,712.734 976.847,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,694.525 976.847,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 997.873,694.525 987.36,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,840.194 997.873,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,821.985 987.36,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,821.985 997.873,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,821.985 1018.9,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,821.985 997.873,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,803.777 997.873,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,803.777 1008.39,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,785.568 987.36,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,785.568 997.873,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,785.568 1018.9,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,785.568 997.873,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,767.359 997.873,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,767.359 1008.39,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,749.151 987.36,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,749.151 997.873,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,749.151 1018.9,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,749.151 997.873,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,730.942 997.873,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,730.942 1008.39,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,712.734 987.36,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,712.734 997.873,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,712.734 1018.9,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1008.39,712.734 997.873,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,694.525 997.873,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1018.9,694.525 1008.39,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,840.194 1018.9,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,821.985 1008.39,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,821.985 1018.9,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,821.985 1039.92,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,821.985 1018.9,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,803.777 1018.9,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,803.777 1029.41,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,785.568 1008.39,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,785.568 1018.9,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,785.568 1039.92,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,785.568 1018.9,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,767.359 1018.9,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,767.359 1029.41,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,749.151 1008.39,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,749.151 1018.9,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,749.151 1039.92,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,749.151 1018.9,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,730.942 1018.9,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,730.942 1029.41,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,712.734 1008.39,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,712.734 1018.9,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,712.734 1039.92,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.41,712.734 1018.9,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,694.525 1018.9,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1039.92,694.525 1029.41,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,840.194 1039.92,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,821.985 1029.41,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,821.985 1039.92,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,821.985 1060.95,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,821.985 1039.92,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,803.777 1039.92,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,803.777 1050.44,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,785.568 1029.41,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,785.568 1039.92,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,785.568 1060.95,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,785.568 1039.92,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,767.359 1039.92,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,767.359 1050.44,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,749.151 1029.41,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,749.151 1039.92,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,749.151 1060.95,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,749.151 1039.92,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,730.942 1039.92,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,730.942 1050.44,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,712.734 1029.41,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,712.734 1039.92,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,712.734 1060.95,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1050.44,712.734 1039.92,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,694.525 1039.92,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1060.95,694.525 1050.44,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,840.194 1060.95,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,821.985 1050.44,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,821.985 1060.95,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,821.985 1081.97,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,821.985 1060.95,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,803.777 1060.95,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,803.777 1071.46,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,785.568 1050.44,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,785.568 1060.95,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,785.568 1081.97,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,785.568 1060.95,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,767.359 1060.95,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,767.359 1071.46,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,749.151 1050.44,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,749.151 1060.95,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,749.151 1081.97,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,749.151 1060.95,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,730.942 1060.95,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,730.942 1071.46,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,712.734 1050.44,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,712.734 1060.95,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,712.734 1081.97,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1071.46,712.734 1060.95,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,694.525 1060.95,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1081.97,694.525 1071.46,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,840.194 1081.97,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,821.985 1071.46,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,821.985 1081.97,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,821.985 1103,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,821.985 1081.97,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,803.777 1081.97,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,803.777 1092.49,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,785.568 1071.46,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,785.568 1081.97,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,785.568 1103,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,785.568 1081.97,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,767.359 1081.97,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,767.359 1092.49,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,749.151 1071.46,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,749.151 1081.97,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,749.151 1103,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,749.151 1081.97,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,730.942 1081.97,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,730.942 1092.49,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,712.734 1071.46,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,712.734 1081.97,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,712.734 1103,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1092.49,712.734 1081.97,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,694.525 1081.97,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1103,694.525 1092.49,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,840.194 1103,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,821.985 1092.49,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,821.985 1103,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,821.985 1124.03,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,821.985 1103,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,803.777 1103,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,803.777 1113.51,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,785.568 1092.49,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,785.568 1103,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,785.568 1124.03,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,785.568 1103,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,767.359 1103,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,767.359 1113.51,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,749.151 1092.49,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,749.151 1103,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,749.151 1124.03,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,749.151 1103,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,730.942 1103,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,730.942 1113.51,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,712.734 1092.49,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,712.734 1103,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,712.734 1124.03,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1113.51,712.734 1103,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,694.525 1103,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1124.03,694.525 1113.51,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,840.194 1124.03,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,821.985 1113.51,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,821.985 1124.03,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,821.985 1145.05,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,821.985 1124.03,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,803.777 1124.03,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,803.777 1134.54,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,785.568 1113.51,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,785.568 1124.03,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,785.568 1145.05,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,785.568 1124.03,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,767.359 1124.03,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,767.359 1134.54,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,749.151 1113.51,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,749.151 1124.03,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,749.151 1145.05,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,749.151 1124.03,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,730.942 1124.03,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,730.942 1134.54,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,712.734 1113.51,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,712.734 1124.03,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,712.734 1145.05,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1134.54,712.734 1124.03,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,694.525 1124.03,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1145.05,694.525 1134.54,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,840.194 1145.05,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,821.985 1134.54,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,821.985 1145.05,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,821.985 1166.08,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,821.985 1145.05,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,803.777 1145.05,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,803.777 1155.56,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,785.568 1134.54,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,785.568 1145.05,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,785.568 1166.08,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,785.568 1145.05,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,767.359 1145.05,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,767.359 1155.56,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,749.151 1134.54,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,749.151 1145.05,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,749.151 1166.08,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,749.151 1145.05,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,730.942 1145.05,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,730.942 1155.56,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,712.734 1134.54,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,712.734 1145.05,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,712.734 1166.08,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1155.56,712.734 1145.05,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,694.525 1145.05,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1166.08,694.525 1155.56,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,840.194 1166.08,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,821.985 1155.56,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,821.985 1166.08,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,821.985 1187.1,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,821.985 1166.08,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,803.777 1166.08,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,803.777 1176.59,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,785.568 1155.56,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,785.568 1166.08,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,785.568 1187.1,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,785.568 1166.08,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,767.359 1166.08,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,767.359 1176.59,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,749.151 1155.56,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,749.151 1166.08,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,749.151 1187.1,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,749.151 1166.08,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,730.942 1166.08,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,730.942 1176.59,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,712.734 1155.56,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,712.734 1166.08,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,712.734 1187.1,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1176.59,712.734 1166.08,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,694.525 1166.08,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1187.1,694.525 1176.59,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,840.194 1187.1,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,821.985 1176.59,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,821.985 1187.1,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,821.985 1208.13,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,821.985 1187.1,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,803.777 1187.1,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,803.777 1197.61,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,785.568 1176.59,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,785.568 1187.1,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,785.568 1208.13,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,785.568 1187.1,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,767.359 1187.1,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,767.359 1197.61,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,749.151 1176.59,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,749.151 1187.1,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,749.151 1208.13,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,749.151 1187.1,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,730.942 1187.1,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,730.942 1197.61,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,712.734 1176.59,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,712.734 1187.1,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,712.734 1208.13,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1197.61,712.734 1187.1,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,694.525 1187.1,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1208.13,694.525 1197.61,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,840.194 1208.13,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,821.985 1197.61,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,821.985 1208.13,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,821.985 1229.15,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,821.985 1208.13,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,803.777 1208.13,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,803.777 1218.64,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,785.568 1197.61,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,785.568 1208.13,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,785.568 1229.15,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,785.568 1208.13,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,767.359 1208.13,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,767.359 1218.64,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,749.151 1197.61,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,749.151 1208.13,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,749.151 1229.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,749.151 1208.13,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,730.942 1208.13,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,730.942 1218.64,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,712.734 1197.61,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,712.734 1208.13,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,712.734 1229.15,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1218.64,712.734 1208.13,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,694.525 1208.13,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1229.15,694.525 1218.64,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,840.194 1229.15,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,821.985 1218.64,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,821.985 1229.15,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,821.985 1250.18,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,821.985 1229.15,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,803.777 1229.15,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,803.777 1239.67,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,785.568 1218.64,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,785.568 1229.15,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,785.568 1250.18,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,785.568 1229.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,767.359 1229.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,767.359 1239.67,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,749.151 1218.64,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,749.151 1229.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,749.151 1250.18,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,749.151 1229.15,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,730.942 1229.15,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,730.942 1239.67,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,712.734 1218.64,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,712.734 1229.15,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,712.734 1250.18,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1239.67,712.734 1229.15,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,694.525 1229.15,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.18,694.525 1239.67,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,840.194 1250.18,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,821.985 1239.67,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,821.985 1250.18,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,821.985 1271.2,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,821.985 1250.18,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,803.777 1250.18,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,803.777 1260.69,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,785.568 1239.67,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,785.568 1250.18,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,785.568 1271.2,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,785.568 1250.18,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,767.359 1250.18,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,767.359 1260.69,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,749.151 1239.67,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,749.151 1250.18,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,749.151 1271.2,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,749.151 1250.18,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,730.942 1250.18,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,730.942 1260.69,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,712.734 1239.67,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,712.734 1250.18,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,712.734 1271.2,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1260.69,712.734 1250.18,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,694.525 1250.18,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.2,694.525 1260.69,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,840.194 1271.2,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,821.985 1260.69,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,821.985 1271.2,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,821.985 1292.23,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,821.985 1271.2,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,803.777 1271.2,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,803.777 1281.72,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,785.568 1260.69,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,785.568 1271.2,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,785.568 1292.23,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,785.568 1271.2,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,767.359 1271.2,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,767.359 1281.72,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,749.151 1260.69,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,749.151 1271.2,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,749.151 1292.23,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,749.151 1271.2,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,730.942 1271.2,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,730.942 1281.72,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,712.734 1260.69,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,712.734 1271.2,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,712.734 1292.23,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1281.72,712.734 1271.2,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,694.525 1271.2,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.23,694.525 1281.72,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,840.194 1292.23,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,821.985 1281.72,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,821.985 1292.23,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,821.985 1313.26,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,821.985 1292.23,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,803.777 1292.23,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,803.777 1302.74,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,785.568 1281.72,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,785.568 1292.23,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,785.568 1313.26,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,785.568 1292.23,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,767.359 1292.23,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,767.359 1302.74,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,749.151 1281.72,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,749.151 1292.23,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,749.151 1313.26,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,749.151 1292.23,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,730.942 1292.23,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,730.942 1302.74,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,712.734 1281.72,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,712.734 1292.23,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,712.734 1313.26,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1302.74,712.734 1292.23,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,694.525 1292.23,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1313.26,694.525 1302.74,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,840.194 1313.26,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,821.985 1302.74,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,821.985 1313.26,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,821.985 1334.28,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,821.985 1313.26,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,803.777 1313.26,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,803.777 1323.77,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,785.568 1302.74,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,785.568 1313.26,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,785.568 1334.28,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,785.568 1313.26,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,767.359 1313.26,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,767.359 1323.77,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,749.151 1302.74,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,749.151 1313.26,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,749.151 1334.28,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,749.151 1313.26,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,730.942 1313.26,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,730.942 1323.77,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,712.734 1302.74,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,712.734 1313.26,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,712.734 1334.28,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1323.77,712.734 1313.26,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,694.525 1313.26,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1334.28,694.525 1323.77,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,840.194 1334.28,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,821.985 1323.77,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,821.985 1334.28,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,821.985 1355.31,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,821.985 1334.28,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,803.777 1334.28,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,803.777 1344.79,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,785.568 1323.77,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,785.568 1334.28,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,785.568 1355.31,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,785.568 1334.28,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,767.359 1334.28,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,767.359 1344.79,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,749.151 1323.77,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,749.151 1334.28,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,749.151 1355.31,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,749.151 1334.28,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,730.942 1334.28,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,730.942 1344.79,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,712.734 1323.77,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,712.734 1334.28,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,712.734 1355.31,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1344.79,712.734 1334.28,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,694.525 1334.28,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1355.31,694.525 1344.79,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,840.194 1355.31,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,821.985 1344.79,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,821.985 1355.31,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,821.985 1376.33,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,821.985 1355.31,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,803.777 1355.31,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,803.777 1365.82,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,785.568 1344.79,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,785.568 1355.31,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,785.568 1376.33,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,785.568 1355.31,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,767.359 1355.31,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,767.359 1365.82,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,749.151 1344.79,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,749.151 1355.31,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,749.151 1376.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,749.151 1355.31,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,730.942 1355.31,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,730.942 1365.82,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,712.734 1344.79,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,712.734 1355.31,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,712.734 1376.33,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1365.82,712.734 1355.31,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,694.525 1355.31,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1376.33,694.525 1365.82,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,840.194 1376.33,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,821.985 1365.82,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,821.985 1376.33,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,821.985 1397.36,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,821.985 1376.33,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,803.777 1376.33,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,803.777 1386.84,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,785.568 1365.82,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,785.568 1376.33,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,785.568 1397.36,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,785.568 1376.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,767.359 1376.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,767.359 1386.84,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,749.151 1365.82,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,749.151 1376.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,749.151 1397.36,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,749.151 1376.33,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,730.942 1376.33,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,730.942 1386.84,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,712.734 1365.82,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,712.734 1376.33,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,712.734 1397.36,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.84,712.734 1376.33,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,694.525 1376.33,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1397.36,694.525 1386.84,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,840.194 1397.36,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,821.985 1386.84,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,821.985 1397.36,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,821.985 1418.38,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,821.985 1397.36,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,803.777 1397.36,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,803.777 1407.87,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,785.568 1386.84,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,785.568 1397.36,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,785.568 1418.38,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,785.568 1397.36,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,767.359 1397.36,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,767.359 1407.87,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,749.151 1386.84,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,749.151 1397.36,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,749.151 1418.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,749.151 1397.36,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,730.942 1397.36,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,730.942 1407.87,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,712.734 1386.84,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,712.734 1397.36,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,712.734 1418.38,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1407.87,712.734 1397.36,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,694.525 1397.36,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1418.38,694.525 1407.87,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,840.194 1418.38,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,821.985 1407.87,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,821.985 1418.38,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,821.985 1439.41,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,821.985 1418.38,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,803.777 1418.38,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,803.777 1428.9,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,785.568 1407.87,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,785.568 1418.38,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,785.568 1439.41,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,785.568 1418.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,767.359 1418.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,767.359 1428.9,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,749.151 1407.87,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,749.151 1418.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,749.151 1439.41,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,749.151 1418.38,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,730.942 1418.38,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,730.942 1428.9,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,712.734 1407.87,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,712.734 1418.38,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,712.734 1439.41,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1428.9,712.734 1418.38,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,694.525 1418.38,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1439.41,694.525 1428.9,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,840.194 1439.41,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,821.985 1428.9,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,821.985 1439.41,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,821.985 1460.43,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,821.985 1439.41,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,803.777 1439.41,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,803.777 1449.92,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,785.568 1428.9,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,785.568 1439.41,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,785.568 1460.43,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,785.568 1439.41,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,767.359 1439.41,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,767.359 1449.92,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,749.151 1428.9,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,749.151 1439.41,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,749.151 1460.43,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,749.151 1439.41,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,730.942 1439.41,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,730.942 1449.92,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,712.734 1428.9,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,712.734 1439.41,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,712.734 1460.43,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.92,712.734 1439.41,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,694.525 1439.41,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1460.43,694.525 1449.92,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,840.194 1460.43,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,821.985 1449.92,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,821.985 1460.43,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,821.985 1481.46,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,821.985 1460.43,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,803.777 1460.43,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,803.777 1470.95,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,785.568 1449.92,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,785.568 1460.43,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,785.568 1481.46,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,785.568 1460.43,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,767.359 1460.43,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,767.359 1470.95,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,749.151 1449.92,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,749.151 1460.43,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,749.151 1481.46,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,749.151 1460.43,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,730.942 1460.43,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,730.942 1470.95,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,712.734 1449.92,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,712.734 1460.43,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,712.734 1481.46,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.95,712.734 1460.43,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,694.525 1460.43,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1481.46,694.525 1470.95,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,840.194 1481.46,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,821.985 1470.95,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,821.985 1481.46,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,821.985 1502.48,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,821.985 1481.46,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,803.777 1481.46,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,803.777 1491.97,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,785.568 1470.95,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,785.568 1481.46,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,785.568 1502.48,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,785.568 1481.46,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,767.359 1481.46,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,767.359 1491.97,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,749.151 1470.95,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,749.151 1481.46,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,749.151 1502.48,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,749.151 1481.46,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,730.942 1481.46,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,730.942 1491.97,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,712.734 1470.95,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,712.734 1481.46,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,712.734 1502.48,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1491.97,712.734 1481.46,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,694.525 1481.46,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1502.48,694.525 1491.97,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,840.194 1502.48,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,821.985 1491.97,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,821.985 1502.48,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,821.985 1523.51,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,821.985 1502.48,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,803.777 1502.48,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,803.777 1513,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,785.568 1491.97,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,785.568 1502.48,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,785.568 1523.51,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,785.568 1502.48,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,767.359 1502.48,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,767.359 1513,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,749.151 1491.97,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,749.151 1502.48,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,749.151 1523.51,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,749.151 1502.48,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,730.942 1502.48,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,730.942 1513,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,712.734 1491.97,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,712.734 1502.48,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,712.734 1523.51,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1513,712.734 1502.48,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,694.525 1502.48,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1523.51,694.525 1513,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,840.194 1523.51,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,821.985 1513,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,821.985 1523.51,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,821.985 1544.54,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,821.985 1523.51,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,803.777 1523.51,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,803.777 1534.02,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,785.568 1513,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,785.568 1523.51,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,785.568 1544.54,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,785.568 1523.51,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,767.359 1523.51,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,767.359 1534.02,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,749.151 1513,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,749.151 1523.51,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,749.151 1544.54,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,749.151 1523.51,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,730.942 1523.51,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,730.942 1534.02,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,712.734 1513,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,712.734 1523.51,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,712.734 1544.54,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1534.02,712.734 1523.51,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,694.525 1523.51,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1544.54,694.525 1534.02,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,840.194 1544.54,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,821.985 1534.02,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,821.985 1544.54,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,821.985 1565.56,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,821.985 1544.54,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,803.777 1544.54,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,803.777 1555.05,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,785.568 1534.02,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,785.568 1544.54,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,785.568 1565.56,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,785.568 1544.54,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,767.359 1544.54,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,767.359 1555.05,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,749.151 1534.02,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,749.151 1544.54,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,749.151 1565.56,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,749.151 1544.54,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,730.942 1544.54,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,730.942 1555.05,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,712.734 1534.02,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,712.734 1544.54,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,712.734 1565.56,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1555.05,712.734 1544.54,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,694.525 1544.54,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1565.56,694.525 1555.05,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,840.194 1565.56,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,821.985 1555.05,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,821.985 1565.56,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,821.985 1586.59,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,821.985 1565.56,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,803.777 1565.56,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,803.777 1576.07,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,785.568 1555.05,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,785.568 1565.56,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,785.568 1586.59,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,785.568 1565.56,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,767.359 1565.56,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,767.359 1576.07,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,749.151 1555.05,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,749.151 1565.56,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,749.151 1586.59,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,749.151 1565.56,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,730.942 1565.56,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,730.942 1576.07,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,712.734 1555.05,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,712.734 1565.56,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,712.734 1586.59,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1576.07,712.734 1565.56,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,694.525 1565.56,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1586.59,694.525 1576.07,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,840.194 1586.59,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,821.985 1576.07,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,821.985 1586.59,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,821.985 1607.61,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,821.985 1586.59,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,803.777 1586.59,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,803.777 1597.1,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,785.568 1576.07,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,785.568 1586.59,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,785.568 1607.61,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,785.568 1586.59,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,767.359 1586.59,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,767.359 1597.1,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,749.151 1576.07,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,749.151 1586.59,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,749.151 1607.61,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,749.151 1586.59,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,730.942 1586.59,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,730.942 1597.1,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,712.734 1576.07,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,712.734 1586.59,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,712.734 1607.61,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,712.734 1586.59,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,694.525 1586.59,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1607.61,694.525 1597.1,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,676.316 1586.59,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1597.1,676.316 1607.61,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,840.194 1607.61,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,821.985 1597.1,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,821.985 1607.61,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,821.985 1628.64,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,821.985 1607.61,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,803.777 1607.61,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,803.777 1618.12,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,785.568 1597.1,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,785.568 1607.61,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,785.568 1628.64,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,785.568 1607.61,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,767.359 1607.61,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,767.359 1618.12,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,749.151 1597.1,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,749.151 1607.61,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,749.151 1628.64,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,749.151 1607.61,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,730.942 1607.61,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,730.942 1618.12,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,712.734 1597.1,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,712.734 1607.61,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,712.734 1628.64,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,712.734 1607.61,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,694.525 1607.61,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1628.64,694.525 1618.12,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,676.316 1597.1,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,676.316 1607.61,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1618.12,676.316 1628.64,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,840.194 1628.64,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,821.985 1618.12,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,821.985 1628.64,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,821.985 1649.66,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,821.985 1628.64,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,803.777 1628.64,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,803.777 1639.15,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,785.568 1618.12,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,785.568 1628.64,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,785.568 1649.66,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,785.568 1628.64,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,767.359 1628.64,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,767.359 1639.15,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,749.151 1618.12,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,749.151 1628.64,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,749.151 1649.66,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,749.151 1628.64,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,730.942 1628.64,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,730.942 1639.15,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,712.734 1618.12,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,712.734 1628.64,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,712.734 1649.66,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,712.734 1628.64,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,694.525 1628.64,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1649.66,694.525 1639.15,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,676.316 1618.12,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,676.316 1628.64,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1639.15,676.316 1649.66,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,858.402 1649.66,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,840.194 1649.66,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,840.194 1660.18,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,821.985 1639.15,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,821.985 1649.66,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,821.985 1670.69,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,821.985 1649.66,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,803.777 1649.66,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,803.777 1660.18,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,785.568 1639.15,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,785.568 1649.66,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,785.568 1670.69,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,785.568 1649.66,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,767.359 1649.66,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,767.359 1660.18,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,749.151 1639.15,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,749.151 1649.66,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,749.151 1670.69,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,749.151 1649.66,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,730.942 1649.66,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,730.942 1660.18,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,712.734 1639.15,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,712.734 1649.66,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,712.734 1670.69,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,712.734 1649.66,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,694.525 1649.66,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1670.69,694.525 1660.18,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,676.316 1639.15,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,676.316 1649.66,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1660.18,676.316 1670.69,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,858.402 1660.18,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,858.402 1670.69,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,840.194 1670.69,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,840.194 1681.2,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,821.985 1660.18,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,821.985 1670.69,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,821.985 1691.71,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,821.985 1670.69,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,803.777 1670.69,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,803.777 1681.2,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,785.568 1660.18,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,785.568 1670.69,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,785.568 1691.71,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,785.568 1670.69,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,767.359 1670.69,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,767.359 1681.2,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,749.151 1660.18,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,749.151 1670.69,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,749.151 1691.71,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,749.151 1670.69,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,730.942 1670.69,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,730.942 1681.2,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,712.734 1660.18,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,712.734 1670.69,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,712.734 1691.71,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,712.734 1670.69,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,694.525 1670.69,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,694.525 1681.2,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,676.316 1660.18,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,676.316 1670.69,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1681.2,676.316 1691.71,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1691.71,658.108 1681.2,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,858.402 1681.2,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,858.402 1712.74,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,858.402 1691.71,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,840.194 1691.71,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,840.194 1702.23,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,821.985 1681.2,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,821.985 1691.71,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,821.985 1712.74,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,821.985 1691.71,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,803.777 1691.71,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,803.777 1702.23,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,785.568 1681.2,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,785.568 1691.71,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,785.568 1712.74,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,785.568 1691.71,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,767.359 1691.71,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,767.359 1702.23,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,749.151 1681.2,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,749.151 1691.71,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,749.151 1712.74,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,749.151 1691.71,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,730.942 1691.71,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,730.942 1702.23,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,712.734 1681.2,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,712.734 1691.71,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,712.734 1712.74,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,712.734 1691.71,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,694.525 1691.71,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,694.525 1702.23,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,676.316 1681.2,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,676.316 1691.71,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,676.316 1712.74,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1702.23,676.316 1691.71,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,658.108 1691.71,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1712.74,658.108 1702.23,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,876.611 1712.74,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,858.402 1702.23,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,858.402 1712.74,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,858.402 1733.77,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,858.402 1712.74,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,840.194 1712.74,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,840.194 1723.25,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,821.985 1702.23,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,821.985 1712.74,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,821.985 1733.77,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,821.985 1712.74,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,803.777 1712.74,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,803.777 1723.25,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,785.568 1702.23,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,785.568 1712.74,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,785.568 1733.77,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,785.568 1712.74,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,767.359 1712.74,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,767.359 1723.25,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,749.151 1702.23,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,749.151 1712.74,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,749.151 1733.77,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,749.151 1712.74,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,730.942 1712.74,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,730.942 1723.25,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,712.734 1702.23,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,712.734 1712.74,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,712.734 1733.77,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,712.734 1712.74,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,694.525 1712.74,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,694.525 1723.25,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,676.316 1702.23,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,676.316 1712.74,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,676.316 1733.77,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1723.25,676.316 1712.74,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,658.108 1712.74,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1733.77,658.108 1723.25,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,876.611 1733.77,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,858.402 1723.25,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,858.402 1733.77,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,858.402 1754.79,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,858.402 1733.77,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,840.194 1733.77,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,840.194 1744.28,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,821.985 1723.25,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,821.985 1733.77,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,821.985 1754.79,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,821.985 1733.77,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,803.777 1733.77,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,803.777 1744.28,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,785.568 1723.25,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,785.568 1733.77,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,785.568 1754.79,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,785.568 1733.77,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,767.359 1733.77,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,767.359 1744.28,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,749.151 1723.25,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,749.151 1733.77,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,749.151 1754.79,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,749.151 1733.77,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,730.942 1733.77,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,730.942 1744.28,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,712.734 1723.25,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,712.734 1733.77,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,712.734 1754.79,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,712.734 1733.77,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,694.525 1733.77,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,694.525 1744.28,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,676.316 1723.25,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,676.316 1733.77,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,676.316 1754.79,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1744.28,676.316 1733.77,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,658.108 1733.77,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1754.79,658.108 1744.28,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,876.611 1754.79,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,858.402 1744.28,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,858.402 1754.79,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,858.402 1775.82,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,858.402 1754.79,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,840.194 1754.79,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,840.194 1765.3,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,821.985 1744.28,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,821.985 1754.79,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,821.985 1775.82,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,821.985 1754.79,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,803.777 1754.79,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,803.777 1765.3,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,785.568 1744.28,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,785.568 1754.79,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,785.568 1775.82,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,785.568 1754.79,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,767.359 1754.79,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,767.359 1765.3,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,749.151 1744.28,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,749.151 1754.79,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,749.151 1775.82,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,749.151 1754.79,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,730.942 1754.79,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,730.942 1765.3,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,712.734 1744.28,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,712.734 1754.79,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,712.734 1775.82,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,712.734 1754.79,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,694.525 1754.79,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,694.525 1765.3,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,676.316 1744.28,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,676.316 1754.79,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,676.316 1775.82,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1765.3,676.316 1754.79,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,658.108 1754.79,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1775.82,658.108 1765.3,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,876.611 1775.82,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,858.402 1765.3,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,858.402 1775.82,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,858.402 1796.84,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,858.402 1775.82,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,840.194 1775.82,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,840.194 1786.33,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,821.985 1765.3,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,821.985 1775.82,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,821.985 1796.84,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,821.985 1775.82,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,803.777 1775.82,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,803.777 1786.33,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,785.568 1765.3,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,785.568 1775.82,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,785.568 1796.84,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,785.568 1775.82,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,767.359 1775.82,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,767.359 1786.33,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,749.151 1765.3,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,749.151 1775.82,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,749.151 1796.84,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,749.151 1775.82,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,730.942 1775.82,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,730.942 1786.33,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,712.734 1765.3,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,712.734 1775.82,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,712.734 1796.84,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,712.734 1775.82,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,694.525 1775.82,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,694.525 1786.33,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,676.316 1765.3,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,676.316 1775.82,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,676.316 1796.84,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1786.33,676.316 1775.82,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,658.108 1775.82,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1796.84,658.108 1786.33,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,876.611 1796.84,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,858.402 1786.33,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,858.402 1796.84,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,858.402 1817.87,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,858.402 1796.84,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,840.194 1796.84,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,840.194 1807.35,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,821.985 1786.33,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,821.985 1796.84,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,821.985 1817.87,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,821.985 1796.84,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,803.777 1796.84,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,803.777 1807.35,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,785.568 1786.33,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,785.568 1796.84,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,785.568 1817.87,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,785.568 1796.84,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,767.359 1796.84,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,767.359 1807.35,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,749.151 1786.33,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,749.151 1796.84,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,749.151 1817.87,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,749.151 1796.84,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,730.942 1796.84,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,730.942 1807.35,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,712.734 1786.33,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,712.734 1796.84,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,712.734 1817.87,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,712.734 1796.84,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,694.525 1796.84,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,694.525 1807.35,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,676.316 1786.33,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,676.316 1796.84,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,676.316 1817.87,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1807.35,676.316 1796.84,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,658.108 1796.84,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1817.87,658.108 1807.35,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,876.611 1817.87,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,858.402 1807.35,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,858.402 1817.87,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,858.402 1838.89,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,858.402 1817.87,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,840.194 1817.87,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,840.194 1828.38,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,821.985 1807.35,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,821.985 1817.87,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,821.985 1838.89,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,821.985 1817.87,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,803.777 1817.87,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,803.777 1828.38,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,785.568 1807.35,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,785.568 1817.87,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,785.568 1838.89,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,785.568 1817.87,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,767.359 1817.87,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,767.359 1828.38,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,749.151 1807.35,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,749.151 1817.87,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,749.151 1838.89,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,749.151 1817.87,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,730.942 1817.87,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,730.942 1828.38,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,712.734 1807.35,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,712.734 1817.87,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,712.734 1838.89,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,712.734 1817.87,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,694.525 1817.87,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,694.525 1828.38,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,676.316 1807.35,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,676.316 1817.87,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,676.316 1838.89,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1828.38,676.316 1817.87,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,658.108 1817.87,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1838.89,658.108 1828.38,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,876.611 1838.89,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,858.402 1828.38,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,858.402 1838.89,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,858.402 1859.92,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,858.402 1838.89,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,840.194 1838.89,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,840.194 1849.41,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,821.985 1828.38,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,821.985 1838.89,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,821.985 1859.92,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,821.985 1838.89,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,803.777 1838.89,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,803.777 1849.41,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,785.568 1828.38,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,785.568 1838.89,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,785.568 1859.92,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,785.568 1838.89,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,767.359 1838.89,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,767.359 1849.41,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,749.151 1828.38,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,749.151 1838.89,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,749.151 1859.92,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,749.151 1838.89,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,730.942 1838.89,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,730.942 1849.41,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,712.734 1828.38,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,712.734 1838.89,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,712.734 1859.92,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,712.734 1838.89,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,694.525 1838.89,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,694.525 1849.41,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,676.316 1828.38,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,676.316 1838.89,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,676.316 1859.92,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1849.41,676.316 1838.89,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,658.108 1838.89,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1859.92,658.108 1849.41,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,876.611 1859.92,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,858.402 1849.41,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,858.402 1859.92,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,858.402 1880.94,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,858.402 1859.92,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,840.194 1859.92,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,840.194 1870.43,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,821.985 1849.41,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,821.985 1859.92,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,821.985 1880.94,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,821.985 1859.92,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,803.777 1859.92,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,803.777 1870.43,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,785.568 1849.41,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,785.568 1859.92,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,785.568 1880.94,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,785.568 1859.92,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,767.359 1859.92,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,767.359 1870.43,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,749.151 1849.41,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,749.151 1859.92,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,749.151 1880.94,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,749.151 1859.92,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,730.942 1859.92,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,730.942 1870.43,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,712.734 1849.41,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,712.734 1859.92,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,712.734 1880.94,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,712.734 1859.92,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,694.525 1859.92,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,694.525 1870.43,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,676.316 1849.41,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,676.316 1859.92,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,676.316 1880.94,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1870.43,676.316 1859.92,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,658.108 1859.92,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1880.94,658.108 1870.43,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,876.611 1880.94,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,858.402 1870.43,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,858.402 1880.94,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,858.402 1901.97,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,858.402 1880.94,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,840.194 1880.94,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,840.194 1891.46,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,821.985 1870.43,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,821.985 1880.94,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,821.985 1901.97,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,821.985 1880.94,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,803.777 1880.94,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,803.777 1891.46,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,785.568 1870.43,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,785.568 1880.94,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,785.568 1901.97,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,785.568 1880.94,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,767.359 1880.94,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,767.359 1891.46,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,749.151 1870.43,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,749.151 1880.94,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,749.151 1901.97,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,749.151 1880.94,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,730.942 1880.94,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,730.942 1891.46,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,712.734 1870.43,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,712.734 1880.94,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,712.734 1901.97,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,712.734 1880.94,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,694.525 1880.94,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,694.525 1891.46,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,676.316 1870.43,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,676.316 1880.94,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,676.316 1901.97,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1891.46,676.316 1880.94,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,658.108 1880.94,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.97,658.108 1891.46,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,876.611 1901.97,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,858.402 1891.46,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,858.402 1901.97,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,858.402 1922.99,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,858.402 1901.97,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,840.194 1901.97,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,840.194 1912.48,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,821.985 1891.46,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,821.985 1901.97,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,821.985 1922.99,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,821.985 1901.97,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,803.777 1901.97,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,803.777 1912.48,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,785.568 1891.46,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,785.568 1901.97,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,785.568 1922.99,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,785.568 1901.97,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,767.359 1901.97,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,767.359 1912.48,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,749.151 1891.46,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,749.151 1901.97,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,749.151 1922.99,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,749.151 1901.97,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,730.942 1901.97,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,730.942 1912.48,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,712.734 1891.46,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,712.734 1901.97,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,712.734 1922.99,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,712.734 1901.97,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,694.525 1901.97,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,694.525 1912.48,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,676.316 1891.46,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,676.316 1901.97,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,676.316 1922.99,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1912.48,676.316 1901.97,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,658.108 1901.97,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1922.99,658.108 1912.48,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,876.611 1922.99,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,858.402 1912.48,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,858.402 1922.99,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,858.402 1944.02,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,858.402 1922.99,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,840.194 1922.99,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,840.194 1933.51,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,821.985 1912.48,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,821.985 1922.99,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,821.985 1944.02,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,821.985 1922.99,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,803.777 1922.99,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,803.777 1933.51,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,785.568 1912.48,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,785.568 1922.99,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,785.568 1944.02,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,785.568 1922.99,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,767.359 1922.99,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,767.359 1933.51,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,749.151 1912.48,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,749.151 1922.99,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,749.151 1944.02,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,749.151 1922.99,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,730.942 1922.99,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,730.942 1933.51,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,712.734 1912.48,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,712.734 1922.99,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,712.734 1944.02,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,712.734 1922.99,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,694.525 1922.99,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,694.525 1933.51,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,676.316 1912.48,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,676.316 1922.99,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,676.316 1944.02,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1933.51,676.316 1922.99,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,658.108 1922.99,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1944.02,658.108 1933.51,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,876.611 1944.02,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,858.402 1933.51,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,858.402 1944.02,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,858.402 1965.05,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,858.402 1944.02,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,840.194 1944.02,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,840.194 1954.53,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,821.985 1933.51,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,821.985 1944.02,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,821.985 1965.05,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,821.985 1944.02,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,803.777 1944.02,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,803.777 1954.53,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,785.568 1933.51,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,785.568 1944.02,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,785.568 1965.05,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,785.568 1944.02,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,767.359 1944.02,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,767.359 1954.53,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,749.151 1933.51,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,749.151 1944.02,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,749.151 1965.05,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,749.151 1944.02,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,730.942 1944.02,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,730.942 1954.53,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,712.734 1933.51,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,712.734 1944.02,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,712.734 1965.05,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,712.734 1944.02,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,694.525 1944.02,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,694.525 1954.53,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,676.316 1933.51,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,676.316 1944.02,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,676.316 1965.05,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1954.53,676.316 1944.02,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,658.108 1944.02,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1965.05,658.108 1954.53,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,876.611 1965.05,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,858.402 1954.53,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,858.402 1965.05,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,858.402 1986.07,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,858.402 1965.05,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,840.194 1965.05,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,840.194 1975.56,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,821.985 1954.53,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,821.985 1965.05,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,821.985 1986.07,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,821.985 1965.05,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,803.777 1965.05,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,803.777 1975.56,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,785.568 1954.53,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,785.568 1965.05,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,785.568 1986.07,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,785.568 1965.05,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,767.359 1965.05,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,767.359 1975.56,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,749.151 1954.53,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,749.151 1965.05,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,749.151 1986.07,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,749.151 1965.05,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,730.942 1965.05,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,730.942 1975.56,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,712.734 1954.53,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,712.734 1965.05,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,712.734 1986.07,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,712.734 1965.05,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,694.525 1965.05,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,694.525 1975.56,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,676.316 1954.53,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,676.316 1965.05,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,676.316 1986.07,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1975.56,676.316 1965.05,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,658.108 1965.05,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1986.07,658.108 1975.56,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,876.611 1986.07,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,858.402 1975.56,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,858.402 1986.07,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,858.402 2007.1,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,858.402 1986.07,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,840.194 1986.07,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,840.194 1996.58,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,821.985 1975.56,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,821.985 1986.07,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,821.985 2007.1,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,821.985 1986.07,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,803.777 1986.07,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,803.777 1996.58,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,785.568 1975.56,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,785.568 1986.07,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,785.568 2007.1,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,785.568 1986.07,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,767.359 1986.07,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,767.359 1996.58,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,749.151 1975.56,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,749.151 1986.07,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,749.151 2007.1,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,749.151 1986.07,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,730.942 1986.07,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,730.942 1996.58,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,712.734 1975.56,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,712.734 1986.07,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,712.734 2007.1,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,712.734 1986.07,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,694.525 1986.07,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,694.525 1996.58,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,676.316 1975.56,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,676.316 1986.07,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,676.316 2007.1,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1996.58,676.316 1986.07,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,658.108 1986.07,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2007.1,658.108 1996.58,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,876.611 2007.1,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,858.402 1996.58,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,858.402 2007.1,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,858.402 2028.12,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,858.402 2007.1,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,840.194 2007.1,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,840.194 2017.61,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,821.985 1996.58,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,821.985 2007.1,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,821.985 2028.12,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,821.985 2007.1,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,803.777 2007.1,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,803.777 2017.61,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,785.568 1996.58,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,785.568 2007.1,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,785.568 2028.12,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,785.568 2007.1,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,767.359 2007.1,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,767.359 2017.61,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,749.151 1996.58,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,749.151 2007.1,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,749.151 2028.12,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,749.151 2007.1,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,730.942 2007.1,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,730.942 2017.61,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,712.734 1996.58,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,712.734 2007.1,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,712.734 2028.12,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,712.734 2007.1,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,694.525 2007.1,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,694.525 2017.61,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,676.316 1996.58,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,676.316 2007.1,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,676.316 2028.12,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2017.61,676.316 2007.1,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,658.108 2007.1,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2028.12,658.108 2017.61,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,876.611 2028.12,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,858.402 2017.61,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,858.402 2028.12,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,858.402 2049.15,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,858.402 2028.12,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,840.194 2028.12,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,840.194 2038.63,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,821.985 2017.61,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,821.985 2028.12,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,821.985 2049.15,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,821.985 2028.12,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,803.777 2028.12,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,803.777 2038.63,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,785.568 2017.61,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,785.568 2028.12,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,785.568 2049.15,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,785.568 2028.12,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,767.359 2028.12,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,767.359 2038.63,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,749.151 2017.61,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,749.151 2028.12,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,749.151 2049.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,749.151 2028.12,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,730.942 2028.12,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,730.942 2038.63,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,712.734 2017.61,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,712.734 2028.12,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,712.734 2049.15,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,712.734 2028.12,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,694.525 2028.12,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,694.525 2038.63,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,676.316 2017.61,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,676.316 2028.12,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,676.316 2049.15,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2038.63,676.316 2028.12,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,658.108 2028.12,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2049.15,658.108 2038.63,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,876.611 2049.15,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,858.402 2038.63,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,858.402 2049.15,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,858.402 2070.17,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,858.402 2049.15,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,840.194 2049.15,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,840.194 2059.66,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,821.985 2038.63,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,821.985 2049.15,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,821.985 2070.17,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,821.985 2049.15,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,803.777 2049.15,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,803.777 2059.66,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,785.568 2038.63,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,785.568 2049.15,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,785.568 2070.17,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,785.568 2049.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,767.359 2049.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,767.359 2059.66,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,749.151 2038.63,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,749.151 2049.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,749.151 2070.17,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,749.151 2049.15,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,730.942 2049.15,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,730.942 2059.66,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,712.734 2038.63,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,712.734 2049.15,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,712.734 2070.17,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,712.734 2049.15,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,694.525 2049.15,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,694.525 2059.66,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,676.316 2038.63,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,676.316 2049.15,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,676.316 2070.17,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2059.66,676.316 2049.15,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,658.108 2049.15,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2070.17,658.108 2059.66,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,876.611 2070.17,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,858.402 2059.66,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,858.402 2070.17,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,858.402 2091.2,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,858.402 2070.17,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,840.194 2070.17,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,840.194 2080.69,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,821.985 2059.66,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,821.985 2070.17,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,821.985 2091.2,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,821.985 2070.17,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,803.777 2070.17,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,803.777 2080.69,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,785.568 2059.66,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,785.568 2070.17,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,785.568 2091.2,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,785.568 2070.17,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,767.359 2070.17,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,767.359 2080.69,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,749.151 2059.66,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,749.151 2070.17,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,749.151 2091.2,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,749.151 2070.17,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,730.942 2070.17,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,730.942 2080.69,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,712.734 2059.66,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,712.734 2070.17,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,712.734 2091.2,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,712.734 2070.17,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,694.525 2070.17,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,694.525 2080.69,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,676.316 2059.66,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,676.316 2070.17,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,676.316 2091.2,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2080.69,676.316 2070.17,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,658.108 2070.17,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2091.2,658.108 2080.69,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,876.611 2091.2,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,858.402 2080.69,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,858.402 2091.2,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,858.402 2112.22,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,858.402 2091.2,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,840.194 2091.2,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,840.194 2101.71,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,821.985 2080.69,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,821.985 2091.2,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,821.985 2112.22,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,821.985 2091.2,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,803.777 2091.2,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,803.777 2101.71,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,785.568 2080.69,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,785.568 2091.2,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,785.568 2112.22,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,785.568 2091.2,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,767.359 2091.2,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,767.359 2101.71,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,749.151 2080.69,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,749.151 2091.2,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,749.151 2112.22,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,749.151 2091.2,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,730.942 2091.2,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,730.942 2101.71,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,712.734 2080.69,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,712.734 2091.2,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,712.734 2112.22,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,712.734 2091.2,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,694.525 2091.2,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,694.525 2101.71,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,676.316 2080.69,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,676.316 2091.2,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,676.316 2112.22,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2101.71,676.316 2091.2,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,658.108 2091.2,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2112.22,658.108 2101.71,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,876.611 2112.22,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,858.402 2101.71,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,858.402 2112.22,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,858.402 2133.25,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,858.402 2112.22,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,840.194 2112.22,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,840.194 2122.74,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,821.985 2101.71,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,821.985 2112.22,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,821.985 2133.25,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,821.985 2112.22,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,803.777 2112.22,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,803.777 2122.74,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,785.568 2101.71,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,785.568 2112.22,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,785.568 2133.25,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,785.568 2112.22,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,767.359 2112.22,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,767.359 2122.74,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,749.151 2101.71,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,749.151 2112.22,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,749.151 2133.25,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,749.151 2112.22,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,730.942 2112.22,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,730.942 2122.74,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,712.734 2101.71,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,712.734 2112.22,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,712.734 2133.25,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,712.734 2112.22,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,694.525 2112.22,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,694.525 2122.74,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,676.316 2101.71,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,676.316 2112.22,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,676.316 2133.25,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2122.74,676.316 2112.22,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,658.108 2112.22,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2133.25,658.108 2122.74,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,876.611 2133.25,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,858.402 2122.74,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,858.402 2133.25,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,858.402 2154.28,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,858.402 2133.25,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,840.194 2133.25,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,840.194 2143.76,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,821.985 2122.74,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,821.985 2133.25,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,821.985 2154.28,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,821.985 2133.25,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,803.777 2133.25,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,803.777 2143.76,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,785.568 2122.74,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,785.568 2133.25,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,785.568 2154.28,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,785.568 2133.25,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,767.359 2133.25,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,767.359 2143.76,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,749.151 2122.74,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,749.151 2133.25,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,749.151 2154.28,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,749.151 2133.25,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,730.942 2133.25,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,730.942 2143.76,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,712.734 2122.74,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,712.734 2133.25,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,712.734 2154.28,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,712.734 2133.25,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,694.525 2133.25,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,694.525 2143.76,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,676.316 2122.74,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,676.316 2133.25,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,676.316 2154.28,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2143.76,676.316 2133.25,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,658.108 2133.25,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2154.28,658.108 2143.76,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,876.611 2154.28,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,858.402 2143.76,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,858.402 2154.28,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,858.402 2175.3,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,858.402 2154.28,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,840.194 2154.28,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,840.194 2164.79,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,821.985 2143.76,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,821.985 2154.28,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,821.985 2175.3,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,821.985 2154.28,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,803.777 2154.28,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,803.777 2164.79,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,785.568 2143.76,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,785.568 2154.28,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,785.568 2175.3,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,785.568 2154.28,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,767.359 2154.28,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,767.359 2164.79,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,749.151 2143.76,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,749.151 2154.28,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,749.151 2175.3,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,749.151 2154.28,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,730.942 2154.28,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,730.942 2164.79,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,712.734 2143.76,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,712.734 2154.28,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,712.734 2175.3,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,712.734 2154.28,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,694.525 2154.28,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,694.525 2164.79,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,676.316 2143.76,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,676.316 2154.28,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,676.316 2175.3,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2164.79,676.316 2154.28,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,658.108 2154.28,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2175.3,658.108 2164.79,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,876.611 2175.3,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,858.402 2164.79,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,858.402 2175.3,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,858.402 2196.33,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,858.402 2175.3,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,840.194 2175.3,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,840.194 2185.81,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,821.985 2164.79,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,821.985 2175.3,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,821.985 2196.33,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,821.985 2175.3,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,803.777 2175.3,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,803.777 2185.81,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,785.568 2164.79,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,785.568 2175.3,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,785.568 2196.33,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,785.568 2175.3,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,767.359 2175.3,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,767.359 2185.81,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,749.151 2164.79,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,749.151 2175.3,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,749.151 2196.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,749.151 2175.3,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,730.942 2175.3,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,730.942 2185.81,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,712.734 2164.79,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,712.734 2175.3,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,712.734 2196.33,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,712.734 2175.3,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,694.525 2175.3,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,694.525 2185.81,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,676.316 2164.79,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,676.316 2175.3,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,676.316 2196.33,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2185.81,676.316 2175.3,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,658.108 2175.3,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2196.33,658.108 2185.81,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,876.611 2196.33,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,858.402 2185.81,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,858.402 2196.33,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,858.402 2217.35,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,858.402 2196.33,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,840.194 2196.33,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,840.194 2206.84,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,821.985 2185.81,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,821.985 2196.33,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,821.985 2217.35,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,821.985 2196.33,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,803.777 2196.33,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,803.777 2206.84,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,785.568 2185.81,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,785.568 2196.33,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,785.568 2217.35,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,785.568 2196.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,767.359 2196.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,767.359 2206.84,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,749.151 2185.81,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,749.151 2196.33,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,749.151 2217.35,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,749.151 2196.33,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,730.942 2196.33,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,730.942 2206.84,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,712.734 2185.81,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,712.734 2196.33,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,712.734 2217.35,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,712.734 2196.33,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,694.525 2196.33,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,694.525 2206.84,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,676.316 2185.81,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,676.316 2196.33,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,676.316 2217.35,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2206.84,676.316 2196.33,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,658.108 2196.33,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.35,658.108 2206.84,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,876.611 2217.35,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,858.402 2206.84,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,858.402 2217.35,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,858.402 2238.38,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,858.402 2217.35,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,840.194 2217.35,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,840.194 2227.86,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,821.985 2206.84,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,821.985 2217.35,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,821.985 2238.38,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,821.985 2217.35,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,803.777 2217.35,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,803.777 2227.86,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,785.568 2206.84,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,785.568 2217.35,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,785.568 2238.38,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,785.568 2217.35,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,767.359 2217.35,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,767.359 2227.86,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,749.151 2206.84,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,749.151 2217.35,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,749.151 2238.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,749.151 2217.35,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,730.942 2217.35,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,730.942 2227.86,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,712.734 2206.84,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,712.734 2217.35,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,712.734 2238.38,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,712.734 2217.35,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,694.525 2217.35,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,694.525 2227.86,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,676.316 2206.84,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,676.316 2217.35,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,676.316 2238.38,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2227.86,676.316 2217.35,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,658.108 2217.35,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2238.38,658.108 2227.86,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,876.611 2238.38,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,858.402 2227.86,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,858.402 2238.38,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,858.402 2259.4,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,858.402 2238.38,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,840.194 2238.38,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,840.194 2248.89,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,821.985 2227.86,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,821.985 2238.38,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,821.985 2259.4,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,821.985 2238.38,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,803.777 2238.38,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,803.777 2248.89,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,785.568 2227.86,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,785.568 2238.38,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,785.568 2259.4,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,785.568 2238.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,767.359 2238.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,767.359 2248.89,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,749.151 2227.86,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,749.151 2238.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,749.151 2259.4,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,749.151 2238.38,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,730.942 2238.38,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,730.942 2248.89,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,712.734 2227.86,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,712.734 2238.38,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,712.734 2259.4,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,712.734 2238.38,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,694.525 2238.38,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,694.525 2248.89,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,676.316 2227.86,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,676.316 2238.38,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,676.316 2259.4,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2248.89,676.316 2238.38,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,658.108 2238.38,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2259.4,658.108 2248.89,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,876.611 2259.4,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,858.402 2248.89,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,858.402 2259.4,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,858.402 2280.43,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,858.402 2259.4,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,840.194 2259.4,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,840.194 2269.92,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,821.985 2248.89,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,821.985 2259.4,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,821.985 2280.43,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,821.985 2259.4,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,803.777 2259.4,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,803.777 2269.92,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,785.568 2248.89,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,785.568 2259.4,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,785.568 2280.43,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,785.568 2259.4,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,767.359 2259.4,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,767.359 2269.92,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,749.151 2248.89,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,749.151 2259.4,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,749.151 2280.43,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,749.151 2259.4,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,730.942 2259.4,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,730.942 2269.92,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#6b9e32; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,712.734 2248.89,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#718c69; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,712.734 2259.4,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47988b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,712.734 2280.43,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#1ea68c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,712.734 2259.4,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#af78dd; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,694.525 2259.4,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#868d87; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,694.525 2269.92,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#47a065; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,676.316 2248.89,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#7683af; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,676.316 2259.4,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#b08086; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,676.316 2280.43,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#309ac1; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2269.92,676.316 2259.4,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#788490; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,658.108 2259.4,658.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e561a4; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2280.43,658.108 2269.92,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#99902c; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,858.402 2269.92,858.402 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#389a7b; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,858.402 2280.43,876.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#d968a2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,858.402 2280.43,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#009af9; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,821.985 2269.92,821.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,821.985 2280.43,840.194 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#3da44d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,821.985 2280.43,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c271d2; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,785.568 2269.92,785.568 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ac8d18; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,785.568 2280.43,803.777 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a9ad; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,785.568 2280.43,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#ed5d92; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,749.151 2269.92,749.151 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#c68125; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,749.151 2280.43,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a98d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,749.151 2280.43,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#8e971d; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,712.734 2269.92,712.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#00a8cb; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,712.734 2280.43,730.942 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#9b7fe8; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,712.734 2280.43,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#608cf6; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,676.316 2269.92,676.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#f05f73; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,676.316 2280.43,694.525 \n", " \"/>\n", "<polyline clip-path=\"url(#clip1702)\" style=\"stroke:#dd64b5; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2290.94,676.316 2280.43,658.108 \n", " \"/>\n", "</svg>\n" ] }, "execution_count": 436, "metadata": {}, "output_type": "execute_result" } ], "source": [ "p=plot(aspect_ratio=:equal,label=\"\")\n", "for c in 1:size(edges)[2]\n", " p=plot!([Xs[edges[1,c]],Xs[edges[2,c]]],[Ys[edges[1,c]],Ys[edges[2,c]]],label=\"\")\n", "end\n", "p" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Region Tree" ] }, { "cell_type": "code", "execution_count": 29, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Cell: HyperRectangle{2,Float64}([-1.0, -1.0], [2.0, 2.0])" ] }, "execution_count": 29, "metadata": {}, "output_type": "execute_result" } ], "source": [ "s = x -> sqrt(sum((x - SVector(0, 0)).^2))\n", "adf = AdaptivelySampledDistanceFields.ASDF(s, SVector(-1., -1), SVector(2., 2),1e-2,1e-2)" ] }, { "cell_type": "code", "execution_count": 33, "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=\"clip3900\">\n", " <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip3900)\" 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=\"clip3901\">\n", " <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip3900)\" d=\"\n", "M182.008 1487.47 L2352.76 1487.47 L2352.76 47.2441 L182.008 47.2441 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip3902\">\n", " <rect x=\"182\" y=\"47\" width=\"2172\" height=\"1441\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 724.695,1487.47 724.695,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1267.38,1487.47 1267.38,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1810.07,1487.47 1810.07,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2352.76,1487.47 2352.76,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,1487.47 2352.76,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,1127.42 2352.76,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,767.359 2352.76,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,407.302 2352.76,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,47.2441 2352.76,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 2352.76,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,1487.47 724.695,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,1487.47 1267.38,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,1487.47 1810.07,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2352.76,1487.47 2352.76,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 208.057,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1127.42 208.057,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,767.359 208.057,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,407.302 208.057,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,47.2441 208.057,47.2441 \n", " \"/>\n", "<g clip-path=\"url(#clip3900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 182.008, 1541.47)\" x=\"182.008\" y=\"1541.47\">-1.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip3900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 724.695, 1541.47)\" x=\"724.695\" y=\"1541.47\">-0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip3900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1267.38, 1541.47)\" x=\"1267.38\" y=\"1541.47\">0.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip3900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1810.07, 1541.47)\" x=\"1810.07\" y=\"1541.47\">0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip3900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 2352.76, 1541.47)\" x=\"2352.76\" y=\"1541.47\">1.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip3900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 1504.97)\" x=\"158.008\" y=\"1504.97\">-1.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip3900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 1144.92)\" x=\"158.008\" y=\"1144.92\">-0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip3900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 784.859)\" x=\"158.008\" y=\"784.859\">0.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip3900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 424.802)\" x=\"158.008\" y=\"424.802\">0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip3900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 64.7441)\" x=\"158.008\" y=\"64.7441\">1.0</text>\n", "</g>\n", "<path clip-path=\"url(#clip3902)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L669.319 1487.47 L713.62 1487.47 L757.921 1487.47 L802.222 1487.47 L846.523 1487.47 L890.824 1487.47 L935.125 1487.47 L979.426 1487.47 \n", " L1023.73 1487.47 L1068.03 1487.47 L1112.33 1487.47 L1156.63 1487.47 L1200.93 1487.47 L1245.23 1487.47 L1289.53 1487.47 L1333.83 1487.47 L1378.13 1487.47 L1422.44 1487.47 \n", " L1466.74 1487.47 L1511.04 1487.47 L1555.34 1487.47 L1599.64 1487.47 L1643.94 1487.47 L1688.24 1487.47 L1732.54 1487.47 L1776.84 1487.47 L1821.14 1487.47 L1865.45 1487.47 \n", " L1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1164.16 L2352.76 1134.77 L2352.76 1105.37 L2352.76 1075.98 L2352.76 1046.59 L2352.76 1017.2 \n", " L2352.76 987.803 L2352.76 958.41 L2352.76 929.018 L2352.76 899.625 L2352.76 870.233 L2352.76 840.841 L2352.76 811.448 L2352.76 782.056 L2352.76 752.663 L2352.76 723.271 \n", " L2352.76 693.878 L2352.76 664.486 L2352.76 635.093 L2352.76 605.701 L2352.76 576.308 L2352.76 546.916 L2352.76 517.523 L2352.76 488.131 L2352.76 458.739 L2352.76 429.346 \n", " L2352.76 399.954 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 \n", " L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 \n", " L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 L1909.75 47.2441 L1865.45 47.2441 L1821.14 47.2441 L1776.84 47.2441 L1732.54 47.2441 \n", " L1688.24 47.2441 L1643.94 47.2441 L1599.64 47.2441 L1555.34 47.2441 L1511.04 47.2441 L1466.74 47.2441 L1422.44 47.2441 L1378.13 47.2441 L1333.83 47.2441 L1289.53 47.2441 \n", " L1245.23 47.2441 L1200.93 47.2441 L1156.63 47.2441 L1112.33 47.2441 L1068.03 47.2441 L1023.73 47.2441 L979.426 47.2441 L935.125 47.2441 L890.824 47.2441 L846.523 47.2441 \n", " L802.222 47.2441 L757.921 47.2441 L713.62 47.2441 L669.319 47.2441 L625.018 47.2441 L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 \n", " L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 \n", " L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 L182.008 546.916 L182.008 576.308 L182.008 605.701 L182.008 635.093 L182.008 664.486 L182.008 693.878 \n", " L182.008 723.271 L182.008 752.663 L182.008 782.056 L182.008 811.448 L182.008 840.841 L182.008 870.233 L182.008 899.625 L182.008 929.018 L182.008 958.41 L182.008 987.803 \n", " L182.008 1017.2 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 Z\n", " \" fill=\"#000003\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip3902)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L669.319 1487.47 L713.62 1487.47 L757.921 1487.47 L802.222 1487.47 L846.523 1487.47 L890.824 1487.47 L935.125 1487.47 L979.426 1487.47 \n", " L1023.73 1487.47 L1068.03 1487.47 L1112.33 1487.47 L1156.63 1487.47 L1200.93 1487.47 L1245.23 1487.47 L1289.53 1487.47 L1333.83 1487.47 L1378.13 1487.47 L1422.44 1487.47 \n", " L1466.74 1487.47 L1511.04 1487.47 L1555.34 1487.47 L1599.64 1487.47 L1643.94 1487.47 L1688.24 1487.47 L1732.54 1487.47 L1776.84 1487.47 L1821.14 1487.47 L1865.45 1487.47 \n", " L1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1164.16 L2352.76 1134.77 L2352.76 1105.37 L2352.76 1075.98 L2352.76 1046.59 L2352.76 1017.2 \n", " L2352.76 987.803 L2352.76 958.41 L2352.76 929.018 L2352.76 899.625 L2352.76 870.233 L2352.76 840.841 L2352.76 811.448 L2352.76 782.056 L2352.76 752.663 L2352.76 723.271 \n", " L2352.76 693.878 L2352.76 664.486 L2352.76 635.093 L2352.76 605.701 L2352.76 576.308 L2352.76 546.916 L2352.76 517.523 L2352.76 488.131 L2352.76 458.739 L2352.76 429.346 \n", " L2352.76 399.954 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 \n", " L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 \n", " L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 L1909.75 47.2441 L1865.45 47.2441 L1821.14 47.2441 L1776.84 47.2441 L1732.54 47.2441 \n", " L1688.24 47.2441 L1643.94 47.2441 L1599.64 47.2441 L1555.34 47.2441 L1511.04 47.2441 L1466.74 47.2441 L1422.44 47.2441 L1378.13 47.2441 L1333.83 47.2441 L1289.53 47.2441 \n", " L1245.23 47.2441 L1200.93 47.2441 L1156.63 47.2441 L1112.33 47.2441 L1068.03 47.2441 L1023.73 47.2441 L979.426 47.2441 L935.125 47.2441 L890.824 47.2441 L846.523 47.2441 \n", " L802.222 47.2441 L757.921 47.2441 L713.62 47.2441 L669.319 47.2441 L625.018 47.2441 L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 \n", " L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 \n", " L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 L182.008 546.916 L182.008 576.308 L182.008 605.701 L182.008 635.093 L182.008 664.486 L182.008 693.878 \n", " L182.008 723.271 L182.008 752.663 L182.008 782.056 L182.008 811.448 L182.008 840.841 L182.008 870.233 L182.008 899.625 L182.008 929.018 L182.008 958.41 L182.008 987.803 \n", " L182.008 1017.2 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M1200.93 842.904 L1245.23 851.98 L1289.53 851.98 L1333.83 842.904 L1337.9 840.841 L1378.13 814.148 L1381.24 811.448 L1394.92 782.056 L1394.92 752.663 L1381.24 723.271 \n", " L1378.13 720.57 L1337.9 693.878 L1333.83 691.815 L1289.53 682.739 L1245.23 682.739 L1200.93 691.815 L1196.86 693.878 L1156.63 720.57 L1153.52 723.271 L1139.84 752.663 \n", " L1139.84 782.056 L1153.52 811.448 L1156.63 814.148 L1196.86 840.841 L1200.93 842.904 Z\n", " \" fill=\"#0c0727\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip3902)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L669.319 1487.47 L713.62 1487.47 L757.921 1487.47 L802.222 1487.47 L846.523 1487.47 L890.824 1487.47 L935.125 1487.47 L979.426 1487.47 \n", " L1023.73 1487.47 L1068.03 1487.47 L1112.33 1487.47 L1156.63 1487.47 L1200.93 1487.47 L1245.23 1487.47 L1289.53 1487.47 L1333.83 1487.47 L1378.13 1487.47 L1422.44 1487.47 \n", " L1466.74 1487.47 L1511.04 1487.47 L1555.34 1487.47 L1599.64 1487.47 L1643.94 1487.47 L1688.24 1487.47 L1732.54 1487.47 L1776.84 1487.47 L1821.14 1487.47 L1865.45 1487.47 \n", " L1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1164.16 L2352.76 1134.77 L2352.76 1105.37 L2352.76 1075.98 L2352.76 1046.59 L2352.76 1017.2 \n", " L2352.76 987.803 L2352.76 958.41 L2352.76 929.018 L2352.76 899.625 L2352.76 870.233 L2352.76 840.841 L2352.76 811.448 L2352.76 782.056 L2352.76 752.663 L2352.76 723.271 \n", " L2352.76 693.878 L2352.76 664.486 L2352.76 635.093 L2352.76 605.701 L2352.76 576.308 L2352.76 546.916 L2352.76 517.523 L2352.76 488.131 L2352.76 458.739 L2352.76 429.346 \n", " L2352.76 399.954 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 \n", " L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 \n", " L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 L1909.75 47.2441 L1865.45 47.2441 L1821.14 47.2441 L1776.84 47.2441 L1732.54 47.2441 \n", " L1688.24 47.2441 L1643.94 47.2441 L1599.64 47.2441 L1555.34 47.2441 L1511.04 47.2441 L1466.74 47.2441 L1422.44 47.2441 L1378.13 47.2441 L1333.83 47.2441 L1289.53 47.2441 \n", " L1245.23 47.2441 L1200.93 47.2441 L1156.63 47.2441 L1112.33 47.2441 L1068.03 47.2441 L1023.73 47.2441 L979.426 47.2441 L935.125 47.2441 L890.824 47.2441 L846.523 47.2441 \n", " L802.222 47.2441 L757.921 47.2441 L713.62 47.2441 L669.319 47.2441 L625.018 47.2441 L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 \n", " L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 \n", " L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 L182.008 546.916 L182.008 576.308 L182.008 605.701 L182.008 635.093 L182.008 664.486 L182.008 693.878 \n", " L182.008 723.271 L182.008 752.663 L182.008 782.056 L182.008 811.448 L182.008 840.841 L182.008 870.233 L182.008 899.625 L182.008 929.018 L182.008 958.41 L182.008 987.803 \n", " L182.008 1017.2 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M1200.93 911.038 L1245.23 915.689 L1289.53 915.689 L1333.83 911.038 L1371.01 899.625 L1378.13 897.105 L1422.44 873.456 L1427.29 870.233 L1462.94 840.841 L1466.74 836.113 \n", " L1483.94 811.448 L1490.95 782.056 L1490.95 752.663 L1483.94 723.271 L1466.74 698.605 L1462.94 693.878 L1427.29 664.486 L1422.44 661.262 L1378.13 637.613 L1371.01 635.093 \n", " L1333.83 623.681 L1289.53 619.03 L1245.23 619.03 L1200.93 623.681 L1163.75 635.093 L1156.63 637.613 L1112.33 661.262 L1107.47 664.486 L1071.83 693.878 L1068.03 698.605 \n", " L1050.83 723.271 L1043.82 752.663 L1043.82 782.056 L1050.83 811.448 L1068.03 836.113 L1071.83 840.841 L1107.47 870.233 L1112.33 873.456 L1156.63 897.105 L1163.75 899.625 \n", " L1200.93 911.038 Z\n", " \" fill=\"#240b4e\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip3902)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L669.319 1487.47 L713.62 1487.47 L757.921 1487.47 L802.222 1487.47 L846.523 1487.47 L890.824 1487.47 L935.125 1487.47 L979.426 1487.47 \n", " L1023.73 1487.47 L1068.03 1487.47 L1112.33 1487.47 L1156.63 1487.47 L1200.93 1487.47 L1245.23 1487.47 L1289.53 1487.47 L1333.83 1487.47 L1378.13 1487.47 L1422.44 1487.47 \n", " L1466.74 1487.47 L1511.04 1487.47 L1555.34 1487.47 L1599.64 1487.47 L1643.94 1487.47 L1688.24 1487.47 L1732.54 1487.47 L1776.84 1487.47 L1821.14 1487.47 L1865.45 1487.47 \n", " L1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1164.16 L2352.76 1134.77 L2352.76 1105.37 L2352.76 1075.98 L2352.76 1046.59 L2352.76 1017.2 \n", " L2352.76 987.803 L2352.76 958.41 L2352.76 929.018 L2352.76 899.625 L2352.76 870.233 L2352.76 840.841 L2352.76 811.448 L2352.76 782.056 L2352.76 752.663 L2352.76 723.271 \n", " L2352.76 693.878 L2352.76 664.486 L2352.76 635.093 L2352.76 605.701 L2352.76 576.308 L2352.76 546.916 L2352.76 517.523 L2352.76 488.131 L2352.76 458.739 L2352.76 429.346 \n", " L2352.76 399.954 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 \n", " L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 \n", " L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 L1909.75 47.2441 L1865.45 47.2441 L1821.14 47.2441 L1776.84 47.2441 L1732.54 47.2441 \n", " L1688.24 47.2441 L1643.94 47.2441 L1599.64 47.2441 L1555.34 47.2441 L1511.04 47.2441 L1466.74 47.2441 L1422.44 47.2441 L1378.13 47.2441 L1333.83 47.2441 L1289.53 47.2441 \n", " L1245.23 47.2441 L1200.93 47.2441 L1156.63 47.2441 L1112.33 47.2441 L1068.03 47.2441 L1023.73 47.2441 L979.426 47.2441 L935.125 47.2441 L890.824 47.2441 L846.523 47.2441 \n", " L802.222 47.2441 L757.921 47.2441 L713.62 47.2441 L669.319 47.2441 L625.018 47.2441 L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 \n", " L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 \n", " L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 L182.008 546.916 L182.008 576.308 L182.008 605.701 L182.008 635.093 L182.008 664.486 L182.008 693.878 \n", " L182.008 723.271 L182.008 752.663 L182.008 782.056 L182.008 811.448 L182.008 840.841 L182.008 870.233 L182.008 899.625 L182.008 929.018 L182.008 958.41 L182.008 987.803 \n", " L182.008 1017.2 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M1156.63 963.532 L1200.93 970.327 L1245.23 976.791 L1289.53 976.791 L1333.83 970.327 L1378.13 963.532 L1397.28 958.41 L1422.44 950.815 L1465.23 929.018 L1466.74 928.121 \n", " L1509.68 899.625 L1511.04 898.623 L1543.89 870.233 L1555.34 853.544 L1563.06 840.841 L1573.3 811.448 L1583.04 782.056 L1583.04 752.663 L1573.3 723.271 L1563.06 693.878 \n", " L1555.34 681.174 L1543.89 664.486 L1511.04 636.096 L1509.68 635.093 L1466.74 606.598 L1465.23 605.701 L1422.44 583.903 L1397.28 576.308 L1378.13 571.187 L1333.83 564.391 \n", " L1289.53 557.928 L1245.23 557.928 L1200.93 564.391 L1156.63 571.187 L1137.48 576.308 L1112.33 583.903 L1069.54 605.701 L1068.03 606.598 L1025.08 635.093 L1023.73 636.096 \n", " L990.873 664.486 L979.426 681.174 L971.706 693.878 L961.464 723.271 L951.722 752.663 L951.722 782.056 L961.464 811.448 L971.706 840.841 L979.426 853.544 L990.873 870.233 \n", " L1023.73 898.623 L1025.08 899.625 L1068.03 928.121 L1069.54 929.018 L1112.33 950.815 L1137.48 958.41 L1156.63 963.532 Z\n", " \" fill=\"#420a67\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip3902)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L669.319 1487.47 L713.62 1487.47 L757.921 1487.47 L802.222 1487.47 L846.523 1487.47 L890.824 1487.47 L935.125 1487.47 L979.426 1487.47 \n", " L1023.73 1487.47 L1068.03 1487.47 L1112.33 1487.47 L1156.63 1487.47 L1200.93 1487.47 L1245.23 1487.47 L1289.53 1487.47 L1333.83 1487.47 L1378.13 1487.47 L1422.44 1487.47 \n", " L1466.74 1487.47 L1511.04 1487.47 L1555.34 1487.47 L1599.64 1487.47 L1643.94 1487.47 L1688.24 1487.47 L1732.54 1487.47 L1776.84 1487.47 L1821.14 1487.47 L1865.45 1487.47 \n", " L1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1164.16 L2352.76 1134.77 L2352.76 1105.37 L2352.76 1075.98 L2352.76 1046.59 L2352.76 1017.2 \n", " L2352.76 987.803 L2352.76 958.41 L2352.76 929.018 L2352.76 899.625 L2352.76 870.233 L2352.76 840.841 L2352.76 811.448 L2352.76 782.056 L2352.76 752.663 L2352.76 723.271 \n", " L2352.76 693.878 L2352.76 664.486 L2352.76 635.093 L2352.76 605.701 L2352.76 576.308 L2352.76 546.916 L2352.76 517.523 L2352.76 488.131 L2352.76 458.739 L2352.76 429.346 \n", " L2352.76 399.954 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 \n", " L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 \n", " L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 L1909.75 47.2441 L1865.45 47.2441 L1821.14 47.2441 L1776.84 47.2441 L1732.54 47.2441 \n", " L1688.24 47.2441 L1643.94 47.2441 L1599.64 47.2441 L1555.34 47.2441 L1511.04 47.2441 L1466.74 47.2441 L1422.44 47.2441 L1378.13 47.2441 L1333.83 47.2441 L1289.53 47.2441 \n", " L1245.23 47.2441 L1200.93 47.2441 L1156.63 47.2441 L1112.33 47.2441 L1068.03 47.2441 L1023.73 47.2441 L979.426 47.2441 L935.125 47.2441 L890.824 47.2441 L846.523 47.2441 \n", " L802.222 47.2441 L757.921 47.2441 L713.62 47.2441 L669.319 47.2441 L625.018 47.2441 L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 \n", " L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 \n", " L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 L182.008 546.916 L182.008 576.308 L182.008 605.701 L182.008 635.093 L182.008 664.486 L182.008 693.878 \n", " L182.008 723.271 L182.008 752.663 L182.008 782.056 L182.008 811.448 L182.008 840.841 L182.008 870.233 L182.008 899.625 L182.008 929.018 L182.008 958.41 L182.008 987.803 \n", " L182.008 1017.2 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M1112.33 1019.89 L1156.63 1029.38 L1200.93 1034.54 L1245.23 1039.5 L1289.53 1039.5 L1333.83 1034.54 L1378.13 1029.38 L1422.44 1019.89 L1430.25 1017.2 L1466.74 1003.72 \n", " L1505.82 987.803 L1511.04 985.55 L1555.34 962.35 L1561.28 958.41 L1596.24 929.018 L1599.64 925.556 L1623.62 899.625 L1643.94 875.415 L1648 870.233 L1662.3 840.841 \n", " L1670.09 811.448 L1677.55 782.056 L1677.55 752.663 L1670.09 723.271 L1662.3 693.878 L1648 664.486 L1643.94 659.304 L1623.62 635.093 L1599.64 609.163 L1596.24 605.701 \n", " L1561.28 576.308 L1555.34 572.369 L1511.04 549.168 L1505.82 546.916 L1466.74 531.004 L1430.25 517.523 L1422.44 514.833 L1378.13 505.339 L1333.83 500.174 L1289.53 495.223 \n", " L1245.23 495.223 L1200.93 500.174 L1156.63 505.339 L1112.33 514.833 L1104.52 517.523 L1068.03 531.004 L1028.94 546.916 L1023.73 549.168 L979.426 572.369 L973.488 576.308 \n", " L938.52 605.701 L935.125 609.163 L911.141 635.093 L890.824 659.304 L886.768 664.486 L872.46 693.878 L864.674 723.271 L857.212 752.663 L857.212 782.056 L864.674 811.448 \n", " L872.46 840.841 L886.768 870.233 L890.824 875.415 L911.141 899.625 L935.125 925.556 L938.52 929.018 L973.488 958.41 L979.426 962.35 L1023.73 985.55 L1028.94 987.803 \n", " L1068.03 1003.72 L1104.52 1017.2 L1112.33 1019.89 Z\n", " \" fill=\"#5d126d\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip3902)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L669.319 1487.47 L713.62 1487.47 L757.921 1487.47 L802.222 1487.47 L846.523 1487.47 L890.824 1487.47 L935.125 1487.47 L979.426 1487.47 \n", " L1023.73 1487.47 L1068.03 1487.47 L1112.33 1487.47 L1156.63 1487.47 L1200.93 1487.47 L1245.23 1487.47 L1289.53 1487.47 L1333.83 1487.47 L1378.13 1487.47 L1422.44 1487.47 \n", " L1466.74 1487.47 L1511.04 1487.47 L1555.34 1487.47 L1599.64 1487.47 L1643.94 1487.47 L1688.24 1487.47 L1732.54 1487.47 L1776.84 1487.47 L1821.14 1487.47 L1865.45 1487.47 \n", " L1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1164.16 L2352.76 1134.77 L2352.76 1105.37 L2352.76 1075.98 L2352.76 1046.59 L2352.76 1017.2 \n", " L2352.76 987.803 L2352.76 958.41 L2352.76 929.018 L2352.76 899.625 L2352.76 870.233 L2352.76 840.841 L2352.76 811.448 L2352.76 782.056 L2352.76 752.663 L2352.76 723.271 \n", " L2352.76 693.878 L2352.76 664.486 L2352.76 635.093 L2352.76 605.701 L2352.76 576.308 L2352.76 546.916 L2352.76 517.523 L2352.76 488.131 L2352.76 458.739 L2352.76 429.346 \n", " L2352.76 399.954 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 \n", " L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 \n", " L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 L1909.75 47.2441 L1865.45 47.2441 L1821.14 47.2441 L1776.84 47.2441 L1732.54 47.2441 \n", " L1688.24 47.2441 L1643.94 47.2441 L1599.64 47.2441 L1555.34 47.2441 L1511.04 47.2441 L1466.74 47.2441 L1422.44 47.2441 L1378.13 47.2441 L1333.83 47.2441 L1289.53 47.2441 \n", " L1245.23 47.2441 L1200.93 47.2441 L1156.63 47.2441 L1112.33 47.2441 L1068.03 47.2441 L1023.73 47.2441 L979.426 47.2441 L935.125 47.2441 L890.824 47.2441 L846.523 47.2441 \n", " L802.222 47.2441 L757.921 47.2441 L713.62 47.2441 L669.319 47.2441 L625.018 47.2441 L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 \n", " L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 \n", " L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 L182.008 546.916 L182.008 576.308 L182.008 605.701 L182.008 635.093 L182.008 664.486 L182.008 693.878 \n", " L182.008 723.271 L182.008 752.663 L182.008 782.056 L182.008 811.448 L182.008 840.841 L182.008 870.233 L182.008 899.625 L182.008 929.018 L182.008 958.41 L182.008 987.803 \n", " L182.008 1017.2 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M1112.33 1086.14 L1156.63 1093.76 L1200.93 1097.89 L1245.23 1101.91 L1289.53 1101.91 L1333.83 1097.89 L1378.13 1093.76 L1422.44 1086.14 L1458.45 1075.98 L1466.74 1073.56 \n", " L1511.04 1060.11 L1546.74 1046.59 L1555.34 1042.93 L1599.64 1018.08 L1601.12 1017.2 L1643.94 988.786 L1645.27 987.803 L1682.73 958.41 L1688.24 952.703 L1708.62 929.018 \n", " L1728.9 899.625 L1732.54 894.126 L1747.86 870.233 L1759.34 840.841 L1765.56 811.448 L1771.63 782.056 L1771.63 752.663 L1765.56 723.271 L1759.34 693.878 L1747.86 664.486 \n", " L1732.54 640.593 L1728.9 635.093 L1708.62 605.701 L1688.24 582.016 L1682.73 576.308 L1645.27 546.916 L1643.94 545.932 L1601.12 517.523 L1599.64 516.643 L1555.34 491.789 \n", " L1546.74 488.131 L1511.04 474.608 L1466.74 461.156 L1458.45 458.739 L1422.44 448.578 L1378.13 440.958 L1333.83 436.83 L1289.53 432.808 L1245.23 432.808 L1200.93 436.83 \n", " L1156.63 440.958 L1112.33 448.578 L1076.32 458.739 L1068.03 461.156 L1023.73 474.608 L988.029 488.131 L979.426 491.789 L935.125 516.643 L933.642 517.523 L890.824 545.932 \n", " L889.496 546.916 L852.037 576.308 L846.523 582.016 L826.141 605.701 L805.865 635.093 L802.222 640.593 L786.907 664.486 L775.422 693.878 L769.2 723.271 L763.139 752.663 \n", " L763.139 782.056 L769.2 811.448 L775.422 840.841 L786.907 870.233 L802.222 894.126 L805.865 899.625 L826.141 929.018 L846.523 952.703 L852.037 958.41 L889.496 987.803 \n", " L890.824 988.786 L933.642 1017.2 L935.125 1018.08 L979.426 1042.93 L988.029 1046.59 L1023.73 1060.11 L1068.03 1073.56 L1076.32 1075.98 L1112.33 1086.14 Z\n", " \" fill=\"#781c6d\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip3902)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L669.319 1487.47 L713.62 1487.47 L757.921 1487.47 L802.222 1487.47 L846.523 1487.47 L890.824 1487.47 L935.125 1487.47 L979.426 1487.47 \n", " L1023.73 1487.47 L1068.03 1487.47 L1112.33 1487.47 L1156.63 1487.47 L1200.93 1487.47 L1245.23 1487.47 L1289.53 1487.47 L1333.83 1487.47 L1378.13 1487.47 L1422.44 1487.47 \n", " L1466.74 1487.47 L1511.04 1487.47 L1555.34 1487.47 L1599.64 1487.47 L1643.94 1487.47 L1688.24 1487.47 L1732.54 1487.47 L1776.84 1487.47 L1821.14 1487.47 L1865.45 1487.47 \n", " L1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1164.16 L2352.76 1134.77 L2352.76 1105.37 L2352.76 1075.98 L2352.76 1046.59 L2352.76 1017.2 \n", " L2352.76 987.803 L2352.76 958.41 L2352.76 929.018 L2352.76 899.625 L2352.76 870.233 L2352.76 840.841 L2352.76 811.448 L2352.76 782.056 L2352.76 752.663 L2352.76 723.271 \n", " L2352.76 693.878 L2352.76 664.486 L2352.76 635.093 L2352.76 605.701 L2352.76 576.308 L2352.76 546.916 L2352.76 517.523 L2352.76 488.131 L2352.76 458.739 L2352.76 429.346 \n", " L2352.76 399.954 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 \n", " L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 \n", " L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 L1909.75 47.2441 L1865.45 47.2441 L1821.14 47.2441 L1776.84 47.2441 L1732.54 47.2441 \n", " L1688.24 47.2441 L1643.94 47.2441 L1599.64 47.2441 L1555.34 47.2441 L1511.04 47.2441 L1466.74 47.2441 L1422.44 47.2441 L1378.13 47.2441 L1333.83 47.2441 L1289.53 47.2441 \n", " L1245.23 47.2441 L1200.93 47.2441 L1156.63 47.2441 L1112.33 47.2441 L1068.03 47.2441 L1023.73 47.2441 L979.426 47.2441 L935.125 47.2441 L890.824 47.2441 L846.523 47.2441 \n", " L802.222 47.2441 L757.921 47.2441 L713.62 47.2441 L669.319 47.2441 L625.018 47.2441 L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 \n", " L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 \n", " L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 L182.008 546.916 L182.008 576.308 L182.008 605.701 L182.008 635.093 L182.008 664.486 L182.008 693.878 \n", " L182.008 723.271 L182.008 752.663 L182.008 782.056 L182.008 811.448 L182.008 840.841 L182.008 870.233 L182.008 899.625 L182.008 929.018 L182.008 958.41 L182.008 987.803 \n", " L182.008 1017.2 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M1245.23 1164.21 L1289.53 1164.21 L1290.19 1164.16 L1333.83 1160.84 L1378.13 1157.42 L1422.44 1151.08 L1466.74 1140.76 L1491.6 1134.77 L1511.04 1129.81 L1555.34 1115.71 \n", " L1579.65 1105.37 L1599.64 1096.38 L1642.21 1075.98 L1643.94 1075.12 L1688.24 1050.33 L1693.88 1046.59 L1731.24 1017.2 L1732.54 1016.05 L1763.28 987.803 L1776.84 974.54 \n", " L1792.42 958.41 L1813.68 929.018 L1821.14 916.119 L1830.18 899.625 L1845.74 870.233 L1855.28 840.841 L1860.44 811.448 L1865.45 782.49 L1865.52 782.056 L1865.52 752.663 \n", " L1865.45 752.228 L1860.44 723.271 L1855.28 693.878 L1845.74 664.486 L1830.18 635.093 L1821.14 618.6 L1813.68 605.701 L1792.42 576.308 L1776.84 560.179 L1763.28 546.916 \n", " L1732.54 518.668 L1731.24 517.523 L1693.88 488.131 L1688.24 484.39 L1643.94 459.603 L1642.21 458.739 L1599.64 438.343 L1579.65 429.346 L1555.34 419.012 L1511.04 404.906 \n", " L1491.6 399.954 L1466.74 393.96 L1422.44 383.634 L1378.13 377.303 L1333.83 373.88 L1290.19 370.561 L1289.53 370.512 L1245.23 370.512 L1244.58 370.561 L1200.93 373.88 \n", " L1156.63 377.303 L1112.33 383.634 L1068.03 393.96 L1043.17 399.954 L1023.73 404.906 L979.426 419.012 L955.115 429.346 L935.125 438.343 L892.549 458.739 L890.824 459.603 \n", " L846.523 484.39 L840.885 488.131 L803.524 517.523 L802.222 518.668 L771.482 546.916 L757.921 560.179 L742.345 576.308 L721.083 605.701 L713.62 618.6 L704.587 635.093 \n", " L689.023 664.486 L679.481 693.878 L674.322 723.271 L669.319 752.228 L669.244 752.663 L669.244 782.056 L669.319 782.49 L674.322 811.448 L679.481 840.841 L689.023 870.233 \n", " L704.587 899.625 L713.62 916.119 L721.083 929.018 L742.345 958.41 L757.921 974.54 L771.482 987.803 L802.222 1016.05 L803.524 1017.2 L840.885 1046.59 L846.523 1050.33 \n", " L890.824 1075.12 L892.549 1075.98 L935.125 1096.38 L955.115 1105.37 L979.426 1115.71 L1023.73 1129.81 L1043.17 1134.77 L1068.03 1140.76 L1112.33 1151.08 L1156.63 1157.42 \n", " L1200.93 1160.84 L1244.58 1164.16 L1245.23 1164.21 Z\n", " \" fill=\"#942666\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip3902)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L669.319 1487.47 L713.62 1487.47 L757.921 1487.47 L802.222 1487.47 L846.523 1487.47 L890.824 1487.47 L935.125 1487.47 L979.426 1487.47 \n", " L1023.73 1487.47 L1068.03 1487.47 L1112.33 1487.47 L1156.63 1487.47 L1200.93 1487.47 L1245.23 1487.47 L1289.53 1487.47 L1333.83 1487.47 L1378.13 1487.47 L1422.44 1487.47 \n", " L1466.74 1487.47 L1511.04 1487.47 L1555.34 1487.47 L1599.64 1487.47 L1643.94 1487.47 L1688.24 1487.47 L1732.54 1487.47 L1776.84 1487.47 L1821.14 1487.47 L1865.45 1487.47 \n", " L1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1164.16 L2352.76 1134.77 L2352.76 1105.37 L2352.76 1075.98 L2352.76 1046.59 L2352.76 1017.2 \n", " L2352.76 987.803 L2352.76 958.41 L2352.76 929.018 L2352.76 899.625 L2352.76 870.233 L2352.76 840.841 L2352.76 811.448 L2352.76 782.056 L2352.76 752.663 L2352.76 723.271 \n", " L2352.76 693.878 L2352.76 664.486 L2352.76 635.093 L2352.76 605.701 L2352.76 576.308 L2352.76 546.916 L2352.76 517.523 L2352.76 488.131 L2352.76 458.739 L2352.76 429.346 \n", " L2352.76 399.954 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 \n", " L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 \n", " L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 L1909.75 47.2441 L1865.45 47.2441 L1821.14 47.2441 L1776.84 47.2441 L1732.54 47.2441 \n", " L1688.24 47.2441 L1643.94 47.2441 L1599.64 47.2441 L1555.34 47.2441 L1511.04 47.2441 L1466.74 47.2441 L1422.44 47.2441 L1378.13 47.2441 L1333.83 47.2441 L1289.53 47.2441 \n", " L1245.23 47.2441 L1200.93 47.2441 L1156.63 47.2441 L1112.33 47.2441 L1068.03 47.2441 L1023.73 47.2441 L979.426 47.2441 L935.125 47.2441 L890.824 47.2441 L846.523 47.2441 \n", " L802.222 47.2441 L757.921 47.2441 L713.62 47.2441 L669.319 47.2441 L625.018 47.2441 L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 \n", " L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 \n", " L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 L182.008 546.916 L182.008 576.308 L182.008 605.701 L182.008 635.093 L182.008 664.486 L182.008 693.878 \n", " L182.008 723.271 L182.008 752.663 L182.008 782.056 L182.008 811.448 L182.008 840.841 L182.008 870.233 L182.008 899.625 L182.008 929.018 L182.008 958.41 L182.008 987.803 \n", " L182.008 1017.2 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M1200.93 1223.54 L1245.23 1226.43 L1289.53 1226.43 L1333.83 1223.54 L1342.99 1222.94 L1378.13 1220.61 L1422.44 1215.15 L1466.74 1206.22 L1511.04 1196.91 L1523.96 1193.55 \n", " L1555.34 1185.14 L1599.64 1169.2 L1613.11 1164.16 L1643.94 1152.25 L1683.82 1134.77 L1688.24 1132.61 L1732.54 1106.51 L1734.39 1105.37 L1776.84 1077.21 L1778.56 1075.98 \n", " L1817.9 1046.59 L1821.14 1043.65 L1847.5 1017.2 L1865.45 996.742 L1873.05 987.803 L1897.08 958.41 L1909.75 937.591 L1914.81 929.018 L1928.84 899.625 L1942.3 870.233 \n", " L1950.54 840.841 L1954.05 817.526 L1954.95 811.448 L1959.3 782.056 L1959.3 752.663 L1954.95 723.271 L1954.05 717.193 L1950.54 693.878 L1942.3 664.486 L1928.84 635.093 \n", " L1914.81 605.701 L1909.75 597.128 L1897.08 576.308 L1873.05 546.916 L1865.45 537.977 L1847.5 517.523 L1821.14 491.065 L1817.9 488.131 L1778.56 458.739 L1776.84 457.514 \n", " L1734.39 429.346 L1732.54 428.21 L1688.24 402.104 L1683.82 399.954 L1643.94 382.466 L1613.11 370.561 L1599.64 365.517 L1555.34 349.575 L1523.96 341.169 L1511.04 337.808 \n", " L1466.74 328.502 L1422.44 319.569 L1378.13 314.105 L1342.99 311.776 L1333.83 311.176 L1289.53 308.29 L1245.23 308.29 L1200.93 311.176 L1191.77 311.776 L1156.63 314.105 \n", " L1112.33 319.569 L1068.03 328.502 L1023.73 337.808 L1010.81 341.169 L979.426 349.575 L935.125 365.517 L921.651 370.561 L890.824 382.466 L850.945 399.954 L846.523 402.104 \n", " L802.222 428.21 L800.376 429.346 L757.921 457.514 L756.208 458.739 L716.861 488.131 L713.62 491.065 L687.261 517.523 L669.319 537.977 L661.717 546.916 L637.688 576.308 \n", " L625.018 597.128 L619.953 605.701 L605.927 635.093 L592.463 664.486 L584.226 693.878 L580.717 717.193 L579.812 723.271 L575.462 752.663 L575.462 782.056 L579.812 811.448 \n", " L580.717 817.526 L584.226 840.841 L592.463 870.233 L605.927 899.625 L619.953 929.018 L625.018 937.591 L637.688 958.41 L661.717 987.803 L669.319 996.742 L687.261 1017.2 \n", " L713.62 1043.65 L716.861 1046.59 L756.208 1075.98 L757.921 1077.21 L800.376 1105.37 L802.222 1106.51 L846.523 1132.61 L850.945 1134.77 L890.824 1152.25 L921.651 1164.16 \n", " L935.125 1169.2 L979.426 1185.14 L1010.81 1193.55 L1023.73 1196.91 L1068.03 1206.22 L1112.33 1215.15 L1156.63 1220.61 L1191.77 1222.94 L1200.93 1223.54 Z\n", " \" fill=\"#ad305b\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip3902)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L669.319 1487.47 L713.62 1487.47 L757.921 1487.47 L802.222 1487.47 L846.523 1487.47 L890.824 1487.47 L935.125 1487.47 L979.426 1487.47 \n", " L1023.73 1487.47 L1068.03 1487.47 L1112.33 1487.47 L1156.63 1487.47 L1200.93 1487.47 L1245.23 1487.47 L1289.53 1487.47 L1333.83 1487.47 L1378.13 1487.47 L1422.44 1487.47 \n", " L1466.74 1487.47 L1511.04 1487.47 L1555.34 1487.47 L1599.64 1487.47 L1643.94 1487.47 L1688.24 1487.47 L1732.54 1487.47 L1776.84 1487.47 L1821.14 1487.47 L1865.45 1487.47 \n", " L1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1164.16 L2352.76 1134.77 L2352.76 1105.37 L2352.76 1075.98 L2352.76 1046.59 L2352.76 1017.2 \n", " L2352.76 987.803 L2352.76 958.41 L2352.76 929.018 L2352.76 899.625 L2352.76 870.233 L2352.76 840.841 L2352.76 811.448 L2352.76 782.056 L2352.76 752.663 L2352.76 723.271 \n", " L2352.76 693.878 L2352.76 664.486 L2352.76 635.093 L2352.76 605.701 L2352.76 576.308 L2352.76 546.916 L2352.76 517.523 L2352.76 488.131 L2352.76 458.739 L2352.76 429.346 \n", " L2352.76 399.954 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 \n", " L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 \n", " L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 L1909.75 47.2441 L1865.45 47.2441 L1821.14 47.2441 L1776.84 47.2441 L1732.54 47.2441 \n", " L1688.24 47.2441 L1643.94 47.2441 L1599.64 47.2441 L1555.34 47.2441 L1511.04 47.2441 L1466.74 47.2441 L1422.44 47.2441 L1378.13 47.2441 L1333.83 47.2441 L1289.53 47.2441 \n", " L1245.23 47.2441 L1200.93 47.2441 L1156.63 47.2441 L1112.33 47.2441 L1068.03 47.2441 L1023.73 47.2441 L979.426 47.2441 L935.125 47.2441 L890.824 47.2441 L846.523 47.2441 \n", " L802.222 47.2441 L757.921 47.2441 L713.62 47.2441 L669.319 47.2441 L625.018 47.2441 L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 \n", " L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 \n", " L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 L182.008 546.916 L182.008 576.308 L182.008 605.701 L182.008 635.093 L182.008 664.486 L182.008 693.878 \n", " L182.008 723.271 L182.008 752.663 L182.008 782.056 L182.008 811.448 L182.008 840.841 L182.008 870.233 L182.008 899.625 L182.008 929.018 L182.008 958.41 L182.008 987.803 \n", " L182.008 1017.2 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M1156.63 1283.16 L1200.93 1285.57 L1245.23 1288.32 L1289.53 1288.32 L1333.83 1285.57 L1378.13 1283.16 L1394.08 1281.73 L1422.44 1278.64 L1466.74 1270.82 L1511.04 1262.77 \n", " L1555.34 1252.67 L1556.45 1252.34 L1599.64 1239.08 L1643.94 1224.87 L1649.31 1222.94 L1688.24 1207.99 L1718.66 1193.55 L1732.54 1186.66 L1775.85 1164.16 L1776.84 1163.62 \n", " L1821.14 1137.24 L1824.88 1134.77 L1864.64 1105.37 L1865.45 1104.71 L1899.36 1075.98 L1909.75 1066.77 L1931.51 1046.59 L1954.05 1020.76 L1956.95 1017.2 L1978.37 987.803 \n", " L1998.35 959.147 L1998.85 958.41 L2014.08 929.018 L2026.22 899.625 L2037.99 870.233 L2042.65 851.422 L2044.81 840.841 L2048.44 811.448 L2052.59 782.056 L2052.59 752.663 \n", " L2048.44 723.271 L2044.81 693.878 L2042.65 683.297 L2037.99 664.486 L2026.22 635.093 L2014.08 605.701 L1998.85 576.308 L1998.35 575.572 L1978.37 546.916 L1956.95 517.523 \n", " L1954.05 513.958 L1931.51 488.131 L1909.75 467.948 L1899.36 458.739 L1865.45 430.004 L1864.64 429.346 L1824.88 399.954 L1821.14 397.475 L1776.84 371.095 L1775.85 370.561 \n", " L1732.54 348.06 L1718.66 341.169 L1688.24 326.731 L1649.31 311.776 L1643.94 309.851 L1599.64 295.641 L1556.45 282.384 L1555.34 282.05 L1511.04 271.946 L1466.74 263.894 \n", " L1422.44 256.08 L1394.08 252.991 L1378.13 251.558 L1333.83 249.151 L1289.53 246.399 L1245.23 246.399 L1200.93 249.151 L1156.63 251.558 L1140.68 252.991 L1112.33 256.08 \n", " L1068.03 263.894 L1023.73 271.946 L979.426 282.05 L978.315 282.384 L935.125 295.641 L890.824 309.851 L885.45 311.776 L846.523 326.731 L816.102 341.169 L802.222 348.06 \n", " L758.913 370.561 L757.921 371.095 L713.62 397.475 L709.884 399.954 L670.124 429.346 L669.319 430.004 L635.404 458.739 L625.018 467.948 L603.257 488.131 L580.717 513.958 \n", " L577.815 517.523 L556.398 546.916 L536.416 575.572 L535.913 576.308 L520.684 605.701 L508.548 635.093 L496.771 664.486 L492.115 683.297 L489.955 693.878 L486.326 723.271 \n", " L482.179 752.663 L482.179 782.056 L486.326 811.448 L489.955 840.841 L492.115 851.422 L496.771 870.233 L508.548 899.625 L520.684 929.018 L535.913 958.41 L536.416 959.147 \n", " L556.398 987.803 L577.815 1017.2 L580.717 1020.76 L603.257 1046.59 L625.018 1066.77 L635.404 1075.98 L669.319 1104.71 L670.124 1105.37 L709.884 1134.77 L713.62 1137.24 \n", " L757.921 1163.62 L758.913 1164.16 L802.222 1186.66 L816.102 1193.55 L846.523 1207.99 L885.45 1222.94 L890.824 1224.87 L935.125 1239.08 L978.315 1252.34 L979.426 1252.67 \n", " L1023.73 1262.77 L1068.03 1270.82 L1112.33 1278.64 L1140.68 1281.73 L1156.63 1283.16 Z\n", " \" fill=\"#c73e4c\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip3902)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L669.319 1487.47 L713.62 1487.47 L757.921 1487.47 L802.222 1487.47 L846.523 1487.47 L890.824 1487.47 L935.125 1487.47 L979.426 1487.47 \n", " L1023.73 1487.47 L1068.03 1487.47 L1112.33 1487.47 L1156.63 1487.47 L1200.93 1487.47 L1245.23 1487.47 L1289.53 1487.47 L1333.83 1487.47 L1378.13 1487.47 L1422.44 1487.47 \n", " L1466.74 1487.47 L1511.04 1487.47 L1555.34 1487.47 L1599.64 1487.47 L1643.94 1487.47 L1688.24 1487.47 L1732.54 1487.47 L1776.84 1487.47 L1821.14 1487.47 L1865.45 1487.47 \n", " L1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1164.16 L2352.76 1134.77 L2352.76 1105.37 L2352.76 1075.98 L2352.76 1046.59 L2352.76 1017.2 \n", " L2352.76 987.803 L2352.76 958.41 L2352.76 929.018 L2352.76 899.625 L2352.76 870.233 L2352.76 840.841 L2352.76 811.448 L2352.76 782.056 L2352.76 752.663 L2352.76 723.271 \n", " L2352.76 693.878 L2352.76 664.486 L2352.76 635.093 L2352.76 605.701 L2352.76 576.308 L2352.76 546.916 L2352.76 517.523 L2352.76 488.131 L2352.76 458.739 L2352.76 429.346 \n", " L2352.76 399.954 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 \n", " L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 \n", " L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 L1909.75 47.2441 L1865.45 47.2441 L1821.14 47.2441 L1776.84 47.2441 L1732.54 47.2441 \n", " L1688.24 47.2441 L1643.94 47.2441 L1599.64 47.2441 L1555.34 47.2441 L1511.04 47.2441 L1466.74 47.2441 L1422.44 47.2441 L1378.13 47.2441 L1333.83 47.2441 L1289.53 47.2441 \n", " L1245.23 47.2441 L1200.93 47.2441 L1156.63 47.2441 L1112.33 47.2441 L1068.03 47.2441 L1023.73 47.2441 L979.426 47.2441 L935.125 47.2441 L890.824 47.2441 L846.523 47.2441 \n", " L802.222 47.2441 L757.921 47.2441 L713.62 47.2441 L669.319 47.2441 L625.018 47.2441 L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 \n", " L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 \n", " L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 L182.008 546.916 L182.008 576.308 L182.008 605.701 L182.008 635.093 L182.008 664.486 L182.008 693.878 \n", " L182.008 723.271 L182.008 752.663 L182.008 782.056 L182.008 811.448 L182.008 840.841 L182.008 870.233 L182.008 899.625 L182.008 929.018 L182.008 958.41 L182.008 987.803 \n", " L182.008 1017.2 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M1200.93 1345.04 L1245.23 1349.59 L1289.53 1349.59 L1333.83 1345.04 L1377.44 1340.51 L1378.13 1340.44 L1422.44 1335.78 L1466.74 1331.05 L1511.04 1326.27 L1555.34 1318.22 \n", " L1578.5 1311.12 L1599.64 1304.91 L1643.94 1292.64 L1682.76 1281.73 L1688.24 1279.89 L1732.54 1261.72 L1754.52 1252.34 L1776.84 1242.55 L1812.15 1222.94 L1821.14 1217.6 \n", " L1859.68 1193.55 L1865.45 1189.84 L1904.16 1164.16 L1909.75 1160.33 L1946 1134.77 L1954.05 1128.8 L1983.59 1105.37 L1998.35 1090.56 L2012.49 1075.98 L2039.88 1046.59 \n", " L2042.65 1042.95 L2059.1 1017.2 L2077.59 987.803 L2086.95 973.776 L2097.65 958.41 L2109.78 929.018 L2116.99 899.625 L2124.11 870.233 L2131.14 840.841 L2131.25 840.382 \n", " L2138.08 811.448 L2144.93 782.056 L2144.93 752.663 L2138.08 723.271 L2131.25 694.337 L2131.14 693.878 L2124.11 664.486 L2116.99 635.093 L2109.78 605.701 L2097.65 576.308 \n", " L2086.95 560.943 L2077.59 546.916 L2059.1 517.523 L2042.65 491.766 L2039.88 488.131 L2012.49 458.739 L1998.35 444.156 L1983.59 429.346 L1954.05 405.922 L1946 399.954 \n", " L1909.75 374.387 L1904.16 370.561 L1865.45 344.878 L1859.68 341.169 L1821.14 317.118 L1812.15 311.776 L1776.84 292.174 L1754.52 282.384 L1732.54 273.002 L1688.24 254.826 \n", " L1682.76 252.991 L1643.94 242.079 L1599.64 229.808 L1578.5 223.599 L1555.34 216.498 L1511.04 208.453 L1466.74 203.666 L1422.44 198.942 L1378.13 194.279 L1377.44 194.206 \n", " L1333.83 189.676 L1289.53 185.132 L1245.23 185.132 L1200.93 189.676 L1157.32 194.206 L1156.63 194.279 L1112.33 198.942 L1068.03 203.666 L1023.73 208.453 L979.426 216.498 \n", " L956.266 223.599 L935.125 229.808 L890.824 242.079 L852.002 252.991 L846.523 254.826 L802.222 273.002 L780.243 282.384 L757.921 292.174 L722.616 311.776 L713.62 317.118 \n", " L675.085 341.169 L669.319 344.878 L630.608 370.561 L625.018 374.387 L588.768 399.954 L580.717 405.922 L551.172 429.346 L536.416 444.156 L522.275 458.739 L494.881 488.131 \n", " L492.115 491.766 L475.668 517.523 L457.173 546.916 L447.814 560.943 L437.111 576.308 L424.986 605.701 L417.771 635.093 L410.65 664.486 L403.622 693.878 L403.513 694.337 \n", " L396.684 723.271 L389.836 752.663 L389.836 782.056 L396.684 811.448 L403.513 840.382 L403.622 840.841 L410.65 870.233 L417.771 899.625 L424.986 929.018 L437.111 958.41 \n", " L447.814 973.776 L457.173 987.803 L475.668 1017.2 L492.115 1042.95 L494.881 1046.59 L522.275 1075.98 L536.416 1090.56 L551.172 1105.37 L580.717 1128.8 L588.768 1134.77 \n", " L625.018 1160.33 L630.608 1164.16 L669.319 1189.84 L675.085 1193.55 L713.62 1217.6 L722.616 1222.94 L757.921 1242.55 L780.243 1252.34 L802.222 1261.72 L846.523 1279.89 \n", " L852.002 1281.73 L890.824 1292.64 L935.125 1304.91 L956.266 1311.12 L979.426 1318.22 L1023.73 1326.27 L1068.03 1331.05 L1112.33 1335.78 L1156.63 1340.44 L1157.32 1340.51 \n", " L1200.93 1345.04 Z\n", " \" fill=\"#db503a\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip3902)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L669.319 1487.47 L713.62 1487.47 L757.921 1487.47 L802.222 1487.47 L846.523 1487.47 L890.824 1487.47 L935.125 1487.47 L979.426 1487.47 \n", " L1023.73 1487.47 L1068.03 1487.47 L1112.33 1487.47 L1156.63 1487.47 L1200.93 1487.47 L1245.23 1487.47 L1289.53 1487.47 L1333.83 1487.47 L1378.13 1487.47 L1422.44 1487.47 \n", " L1466.74 1487.47 L1511.04 1487.47 L1555.34 1487.47 L1599.64 1487.47 L1643.94 1487.47 L1688.24 1487.47 L1732.54 1487.47 L1776.84 1487.47 L1821.14 1487.47 L1865.45 1487.47 \n", " L1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1164.16 L2352.76 1134.77 L2352.76 1105.37 L2352.76 1075.98 L2352.76 1046.59 L2352.76 1017.2 \n", " L2352.76 987.803 L2352.76 958.41 L2352.76 929.018 L2352.76 899.625 L2352.76 870.233 L2352.76 840.841 L2352.76 811.448 L2352.76 782.056 L2352.76 752.663 L2352.76 723.271 \n", " L2352.76 693.878 L2352.76 664.486 L2352.76 635.093 L2352.76 605.701 L2352.76 576.308 L2352.76 546.916 L2352.76 517.523 L2352.76 488.131 L2352.76 458.739 L2352.76 429.346 \n", " L2352.76 399.954 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 \n", " L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 \n", " L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 L1909.75 47.2441 L1865.45 47.2441 L1821.14 47.2441 L1776.84 47.2441 L1732.54 47.2441 \n", " L1688.24 47.2441 L1643.94 47.2441 L1599.64 47.2441 L1555.34 47.2441 L1511.04 47.2441 L1466.74 47.2441 L1422.44 47.2441 L1378.13 47.2441 L1333.83 47.2441 L1289.53 47.2441 \n", " L1245.23 47.2441 L1200.93 47.2441 L1156.63 47.2441 L1112.33 47.2441 L1068.03 47.2441 L1023.73 47.2441 L979.426 47.2441 L935.125 47.2441 L890.824 47.2441 L846.523 47.2441 \n", " L802.222 47.2441 L757.921 47.2441 L713.62 47.2441 L669.319 47.2441 L625.018 47.2441 L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 \n", " L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 \n", " L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 L182.008 546.916 L182.008 576.308 L182.008 605.701 L182.008 635.093 L182.008 664.486 L182.008 693.878 \n", " L182.008 723.271 L182.008 752.663 L182.008 782.056 L182.008 811.448 L182.008 840.841 L182.008 870.233 L182.008 899.625 L182.008 929.018 L182.008 958.41 L182.008 987.803 \n", " L182.008 1017.2 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M1156.63 1403.44 L1200.93 1407.63 L1245.23 1411.77 L1289.53 1411.77 L1333.83 1407.63 L1378.13 1403.44 L1421.27 1399.3 L1422.44 1399.18 L1466.74 1394.88 L1511.04 1390.51 \n", " L1555.34 1383.13 L1599.64 1370.5 L1601.69 1369.9 L1643.94 1357.45 L1688.24 1343.97 L1699.35 1340.51 L1732.54 1330.01 L1776.84 1315.57 L1788.87 1311.12 L1821.14 1297.72 \n", " L1849.86 1281.73 L1865.45 1272.65 L1899.16 1252.34 L1909.75 1245.75 L1945.24 1222.94 L1954.05 1217.1 L1988.43 1193.55 L1998.35 1186.53 L2028.97 1164.16 L2042.65 1153.82 \n", " L2066.76 1134.77 L2086.95 1113.35 L2093.66 1105.37 L2115.43 1075.98 L2131.25 1053.96 L2136.46 1046.59 L2156.79 1017.2 L2175.55 989.165 L2176.45 987.803 L2195.48 958.41 \n", " L2206.61 929.018 L2213.19 899.625 L2219.68 870.233 L2219.85 869.46 L2226.09 840.841 L2232.42 811.448 L2238.66 782.056 L2238.66 752.663 L2232.42 723.271 L2226.09 693.878 \n", " L2219.85 665.259 L2219.68 664.486 L2213.19 635.093 L2206.61 605.701 L2195.48 576.308 L2176.45 546.916 L2175.55 545.554 L2156.79 517.523 L2136.46 488.131 L2131.25 480.764 \n", " L2115.43 458.739 L2093.66 429.346 L2086.95 421.366 L2066.76 399.954 L2042.65 380.899 L2028.97 370.561 L1998.35 348.194 L1988.43 341.169 L1954.05 317.617 L1945.24 311.776 \n", " L1909.75 288.966 L1899.16 282.384 L1865.45 262.066 L1849.86 252.991 L1821.14 236.995 L1788.87 223.599 L1776.84 219.148 L1732.54 204.706 L1699.35 194.206 L1688.24 190.754 \n", " L1643.94 177.265 L1601.69 164.814 L1599.64 164.219 L1555.34 151.593 L1511.04 144.205 L1466.74 139.841 L1422.44 135.534 L1421.27 135.421 L1378.13 131.283 L1333.83 127.087 \n", " L1289.53 122.945 L1245.23 122.945 L1200.93 127.087 L1156.63 131.283 L1113.49 135.421 L1112.33 135.534 L1068.03 139.841 L1023.73 144.205 L979.426 151.593 L935.125 164.219 \n", " L933.072 164.814 L890.824 177.265 L846.523 190.754 L835.418 194.206 L802.222 204.706 L757.921 219.148 L745.892 223.599 L713.62 236.995 L684.9 252.991 L669.319 262.066 \n", " L635.606 282.384 L625.018 288.966 L589.52 311.776 L580.717 317.617 L546.337 341.169 L536.416 348.194 L505.792 370.561 L492.115 380.899 L468.005 399.954 L447.814 421.366 \n", " L441.106 429.346 L419.339 458.739 L403.513 480.764 L398.309 488.131 L377.979 517.523 L359.212 545.554 L358.315 546.916 L339.284 576.308 L328.15 605.701 L321.572 635.093 \n", " L315.081 664.486 L314.911 665.259 L308.673 693.878 L302.349 723.271 L296.106 752.663 L296.106 782.056 L302.349 811.448 L308.673 840.841 L314.911 869.46 L315.081 870.233 \n", " L321.572 899.625 L328.15 929.018 L339.284 958.41 L358.315 987.803 L359.212 989.165 L377.979 1017.2 L398.309 1046.59 L403.513 1053.96 L419.339 1075.98 L441.106 1105.37 \n", " L447.814 1113.35 L468.005 1134.77 L492.115 1153.82 L505.792 1164.16 L536.416 1186.53 L546.337 1193.55 L580.717 1217.1 L589.52 1222.94 L625.018 1245.75 L635.606 1252.34 \n", " L669.319 1272.65 L684.9 1281.73 L713.62 1297.72 L745.892 1311.12 L757.921 1315.57 L802.222 1330.01 L835.418 1340.51 L846.523 1343.97 L890.824 1357.45 L933.072 1369.9 \n", " L935.125 1370.5 L979.426 1383.13 L1023.73 1390.51 L1068.03 1394.88 L1112.33 1399.18 L1113.49 1399.3 L1156.63 1403.44 Z\n", " \" fill=\"#ec6925\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip3902)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L669.319 1487.47 L713.62 1487.47 L757.921 1487.47 L802.222 1487.47 L846.523 1487.47 L890.824 1487.47 L935.125 1487.47 L979.426 1487.47 \n", " L1023.73 1487.47 L1068.03 1487.47 L1112.33 1487.47 L1156.63 1487.47 L1200.93 1487.47 L1245.23 1487.47 L1289.53 1487.47 L1333.83 1487.47 L1378.13 1487.47 L1422.44 1487.47 \n", " L1466.74 1487.47 L1511.04 1487.47 L1555.34 1487.47 L1599.64 1487.47 L1643.94 1487.47 L1688.24 1487.47 L1732.54 1487.47 L1776.84 1487.47 L1821.14 1487.47 L1865.45 1487.47 \n", " L1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1164.16 L2352.76 1134.77 L2352.76 1105.37 L2352.76 1075.98 L2352.76 1046.59 L2352.76 1017.2 \n", " L2352.76 987.803 L2352.76 958.41 L2352.76 929.018 L2352.76 899.625 L2352.76 870.233 L2352.76 840.841 L2352.76 811.448 L2352.76 782.056 L2352.76 752.663 L2352.76 723.271 \n", " L2352.76 693.878 L2352.76 664.486 L2352.76 635.093 L2352.76 605.701 L2352.76 576.308 L2352.76 546.916 L2352.76 517.523 L2352.76 488.131 L2352.76 458.739 L2352.76 429.346 \n", " L2352.76 399.954 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 \n", " L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 \n", " L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 L1909.75 47.2441 L1865.45 47.2441 L1821.14 47.2441 L1776.84 47.2441 L1732.54 47.2441 \n", " L1688.24 47.2441 L1643.94 47.2441 L1599.64 47.2441 L1555.34 47.2441 L1511.04 47.2441 L1466.74 47.2441 L1422.44 47.2441 L1378.13 47.2441 L1333.83 47.2441 L1289.53 47.2441 \n", " L1245.23 47.2441 L1200.93 47.2441 L1156.63 47.2441 L1112.33 47.2441 L1068.03 47.2441 L1023.73 47.2441 L979.426 47.2441 L935.125 47.2441 L890.824 47.2441 L846.523 47.2441 \n", " L802.222 47.2441 L757.921 47.2441 L713.62 47.2441 L669.319 47.2441 L625.018 47.2441 L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 \n", " L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 \n", " L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 L182.008 546.916 L182.008 576.308 L182.008 605.701 L182.008 635.093 L182.008 664.486 L182.008 693.878 \n", " L182.008 723.271 L182.008 752.663 L182.008 782.056 L182.008 811.448 L182.008 840.841 L182.008 870.233 L182.008 899.625 L182.008 929.018 L182.008 958.41 L182.008 987.803 \n", " L182.008 1017.2 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M1068.03 1458.7 L1112.33 1462.59 L1156.63 1466.43 L1200.93 1470.22 L1245.23 1473.96 L1289.53 1473.96 L1333.83 1470.22 L1378.13 1466.43 L1422.44 1462.59 L1466.74 1458.7 \n", " L1473.76 1458.08 L1511.04 1454.76 L1555.34 1448.03 L1599.64 1436.47 L1628.65 1428.69 L1643.94 1424.52 L1688.24 1412.17 L1732.54 1399.39 L1732.85 1399.3 L1776.84 1386.16 \n", " L1821.14 1370.86 L1823.21 1369.9 L1865.45 1350.02 L1885.05 1340.51 L1909.75 1328.28 L1943.42 1311.12 L1954.05 1304.87 L1992.05 1281.73 L1998.35 1277.69 L2036.56 1252.34 \n", " L2042.65 1248.16 L2077.52 1222.94 L2086.95 1215.89 L2112.81 1193.55 L2131.25 1177.17 L2145.58 1164.16 L2175.55 1136.14 L2176.99 1134.77 L2200.06 1105.37 L2219.85 1076.19 \n", " L2219.99 1075.98 L2239.25 1046.59 L2257.87 1017.2 L2264.15 1007.05 L2275.88 987.803 L2293.31 958.41 L2303.45 929.018 L2308.45 904.282 L2309.39 899.625 L2315.25 870.233 \n", " L2321.04 840.841 L2326.75 811.448 L2332.39 782.056 L2332.39 752.663 L2326.75 723.271 L2321.04 693.878 L2315.25 664.486 L2309.39 635.093 L2308.45 630.436 L2303.45 605.701 \n", " L2293.31 576.308 L2275.88 546.916 L2264.15 527.671 L2257.87 517.523 L2239.25 488.131 L2219.99 458.739 L2219.85 458.532 L2200.06 429.346 L2176.99 399.954 L2175.55 398.581 \n", " L2145.58 370.561 L2131.25 357.553 L2112.81 341.169 L2086.95 318.83 L2077.52 311.776 L2042.65 286.561 L2036.56 282.384 L1998.35 257.029 L1992.05 252.991 L1954.05 229.852 \n", " L1943.42 223.599 L1909.75 206.439 L1885.05 194.206 L1865.45 184.7 L1823.21 164.814 L1821.14 163.86 L1776.84 148.556 L1732.85 135.421 L1732.54 135.33 L1688.24 122.552 \n", " L1643.94 110.199 L1628.65 106.029 L1599.64 98.2505 L1555.34 86.6872 L1511.04 79.9566 L1473.76 76.6366 L1466.74 76.0156 L1422.44 72.1262 L1378.13 68.2873 L1333.83 64.498 \n", " L1289.53 60.7573 L1245.23 60.7573 L1200.93 64.498 L1156.63 68.2873 L1112.33 72.1262 L1068.03 76.0156 L1061.01 76.6366 L1023.73 79.9566 L979.426 86.6872 L935.125 98.2505 \n", " L906.119 106.029 L890.824 110.199 L846.523 122.552 L802.222 135.33 L801.91 135.421 L757.921 148.556 L713.62 163.86 L711.551 164.814 L669.319 184.7 L649.712 194.206 \n", " L625.018 206.439 L591.348 223.599 L580.717 229.852 L542.713 252.991 L536.416 257.029 L498.2 282.384 L492.115 286.561 L457.24 311.776 L447.814 318.83 L421.95 341.169 \n", " L403.513 357.553 L389.184 370.561 L359.212 398.581 L357.774 399.954 L334.708 429.346 L314.911 458.532 L314.773 458.739 L295.513 488.131 L276.895 517.523 L270.61 527.671 \n", " L258.886 546.916 L241.458 576.308 L231.313 605.701 L226.309 630.436 L225.373 635.093 L219.511 664.486 L213.725 693.878 L208.013 723.271 L202.375 752.663 L202.375 782.056 \n", " L208.013 811.448 L213.725 840.841 L219.511 870.233 L225.373 899.625 L226.309 904.282 L231.313 929.018 L241.458 958.41 L258.886 987.803 L270.61 1007.05 L276.895 1017.2 \n", " L295.513 1046.59 L314.773 1075.98 L314.911 1076.19 L334.708 1105.37 L357.774 1134.77 L359.212 1136.14 L389.184 1164.16 L403.513 1177.17 L421.95 1193.55 L447.814 1215.89 \n", " L457.24 1222.94 L492.115 1248.16 L498.2 1252.34 L536.416 1277.69 L542.713 1281.73 L580.717 1304.87 L591.348 1311.12 L625.018 1328.28 L649.712 1340.51 L669.319 1350.02 \n", " L711.551 1369.9 L713.62 1370.86 L757.921 1386.16 L801.91 1399.3 L802.222 1399.39 L846.523 1412.17 L890.824 1424.52 L906.119 1428.69 L935.125 1436.47 L979.426 1448.03 \n", " L1023.73 1454.76 L1061.01 1458.08 L1068.03 1458.7 Z\n", " \" fill=\"#f7850e\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip3902)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L669.319 1487.47 L713.62 1487.47 L757.921 1487.47 L802.222 1487.47 L846.523 1487.47 L846.523 1487.47 L874.413 1487.47 L846.523 1480.37 \n", " L802.222 1468.76 L762.743 1458.08 L757.921 1456.75 L713.62 1442.76 L681.175 1428.69 L669.319 1423.44 L625.018 1403.28 L616.474 1399.3 L580.717 1382.24 L555.625 1369.9 \n", " L536.416 1360.25 L498.292 1340.51 L492.115 1337.24 L447.814 1312.56 L445.643 1311.12 L408.444 1281.73 L403.513 1277.63 L373.767 1252.34 L359.212 1239.59 L340.619 1222.94 \n", " L314.911 1199.22 L308.901 1193.55 L278.523 1164.16 L270.61 1156.29 L249.402 1134.77 L228.31 1105.37 L226.309 1102.17 L210.208 1075.98 L192.718 1046.59 L182.008 1028.08 \n", " L182.008 1046.59 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M1688.24 1487.47 L1732.54 1487.47 L1776.84 1487.47 L1821.14 1487.47 L1865.45 1487.47 L1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 \n", " L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 \n", " L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1164.16 \n", " L2352.76 1134.77 L2352.76 1105.37 L2352.76 1075.98 L2352.76 1046.59 L2352.76 1046.59 L2352.76 1028.08 L2342.05 1046.59 L2324.56 1075.98 L2308.45 1102.17 L2306.45 1105.37 \n", " L2285.36 1134.77 L2264.15 1156.29 L2256.24 1164.16 L2225.86 1193.55 L2219.85 1199.22 L2194.15 1222.94 L2175.55 1239.59 L2161 1252.34 L2131.25 1277.63 L2126.32 1281.73 \n", " L2089.12 1311.12 L2086.95 1312.56 L2042.65 1337.24 L2036.47 1340.51 L1998.35 1360.25 L1979.14 1369.9 L1954.05 1382.24 L1918.29 1399.3 L1909.75 1403.28 L1865.45 1423.44 \n", " L1853.59 1428.69 L1821.14 1442.76 L1776.84 1456.75 L1772.02 1458.08 L1732.54 1468.76 L1688.24 1480.37 L1660.35 1487.47 L1643.94 1487.47 L1688.24 1487.47 M182.008 517.523 L182.008 506.635 L192.718 488.131 L210.208 458.739 L226.309 432.546 L228.31 429.346 L249.402 399.954 L270.61 378.427 L278.523 370.561 L308.901 341.169 \n", " L314.911 335.5 L340.619 311.776 L359.212 295.128 L373.767 282.384 L403.513 257.09 L408.444 252.991 L445.643 223.599 L447.814 222.159 L492.115 197.478 L498.292 194.206 \n", " L536.416 174.471 L555.625 164.814 L580.717 152.478 L616.474 135.421 L625.018 131.434 L669.319 111.279 L681.175 106.029 L713.62 91.9582 L757.921 77.9644 L762.743 76.6366 \n", " L802.222 65.9539 L846.523 54.35 L874.413 47.2441 L846.523 47.2441 L846.523 47.2441 L802.222 47.2441 L757.921 47.2441 L713.62 47.2441 L669.319 47.2441 L625.018 47.2441 \n", " L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 \n", " L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 \n", " L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 M2352.76 506.635 L2352.76 517.523 L2352.76 488.131 L2352.76 458.739 L2352.76 429.346 L2352.76 399.954 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 \n", " L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 \n", " L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 \n", " L1909.75 47.2441 L1865.45 47.2441 L1821.14 47.2441 L1776.84 47.2441 L1732.54 47.2441 L1688.24 47.2441 L1643.94 47.2441 L1660.35 47.2441 L1688.24 54.35 L1732.54 65.9539 \n", " L1772.02 76.6366 L1776.84 77.9644 L1821.14 91.9582 L1853.59 106.029 L1865.45 111.279 L1909.75 131.434 L1918.29 135.421 L1954.05 152.478 L1979.14 164.814 L1998.35 174.471 \n", " L2036.47 194.206 L2042.65 197.478 L2086.95 222.159 L2089.12 223.599 L2126.32 252.991 L2131.25 257.09 L2161 282.384 L2175.55 295.128 L2194.15 311.776 L2219.85 335.5 \n", " L2225.86 341.169 L2256.24 370.561 L2264.15 378.427 L2285.36 399.954 L2306.45 429.346 L2308.45 432.546 L2324.56 458.739 L2342.05 488.131 L2352.76 506.635 Z\n", " \" fill=\"#fba40a\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip3902)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L625.018 1487.47 L646.693 1487.47 L625.018 1478.29 L580.717 1458.9 L578.891 1458.08 L536.416 1438.64 L515.379 1428.69 L492.115 1417.44 \n", " L456.714 1399.3 L447.814 1394.63 L408.854 1369.9 L403.513 1366.44 L364.435 1340.51 L359.212 1336.97 L321.945 1311.12 L314.911 1305.22 L287.571 1281.73 L270.61 1266.29 \n", " L255.619 1252.34 L226.309 1224.15 L225.077 1222.94 L195.852 1193.55 L182.008 1179.17 L182.008 1193.55 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1193.55 L2352.76 1179.17 L2338.91 1193.55 L2309.69 1222.94 L2308.45 1224.15 L2279.14 1252.34 \n", " L2264.15 1266.29 L2247.19 1281.73 L2219.85 1305.22 L2212.82 1311.12 L2175.55 1336.97 L2170.33 1340.51 L2131.25 1366.44 L2125.91 1369.9 L2086.95 1394.63 L2078.05 1399.3 \n", " L2042.65 1417.44 L2019.38 1428.69 L1998.35 1438.64 L1955.87 1458.08 L1954.05 1458.9 L1909.75 1478.29 L1888.07 1487.47 L1865.45 1487.47 L1909.75 1487.47 M182.008 370.561 L182.008 355.55 L195.852 341.169 L225.077 311.776 L226.309 310.565 L255.619 282.384 L270.61 268.427 L287.571 252.991 L314.911 229.504 L321.945 223.599 \n", " L359.212 197.75 L364.435 194.206 L403.513 168.279 L408.854 164.814 L447.814 140.088 L456.714 135.421 L492.115 117.282 L515.379 106.029 L536.416 96.0831 L578.891 76.6366 \n", " L580.717 75.8189 L625.018 56.4293 L646.693 47.2441 L625.018 47.2441 L625.018 47.2441 L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 \n", " L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 M2352.76 355.55 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 \n", " L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 \n", " L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 L1909.75 47.2441 L1865.45 47.2441 L1888.07 47.2441 L1909.75 56.4293 L1954.05 75.8189 \n", " L1955.87 76.6366 L1998.35 96.0831 L2019.38 106.029 L2042.65 117.282 L2078.05 135.421 L2086.95 140.088 L2125.91 164.814 L2131.25 168.279 L2170.33 194.206 L2175.55 197.75 \n", " L2212.82 223.599 L2219.85 229.504 L2247.19 252.991 L2264.15 268.427 L2279.14 282.384 L2308.45 310.565 L2309.69 311.776 L2338.91 341.169 L2352.76 355.55 Z\n", " \" fill=\"#f9c52d\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip3902)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L447.814 1487.47 L470.361 1487.47 \n", " L447.814 1476.7 L416.332 1458.08 L403.513 1450.33 L368.564 1428.69 L359.212 1422.77 L323.016 1399.3 L314.911 1393.92 L279.537 1369.9 L270.61 1363.7 L237.989 1340.51 \n", " L226.309 1332.01 L198.247 1311.12 L182.008 1296.16 L182.008 1311.12 L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 \n", " L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1311.12 L2352.76 1296.16 L2336.52 1311.12 L2308.45 1332.01 L2296.77 1340.51 L2264.15 1363.7 L2255.23 1369.9 L2219.85 1393.92 L2211.75 1399.3 L2175.55 1422.77 \n", " L2166.2 1428.69 L2131.25 1450.33 L2118.43 1458.08 L2086.95 1476.7 L2064.4 1487.47 L2042.65 1487.47 L2086.95 1487.47 M182.008 252.991 L182.008 238.558 \n", " L198.247 223.599 L226.309 202.711 L237.989 194.206 L270.61 171.019 L279.537 164.814 L314.911 140.799 L323.016 135.421 L359.212 111.952 L368.564 106.029 L403.513 84.386 \n", " L416.332 76.6366 L447.814 58.0179 L470.361 47.2441 L447.814 47.2441 L447.814 47.2441 L403.513 47.2441 L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 \n", " L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 \n", " L182.008 252.991 M2352.76 238.558 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 L2352.76 106.029 L2352.76 76.6366 \n", " L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 L2131.25 47.2441 L2086.95 47.2441 \n", " L2042.65 47.2441 L2064.4 47.2441 L2086.95 58.0179 L2118.43 76.6366 L2131.25 84.386 L2166.2 106.029 L2175.55 111.952 L2211.75 135.421 L2219.85 140.799 L2255.23 164.814 \n", " L2264.15 171.019 L2296.77 194.206 L2308.45 202.711 L2336.52 223.599 L2352.76 238.558 Z\n", " \" fill=\"#f2e55f\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip3902)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L314.911 1487.47 L324.247 1487.47 L314.911 1481.71 L277.559 1458.08 L270.61 1453.58 \n", " L233.093 1428.69 L226.309 1424.08 L190.693 1399.3 L182.008 1393.1 L182.008 1399.3 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 \n", " L182.008 1487.47 M2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 \n", " L2352.76 1428.69 L2352.76 1399.3 L2352.76 1399.3 L2352.76 1393.1 L2344.07 1399.3 L2308.45 1424.08 L2301.67 1428.69 L2264.15 1453.58 L2257.2 1458.08 L2219.85 1481.71 \n", " L2210.52 1487.47 L2175.55 1487.47 L2219.85 1487.47 M182.008 164.814 L182.008 141.616 L190.693 135.421 L226.309 110.64 L233.093 106.029 L270.61 81.1375 \n", " L277.559 76.6366 L314.911 53.0066 L324.247 47.2441 L314.911 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 \n", " L182.008 47.2441 L182.008 76.6366 L182.008 106.029 L182.008 135.421 L182.008 164.814 M2352.76 141.616 L2352.76 164.814 L2352.76 135.421 L2352.76 106.029 \n", " L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 L2210.52 47.2441 \n", " L2219.85 53.0066 L2257.2 76.6366 L2264.15 81.1375 L2301.67 106.029 L2308.45 110.64 L2344.07 135.421 L2352.76 141.616 Z\n", " \" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 669.319,1487.47 713.62,1487.47 757.921,1487.47 802.222,1487.47 846.523,1487.47 890.824,1487.47 935.125,1487.47 979.426,1487.47 \n", " 1023.73,1487.47 1068.03,1487.47 1112.33,1487.47 1156.63,1487.47 1200.93,1487.47 1245.23,1487.47 1289.53,1487.47 1333.83,1487.47 1378.13,1487.47 1422.44,1487.47 \n", " 1466.74,1487.47 1511.04,1487.47 1555.34,1487.47 1599.64,1487.47 1643.94,1487.47 1688.24,1487.47 1732.54,1487.47 1776.84,1487.47 1821.14,1487.47 1865.45,1487.47 \n", " 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 \n", " 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 \n", " 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1164.16 2352.76,1134.77 2352.76,1105.37 2352.76,1075.98 2352.76,1046.59 2352.76,1017.2 \n", " 2352.76,987.803 2352.76,958.41 2352.76,929.018 2352.76,899.625 2352.76,870.233 2352.76,840.841 2352.76,811.448 2352.76,782.056 2352.76,752.663 2352.76,723.271 \n", " 2352.76,693.878 2352.76,664.486 2352.76,635.093 2352.76,605.701 2352.76,576.308 2352.76,546.916 2352.76,517.523 2352.76,488.131 2352.76,458.739 2352.76,429.346 \n", " 2352.76,399.954 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 \n", " 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 \n", " 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 1909.75,47.2441 1865.45,47.2441 1821.14,47.2441 1776.84,47.2441 1732.54,47.2441 \n", " 1688.24,47.2441 1643.94,47.2441 1599.64,47.2441 1555.34,47.2441 1511.04,47.2441 1466.74,47.2441 1422.44,47.2441 1378.13,47.2441 1333.83,47.2441 1289.53,47.2441 \n", " 1245.23,47.2441 1200.93,47.2441 1156.63,47.2441 1112.33,47.2441 1068.03,47.2441 1023.73,47.2441 979.426,47.2441 935.125,47.2441 890.824,47.2441 846.523,47.2441 \n", " 802.222,47.2441 757.921,47.2441 713.62,47.2441 669.319,47.2441 625.018,47.2441 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 \n", " 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 \n", " 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 182.008,546.916 182.008,576.308 182.008,605.701 182.008,635.093 182.008,664.486 182.008,693.878 \n", " 182.008,723.271 182.008,752.663 182.008,782.056 182.008,811.448 182.008,840.841 182.008,870.233 182.008,899.625 182.008,929.018 182.008,958.41 182.008,987.803 \n", " 182.008,1017.2 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 669.319,1487.47 713.62,1487.47 757.921,1487.47 802.222,1487.47 846.523,1487.47 890.824,1487.47 935.125,1487.47 979.426,1487.47 \n", " 1023.73,1487.47 1068.03,1487.47 1112.33,1487.47 1156.63,1487.47 1200.93,1487.47 1245.23,1487.47 1289.53,1487.47 1333.83,1487.47 1378.13,1487.47 1422.44,1487.47 \n", " 1466.74,1487.47 1511.04,1487.47 1555.34,1487.47 1599.64,1487.47 1643.94,1487.47 1688.24,1487.47 1732.54,1487.47 1776.84,1487.47 1821.14,1487.47 1865.45,1487.47 \n", " 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 \n", " 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 \n", " 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1164.16 2352.76,1134.77 2352.76,1105.37 2352.76,1075.98 2352.76,1046.59 2352.76,1017.2 \n", " 2352.76,987.803 2352.76,958.41 2352.76,929.018 2352.76,899.625 2352.76,870.233 2352.76,840.841 2352.76,811.448 2352.76,782.056 2352.76,752.663 2352.76,723.271 \n", " 2352.76,693.878 2352.76,664.486 2352.76,635.093 2352.76,605.701 2352.76,576.308 2352.76,546.916 2352.76,517.523 2352.76,488.131 2352.76,458.739 2352.76,429.346 \n", " 2352.76,399.954 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 \n", " 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 \n", " 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 1909.75,47.2441 1865.45,47.2441 1821.14,47.2441 1776.84,47.2441 1732.54,47.2441 \n", " 1688.24,47.2441 1643.94,47.2441 1599.64,47.2441 1555.34,47.2441 1511.04,47.2441 1466.74,47.2441 1422.44,47.2441 1378.13,47.2441 1333.83,47.2441 1289.53,47.2441 \n", " 1245.23,47.2441 1200.93,47.2441 1156.63,47.2441 1112.33,47.2441 1068.03,47.2441 1023.73,47.2441 979.426,47.2441 935.125,47.2441 890.824,47.2441 846.523,47.2441 \n", " 802.222,47.2441 757.921,47.2441 713.62,47.2441 669.319,47.2441 625.018,47.2441 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 \n", " 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 \n", " 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 182.008,546.916 182.008,576.308 182.008,605.701 182.008,635.093 182.008,664.486 182.008,693.878 \n", " 182.008,723.271 182.008,752.663 182.008,782.056 182.008,811.448 182.008,840.841 182.008,870.233 182.008,899.625 182.008,929.018 182.008,958.41 182.008,987.803 \n", " 182.008,1017.2 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1200.93,842.904 1245.23,851.98 1289.53,851.98 1333.83,842.904 1337.9,840.841 1378.13,814.148 1381.24,811.448 1394.92,782.056 1394.92,752.663 1381.24,723.271 \n", " 1378.13,720.57 1337.9,693.878 1333.83,691.815 1289.53,682.739 1245.23,682.739 1200.93,691.815 1196.86,693.878 1156.63,720.57 1153.52,723.271 1139.84,752.663 \n", " 1139.84,782.056 1153.52,811.448 1156.63,814.148 1196.86,840.841 1200.93,842.904 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 669.319,1487.47 713.62,1487.47 757.921,1487.47 802.222,1487.47 846.523,1487.47 890.824,1487.47 935.125,1487.47 979.426,1487.47 \n", " 1023.73,1487.47 1068.03,1487.47 1112.33,1487.47 1156.63,1487.47 1200.93,1487.47 1245.23,1487.47 1289.53,1487.47 1333.83,1487.47 1378.13,1487.47 1422.44,1487.47 \n", " 1466.74,1487.47 1511.04,1487.47 1555.34,1487.47 1599.64,1487.47 1643.94,1487.47 1688.24,1487.47 1732.54,1487.47 1776.84,1487.47 1821.14,1487.47 1865.45,1487.47 \n", " 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 \n", " 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 \n", " 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1164.16 2352.76,1134.77 2352.76,1105.37 2352.76,1075.98 2352.76,1046.59 2352.76,1017.2 \n", " 2352.76,987.803 2352.76,958.41 2352.76,929.018 2352.76,899.625 2352.76,870.233 2352.76,840.841 2352.76,811.448 2352.76,782.056 2352.76,752.663 2352.76,723.271 \n", " 2352.76,693.878 2352.76,664.486 2352.76,635.093 2352.76,605.701 2352.76,576.308 2352.76,546.916 2352.76,517.523 2352.76,488.131 2352.76,458.739 2352.76,429.346 \n", " 2352.76,399.954 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 \n", " 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 \n", " 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 1909.75,47.2441 1865.45,47.2441 1821.14,47.2441 1776.84,47.2441 1732.54,47.2441 \n", " 1688.24,47.2441 1643.94,47.2441 1599.64,47.2441 1555.34,47.2441 1511.04,47.2441 1466.74,47.2441 1422.44,47.2441 1378.13,47.2441 1333.83,47.2441 1289.53,47.2441 \n", " 1245.23,47.2441 1200.93,47.2441 1156.63,47.2441 1112.33,47.2441 1068.03,47.2441 1023.73,47.2441 979.426,47.2441 935.125,47.2441 890.824,47.2441 846.523,47.2441 \n", " 802.222,47.2441 757.921,47.2441 713.62,47.2441 669.319,47.2441 625.018,47.2441 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 \n", " 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 \n", " 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 182.008,546.916 182.008,576.308 182.008,605.701 182.008,635.093 182.008,664.486 182.008,693.878 \n", " 182.008,723.271 182.008,752.663 182.008,782.056 182.008,811.448 182.008,840.841 182.008,870.233 182.008,899.625 182.008,929.018 182.008,958.41 182.008,987.803 \n", " 182.008,1017.2 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1200.93,911.038 1245.23,915.689 1289.53,915.689 1333.83,911.038 1371.01,899.625 1378.13,897.105 1422.44,873.456 1427.29,870.233 1462.94,840.841 1466.74,836.113 \n", " 1483.94,811.448 1490.95,782.056 1490.95,752.663 1483.94,723.271 1466.74,698.605 1462.94,693.878 1427.29,664.486 1422.44,661.262 1378.13,637.613 1371.01,635.093 \n", " 1333.83,623.681 1289.53,619.03 1245.23,619.03 1200.93,623.681 1163.75,635.093 1156.63,637.613 1112.33,661.262 1107.47,664.486 1071.83,693.878 1068.03,698.605 \n", " 1050.83,723.271 1043.82,752.663 1043.82,782.056 1050.83,811.448 1068.03,836.113 1071.83,840.841 1107.47,870.233 1112.33,873.456 1156.63,897.105 1163.75,899.625 \n", " 1200.93,911.038 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 669.319,1487.47 713.62,1487.47 757.921,1487.47 802.222,1487.47 846.523,1487.47 890.824,1487.47 935.125,1487.47 979.426,1487.47 \n", " 1023.73,1487.47 1068.03,1487.47 1112.33,1487.47 1156.63,1487.47 1200.93,1487.47 1245.23,1487.47 1289.53,1487.47 1333.83,1487.47 1378.13,1487.47 1422.44,1487.47 \n", " 1466.74,1487.47 1511.04,1487.47 1555.34,1487.47 1599.64,1487.47 1643.94,1487.47 1688.24,1487.47 1732.54,1487.47 1776.84,1487.47 1821.14,1487.47 1865.45,1487.47 \n", " 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 \n", " 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 \n", " 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1164.16 2352.76,1134.77 2352.76,1105.37 2352.76,1075.98 2352.76,1046.59 2352.76,1017.2 \n", " 2352.76,987.803 2352.76,958.41 2352.76,929.018 2352.76,899.625 2352.76,870.233 2352.76,840.841 2352.76,811.448 2352.76,782.056 2352.76,752.663 2352.76,723.271 \n", " 2352.76,693.878 2352.76,664.486 2352.76,635.093 2352.76,605.701 2352.76,576.308 2352.76,546.916 2352.76,517.523 2352.76,488.131 2352.76,458.739 2352.76,429.346 \n", " 2352.76,399.954 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 \n", " 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 \n", " 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 1909.75,47.2441 1865.45,47.2441 1821.14,47.2441 1776.84,47.2441 1732.54,47.2441 \n", " 1688.24,47.2441 1643.94,47.2441 1599.64,47.2441 1555.34,47.2441 1511.04,47.2441 1466.74,47.2441 1422.44,47.2441 1378.13,47.2441 1333.83,47.2441 1289.53,47.2441 \n", " 1245.23,47.2441 1200.93,47.2441 1156.63,47.2441 1112.33,47.2441 1068.03,47.2441 1023.73,47.2441 979.426,47.2441 935.125,47.2441 890.824,47.2441 846.523,47.2441 \n", " 802.222,47.2441 757.921,47.2441 713.62,47.2441 669.319,47.2441 625.018,47.2441 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 \n", " 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 \n", " 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 182.008,546.916 182.008,576.308 182.008,605.701 182.008,635.093 182.008,664.486 182.008,693.878 \n", " 182.008,723.271 182.008,752.663 182.008,782.056 182.008,811.448 182.008,840.841 182.008,870.233 182.008,899.625 182.008,929.018 182.008,958.41 182.008,987.803 \n", " 182.008,1017.2 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1156.63,963.532 1200.93,970.327 1245.23,976.791 1289.53,976.791 1333.83,970.327 1378.13,963.532 1397.28,958.41 1422.44,950.815 1465.23,929.018 1466.74,928.121 \n", " 1509.68,899.625 1511.04,898.623 1543.89,870.233 1555.34,853.544 1563.06,840.841 1573.3,811.448 1583.04,782.056 1583.04,752.663 1573.3,723.271 1563.06,693.878 \n", " 1555.34,681.174 1543.89,664.486 1511.04,636.096 1509.68,635.093 1466.74,606.598 1465.23,605.701 1422.44,583.903 1397.28,576.308 1378.13,571.187 1333.83,564.391 \n", " 1289.53,557.928 1245.23,557.928 1200.93,564.391 1156.63,571.187 1137.48,576.308 1112.33,583.903 1069.54,605.701 1068.03,606.598 1025.08,635.093 1023.73,636.096 \n", " 990.873,664.486 979.426,681.174 971.706,693.878 961.464,723.271 951.722,752.663 951.722,782.056 961.464,811.448 971.706,840.841 979.426,853.544 990.873,870.233 \n", " 1023.73,898.623 1025.08,899.625 1068.03,928.121 1069.54,929.018 1112.33,950.815 1137.48,958.41 1156.63,963.532 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 669.319,1487.47 713.62,1487.47 757.921,1487.47 802.222,1487.47 846.523,1487.47 890.824,1487.47 935.125,1487.47 979.426,1487.47 \n", " 1023.73,1487.47 1068.03,1487.47 1112.33,1487.47 1156.63,1487.47 1200.93,1487.47 1245.23,1487.47 1289.53,1487.47 1333.83,1487.47 1378.13,1487.47 1422.44,1487.47 \n", " 1466.74,1487.47 1511.04,1487.47 1555.34,1487.47 1599.64,1487.47 1643.94,1487.47 1688.24,1487.47 1732.54,1487.47 1776.84,1487.47 1821.14,1487.47 1865.45,1487.47 \n", " 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 \n", " 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 \n", " 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1164.16 2352.76,1134.77 2352.76,1105.37 2352.76,1075.98 2352.76,1046.59 2352.76,1017.2 \n", " 2352.76,987.803 2352.76,958.41 2352.76,929.018 2352.76,899.625 2352.76,870.233 2352.76,840.841 2352.76,811.448 2352.76,782.056 2352.76,752.663 2352.76,723.271 \n", " 2352.76,693.878 2352.76,664.486 2352.76,635.093 2352.76,605.701 2352.76,576.308 2352.76,546.916 2352.76,517.523 2352.76,488.131 2352.76,458.739 2352.76,429.346 \n", " 2352.76,399.954 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 \n", " 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 \n", " 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 1909.75,47.2441 1865.45,47.2441 1821.14,47.2441 1776.84,47.2441 1732.54,47.2441 \n", " 1688.24,47.2441 1643.94,47.2441 1599.64,47.2441 1555.34,47.2441 1511.04,47.2441 1466.74,47.2441 1422.44,47.2441 1378.13,47.2441 1333.83,47.2441 1289.53,47.2441 \n", " 1245.23,47.2441 1200.93,47.2441 1156.63,47.2441 1112.33,47.2441 1068.03,47.2441 1023.73,47.2441 979.426,47.2441 935.125,47.2441 890.824,47.2441 846.523,47.2441 \n", " 802.222,47.2441 757.921,47.2441 713.62,47.2441 669.319,47.2441 625.018,47.2441 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 \n", " 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 \n", " 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 182.008,546.916 182.008,576.308 182.008,605.701 182.008,635.093 182.008,664.486 182.008,693.878 \n", " 182.008,723.271 182.008,752.663 182.008,782.056 182.008,811.448 182.008,840.841 182.008,870.233 182.008,899.625 182.008,929.018 182.008,958.41 182.008,987.803 \n", " 182.008,1017.2 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1112.33,1019.89 1156.63,1029.38 1200.93,1034.54 1245.23,1039.5 1289.53,1039.5 1333.83,1034.54 1378.13,1029.38 1422.44,1019.89 1430.25,1017.2 1466.74,1003.72 \n", " 1505.82,987.803 1511.04,985.55 1555.34,962.35 1561.28,958.41 1596.24,929.018 1599.64,925.556 1623.62,899.625 1643.94,875.415 1648,870.233 1662.3,840.841 \n", " 1670.09,811.448 1677.55,782.056 1677.55,752.663 1670.09,723.271 1662.3,693.878 1648,664.486 1643.94,659.304 1623.62,635.093 1599.64,609.163 1596.24,605.701 \n", " 1561.28,576.308 1555.34,572.369 1511.04,549.168 1505.82,546.916 1466.74,531.004 1430.25,517.523 1422.44,514.833 1378.13,505.339 1333.83,500.174 1289.53,495.223 \n", " 1245.23,495.223 1200.93,500.174 1156.63,505.339 1112.33,514.833 1104.52,517.523 1068.03,531.004 1028.94,546.916 1023.73,549.168 979.426,572.369 973.488,576.308 \n", " 938.52,605.701 935.125,609.163 911.141,635.093 890.824,659.304 886.768,664.486 872.46,693.878 864.674,723.271 857.212,752.663 857.212,782.056 864.674,811.448 \n", " 872.46,840.841 886.768,870.233 890.824,875.415 911.141,899.625 935.125,925.556 938.52,929.018 973.488,958.41 979.426,962.35 1023.73,985.55 1028.94,987.803 \n", " 1068.03,1003.72 1104.52,1017.2 1112.33,1019.89 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 669.319,1487.47 713.62,1487.47 757.921,1487.47 802.222,1487.47 846.523,1487.47 890.824,1487.47 935.125,1487.47 979.426,1487.47 \n", " 1023.73,1487.47 1068.03,1487.47 1112.33,1487.47 1156.63,1487.47 1200.93,1487.47 1245.23,1487.47 1289.53,1487.47 1333.83,1487.47 1378.13,1487.47 1422.44,1487.47 \n", " 1466.74,1487.47 1511.04,1487.47 1555.34,1487.47 1599.64,1487.47 1643.94,1487.47 1688.24,1487.47 1732.54,1487.47 1776.84,1487.47 1821.14,1487.47 1865.45,1487.47 \n", " 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 \n", " 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 \n", " 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1164.16 2352.76,1134.77 2352.76,1105.37 2352.76,1075.98 2352.76,1046.59 2352.76,1017.2 \n", " 2352.76,987.803 2352.76,958.41 2352.76,929.018 2352.76,899.625 2352.76,870.233 2352.76,840.841 2352.76,811.448 2352.76,782.056 2352.76,752.663 2352.76,723.271 \n", " 2352.76,693.878 2352.76,664.486 2352.76,635.093 2352.76,605.701 2352.76,576.308 2352.76,546.916 2352.76,517.523 2352.76,488.131 2352.76,458.739 2352.76,429.346 \n", " 2352.76,399.954 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 \n", " 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 \n", " 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 1909.75,47.2441 1865.45,47.2441 1821.14,47.2441 1776.84,47.2441 1732.54,47.2441 \n", " 1688.24,47.2441 1643.94,47.2441 1599.64,47.2441 1555.34,47.2441 1511.04,47.2441 1466.74,47.2441 1422.44,47.2441 1378.13,47.2441 1333.83,47.2441 1289.53,47.2441 \n", " 1245.23,47.2441 1200.93,47.2441 1156.63,47.2441 1112.33,47.2441 1068.03,47.2441 1023.73,47.2441 979.426,47.2441 935.125,47.2441 890.824,47.2441 846.523,47.2441 \n", " 802.222,47.2441 757.921,47.2441 713.62,47.2441 669.319,47.2441 625.018,47.2441 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 \n", " 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 \n", " 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 182.008,546.916 182.008,576.308 182.008,605.701 182.008,635.093 182.008,664.486 182.008,693.878 \n", " 182.008,723.271 182.008,752.663 182.008,782.056 182.008,811.448 182.008,840.841 182.008,870.233 182.008,899.625 182.008,929.018 182.008,958.41 182.008,987.803 \n", " 182.008,1017.2 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1112.33,1086.14 1156.63,1093.76 1200.93,1097.89 1245.23,1101.91 1289.53,1101.91 1333.83,1097.89 1378.13,1093.76 1422.44,1086.14 1458.45,1075.98 1466.74,1073.56 \n", " 1511.04,1060.11 1546.74,1046.59 1555.34,1042.93 1599.64,1018.08 1601.12,1017.2 1643.94,988.786 1645.27,987.803 1682.73,958.41 1688.24,952.703 1708.62,929.018 \n", " 1728.9,899.625 1732.54,894.126 1747.86,870.233 1759.34,840.841 1765.56,811.448 1771.63,782.056 1771.63,752.663 1765.56,723.271 1759.34,693.878 1747.86,664.486 \n", " 1732.54,640.593 1728.9,635.093 1708.62,605.701 1688.24,582.016 1682.73,576.308 1645.27,546.916 1643.94,545.932 1601.12,517.523 1599.64,516.643 1555.34,491.789 \n", " 1546.74,488.131 1511.04,474.608 1466.74,461.156 1458.45,458.739 1422.44,448.578 1378.13,440.958 1333.83,436.83 1289.53,432.808 1245.23,432.808 1200.93,436.83 \n", " 1156.63,440.958 1112.33,448.578 1076.32,458.739 1068.03,461.156 1023.73,474.608 988.029,488.131 979.426,491.789 935.125,516.643 933.642,517.523 890.824,545.932 \n", " 889.496,546.916 852.037,576.308 846.523,582.016 826.141,605.701 805.865,635.093 802.222,640.593 786.907,664.486 775.422,693.878 769.2,723.271 763.139,752.663 \n", " 763.139,782.056 769.2,811.448 775.422,840.841 786.907,870.233 802.222,894.126 805.865,899.625 826.141,929.018 846.523,952.703 852.037,958.41 889.496,987.803 \n", " 890.824,988.786 933.642,1017.2 935.125,1018.08 979.426,1042.93 988.029,1046.59 1023.73,1060.11 1068.03,1073.56 1076.32,1075.98 1112.33,1086.14 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 669.319,1487.47 713.62,1487.47 757.921,1487.47 802.222,1487.47 846.523,1487.47 890.824,1487.47 935.125,1487.47 979.426,1487.47 \n", " 1023.73,1487.47 1068.03,1487.47 1112.33,1487.47 1156.63,1487.47 1200.93,1487.47 1245.23,1487.47 1289.53,1487.47 1333.83,1487.47 1378.13,1487.47 1422.44,1487.47 \n", " 1466.74,1487.47 1511.04,1487.47 1555.34,1487.47 1599.64,1487.47 1643.94,1487.47 1688.24,1487.47 1732.54,1487.47 1776.84,1487.47 1821.14,1487.47 1865.45,1487.47 \n", " 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 \n", " 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 \n", " 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1164.16 2352.76,1134.77 2352.76,1105.37 2352.76,1075.98 2352.76,1046.59 2352.76,1017.2 \n", " 2352.76,987.803 2352.76,958.41 2352.76,929.018 2352.76,899.625 2352.76,870.233 2352.76,840.841 2352.76,811.448 2352.76,782.056 2352.76,752.663 2352.76,723.271 \n", " 2352.76,693.878 2352.76,664.486 2352.76,635.093 2352.76,605.701 2352.76,576.308 2352.76,546.916 2352.76,517.523 2352.76,488.131 2352.76,458.739 2352.76,429.346 \n", " 2352.76,399.954 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 \n", " 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 \n", " 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 1909.75,47.2441 1865.45,47.2441 1821.14,47.2441 1776.84,47.2441 1732.54,47.2441 \n", " 1688.24,47.2441 1643.94,47.2441 1599.64,47.2441 1555.34,47.2441 1511.04,47.2441 1466.74,47.2441 1422.44,47.2441 1378.13,47.2441 1333.83,47.2441 1289.53,47.2441 \n", " 1245.23,47.2441 1200.93,47.2441 1156.63,47.2441 1112.33,47.2441 1068.03,47.2441 1023.73,47.2441 979.426,47.2441 935.125,47.2441 890.824,47.2441 846.523,47.2441 \n", " 802.222,47.2441 757.921,47.2441 713.62,47.2441 669.319,47.2441 625.018,47.2441 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 \n", " 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 \n", " 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 182.008,546.916 182.008,576.308 182.008,605.701 182.008,635.093 182.008,664.486 182.008,693.878 \n", " 182.008,723.271 182.008,752.663 182.008,782.056 182.008,811.448 182.008,840.841 182.008,870.233 182.008,899.625 182.008,929.018 182.008,958.41 182.008,987.803 \n", " 182.008,1017.2 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1245.23,1164.21 1289.53,1164.21 1290.19,1164.16 1333.83,1160.84 1378.13,1157.42 1422.44,1151.08 1466.74,1140.76 1491.6,1134.77 1511.04,1129.81 1555.34,1115.71 \n", " 1579.65,1105.37 1599.64,1096.38 1642.21,1075.98 1643.94,1075.12 1688.24,1050.33 1693.88,1046.59 1731.24,1017.2 1732.54,1016.05 1763.28,987.803 1776.84,974.54 \n", " 1792.42,958.41 1813.68,929.018 1821.14,916.119 1830.18,899.625 1845.74,870.233 1855.28,840.841 1860.44,811.448 1865.45,782.49 1865.52,782.056 1865.52,752.663 \n", " 1865.45,752.228 1860.44,723.271 1855.28,693.878 1845.74,664.486 1830.18,635.093 1821.14,618.6 1813.68,605.701 1792.42,576.308 1776.84,560.179 1763.28,546.916 \n", " 1732.54,518.668 1731.24,517.523 1693.88,488.131 1688.24,484.39 1643.94,459.603 1642.21,458.739 1599.64,438.343 1579.65,429.346 1555.34,419.012 1511.04,404.906 \n", " 1491.6,399.954 1466.74,393.96 1422.44,383.634 1378.13,377.303 1333.83,373.88 1290.19,370.561 1289.53,370.512 1245.23,370.512 1244.58,370.561 1200.93,373.88 \n", " 1156.63,377.303 1112.33,383.634 1068.03,393.96 1043.17,399.954 1023.73,404.906 979.426,419.012 955.115,429.346 935.125,438.343 892.549,458.739 890.824,459.603 \n", " 846.523,484.39 840.885,488.131 803.524,517.523 802.222,518.668 771.482,546.916 757.921,560.179 742.345,576.308 721.083,605.701 713.62,618.6 704.587,635.093 \n", " 689.023,664.486 679.481,693.878 674.322,723.271 669.319,752.228 669.244,752.663 669.244,782.056 669.319,782.49 674.322,811.448 679.481,840.841 689.023,870.233 \n", " 704.587,899.625 713.62,916.119 721.083,929.018 742.345,958.41 757.921,974.54 771.482,987.803 802.222,1016.05 803.524,1017.2 840.885,1046.59 846.523,1050.33 \n", " 890.824,1075.12 892.549,1075.98 935.125,1096.38 955.115,1105.37 979.426,1115.71 1023.73,1129.81 1043.17,1134.77 1068.03,1140.76 1112.33,1151.08 1156.63,1157.42 \n", " 1200.93,1160.84 1244.58,1164.16 1245.23,1164.21 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 669.319,1487.47 713.62,1487.47 757.921,1487.47 802.222,1487.47 846.523,1487.47 890.824,1487.47 935.125,1487.47 979.426,1487.47 \n", " 1023.73,1487.47 1068.03,1487.47 1112.33,1487.47 1156.63,1487.47 1200.93,1487.47 1245.23,1487.47 1289.53,1487.47 1333.83,1487.47 1378.13,1487.47 1422.44,1487.47 \n", " 1466.74,1487.47 1511.04,1487.47 1555.34,1487.47 1599.64,1487.47 1643.94,1487.47 1688.24,1487.47 1732.54,1487.47 1776.84,1487.47 1821.14,1487.47 1865.45,1487.47 \n", " 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 \n", " 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 \n", " 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1164.16 2352.76,1134.77 2352.76,1105.37 2352.76,1075.98 2352.76,1046.59 2352.76,1017.2 \n", " 2352.76,987.803 2352.76,958.41 2352.76,929.018 2352.76,899.625 2352.76,870.233 2352.76,840.841 2352.76,811.448 2352.76,782.056 2352.76,752.663 2352.76,723.271 \n", " 2352.76,693.878 2352.76,664.486 2352.76,635.093 2352.76,605.701 2352.76,576.308 2352.76,546.916 2352.76,517.523 2352.76,488.131 2352.76,458.739 2352.76,429.346 \n", " 2352.76,399.954 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 \n", " 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 \n", " 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 1909.75,47.2441 1865.45,47.2441 1821.14,47.2441 1776.84,47.2441 1732.54,47.2441 \n", " 1688.24,47.2441 1643.94,47.2441 1599.64,47.2441 1555.34,47.2441 1511.04,47.2441 1466.74,47.2441 1422.44,47.2441 1378.13,47.2441 1333.83,47.2441 1289.53,47.2441 \n", " 1245.23,47.2441 1200.93,47.2441 1156.63,47.2441 1112.33,47.2441 1068.03,47.2441 1023.73,47.2441 979.426,47.2441 935.125,47.2441 890.824,47.2441 846.523,47.2441 \n", " 802.222,47.2441 757.921,47.2441 713.62,47.2441 669.319,47.2441 625.018,47.2441 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 \n", " 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 \n", " 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 182.008,546.916 182.008,576.308 182.008,605.701 182.008,635.093 182.008,664.486 182.008,693.878 \n", " 182.008,723.271 182.008,752.663 182.008,782.056 182.008,811.448 182.008,840.841 182.008,870.233 182.008,899.625 182.008,929.018 182.008,958.41 182.008,987.803 \n", " 182.008,1017.2 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1200.93,1223.54 1245.23,1226.43 1289.53,1226.43 1333.83,1223.54 1342.99,1222.94 1378.13,1220.61 1422.44,1215.15 1466.74,1206.22 1511.04,1196.91 1523.96,1193.55 \n", " 1555.34,1185.14 1599.64,1169.2 1613.11,1164.16 1643.94,1152.25 1683.82,1134.77 1688.24,1132.61 1732.54,1106.51 1734.39,1105.37 1776.84,1077.21 1778.56,1075.98 \n", " 1817.9,1046.59 1821.14,1043.65 1847.5,1017.2 1865.45,996.742 1873.05,987.803 1897.08,958.41 1909.75,937.591 1914.81,929.018 1928.84,899.625 1942.3,870.233 \n", " 1950.54,840.841 1954.05,817.526 1954.95,811.448 1959.3,782.056 1959.3,752.663 1954.95,723.271 1954.05,717.193 1950.54,693.878 1942.3,664.486 1928.84,635.093 \n", " 1914.81,605.701 1909.75,597.128 1897.08,576.308 1873.05,546.916 1865.45,537.977 1847.5,517.523 1821.14,491.065 1817.9,488.131 1778.56,458.739 1776.84,457.514 \n", " 1734.39,429.346 1732.54,428.21 1688.24,402.104 1683.82,399.954 1643.94,382.466 1613.11,370.561 1599.64,365.517 1555.34,349.575 1523.96,341.169 1511.04,337.808 \n", " 1466.74,328.502 1422.44,319.569 1378.13,314.105 1342.99,311.776 1333.83,311.176 1289.53,308.29 1245.23,308.29 1200.93,311.176 1191.77,311.776 1156.63,314.105 \n", " 1112.33,319.569 1068.03,328.502 1023.73,337.808 1010.81,341.169 979.426,349.575 935.125,365.517 921.651,370.561 890.824,382.466 850.945,399.954 846.523,402.104 \n", " 802.222,428.21 800.376,429.346 757.921,457.514 756.208,458.739 716.861,488.131 713.62,491.065 687.261,517.523 669.319,537.977 661.717,546.916 637.688,576.308 \n", " 625.018,597.128 619.953,605.701 605.927,635.093 592.463,664.486 584.226,693.878 580.717,717.193 579.812,723.271 575.462,752.663 575.462,782.056 579.812,811.448 \n", " 580.717,817.526 584.226,840.841 592.463,870.233 605.927,899.625 619.953,929.018 625.018,937.591 637.688,958.41 661.717,987.803 669.319,996.742 687.261,1017.2 \n", " 713.62,1043.65 716.861,1046.59 756.208,1075.98 757.921,1077.21 800.376,1105.37 802.222,1106.51 846.523,1132.61 850.945,1134.77 890.824,1152.25 921.651,1164.16 \n", " 935.125,1169.2 979.426,1185.14 1010.81,1193.55 1023.73,1196.91 1068.03,1206.22 1112.33,1215.15 1156.63,1220.61 1191.77,1222.94 1200.93,1223.54 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 669.319,1487.47 713.62,1487.47 757.921,1487.47 802.222,1487.47 846.523,1487.47 890.824,1487.47 935.125,1487.47 979.426,1487.47 \n", " 1023.73,1487.47 1068.03,1487.47 1112.33,1487.47 1156.63,1487.47 1200.93,1487.47 1245.23,1487.47 1289.53,1487.47 1333.83,1487.47 1378.13,1487.47 1422.44,1487.47 \n", " 1466.74,1487.47 1511.04,1487.47 1555.34,1487.47 1599.64,1487.47 1643.94,1487.47 1688.24,1487.47 1732.54,1487.47 1776.84,1487.47 1821.14,1487.47 1865.45,1487.47 \n", " 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 \n", " 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 \n", " 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1164.16 2352.76,1134.77 2352.76,1105.37 2352.76,1075.98 2352.76,1046.59 2352.76,1017.2 \n", " 2352.76,987.803 2352.76,958.41 2352.76,929.018 2352.76,899.625 2352.76,870.233 2352.76,840.841 2352.76,811.448 2352.76,782.056 2352.76,752.663 2352.76,723.271 \n", " 2352.76,693.878 2352.76,664.486 2352.76,635.093 2352.76,605.701 2352.76,576.308 2352.76,546.916 2352.76,517.523 2352.76,488.131 2352.76,458.739 2352.76,429.346 \n", " 2352.76,399.954 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 \n", " 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 \n", " 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 1909.75,47.2441 1865.45,47.2441 1821.14,47.2441 1776.84,47.2441 1732.54,47.2441 \n", " 1688.24,47.2441 1643.94,47.2441 1599.64,47.2441 1555.34,47.2441 1511.04,47.2441 1466.74,47.2441 1422.44,47.2441 1378.13,47.2441 1333.83,47.2441 1289.53,47.2441 \n", " 1245.23,47.2441 1200.93,47.2441 1156.63,47.2441 1112.33,47.2441 1068.03,47.2441 1023.73,47.2441 979.426,47.2441 935.125,47.2441 890.824,47.2441 846.523,47.2441 \n", " 802.222,47.2441 757.921,47.2441 713.62,47.2441 669.319,47.2441 625.018,47.2441 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 \n", " 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 \n", " 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 182.008,546.916 182.008,576.308 182.008,605.701 182.008,635.093 182.008,664.486 182.008,693.878 \n", " 182.008,723.271 182.008,752.663 182.008,782.056 182.008,811.448 182.008,840.841 182.008,870.233 182.008,899.625 182.008,929.018 182.008,958.41 182.008,987.803 \n", " 182.008,1017.2 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1156.63,1283.16 1200.93,1285.57 1245.23,1288.32 1289.53,1288.32 1333.83,1285.57 1378.13,1283.16 1394.08,1281.73 1422.44,1278.64 1466.74,1270.82 1511.04,1262.77 \n", " 1555.34,1252.67 1556.45,1252.34 1599.64,1239.08 1643.94,1224.87 1649.31,1222.94 1688.24,1207.99 1718.66,1193.55 1732.54,1186.66 1775.85,1164.16 1776.84,1163.62 \n", " 1821.14,1137.24 1824.88,1134.77 1864.64,1105.37 1865.45,1104.71 1899.36,1075.98 1909.75,1066.77 1931.51,1046.59 1954.05,1020.76 1956.95,1017.2 1978.37,987.803 \n", " 1998.35,959.147 1998.85,958.41 2014.08,929.018 2026.22,899.625 2037.99,870.233 2042.65,851.422 2044.81,840.841 2048.44,811.448 2052.59,782.056 2052.59,752.663 \n", " 2048.44,723.271 2044.81,693.878 2042.65,683.297 2037.99,664.486 2026.22,635.093 2014.08,605.701 1998.85,576.308 1998.35,575.572 1978.37,546.916 1956.95,517.523 \n", " 1954.05,513.958 1931.51,488.131 1909.75,467.948 1899.36,458.739 1865.45,430.004 1864.64,429.346 1824.88,399.954 1821.14,397.475 1776.84,371.095 1775.85,370.561 \n", " 1732.54,348.06 1718.66,341.169 1688.24,326.731 1649.31,311.776 1643.94,309.851 1599.64,295.641 1556.45,282.384 1555.34,282.05 1511.04,271.946 1466.74,263.894 \n", " 1422.44,256.08 1394.08,252.991 1378.13,251.558 1333.83,249.151 1289.53,246.399 1245.23,246.399 1200.93,249.151 1156.63,251.558 1140.68,252.991 1112.33,256.08 \n", " 1068.03,263.894 1023.73,271.946 979.426,282.05 978.315,282.384 935.125,295.641 890.824,309.851 885.45,311.776 846.523,326.731 816.102,341.169 802.222,348.06 \n", " 758.913,370.561 757.921,371.095 713.62,397.475 709.884,399.954 670.124,429.346 669.319,430.004 635.404,458.739 625.018,467.948 603.257,488.131 580.717,513.958 \n", " 577.815,517.523 556.398,546.916 536.416,575.572 535.913,576.308 520.684,605.701 508.548,635.093 496.771,664.486 492.115,683.297 489.955,693.878 486.326,723.271 \n", " 482.179,752.663 482.179,782.056 486.326,811.448 489.955,840.841 492.115,851.422 496.771,870.233 508.548,899.625 520.684,929.018 535.913,958.41 536.416,959.147 \n", " 556.398,987.803 577.815,1017.2 580.717,1020.76 603.257,1046.59 625.018,1066.77 635.404,1075.98 669.319,1104.71 670.124,1105.37 709.884,1134.77 713.62,1137.24 \n", " 757.921,1163.62 758.913,1164.16 802.222,1186.66 816.102,1193.55 846.523,1207.99 885.45,1222.94 890.824,1224.87 935.125,1239.08 978.315,1252.34 979.426,1252.67 \n", " 1023.73,1262.77 1068.03,1270.82 1112.33,1278.64 1140.68,1281.73 1156.63,1283.16 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 669.319,1487.47 713.62,1487.47 757.921,1487.47 802.222,1487.47 846.523,1487.47 890.824,1487.47 935.125,1487.47 979.426,1487.47 \n", " 1023.73,1487.47 1068.03,1487.47 1112.33,1487.47 1156.63,1487.47 1200.93,1487.47 1245.23,1487.47 1289.53,1487.47 1333.83,1487.47 1378.13,1487.47 1422.44,1487.47 \n", " 1466.74,1487.47 1511.04,1487.47 1555.34,1487.47 1599.64,1487.47 1643.94,1487.47 1688.24,1487.47 1732.54,1487.47 1776.84,1487.47 1821.14,1487.47 1865.45,1487.47 \n", " 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 \n", " 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 \n", " 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1164.16 2352.76,1134.77 2352.76,1105.37 2352.76,1075.98 2352.76,1046.59 2352.76,1017.2 \n", " 2352.76,987.803 2352.76,958.41 2352.76,929.018 2352.76,899.625 2352.76,870.233 2352.76,840.841 2352.76,811.448 2352.76,782.056 2352.76,752.663 2352.76,723.271 \n", " 2352.76,693.878 2352.76,664.486 2352.76,635.093 2352.76,605.701 2352.76,576.308 2352.76,546.916 2352.76,517.523 2352.76,488.131 2352.76,458.739 2352.76,429.346 \n", " 2352.76,399.954 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 \n", " 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 \n", " 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 1909.75,47.2441 1865.45,47.2441 1821.14,47.2441 1776.84,47.2441 1732.54,47.2441 \n", " 1688.24,47.2441 1643.94,47.2441 1599.64,47.2441 1555.34,47.2441 1511.04,47.2441 1466.74,47.2441 1422.44,47.2441 1378.13,47.2441 1333.83,47.2441 1289.53,47.2441 \n", " 1245.23,47.2441 1200.93,47.2441 1156.63,47.2441 1112.33,47.2441 1068.03,47.2441 1023.73,47.2441 979.426,47.2441 935.125,47.2441 890.824,47.2441 846.523,47.2441 \n", " 802.222,47.2441 757.921,47.2441 713.62,47.2441 669.319,47.2441 625.018,47.2441 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 \n", " 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 \n", " 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 182.008,546.916 182.008,576.308 182.008,605.701 182.008,635.093 182.008,664.486 182.008,693.878 \n", " 182.008,723.271 182.008,752.663 182.008,782.056 182.008,811.448 182.008,840.841 182.008,870.233 182.008,899.625 182.008,929.018 182.008,958.41 182.008,987.803 \n", " 182.008,1017.2 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1200.93,1345.04 1245.23,1349.59 1289.53,1349.59 1333.83,1345.04 1377.44,1340.51 1378.13,1340.44 1422.44,1335.78 1466.74,1331.05 1511.04,1326.27 1555.34,1318.22 \n", " 1578.5,1311.12 1599.64,1304.91 1643.94,1292.64 1682.76,1281.73 1688.24,1279.89 1732.54,1261.72 1754.52,1252.34 1776.84,1242.55 1812.15,1222.94 1821.14,1217.6 \n", " 1859.68,1193.55 1865.45,1189.84 1904.16,1164.16 1909.75,1160.33 1946,1134.77 1954.05,1128.8 1983.59,1105.37 1998.35,1090.56 2012.49,1075.98 2039.88,1046.59 \n", " 2042.65,1042.95 2059.1,1017.2 2077.59,987.803 2086.95,973.776 2097.65,958.41 2109.78,929.018 2116.99,899.625 2124.11,870.233 2131.14,840.841 2131.25,840.382 \n", " 2138.08,811.448 2144.93,782.056 2144.93,752.663 2138.08,723.271 2131.25,694.337 2131.14,693.878 2124.11,664.486 2116.99,635.093 2109.78,605.701 2097.65,576.308 \n", " 2086.95,560.943 2077.59,546.916 2059.1,517.523 2042.65,491.766 2039.88,488.131 2012.49,458.739 1998.35,444.156 1983.59,429.346 1954.05,405.922 1946,399.954 \n", " 1909.75,374.387 1904.16,370.561 1865.45,344.878 1859.68,341.169 1821.14,317.118 1812.15,311.776 1776.84,292.174 1754.52,282.384 1732.54,273.002 1688.24,254.826 \n", " 1682.76,252.991 1643.94,242.079 1599.64,229.808 1578.5,223.599 1555.34,216.498 1511.04,208.453 1466.74,203.666 1422.44,198.942 1378.13,194.279 1377.44,194.206 \n", " 1333.83,189.676 1289.53,185.132 1245.23,185.132 1200.93,189.676 1157.32,194.206 1156.63,194.279 1112.33,198.942 1068.03,203.666 1023.73,208.453 979.426,216.498 \n", " 956.266,223.599 935.125,229.808 890.824,242.079 852.002,252.991 846.523,254.826 802.222,273.002 780.243,282.384 757.921,292.174 722.616,311.776 713.62,317.118 \n", " 675.085,341.169 669.319,344.878 630.608,370.561 625.018,374.387 588.768,399.954 580.717,405.922 551.172,429.346 536.416,444.156 522.275,458.739 494.881,488.131 \n", " 492.115,491.766 475.668,517.523 457.173,546.916 447.814,560.943 437.111,576.308 424.986,605.701 417.771,635.093 410.65,664.486 403.622,693.878 403.513,694.337 \n", " 396.684,723.271 389.836,752.663 389.836,782.056 396.684,811.448 403.513,840.382 403.622,840.841 410.65,870.233 417.771,899.625 424.986,929.018 437.111,958.41 \n", " 447.814,973.776 457.173,987.803 475.668,1017.2 492.115,1042.95 494.881,1046.59 522.275,1075.98 536.416,1090.56 551.172,1105.37 580.717,1128.8 588.768,1134.77 \n", " 625.018,1160.33 630.608,1164.16 669.319,1189.84 675.085,1193.55 713.62,1217.6 722.616,1222.94 757.921,1242.55 780.243,1252.34 802.222,1261.72 846.523,1279.89 \n", " 852.002,1281.73 890.824,1292.64 935.125,1304.91 956.266,1311.12 979.426,1318.22 1023.73,1326.27 1068.03,1331.05 1112.33,1335.78 1156.63,1340.44 1157.32,1340.51 \n", " 1200.93,1345.04 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 669.319,1487.47 713.62,1487.47 757.921,1487.47 802.222,1487.47 846.523,1487.47 890.824,1487.47 935.125,1487.47 979.426,1487.47 \n", " 1023.73,1487.47 1068.03,1487.47 1112.33,1487.47 1156.63,1487.47 1200.93,1487.47 1245.23,1487.47 1289.53,1487.47 1333.83,1487.47 1378.13,1487.47 1422.44,1487.47 \n", " 1466.74,1487.47 1511.04,1487.47 1555.34,1487.47 1599.64,1487.47 1643.94,1487.47 1688.24,1487.47 1732.54,1487.47 1776.84,1487.47 1821.14,1487.47 1865.45,1487.47 \n", " 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 \n", " 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 \n", " 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1164.16 2352.76,1134.77 2352.76,1105.37 2352.76,1075.98 2352.76,1046.59 2352.76,1017.2 \n", " 2352.76,987.803 2352.76,958.41 2352.76,929.018 2352.76,899.625 2352.76,870.233 2352.76,840.841 2352.76,811.448 2352.76,782.056 2352.76,752.663 2352.76,723.271 \n", " 2352.76,693.878 2352.76,664.486 2352.76,635.093 2352.76,605.701 2352.76,576.308 2352.76,546.916 2352.76,517.523 2352.76,488.131 2352.76,458.739 2352.76,429.346 \n", " 2352.76,399.954 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 \n", " 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 \n", " 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 1909.75,47.2441 1865.45,47.2441 1821.14,47.2441 1776.84,47.2441 1732.54,47.2441 \n", " 1688.24,47.2441 1643.94,47.2441 1599.64,47.2441 1555.34,47.2441 1511.04,47.2441 1466.74,47.2441 1422.44,47.2441 1378.13,47.2441 1333.83,47.2441 1289.53,47.2441 \n", " 1245.23,47.2441 1200.93,47.2441 1156.63,47.2441 1112.33,47.2441 1068.03,47.2441 1023.73,47.2441 979.426,47.2441 935.125,47.2441 890.824,47.2441 846.523,47.2441 \n", " 802.222,47.2441 757.921,47.2441 713.62,47.2441 669.319,47.2441 625.018,47.2441 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 \n", " 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 \n", " 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 182.008,546.916 182.008,576.308 182.008,605.701 182.008,635.093 182.008,664.486 182.008,693.878 \n", " 182.008,723.271 182.008,752.663 182.008,782.056 182.008,811.448 182.008,840.841 182.008,870.233 182.008,899.625 182.008,929.018 182.008,958.41 182.008,987.803 \n", " 182.008,1017.2 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1156.63,1403.44 1200.93,1407.63 1245.23,1411.77 1289.53,1411.77 1333.83,1407.63 1378.13,1403.44 1421.27,1399.3 1422.44,1399.18 1466.74,1394.88 1511.04,1390.51 \n", " 1555.34,1383.13 1599.64,1370.5 1601.69,1369.9 1643.94,1357.45 1688.24,1343.97 1699.35,1340.51 1732.54,1330.01 1776.84,1315.57 1788.87,1311.12 1821.14,1297.72 \n", " 1849.86,1281.73 1865.45,1272.65 1899.16,1252.34 1909.75,1245.75 1945.24,1222.94 1954.05,1217.1 1988.43,1193.55 1998.35,1186.53 2028.97,1164.16 2042.65,1153.82 \n", " 2066.76,1134.77 2086.95,1113.35 2093.66,1105.37 2115.43,1075.98 2131.25,1053.96 2136.46,1046.59 2156.79,1017.2 2175.55,989.165 2176.45,987.803 2195.48,958.41 \n", " 2206.61,929.018 2213.19,899.625 2219.68,870.233 2219.85,869.46 2226.09,840.841 2232.42,811.448 2238.66,782.056 2238.66,752.663 2232.42,723.271 2226.09,693.878 \n", " 2219.85,665.259 2219.68,664.486 2213.19,635.093 2206.61,605.701 2195.48,576.308 2176.45,546.916 2175.55,545.554 2156.79,517.523 2136.46,488.131 2131.25,480.764 \n", " 2115.43,458.739 2093.66,429.346 2086.95,421.366 2066.76,399.954 2042.65,380.899 2028.97,370.561 1998.35,348.194 1988.43,341.169 1954.05,317.617 1945.24,311.776 \n", " 1909.75,288.966 1899.16,282.384 1865.45,262.066 1849.86,252.991 1821.14,236.995 1788.87,223.599 1776.84,219.148 1732.54,204.706 1699.35,194.206 1688.24,190.754 \n", " 1643.94,177.265 1601.69,164.814 1599.64,164.219 1555.34,151.593 1511.04,144.205 1466.74,139.841 1422.44,135.534 1421.27,135.421 1378.13,131.283 1333.83,127.087 \n", " 1289.53,122.945 1245.23,122.945 1200.93,127.087 1156.63,131.283 1113.49,135.421 1112.33,135.534 1068.03,139.841 1023.73,144.205 979.426,151.593 935.125,164.219 \n", " 933.072,164.814 890.824,177.265 846.523,190.754 835.418,194.206 802.222,204.706 757.921,219.148 745.892,223.599 713.62,236.995 684.9,252.991 669.319,262.066 \n", " 635.606,282.384 625.018,288.966 589.52,311.776 580.717,317.617 546.337,341.169 536.416,348.194 505.792,370.561 492.115,380.899 468.005,399.954 447.814,421.366 \n", " 441.106,429.346 419.339,458.739 403.513,480.764 398.309,488.131 377.979,517.523 359.212,545.554 358.315,546.916 339.284,576.308 328.15,605.701 321.572,635.093 \n", " 315.081,664.486 314.911,665.259 308.673,693.878 302.349,723.271 296.106,752.663 296.106,782.056 302.349,811.448 308.673,840.841 314.911,869.46 315.081,870.233 \n", " 321.572,899.625 328.15,929.018 339.284,958.41 358.315,987.803 359.212,989.165 377.979,1017.2 398.309,1046.59 403.513,1053.96 419.339,1075.98 441.106,1105.37 \n", " 447.814,1113.35 468.005,1134.77 492.115,1153.82 505.792,1164.16 536.416,1186.53 546.337,1193.55 580.717,1217.1 589.52,1222.94 625.018,1245.75 635.606,1252.34 \n", " 669.319,1272.65 684.9,1281.73 713.62,1297.72 745.892,1311.12 757.921,1315.57 802.222,1330.01 835.418,1340.51 846.523,1343.97 890.824,1357.45 933.072,1369.9 \n", " 935.125,1370.5 979.426,1383.13 1023.73,1390.51 1068.03,1394.88 1112.33,1399.18 1113.49,1399.3 1156.63,1403.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 669.319,1487.47 713.62,1487.47 757.921,1487.47 802.222,1487.47 846.523,1487.47 890.824,1487.47 935.125,1487.47 979.426,1487.47 \n", " 1023.73,1487.47 1068.03,1487.47 1112.33,1487.47 1156.63,1487.47 1200.93,1487.47 1245.23,1487.47 1289.53,1487.47 1333.83,1487.47 1378.13,1487.47 1422.44,1487.47 \n", " 1466.74,1487.47 1511.04,1487.47 1555.34,1487.47 1599.64,1487.47 1643.94,1487.47 1688.24,1487.47 1732.54,1487.47 1776.84,1487.47 1821.14,1487.47 1865.45,1487.47 \n", " 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 \n", " 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 \n", " 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1164.16 2352.76,1134.77 2352.76,1105.37 2352.76,1075.98 2352.76,1046.59 2352.76,1017.2 \n", " 2352.76,987.803 2352.76,958.41 2352.76,929.018 2352.76,899.625 2352.76,870.233 2352.76,840.841 2352.76,811.448 2352.76,782.056 2352.76,752.663 2352.76,723.271 \n", " 2352.76,693.878 2352.76,664.486 2352.76,635.093 2352.76,605.701 2352.76,576.308 2352.76,546.916 2352.76,517.523 2352.76,488.131 2352.76,458.739 2352.76,429.346 \n", " 2352.76,399.954 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 \n", " 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 \n", " 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 1909.75,47.2441 1865.45,47.2441 1821.14,47.2441 1776.84,47.2441 1732.54,47.2441 \n", " 1688.24,47.2441 1643.94,47.2441 1599.64,47.2441 1555.34,47.2441 1511.04,47.2441 1466.74,47.2441 1422.44,47.2441 1378.13,47.2441 1333.83,47.2441 1289.53,47.2441 \n", " 1245.23,47.2441 1200.93,47.2441 1156.63,47.2441 1112.33,47.2441 1068.03,47.2441 1023.73,47.2441 979.426,47.2441 935.125,47.2441 890.824,47.2441 846.523,47.2441 \n", " 802.222,47.2441 757.921,47.2441 713.62,47.2441 669.319,47.2441 625.018,47.2441 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 \n", " 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 \n", " 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 182.008,546.916 182.008,576.308 182.008,605.701 182.008,635.093 182.008,664.486 182.008,693.878 \n", " 182.008,723.271 182.008,752.663 182.008,782.056 182.008,811.448 182.008,840.841 182.008,870.233 182.008,899.625 182.008,929.018 182.008,958.41 182.008,987.803 \n", " 182.008,1017.2 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1068.03,1458.7 1112.33,1462.59 1156.63,1466.43 1200.93,1470.22 1245.23,1473.96 1289.53,1473.96 1333.83,1470.22 1378.13,1466.43 1422.44,1462.59 1466.74,1458.7 \n", " 1473.76,1458.08 1511.04,1454.76 1555.34,1448.03 1599.64,1436.47 1628.65,1428.69 1643.94,1424.52 1688.24,1412.17 1732.54,1399.39 1732.85,1399.3 1776.84,1386.16 \n", " 1821.14,1370.86 1823.21,1369.9 1865.45,1350.02 1885.05,1340.51 1909.75,1328.28 1943.42,1311.12 1954.05,1304.87 1992.05,1281.73 1998.35,1277.69 2036.56,1252.34 \n", " 2042.65,1248.16 2077.52,1222.94 2086.95,1215.89 2112.81,1193.55 2131.25,1177.17 2145.58,1164.16 2175.55,1136.14 2176.99,1134.77 2200.06,1105.37 2219.85,1076.19 \n", " 2219.99,1075.98 2239.25,1046.59 2257.87,1017.2 2264.15,1007.05 2275.88,987.803 2293.31,958.41 2303.45,929.018 2308.45,904.282 2309.39,899.625 2315.25,870.233 \n", " 2321.04,840.841 2326.75,811.448 2332.39,782.056 2332.39,752.663 2326.75,723.271 2321.04,693.878 2315.25,664.486 2309.39,635.093 2308.45,630.436 2303.45,605.701 \n", " 2293.31,576.308 2275.88,546.916 2264.15,527.671 2257.87,517.523 2239.25,488.131 2219.99,458.739 2219.85,458.532 2200.06,429.346 2176.99,399.954 2175.55,398.581 \n", " 2145.58,370.561 2131.25,357.553 2112.81,341.169 2086.95,318.83 2077.52,311.776 2042.65,286.561 2036.56,282.384 1998.35,257.029 1992.05,252.991 1954.05,229.852 \n", " 1943.42,223.599 1909.75,206.439 1885.05,194.206 1865.45,184.7 1823.21,164.814 1821.14,163.86 1776.84,148.556 1732.85,135.421 1732.54,135.33 1688.24,122.552 \n", " 1643.94,110.199 1628.65,106.029 1599.64,98.2505 1555.34,86.6872 1511.04,79.9566 1473.76,76.6366 1466.74,76.0156 1422.44,72.1262 1378.13,68.2873 1333.83,64.498 \n", " 1289.53,60.7573 1245.23,60.7573 1200.93,64.498 1156.63,68.2873 1112.33,72.1262 1068.03,76.0156 1061.01,76.6366 1023.73,79.9566 979.426,86.6872 935.125,98.2505 \n", " 906.119,106.029 890.824,110.199 846.523,122.552 802.222,135.33 801.91,135.421 757.921,148.556 713.62,163.86 711.551,164.814 669.319,184.7 649.712,194.206 \n", " 625.018,206.439 591.348,223.599 580.717,229.852 542.713,252.991 536.416,257.029 498.2,282.384 492.115,286.561 457.24,311.776 447.814,318.83 421.95,341.169 \n", " 403.513,357.553 389.184,370.561 359.212,398.581 357.774,399.954 334.708,429.346 314.911,458.532 314.773,458.739 295.513,488.131 276.895,517.523 270.61,527.671 \n", " 258.886,546.916 241.458,576.308 231.313,605.701 226.309,630.436 225.373,635.093 219.511,664.486 213.725,693.878 208.013,723.271 202.375,752.663 202.375,782.056 \n", " 208.013,811.448 213.725,840.841 219.511,870.233 225.373,899.625 226.309,904.282 231.313,929.018 241.458,958.41 258.886,987.803 270.61,1007.05 276.895,1017.2 \n", " 295.513,1046.59 314.773,1075.98 314.911,1076.19 334.708,1105.37 357.774,1134.77 359.212,1136.14 389.184,1164.16 403.513,1177.17 421.95,1193.55 447.814,1215.89 \n", " 457.24,1222.94 492.115,1248.16 498.2,1252.34 536.416,1277.69 542.713,1281.73 580.717,1304.87 591.348,1311.12 625.018,1328.28 649.712,1340.51 669.319,1350.02 \n", " 711.551,1369.9 713.62,1370.86 757.921,1386.16 801.91,1399.3 802.222,1399.39 846.523,1412.17 890.824,1424.52 906.119,1428.69 935.125,1436.47 979.426,1448.03 \n", " 1023.73,1454.76 1061.01,1458.08 1068.03,1458.7 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 669.319,1487.47 713.62,1487.47 757.921,1487.47 802.222,1487.47 846.523,1487.47 874.413,1487.47 846.523,1480.37 \n", " 802.222,1468.76 762.743,1458.08 757.921,1456.75 713.62,1442.76 681.175,1428.69 669.319,1423.44 625.018,1403.28 616.474,1399.3 580.717,1382.24 555.625,1369.9 \n", " 536.416,1360.25 498.292,1340.51 492.115,1337.24 447.814,1312.56 445.643,1311.12 408.444,1281.73 403.513,1277.63 373.767,1252.34 359.212,1239.59 340.619,1222.94 \n", " 314.911,1199.22 308.901,1193.55 278.523,1164.16 270.61,1156.29 249.402,1134.77 228.31,1105.37 226.309,1102.17 210.208,1075.98 192.718,1046.59 182.008,1028.08 \n", " 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1688.24,1487.47 1732.54,1487.47 1776.84,1487.47 1821.14,1487.47 1865.45,1487.47 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 \n", " 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 2352.76,1487.47 2352.76,1458.08 \n", " 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1164.16 \n", " 2352.76,1134.77 2352.76,1105.37 2352.76,1075.98 2352.76,1046.59 2352.76,1028.08 2342.05,1046.59 2324.56,1075.98 2308.45,1102.17 2306.45,1105.37 \n", " 2285.36,1134.77 2264.15,1156.29 2256.24,1164.16 2225.86,1193.55 2219.85,1199.22 2194.15,1222.94 2175.55,1239.59 2161,1252.34 2131.25,1277.63 2126.32,1281.73 \n", " 2089.12,1311.12 2086.95,1312.56 2042.65,1337.24 2036.47,1340.51 1998.35,1360.25 1979.14,1369.9 1954.05,1382.24 1918.29,1399.3 1909.75,1403.28 1865.45,1423.44 \n", " 1853.59,1428.69 1821.14,1442.76 1776.84,1456.75 1772.02,1458.08 1732.54,1468.76 1688.24,1480.37 1660.35,1487.47 1643.94,1487.47 1688.24,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,517.523 182.008,506.635 192.718,488.131 210.208,458.739 226.309,432.546 228.31,429.346 249.402,399.954 270.61,378.427 278.523,370.561 308.901,341.169 \n", " 314.911,335.5 340.619,311.776 359.212,295.128 373.767,282.384 403.513,257.09 408.444,252.991 445.643,223.599 447.814,222.159 492.115,197.478 498.292,194.206 \n", " 536.416,174.471 555.625,164.814 580.717,152.478 616.474,135.421 625.018,131.434 669.319,111.279 681.175,106.029 713.62,91.9582 757.921,77.9644 762.743,76.6366 \n", " 802.222,65.9539 846.523,54.35 874.413,47.2441 846.523,47.2441 802.222,47.2441 757.921,47.2441 713.62,47.2441 669.319,47.2441 625.018,47.2441 \n", " 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 \n", " 182.008,76.6366 182.008,106.029 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 \n", " 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2352.76,506.635 2352.76,517.523 2352.76,488.131 2352.76,458.739 2352.76,429.346 2352.76,399.954 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 \n", " 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 \n", " 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 \n", " 1909.75,47.2441 1865.45,47.2441 1821.14,47.2441 1776.84,47.2441 1732.54,47.2441 1688.24,47.2441 1643.94,47.2441 1660.35,47.2441 1688.24,54.35 1732.54,65.9539 \n", " 1772.02,76.6366 1776.84,77.9644 1821.14,91.9582 1853.59,106.029 1865.45,111.279 1909.75,131.434 1918.29,135.421 1954.05,152.478 1979.14,164.814 1998.35,174.471 \n", " 2036.47,194.206 2042.65,197.478 2086.95,222.159 2089.12,223.599 2126.32,252.991 2131.25,257.09 2161,282.384 2175.55,295.128 2194.15,311.776 2219.85,335.5 \n", " 2225.86,341.169 2256.24,370.561 2264.15,378.427 2285.36,399.954 2306.45,429.346 2308.45,432.546 2324.56,458.739 2342.05,488.131 2352.76,506.635 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 646.693,1487.47 625.018,1478.29 580.717,1458.9 578.891,1458.08 536.416,1438.64 515.379,1428.69 492.115,1417.44 \n", " 456.714,1399.3 447.814,1394.63 408.854,1369.9 403.513,1366.44 364.435,1340.51 359.212,1336.97 321.945,1311.12 314.911,1305.22 287.571,1281.73 270.61,1266.29 \n", " 255.619,1252.34 226.309,1224.15 225.077,1222.94 195.852,1193.55 182.008,1179.17 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 \n", " 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 \n", " 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1179.17 2338.91,1193.55 2309.69,1222.94 2308.45,1224.15 2279.14,1252.34 \n", " 2264.15,1266.29 2247.19,1281.73 2219.85,1305.22 2212.82,1311.12 2175.55,1336.97 2170.33,1340.51 2131.25,1366.44 2125.91,1369.9 2086.95,1394.63 2078.05,1399.3 \n", " 2042.65,1417.44 2019.38,1428.69 1998.35,1438.64 1955.87,1458.08 1954.05,1458.9 1909.75,1478.29 1888.07,1487.47 1865.45,1487.47 1909.75,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,370.561 182.008,355.55 195.852,341.169 225.077,311.776 226.309,310.565 255.619,282.384 270.61,268.427 287.571,252.991 314.911,229.504 321.945,223.599 \n", " 359.212,197.75 364.435,194.206 403.513,168.279 408.854,164.814 447.814,140.088 456.714,135.421 492.115,117.282 515.379,106.029 536.416,96.0831 578.891,76.6366 \n", " 580.717,75.8189 625.018,56.4293 646.693,47.2441 625.018,47.2441 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 \n", " 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2352.76,355.55 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 \n", " 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 \n", " 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 1909.75,47.2441 1865.45,47.2441 1888.07,47.2441 1909.75,56.4293 1954.05,75.8189 \n", " 1955.87,76.6366 1998.35,96.0831 2019.38,106.029 2042.65,117.282 2078.05,135.421 2086.95,140.088 2125.91,164.814 2131.25,168.279 2170.33,194.206 2175.55,197.75 \n", " 2212.82,223.599 2219.85,229.504 2247.19,252.991 2264.15,268.427 2279.14,282.384 2308.45,310.565 2309.69,311.776 2338.91,341.169 2352.76,355.55 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 470.361,1487.47 \n", " 447.814,1476.7 416.332,1458.08 403.513,1450.33 368.564,1428.69 359.212,1422.77 323.016,1399.3 314.911,1393.92 279.537,1369.9 270.61,1363.7 237.989,1340.51 \n", " 226.309,1332.01 198.247,1311.12 182.008,1296.16 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 \n", " 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 2352.76,1487.47 \n", " 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 2352.76,1296.16 2336.52,1311.12 2308.45,1332.01 \n", " 2296.77,1340.51 2264.15,1363.7 2255.23,1369.9 2219.85,1393.92 2211.75,1399.3 2175.55,1422.77 2166.2,1428.69 2131.25,1450.33 2118.43,1458.08 2086.95,1476.7 \n", " 2064.4,1487.47 2042.65,1487.47 2086.95,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,252.991 182.008,238.558 198.247,223.599 226.309,202.711 237.989,194.206 270.61,171.019 279.537,164.814 314.911,140.799 323.016,135.421 359.212,111.952 \n", " 368.564,106.029 403.513,84.386 416.332,76.6366 447.814,58.0179 470.361,47.2441 447.814,47.2441 403.513,47.2441 359.212,47.2441 314.911,47.2441 \n", " 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 182.008,135.421 182.008,164.814 \n", " 182.008,194.206 182.008,223.599 182.008,252.991 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2352.76,238.558 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 \n", " 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 2064.4,47.2441 \n", " 2086.95,58.0179 2118.43,76.6366 2131.25,84.386 2166.2,106.029 2175.55,111.952 2211.75,135.421 2219.85,140.799 2255.23,164.814 2264.15,171.019 2296.77,194.206 \n", " 2308.45,202.711 2336.52,223.599 2352.76,238.558 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 324.247,1487.47 314.911,1481.71 277.559,1458.08 270.61,1453.58 \n", " 233.093,1428.69 226.309,1424.08 190.693,1399.3 182.008,1393.1 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 \n", " 2352.76,1393.1 2344.07,1399.3 2308.45,1424.08 2301.67,1428.69 2264.15,1453.58 2257.2,1458.08 2219.85,1481.71 2210.52,1487.47 2175.55,1487.47 \n", " 2219.85,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,164.814 182.008,141.616 190.693,135.421 226.309,110.64 233.093,106.029 270.61,81.1375 277.559,76.6366 314.911,53.0066 324.247,47.2441 314.911,47.2441 \n", " 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 182.008,135.421 \n", " 182.008,164.814 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2352.76,141.616 2352.76,164.814 2352.76,135.421 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 \n", " 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 2210.52,47.2441 2219.85,53.0066 2257.2,76.6366 2264.15,81.1375 2301.67,106.029 2308.45,110.64 2344.07,135.421 \n", " 2352.76,141.616 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,227.273 2352.76,227.273 2352.76,47.2441 2081.41,47.2441 2081.41,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,227.273 2081.41,227.273 2081.41,47.2441 1810.07,47.2441 1810.07,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,407.302 2352.76,407.302 2352.76,227.273 2081.41,227.273 2081.41,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,407.302 2081.41,407.302 2081.41,227.273 1810.07,227.273 1810.07,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,227.273 1810.07,227.273 1810.07,47.2441 1538.73,47.2441 1538.73,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,227.273 1538.73,227.273 1538.73,47.2441 1267.38,47.2441 1267.38,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,317.287 1810.07,317.287 1810.07,227.273 1674.4,227.273 1674.4,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,317.287 1674.4,317.287 1674.4,227.273 1538.73,227.273 1538.73,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,407.302 1810.07,407.302 1810.07,317.287 1674.4,317.287 1674.4,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,407.302 1674.4,407.302 1674.4,317.287 1538.73,317.287 1538.73,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,317.287 1538.73,317.287 1538.73,227.273 1403.05,227.273 1403.05,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,317.287 1403.05,317.287 1403.05,227.273 1267.38,227.273 1267.38,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,407.302 1538.73,407.302 1538.73,317.287 1403.05,317.287 1403.05,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,407.302 1403.05,407.302 1403.05,317.287 1267.38,317.287 1267.38,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,587.331 2352.76,587.331 2352.76,407.302 2081.41,407.302 2081.41,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,497.316 2081.41,497.316 2081.41,407.302 1945.74,407.302 1945.74,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,497.316 1945.74,497.316 1945.74,407.302 1810.07,407.302 1810.07,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,587.331 2081.41,587.331 2081.41,497.316 1945.74,497.316 1945.74,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,587.331 1945.74,587.331 1945.74,497.316 1810.07,497.316 1810.07,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,767.359 2352.76,767.359 2352.76,587.331 2081.41,587.331 2081.41,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,677.345 2081.41,677.345 2081.41,587.331 1945.74,587.331 1945.74,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,677.345 1945.74,677.345 1945.74,587.331 1810.07,587.331 1810.07,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,767.359 2081.41,767.359 2081.41,677.345 1945.74,677.345 1945.74,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,767.359 1945.74,767.359 1945.74,677.345 1810.07,677.345 1810.07,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,497.316 1810.07,497.316 1810.07,407.302 1674.4,407.302 1674.4,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,497.316 1674.4,497.316 1674.4,407.302 1538.73,407.302 1538.73,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,587.331 1810.07,587.331 1810.07,497.316 1674.4,497.316 1674.4,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,587.331 1674.4,587.331 1674.4,497.316 1538.73,497.316 1538.73,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,497.316 1538.73,497.316 1538.73,407.302 1403.05,407.302 1403.05,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,497.316 1403.05,497.316 1403.05,407.302 1267.38,407.302 1267.38,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,587.331 1538.73,587.331 1538.73,497.316 1403.05,497.316 1403.05,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,587.331 1403.05,587.331 1403.05,497.316 1267.38,497.316 1267.38,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,677.345 1810.07,677.345 1810.07,587.331 1674.4,587.331 1674.4,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,677.345 1674.4,677.345 1674.4,587.331 1538.73,587.331 1538.73,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,767.359 1810.07,767.359 1810.07,677.345 1674.4,677.345 1674.4,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,767.359 1674.4,767.359 1674.4,677.345 1538.73,677.345 1538.73,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,677.345 1538.73,677.345 1538.73,587.331 1403.05,587.331 1403.05,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,632.338 1403.05,632.338 1403.05,587.331 1335.22,587.331 1335.22,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,632.338 1335.22,632.338 1335.22,587.331 1267.38,587.331 1267.38,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,677.345 1403.05,677.345 1403.05,632.338 1335.22,632.338 1335.22,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,677.345 1335.22,677.345 1335.22,632.338 1267.38,632.338 1267.38,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,722.352 1538.73,722.352 1538.73,677.345 1470.89,677.345 1470.89,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,722.352 1470.89,722.352 1470.89,677.345 1403.05,677.345 1403.05,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,767.359 1538.73,767.359 1538.73,722.352 1470.89,722.352 1470.89,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,767.359 1470.89,767.359 1470.89,722.352 1403.05,722.352 1403.05,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,722.352 1403.05,722.352 1403.05,677.345 1335.22,677.345 1335.22,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,722.352 1335.22,722.352 1335.22,677.345 1267.38,677.345 1267.38,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,767.359 1403.05,767.359 1403.05,722.352 1335.22,722.352 1335.22,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,767.359 1335.22,767.359 1335.22,722.352 1267.38,722.352 1267.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,227.273 1267.38,227.273 1267.38,47.2441 996.039,47.2441 996.039,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,227.273 996.039,227.273 996.039,47.2441 724.695,47.2441 724.695,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,317.287 1267.38,317.287 1267.38,227.273 1131.71,227.273 1131.71,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,317.287 1131.71,317.287 1131.71,227.273 996.039,227.273 996.039,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,407.302 1267.38,407.302 1267.38,317.287 1131.71,317.287 1131.71,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,407.302 1131.71,407.302 1131.71,317.287 996.039,317.287 996.039,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,317.287 996.039,317.287 996.039,227.273 860.367,227.273 860.367,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,317.287 860.367,317.287 860.367,227.273 724.695,227.273 724.695,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,407.302 996.039,407.302 996.039,317.287 860.367,317.287 860.367,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,407.302 860.367,407.302 860.367,317.287 724.695,317.287 724.695,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,227.273 724.695,227.273 724.695,47.2441 453.352,47.2441 453.352,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,227.273 453.352,227.273 453.352,47.2441 182.008,47.2441 182.008,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,407.302 724.695,407.302 724.695,227.273 453.352,227.273 453.352,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,407.302 453.352,407.302 453.352,227.273 182.008,227.273 182.008,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,497.316 1267.38,497.316 1267.38,407.302 1131.71,407.302 1131.71,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,497.316 1131.71,497.316 1131.71,407.302 996.039,407.302 996.039,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,587.331 1267.38,587.331 1267.38,497.316 1131.71,497.316 1131.71,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,587.331 1131.71,587.331 1131.71,497.316 996.039,497.316 996.039,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,497.316 996.039,497.316 996.039,407.302 860.367,407.302 860.367,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,497.316 860.367,497.316 860.367,407.302 724.695,407.302 724.695,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,587.331 996.039,587.331 996.039,497.316 860.367,497.316 860.367,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,587.331 860.367,587.331 860.367,497.316 724.695,497.316 724.695,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,632.338 1267.38,632.338 1267.38,587.331 1199.55,587.331 1199.55,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,632.338 1199.55,632.338 1199.55,587.331 1131.71,587.331 1131.71,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,677.345 1267.38,677.345 1267.38,632.338 1199.55,632.338 1199.55,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,677.345 1199.55,677.345 1199.55,632.338 1131.71,632.338 1131.71,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,677.345 1131.71,677.345 1131.71,587.331 996.039,587.331 996.039,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,722.352 1267.38,722.352 1267.38,677.345 1199.55,677.345 1199.55,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,722.352 1199.55,722.352 1199.55,677.345 1131.71,677.345 1131.71,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,767.359 1267.38,767.359 1267.38,722.352 1199.55,722.352 1199.55,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,767.359 1199.55,767.359 1199.55,722.352 1131.71,722.352 1131.71,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,722.352 1131.71,722.352 1131.71,677.345 1063.87,677.345 1063.87,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,722.352 1063.87,722.352 1063.87,677.345 996.039,677.345 996.039,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,767.359 1131.71,767.359 1131.71,722.352 1063.87,722.352 1063.87,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,767.359 1063.87,767.359 1063.87,722.352 996.039,722.352 996.039,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,677.345 996.039,677.345 996.039,587.331 860.367,587.331 860.367,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,677.345 860.367,677.345 860.367,587.331 724.695,587.331 724.695,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,767.359 996.039,767.359 996.039,677.345 860.367,677.345 860.367,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,767.359 860.367,767.359 860.367,677.345 724.695,677.345 724.695,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,497.316 724.695,497.316 724.695,407.302 589.023,407.302 589.023,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,497.316 589.023,497.316 589.023,407.302 453.352,407.302 453.352,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,587.331 724.695,587.331 724.695,497.316 589.023,497.316 589.023,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,587.331 589.023,587.331 589.023,497.316 453.352,497.316 453.352,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,587.331 453.352,587.331 453.352,407.302 182.008,407.302 182.008,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,677.345 724.695,677.345 724.695,587.331 589.023,587.331 589.023,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,677.345 589.023,677.345 589.023,587.331 453.352,587.331 453.352,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,767.359 724.695,767.359 724.695,677.345 589.023,677.345 589.023,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,767.359 589.023,767.359 589.023,677.345 453.352,677.345 453.352,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,767.359 453.352,767.359 453.352,587.331 182.008,587.331 182.008,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,947.388 2352.76,947.388 2352.76,767.359 2081.41,767.359 2081.41,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,857.374 2081.41,857.374 2081.41,767.359 1945.74,767.359 1945.74,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,857.374 1945.74,857.374 1945.74,767.359 1810.07,767.359 1810.07,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,947.388 2081.41,947.388 2081.41,857.374 1945.74,857.374 1945.74,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,947.388 1945.74,947.388 1945.74,857.374 1810.07,857.374 1810.07,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,1127.42 2352.76,1127.42 2352.76,947.388 2081.41,947.388 2081.41,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,1037.4 2081.41,1037.4 2081.41,947.388 1945.74,947.388 1945.74,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,1037.4 1945.74,1037.4 1945.74,947.388 1810.07,947.388 1810.07,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,1127.42 2081.41,1127.42 2081.41,1037.4 1945.74,1037.4 1945.74,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,1127.42 1945.74,1127.42 1945.74,1037.4 1810.07,1037.4 1810.07,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,857.374 1810.07,857.374 1810.07,767.359 1674.4,767.359 1674.4,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,857.374 1674.4,857.374 1674.4,767.359 1538.73,767.359 1538.73,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,947.388 1810.07,947.388 1810.07,857.374 1674.4,857.374 1674.4,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,947.388 1674.4,947.388 1674.4,857.374 1538.73,857.374 1538.73,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,812.367 1538.73,812.367 1538.73,767.359 1470.89,767.359 1470.89,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,812.367 1470.89,812.367 1470.89,767.359 1403.05,767.359 1403.05,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,857.374 1538.73,857.374 1538.73,812.367 1470.89,812.367 1470.89,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,857.374 1470.89,857.374 1470.89,812.367 1403.05,812.367 1403.05,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,812.367 1403.05,812.367 1403.05,767.359 1335.22,767.359 1335.22,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,812.367 1335.22,812.367 1335.22,767.359 1267.38,767.359 1267.38,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,857.374 1403.05,857.374 1403.05,812.367 1335.22,812.367 1335.22,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,857.374 1335.22,857.374 1335.22,812.367 1267.38,812.367 1267.38,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,947.388 1538.73,947.388 1538.73,857.374 1403.05,857.374 1403.05,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,902.381 1403.05,902.381 1403.05,857.374 1335.22,857.374 1335.22,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,902.381 1335.22,902.381 1335.22,857.374 1267.38,857.374 1267.38,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,947.388 1403.05,947.388 1403.05,902.381 1335.22,902.381 1335.22,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,947.388 1335.22,947.388 1335.22,902.381 1267.38,902.381 1267.38,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,1037.4 1810.07,1037.4 1810.07,947.388 1674.4,947.388 1674.4,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,1037.4 1674.4,1037.4 1674.4,947.388 1538.73,947.388 1538.73,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,1127.42 1810.07,1127.42 1810.07,1037.4 1674.4,1037.4 1674.4,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,1127.42 1674.4,1127.42 1674.4,1037.4 1538.73,1037.4 1538.73,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,1037.4 1538.73,1037.4 1538.73,947.388 1403.05,947.388 1403.05,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,1037.4 1403.05,1037.4 1403.05,947.388 1267.38,947.388 1267.38,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,1127.42 1538.73,1127.42 1538.73,1037.4 1403.05,1037.4 1403.05,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,1127.42 1403.05,1127.42 1403.05,1037.4 1267.38,1037.4 1267.38,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,1307.45 2352.76,1307.45 2352.76,1127.42 2081.41,1127.42 2081.41,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,1307.45 2081.41,1307.45 2081.41,1127.42 1810.07,1127.42 1810.07,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,1487.47 2352.76,1487.47 2352.76,1307.45 2081.41,1307.45 2081.41,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,1487.47 2081.41,1487.47 2081.41,1307.45 1810.07,1307.45 1810.07,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,1217.43 1810.07,1217.43 1810.07,1127.42 1674.4,1127.42 1674.4,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,1217.43 1674.4,1217.43 1674.4,1127.42 1538.73,1127.42 1538.73,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,1307.45 1810.07,1307.45 1810.07,1217.43 1674.4,1217.43 1674.4,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,1307.45 1674.4,1307.45 1674.4,1217.43 1538.73,1217.43 1538.73,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,1217.43 1538.73,1217.43 1538.73,1127.42 1403.05,1127.42 1403.05,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,1217.43 1403.05,1217.43 1403.05,1127.42 1267.38,1127.42 1267.38,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,1307.45 1538.73,1307.45 1538.73,1217.43 1403.05,1217.43 1403.05,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,1307.45 1403.05,1307.45 1403.05,1217.43 1267.38,1217.43 1267.38,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,1487.47 1810.07,1487.47 1810.07,1307.45 1538.73,1307.45 1538.73,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,1487.47 1538.73,1487.47 1538.73,1307.45 1267.38,1307.45 1267.38,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,812.367 1267.38,812.367 1267.38,767.359 1199.55,767.359 1199.55,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,812.367 1199.55,812.367 1199.55,767.359 1131.71,767.359 1131.71,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,857.374 1267.38,857.374 1267.38,812.367 1199.55,812.367 1199.55,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,857.374 1199.55,857.374 1199.55,812.367 1131.71,812.367 1131.71,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,812.367 1131.71,812.367 1131.71,767.359 1063.87,767.359 1063.87,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,812.367 1063.87,812.367 1063.87,767.359 996.039,767.359 996.039,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,857.374 1131.71,857.374 1131.71,812.367 1063.87,812.367 1063.87,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,857.374 1063.87,857.374 1063.87,812.367 996.039,812.367 996.039,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,902.381 1267.38,902.381 1267.38,857.374 1199.55,857.374 1199.55,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,902.381 1199.55,902.381 1199.55,857.374 1131.71,857.374 1131.71,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,947.388 1267.38,947.388 1267.38,902.381 1199.55,902.381 1199.55,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,947.388 1199.55,947.388 1199.55,902.381 1131.71,902.381 1131.71,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,947.388 1131.71,947.388 1131.71,857.374 996.039,857.374 996.039,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,857.374 996.039,857.374 996.039,767.359 860.367,767.359 860.367,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,857.374 860.367,857.374 860.367,767.359 724.695,767.359 724.695,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,947.388 996.039,947.388 996.039,857.374 860.367,857.374 860.367,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,947.388 860.367,947.388 860.367,857.374 724.695,857.374 724.695,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,1037.4 1267.38,1037.4 1267.38,947.388 1131.71,947.388 1131.71,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,1037.4 1131.71,1037.4 1131.71,947.388 996.039,947.388 996.039,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,1127.42 1267.38,1127.42 1267.38,1037.4 1131.71,1037.4 1131.71,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,1127.42 1131.71,1127.42 1131.71,1037.4 996.039,1037.4 996.039,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,1037.4 996.039,1037.4 996.039,947.388 860.367,947.388 860.367,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,1037.4 860.367,1037.4 860.367,947.388 724.695,947.388 724.695,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,1127.42 996.039,1127.42 996.039,1037.4 860.367,1037.4 860.367,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,1127.42 860.367,1127.42 860.367,1037.4 724.695,1037.4 724.695,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,857.374 724.695,857.374 724.695,767.359 589.023,767.359 589.023,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,857.374 589.023,857.374 589.023,767.359 453.352,767.359 453.352,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,947.388 724.695,947.388 724.695,857.374 589.023,857.374 589.023,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,947.388 589.023,947.388 589.023,857.374 453.352,857.374 453.352,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,947.388 453.352,947.388 453.352,767.359 182.008,767.359 182.008,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,1037.4 724.695,1037.4 724.695,947.388 589.023,947.388 589.023,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,1037.4 589.023,1037.4 589.023,947.388 453.352,947.388 453.352,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,1127.42 724.695,1127.42 724.695,1037.4 589.023,1037.4 589.023,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,1127.42 589.023,1127.42 589.023,1037.4 453.352,1037.4 453.352,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1127.42 453.352,1127.42 453.352,947.388 182.008,947.388 182.008,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,1217.43 1267.38,1217.43 1267.38,1127.42 1131.71,1127.42 1131.71,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,1217.43 1131.71,1217.43 1131.71,1127.42 996.039,1127.42 996.039,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,1307.45 1267.38,1307.45 1267.38,1217.43 1131.71,1217.43 1131.71,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,1307.45 1131.71,1307.45 1131.71,1217.43 996.039,1217.43 996.039,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,1217.43 996.039,1217.43 996.039,1127.42 860.367,1127.42 860.367,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,1217.43 860.367,1217.43 860.367,1127.42 724.695,1127.42 724.695,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,1307.45 996.039,1307.45 996.039,1217.43 860.367,1217.43 860.367,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,1307.45 860.367,1307.45 860.367,1217.43 724.695,1217.43 724.695,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,1487.47 1267.38,1487.47 1267.38,1307.45 996.039,1307.45 996.039,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,1487.47 996.039,1487.47 996.039,1307.45 724.695,1307.45 724.695,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,1307.45 724.695,1307.45 724.695,1127.42 453.352,1127.42 453.352,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1307.45 453.352,1307.45 453.352,1127.42 182.008,1127.42 182.008,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,1487.47 724.695,1487.47 724.695,1307.45 453.352,1307.45 453.352,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip3902)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 453.352,1487.47 453.352,1307.45 182.008,1307.45 182.008,1487.47 \n", " \"/>\n", "</svg>\n" ] }, "execution_count": 33, "metadata": {}, "output_type": "execute_result" } ], "source": [ "\n", "plt = plot(xlim=(-1, 1), ylim=(-1, 1), legend=nothing)\n", "\n", "x = range(-1, stop=1, length=50)\n", "y = range(-1, stop=1, length=50)\n", "contour!(plt, x, y, (x, y) -> AdaptivelySampledDistanceFields.evaluate(adf, SVector(x, y)), fill=true)\n", "\n", "for leaf in allleaves(adf)\n", " v = hcat(collect(vertices(leaf.boundary))...)\n", " plot!(plt, v[1,[1,2,4,3,1]], v[2,[1,2,4,3,1]], color=:white)\n", "end\n", "\n", "\n", "plt" ] }, { "cell_type": "code", "execution_count": 20, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Cell: HyperRectangle{2,Float64}([-1.0, -1.0], [2.0, 2.0])" ] }, "execution_count": 20, "metadata": {}, "output_type": "execute_result" } ], "source": [ "s = x -> sqrt(sum((x - SVector(0, 0)).^2))\n", "adf = AdaptivelySampledDistanceFields.ASDF(s, SVector(-1., -1), SVector(2., 2),1e-3,1e-3)" ] }, { "cell_type": "code", "execution_count": 21, "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=\"clip0700\">\n", " <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip0700)\" 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=\"clip0701\">\n", " <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip0700)\" d=\"\n", "M182.008 1487.47 L2352.76 1487.47 L2352.76 47.2441 L182.008 47.2441 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip0702\">\n", " <rect x=\"182\" y=\"47\" width=\"2172\" height=\"1441\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 724.695,1487.47 724.695,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1267.38,1487.47 1267.38,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1810.07,1487.47 1810.07,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2352.76,1487.47 2352.76,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,1487.47 2352.76,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,1127.42 2352.76,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,767.359 2352.76,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,407.302 2352.76,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,47.2441 2352.76,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 2352.76,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,1487.47 724.695,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,1487.47 1267.38,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,1487.47 1810.07,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2352.76,1487.47 2352.76,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 208.057,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1127.42 208.057,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,767.359 208.057,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,407.302 208.057,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0700)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,47.2441 208.057,47.2441 \n", " \"/>\n", "<g clip-path=\"url(#clip0700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 182.008, 1541.47)\" x=\"182.008\" y=\"1541.47\">-1.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip0700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 724.695, 1541.47)\" x=\"724.695\" y=\"1541.47\">-0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip0700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1267.38, 1541.47)\" x=\"1267.38\" y=\"1541.47\">0.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip0700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1810.07, 1541.47)\" x=\"1810.07\" y=\"1541.47\">0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip0700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 2352.76, 1541.47)\" x=\"2352.76\" y=\"1541.47\">1.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip0700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 1504.97)\" x=\"158.008\" y=\"1504.97\">-1.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip0700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 1144.92)\" x=\"158.008\" y=\"1144.92\">-0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip0700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 784.859)\" x=\"158.008\" y=\"784.859\">0.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip0700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 424.802)\" x=\"158.008\" y=\"424.802\">0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip0700)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 64.7441)\" x=\"158.008\" y=\"64.7441\">1.0</text>\n", "</g>\n", "<path clip-path=\"url(#clip0702)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L669.319 1487.47 L713.62 1487.47 L757.921 1487.47 L802.222 1487.47 L846.523 1487.47 L890.824 1487.47 L935.125 1487.47 L979.426 1487.47 \n", " L1023.73 1487.47 L1068.03 1487.47 L1112.33 1487.47 L1156.63 1487.47 L1200.93 1487.47 L1245.23 1487.47 L1289.53 1487.47 L1333.83 1487.47 L1378.13 1487.47 L1422.44 1487.47 \n", " L1466.74 1487.47 L1511.04 1487.47 L1555.34 1487.47 L1599.64 1487.47 L1643.94 1487.47 L1688.24 1487.47 L1732.54 1487.47 L1776.84 1487.47 L1821.14 1487.47 L1865.45 1487.47 \n", " L1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1164.16 L2352.76 1134.77 L2352.76 1105.37 L2352.76 1075.98 L2352.76 1046.59 L2352.76 1017.2 \n", " L2352.76 987.803 L2352.76 958.41 L2352.76 929.018 L2352.76 899.625 L2352.76 870.233 L2352.76 840.841 L2352.76 811.448 L2352.76 782.056 L2352.76 752.663 L2352.76 723.271 \n", " L2352.76 693.878 L2352.76 664.486 L2352.76 635.093 L2352.76 605.701 L2352.76 576.308 L2352.76 546.916 L2352.76 517.523 L2352.76 488.131 L2352.76 458.739 L2352.76 429.346 \n", " L2352.76 399.954 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 \n", " L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 \n", " L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 L1909.75 47.2441 L1865.45 47.2441 L1821.14 47.2441 L1776.84 47.2441 L1732.54 47.2441 \n", " L1688.24 47.2441 L1643.94 47.2441 L1599.64 47.2441 L1555.34 47.2441 L1511.04 47.2441 L1466.74 47.2441 L1422.44 47.2441 L1378.13 47.2441 L1333.83 47.2441 L1289.53 47.2441 \n", " L1245.23 47.2441 L1200.93 47.2441 L1156.63 47.2441 L1112.33 47.2441 L1068.03 47.2441 L1023.73 47.2441 L979.426 47.2441 L935.125 47.2441 L890.824 47.2441 L846.523 47.2441 \n", " L802.222 47.2441 L757.921 47.2441 L713.62 47.2441 L669.319 47.2441 L625.018 47.2441 L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 \n", " L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 \n", " L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 L182.008 546.916 L182.008 576.308 L182.008 605.701 L182.008 635.093 L182.008 664.486 L182.008 693.878 \n", " L182.008 723.271 L182.008 752.663 L182.008 782.056 L182.008 811.448 L182.008 840.841 L182.008 870.233 L182.008 899.625 L182.008 929.018 L182.008 958.41 L182.008 987.803 \n", " L182.008 1017.2 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 Z\n", " \" fill=\"#000003\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip0702)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L669.319 1487.47 L713.62 1487.47 L757.921 1487.47 L802.222 1487.47 L846.523 1487.47 L890.824 1487.47 L935.125 1487.47 L979.426 1487.47 \n", " L1023.73 1487.47 L1068.03 1487.47 L1112.33 1487.47 L1156.63 1487.47 L1200.93 1487.47 L1245.23 1487.47 L1289.53 1487.47 L1333.83 1487.47 L1378.13 1487.47 L1422.44 1487.47 \n", " L1466.74 1487.47 L1511.04 1487.47 L1555.34 1487.47 L1599.64 1487.47 L1643.94 1487.47 L1688.24 1487.47 L1732.54 1487.47 L1776.84 1487.47 L1821.14 1487.47 L1865.45 1487.47 \n", " L1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1164.16 L2352.76 1134.77 L2352.76 1105.37 L2352.76 1075.98 L2352.76 1046.59 L2352.76 1017.2 \n", " L2352.76 987.803 L2352.76 958.41 L2352.76 929.018 L2352.76 899.625 L2352.76 870.233 L2352.76 840.841 L2352.76 811.448 L2352.76 782.056 L2352.76 752.663 L2352.76 723.271 \n", " L2352.76 693.878 L2352.76 664.486 L2352.76 635.093 L2352.76 605.701 L2352.76 576.308 L2352.76 546.916 L2352.76 517.523 L2352.76 488.131 L2352.76 458.739 L2352.76 429.346 \n", " L2352.76 399.954 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 \n", " L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 \n", " L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 L1909.75 47.2441 L1865.45 47.2441 L1821.14 47.2441 L1776.84 47.2441 L1732.54 47.2441 \n", " L1688.24 47.2441 L1643.94 47.2441 L1599.64 47.2441 L1555.34 47.2441 L1511.04 47.2441 L1466.74 47.2441 L1422.44 47.2441 L1378.13 47.2441 L1333.83 47.2441 L1289.53 47.2441 \n", " L1245.23 47.2441 L1200.93 47.2441 L1156.63 47.2441 L1112.33 47.2441 L1068.03 47.2441 L1023.73 47.2441 L979.426 47.2441 L935.125 47.2441 L890.824 47.2441 L846.523 47.2441 \n", " L802.222 47.2441 L757.921 47.2441 L713.62 47.2441 L669.319 47.2441 L625.018 47.2441 L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 \n", " L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 \n", " L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 L182.008 546.916 L182.008 576.308 L182.008 605.701 L182.008 635.093 L182.008 664.486 L182.008 693.878 \n", " L182.008 723.271 L182.008 752.663 L182.008 782.056 L182.008 811.448 L182.008 840.841 L182.008 870.233 L182.008 899.625 L182.008 929.018 L182.008 958.41 L182.008 987.803 \n", " L182.008 1017.2 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M1245.23 849.382 L1289.53 849.382 L1324.96 840.841 L1333.83 838.151 L1374.08 811.448 L1378.13 805.562 L1391.01 782.056 L1391.01 752.663 L1378.13 729.156 L1374.08 723.271 \n", " L1333.83 696.568 L1324.96 693.878 L1289.53 685.337 L1245.23 685.337 L1209.8 693.878 L1200.93 696.568 L1160.68 723.271 L1156.63 729.156 L1143.76 752.663 L1143.76 782.056 \n", " L1156.63 805.562 L1160.68 811.448 L1200.93 838.151 L1209.8 840.841 L1245.23 849.382 Z\n", " \" fill=\"#0c0727\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip0702)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L669.319 1487.47 L713.62 1487.47 L757.921 1487.47 L802.222 1487.47 L846.523 1487.47 L890.824 1487.47 L935.125 1487.47 L979.426 1487.47 \n", " L1023.73 1487.47 L1068.03 1487.47 L1112.33 1487.47 L1156.63 1487.47 L1200.93 1487.47 L1245.23 1487.47 L1289.53 1487.47 L1333.83 1487.47 L1378.13 1487.47 L1422.44 1487.47 \n", " L1466.74 1487.47 L1511.04 1487.47 L1555.34 1487.47 L1599.64 1487.47 L1643.94 1487.47 L1688.24 1487.47 L1732.54 1487.47 L1776.84 1487.47 L1821.14 1487.47 L1865.45 1487.47 \n", " L1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1164.16 L2352.76 1134.77 L2352.76 1105.37 L2352.76 1075.98 L2352.76 1046.59 L2352.76 1017.2 \n", " L2352.76 987.803 L2352.76 958.41 L2352.76 929.018 L2352.76 899.625 L2352.76 870.233 L2352.76 840.841 L2352.76 811.448 L2352.76 782.056 L2352.76 752.663 L2352.76 723.271 \n", " L2352.76 693.878 L2352.76 664.486 L2352.76 635.093 L2352.76 605.701 L2352.76 576.308 L2352.76 546.916 L2352.76 517.523 L2352.76 488.131 L2352.76 458.739 L2352.76 429.346 \n", " L2352.76 399.954 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 \n", " L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 \n", " L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 L1909.75 47.2441 L1865.45 47.2441 L1821.14 47.2441 L1776.84 47.2441 L1732.54 47.2441 \n", " L1688.24 47.2441 L1643.94 47.2441 L1599.64 47.2441 L1555.34 47.2441 L1511.04 47.2441 L1466.74 47.2441 L1422.44 47.2441 L1378.13 47.2441 L1333.83 47.2441 L1289.53 47.2441 \n", " L1245.23 47.2441 L1200.93 47.2441 L1156.63 47.2441 L1112.33 47.2441 L1068.03 47.2441 L1023.73 47.2441 L979.426 47.2441 L935.125 47.2441 L890.824 47.2441 L846.523 47.2441 \n", " L802.222 47.2441 L757.921 47.2441 L713.62 47.2441 L669.319 47.2441 L625.018 47.2441 L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 \n", " L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 \n", " L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 L182.008 546.916 L182.008 576.308 L182.008 605.701 L182.008 635.093 L182.008 664.486 L182.008 693.878 \n", " L182.008 723.271 L182.008 752.663 L182.008 782.056 L182.008 811.448 L182.008 840.841 L182.008 870.233 L182.008 899.625 L182.008 929.018 L182.008 958.41 L182.008 987.803 \n", " L182.008 1017.2 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M1200.93 906.372 L1245.23 912.175 L1289.53 912.175 L1333.83 906.372 L1357.5 899.625 L1378.13 892.942 L1422.44 870.298 L1422.53 870.233 L1456.66 840.841 L1466.74 827.149 \n", " L1476.9 811.448 L1485.65 782.056 L1485.65 752.663 L1476.9 723.271 L1466.74 707.57 L1456.66 693.878 L1422.53 664.486 L1422.44 664.421 L1378.13 641.776 L1357.5 635.093 \n", " L1333.83 628.347 L1289.53 622.544 L1245.23 622.544 L1200.93 628.347 L1177.27 635.093 L1156.63 641.776 L1112.33 664.421 L1112.23 664.486 L1078.1 693.878 L1068.03 707.57 \n", " L1057.86 723.271 L1049.11 752.663 L1049.11 782.056 L1057.86 811.448 L1068.03 827.149 L1078.1 840.841 L1112.23 870.233 L1112.33 870.298 L1156.63 892.942 L1177.27 899.625 \n", " L1200.93 906.372 Z\n", " \" fill=\"#240b4e\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip0702)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L669.319 1487.47 L713.62 1487.47 L757.921 1487.47 L802.222 1487.47 L846.523 1487.47 L890.824 1487.47 L935.125 1487.47 L979.426 1487.47 \n", " L1023.73 1487.47 L1068.03 1487.47 L1112.33 1487.47 L1156.63 1487.47 L1200.93 1487.47 L1245.23 1487.47 L1289.53 1487.47 L1333.83 1487.47 L1378.13 1487.47 L1422.44 1487.47 \n", " L1466.74 1487.47 L1511.04 1487.47 L1555.34 1487.47 L1599.64 1487.47 L1643.94 1487.47 L1688.24 1487.47 L1732.54 1487.47 L1776.84 1487.47 L1821.14 1487.47 L1865.45 1487.47 \n", " L1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1164.16 L2352.76 1134.77 L2352.76 1105.37 L2352.76 1075.98 L2352.76 1046.59 L2352.76 1017.2 \n", " L2352.76 987.803 L2352.76 958.41 L2352.76 929.018 L2352.76 899.625 L2352.76 870.233 L2352.76 840.841 L2352.76 811.448 L2352.76 782.056 L2352.76 752.663 L2352.76 723.271 \n", " L2352.76 693.878 L2352.76 664.486 L2352.76 635.093 L2352.76 605.701 L2352.76 576.308 L2352.76 546.916 L2352.76 517.523 L2352.76 488.131 L2352.76 458.739 L2352.76 429.346 \n", " L2352.76 399.954 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 \n", " L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 \n", " L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 L1909.75 47.2441 L1865.45 47.2441 L1821.14 47.2441 L1776.84 47.2441 L1732.54 47.2441 \n", " L1688.24 47.2441 L1643.94 47.2441 L1599.64 47.2441 L1555.34 47.2441 L1511.04 47.2441 L1466.74 47.2441 L1422.44 47.2441 L1378.13 47.2441 L1333.83 47.2441 L1289.53 47.2441 \n", " L1245.23 47.2441 L1200.93 47.2441 L1156.63 47.2441 L1112.33 47.2441 L1068.03 47.2441 L1023.73 47.2441 L979.426 47.2441 L935.125 47.2441 L890.824 47.2441 L846.523 47.2441 \n", " L802.222 47.2441 L757.921 47.2441 L713.62 47.2441 L669.319 47.2441 L625.018 47.2441 L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 \n", " L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 \n", " L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 L182.008 546.916 L182.008 576.308 L182.008 605.701 L182.008 635.093 L182.008 664.486 L182.008 693.878 \n", " L182.008 723.271 L182.008 752.663 L182.008 782.056 L182.008 811.448 L182.008 840.841 L182.008 870.233 L182.008 899.625 L182.008 929.018 L182.008 958.41 L182.008 987.803 \n", " L182.008 1017.2 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M1156.63 961.964 L1200.93 970.838 L1245.23 974.841 L1289.53 974.841 L1333.83 970.838 L1378.13 961.964 L1390.13 958.41 L1422.44 947.992 L1464.82 929.018 L1466.74 928.018 \n", " L1509.53 899.625 L1511.04 898.351 L1539.64 870.233 L1555.34 848.802 L1560.69 840.841 L1574.07 811.448 L1580.1 782.056 L1580.1 752.663 L1574.07 723.271 L1560.69 693.878 \n", " L1555.34 685.917 L1539.64 664.486 L1511.04 636.367 L1509.53 635.093 L1466.74 606.701 L1464.82 605.701 L1422.44 586.727 L1390.13 576.308 L1378.13 572.755 L1333.83 563.881 \n", " L1289.53 559.878 L1245.23 559.878 L1200.93 563.881 L1156.63 572.755 L1144.63 576.308 L1112.33 586.727 L1069.95 605.701 L1068.03 606.701 L1025.23 635.093 L1023.73 636.367 \n", " L995.128 664.486 L979.426 685.917 L974.07 693.878 L960.695 723.271 L954.662 752.663 L954.662 782.056 L960.695 811.448 L974.07 840.841 L979.426 848.802 L995.128 870.233 \n", " L1023.73 898.351 L1025.23 899.625 L1068.03 928.018 L1069.95 929.018 L1112.33 947.992 L1144.63 958.41 L1156.63 961.964 Z\n", " \" fill=\"#420a67\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip0702)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L669.319 1487.47 L713.62 1487.47 L757.921 1487.47 L802.222 1487.47 L846.523 1487.47 L890.824 1487.47 L935.125 1487.47 L979.426 1487.47 \n", " L1023.73 1487.47 L1068.03 1487.47 L1112.33 1487.47 L1156.63 1487.47 L1200.93 1487.47 L1245.23 1487.47 L1289.53 1487.47 L1333.83 1487.47 L1378.13 1487.47 L1422.44 1487.47 \n", " L1466.74 1487.47 L1511.04 1487.47 L1555.34 1487.47 L1599.64 1487.47 L1643.94 1487.47 L1688.24 1487.47 L1732.54 1487.47 L1776.84 1487.47 L1821.14 1487.47 L1865.45 1487.47 \n", " L1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1164.16 L2352.76 1134.77 L2352.76 1105.37 L2352.76 1075.98 L2352.76 1046.59 L2352.76 1017.2 \n", " L2352.76 987.803 L2352.76 958.41 L2352.76 929.018 L2352.76 899.625 L2352.76 870.233 L2352.76 840.841 L2352.76 811.448 L2352.76 782.056 L2352.76 752.663 L2352.76 723.271 \n", " L2352.76 693.878 L2352.76 664.486 L2352.76 635.093 L2352.76 605.701 L2352.76 576.308 L2352.76 546.916 L2352.76 517.523 L2352.76 488.131 L2352.76 458.739 L2352.76 429.346 \n", " L2352.76 399.954 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 \n", " L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 \n", " L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 L1909.75 47.2441 L1865.45 47.2441 L1821.14 47.2441 L1776.84 47.2441 L1732.54 47.2441 \n", " L1688.24 47.2441 L1643.94 47.2441 L1599.64 47.2441 L1555.34 47.2441 L1511.04 47.2441 L1466.74 47.2441 L1422.44 47.2441 L1378.13 47.2441 L1333.83 47.2441 L1289.53 47.2441 \n", " L1245.23 47.2441 L1200.93 47.2441 L1156.63 47.2441 L1112.33 47.2441 L1068.03 47.2441 L1023.73 47.2441 L979.426 47.2441 L935.125 47.2441 L890.824 47.2441 L846.523 47.2441 \n", " L802.222 47.2441 L757.921 47.2441 L713.62 47.2441 L669.319 47.2441 L625.018 47.2441 L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 \n", " L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 \n", " L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 L182.008 546.916 L182.008 576.308 L182.008 605.701 L182.008 635.093 L182.008 664.486 L182.008 693.878 \n", " L182.008 723.271 L182.008 752.663 L182.008 782.056 L182.008 811.448 L182.008 840.841 L182.008 870.233 L182.008 899.625 L182.008 929.018 L182.008 958.41 L182.008 987.803 \n", " L182.008 1017.2 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M1112.33 1017.41 L1156.63 1027.58 L1200.93 1034.29 L1245.23 1037.34 L1289.53 1037.34 L1333.83 1034.29 L1378.13 1027.58 L1422.44 1017.41 L1423.16 1017.2 L1466.74 1003.19 \n", " L1503.13 987.803 L1511.04 984.093 L1555.34 958.654 L1555.7 958.41 L1594.05 929.018 L1599.64 923.773 L1622.84 899.625 L1643.94 870.714 L1644.27 870.233 L1659.59 840.841 \n", " L1669.71 811.448 L1674.31 782.056 L1674.31 752.663 L1669.71 723.271 L1659.59 693.878 L1644.27 664.486 L1643.94 664.005 L1622.84 635.093 L1599.64 610.946 L1594.05 605.701 \n", " L1555.7 576.308 L1555.34 576.065 L1511.04 550.626 L1503.13 546.916 L1466.74 531.524 L1423.16 517.523 L1422.44 517.306 L1378.13 507.14 L1333.83 500.428 L1289.53 497.375 \n", " L1245.23 497.375 L1200.93 500.428 L1156.63 507.14 L1112.33 517.306 L1111.6 517.523 L1068.03 531.524 L1031.63 546.916 L1023.73 550.626 L979.426 576.065 L979.059 576.308 \n", " L940.717 605.701 L935.125 610.946 L911.926 635.093 L890.824 664.005 L890.496 664.486 L875.173 693.878 L865.058 723.271 L860.455 752.663 L860.455 782.056 L865.058 811.448 \n", " L875.173 840.841 L890.496 870.233 L890.824 870.714 L911.926 899.625 L935.125 923.773 L940.717 929.018 L979.059 958.41 L979.426 958.654 L1023.73 984.093 L1031.63 987.803 \n", " L1068.03 1003.19 L1111.6 1017.2 L1112.33 1017.41 Z\n", " \" fill=\"#5d126d\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip0702)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L669.319 1487.47 L713.62 1487.47 L757.921 1487.47 L802.222 1487.47 L846.523 1487.47 L890.824 1487.47 L935.125 1487.47 L979.426 1487.47 \n", " L1023.73 1487.47 L1068.03 1487.47 L1112.33 1487.47 L1156.63 1487.47 L1200.93 1487.47 L1245.23 1487.47 L1289.53 1487.47 L1333.83 1487.47 L1378.13 1487.47 L1422.44 1487.47 \n", " L1466.74 1487.47 L1511.04 1487.47 L1555.34 1487.47 L1599.64 1487.47 L1643.94 1487.47 L1688.24 1487.47 L1732.54 1487.47 L1776.84 1487.47 L1821.14 1487.47 L1865.45 1487.47 \n", " L1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1164.16 L2352.76 1134.77 L2352.76 1105.37 L2352.76 1075.98 L2352.76 1046.59 L2352.76 1017.2 \n", " L2352.76 987.803 L2352.76 958.41 L2352.76 929.018 L2352.76 899.625 L2352.76 870.233 L2352.76 840.841 L2352.76 811.448 L2352.76 782.056 L2352.76 752.663 L2352.76 723.271 \n", " L2352.76 693.878 L2352.76 664.486 L2352.76 635.093 L2352.76 605.701 L2352.76 576.308 L2352.76 546.916 L2352.76 517.523 L2352.76 488.131 L2352.76 458.739 L2352.76 429.346 \n", " L2352.76 399.954 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 \n", " L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 \n", " L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 L1909.75 47.2441 L1865.45 47.2441 L1821.14 47.2441 L1776.84 47.2441 L1732.54 47.2441 \n", " L1688.24 47.2441 L1643.94 47.2441 L1599.64 47.2441 L1555.34 47.2441 L1511.04 47.2441 L1466.74 47.2441 L1422.44 47.2441 L1378.13 47.2441 L1333.83 47.2441 L1289.53 47.2441 \n", " L1245.23 47.2441 L1200.93 47.2441 L1156.63 47.2441 L1112.33 47.2441 L1068.03 47.2441 L1023.73 47.2441 L979.426 47.2441 L935.125 47.2441 L890.824 47.2441 L846.523 47.2441 \n", " L802.222 47.2441 L757.921 47.2441 L713.62 47.2441 L669.319 47.2441 L625.018 47.2441 L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 \n", " L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 \n", " L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 L182.008 546.916 L182.008 576.308 L182.008 605.701 L182.008 635.093 L182.008 664.486 L182.008 693.878 \n", " L182.008 723.271 L182.008 752.663 L182.008 782.056 L182.008 811.448 L182.008 840.841 L182.008 870.233 L182.008 899.625 L182.008 929.018 L182.008 958.41 L182.008 987.803 \n", " L182.008 1017.2 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M1112.33 1083.65 L1156.63 1091.9 L1200.93 1097.31 L1245.23 1099.78 L1289.53 1099.78 L1333.83 1097.31 L1378.13 1091.9 L1422.44 1083.65 L1454.13 1075.98 L1466.74 1072.74 \n", " L1511.04 1058.16 L1538.99 1046.59 L1555.34 1039.38 L1598.75 1017.2 L1599.64 1016.68 L1643.17 987.803 L1643.94 987.215 L1677.38 958.41 L1688.24 947.565 L1705.69 929.018 \n", " L1727.66 899.625 L1732.54 891.259 L1744.1 870.233 L1756.54 840.841 L1764.69 811.448 L1768.41 782.056 L1768.41 752.663 L1764.69 723.271 L1756.54 693.878 L1744.1 664.486 \n", " L1732.54 643.46 L1727.66 635.093 L1705.69 605.701 L1688.24 587.154 L1677.38 576.308 L1643.94 547.504 L1643.17 546.916 L1599.64 518.035 L1598.75 517.523 L1555.34 495.336 \n", " L1538.99 488.131 L1511.04 476.556 L1466.74 461.975 L1454.13 458.739 L1422.44 451.07 L1378.13 442.82 L1333.83 437.413 L1289.53 434.942 L1245.23 434.942 L1200.93 437.413 \n", " L1156.63 442.82 L1112.33 451.07 L1080.64 458.739 L1068.03 461.975 L1023.73 476.556 L995.773 488.131 L979.426 495.336 L936.01 517.523 L935.125 518.035 L891.595 546.916 \n", " L890.824 547.504 L857.382 576.308 L846.523 587.154 L829.077 605.701 L807.099 635.093 L802.222 643.46 L790.663 664.486 L778.229 693.878 L770.079 723.271 L766.355 752.663 \n", " L766.355 782.056 L770.079 811.448 L778.229 840.841 L790.663 870.233 L802.222 891.259 L807.099 899.625 L829.077 929.018 L846.523 947.565 L857.382 958.41 L890.824 987.215 \n", " L891.595 987.803 L935.125 1016.68 L936.01 1017.2 L979.426 1039.38 L995.773 1046.59 L1023.73 1058.16 L1068.03 1072.74 L1080.64 1075.98 L1112.33 1083.65 Z\n", " \" fill=\"#781c6d\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip0702)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L669.319 1487.47 L713.62 1487.47 L757.921 1487.47 L802.222 1487.47 L846.523 1487.47 L890.824 1487.47 L935.125 1487.47 L979.426 1487.47 \n", " L1023.73 1487.47 L1068.03 1487.47 L1112.33 1487.47 L1156.63 1487.47 L1200.93 1487.47 L1245.23 1487.47 L1289.53 1487.47 L1333.83 1487.47 L1378.13 1487.47 L1422.44 1487.47 \n", " L1466.74 1487.47 L1511.04 1487.47 L1555.34 1487.47 L1599.64 1487.47 L1643.94 1487.47 L1688.24 1487.47 L1732.54 1487.47 L1776.84 1487.47 L1821.14 1487.47 L1865.45 1487.47 \n", " L1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1164.16 L2352.76 1134.77 L2352.76 1105.37 L2352.76 1075.98 L2352.76 1046.59 L2352.76 1017.2 \n", " L2352.76 987.803 L2352.76 958.41 L2352.76 929.018 L2352.76 899.625 L2352.76 870.233 L2352.76 840.841 L2352.76 811.448 L2352.76 782.056 L2352.76 752.663 L2352.76 723.271 \n", " L2352.76 693.878 L2352.76 664.486 L2352.76 635.093 L2352.76 605.701 L2352.76 576.308 L2352.76 546.916 L2352.76 517.523 L2352.76 488.131 L2352.76 458.739 L2352.76 429.346 \n", " L2352.76 399.954 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 \n", " L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 \n", " L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 L1909.75 47.2441 L1865.45 47.2441 L1821.14 47.2441 L1776.84 47.2441 L1732.54 47.2441 \n", " L1688.24 47.2441 L1643.94 47.2441 L1599.64 47.2441 L1555.34 47.2441 L1511.04 47.2441 L1466.74 47.2441 L1422.44 47.2441 L1378.13 47.2441 L1333.83 47.2441 L1289.53 47.2441 \n", " L1245.23 47.2441 L1200.93 47.2441 L1156.63 47.2441 L1112.33 47.2441 L1068.03 47.2441 L1023.73 47.2441 L979.426 47.2441 L935.125 47.2441 L890.824 47.2441 L846.523 47.2441 \n", " L802.222 47.2441 L757.921 47.2441 L713.62 47.2441 L669.319 47.2441 L625.018 47.2441 L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 \n", " L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 \n", " L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 L182.008 546.916 L182.008 576.308 L182.008 605.701 L182.008 635.093 L182.008 664.486 L182.008 693.878 \n", " L182.008 723.271 L182.008 752.663 L182.008 782.056 L182.008 811.448 L182.008 840.841 L182.008 870.233 L182.008 899.625 L182.008 929.018 L182.008 958.41 L182.008 987.803 \n", " L182.008 1017.2 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M1068.03 1139.6 L1112.33 1148.42 L1156.63 1155.09 L1200.93 1160.07 L1245.23 1161.75 L1289.53 1161.75 L1333.83 1160.07 L1378.13 1155.09 L1422.44 1148.42 L1466.74 1139.6 \n", " L1484.64 1134.77 L1511.04 1127.33 L1555.34 1112.74 L1574.23 1105.37 L1599.64 1094.91 L1638.16 1075.98 L1643.94 1072.88 L1688.12 1046.59 L1688.24 1046.51 L1727.87 1017.2 \n", " L1732.54 1013.36 L1761.07 987.803 L1776.84 970.947 L1787.94 958.41 L1809.94 929.018 L1821.14 911.506 L1828.43 899.625 L1841.73 870.233 L1851.77 840.841 L1859.28 811.448 \n", " L1861.82 782.056 L1861.82 752.663 L1859.28 723.271 L1851.77 693.878 L1841.73 664.486 L1828.43 635.093 L1821.14 623.213 L1809.94 605.701 L1787.94 576.308 L1776.84 563.772 \n", " L1761.07 546.916 L1732.54 521.361 L1727.87 517.523 L1688.24 488.211 L1688.12 488.131 L1643.94 461.835 L1638.16 458.739 L1599.64 439.813 L1574.23 429.346 L1555.34 421.983 \n", " L1511.04 407.389 L1484.64 399.954 L1466.74 395.118 L1422.44 386.295 L1378.13 379.631 L1333.83 374.653 L1289.53 372.966 L1245.23 372.966 L1200.93 374.653 L1156.63 379.631 \n", " L1112.33 386.295 L1068.03 395.118 L1050.12 399.954 L1023.73 407.389 L979.426 421.983 L960.53 429.346 L935.125 439.813 L896.608 458.739 L890.824 461.835 L846.643 488.131 \n", " L846.523 488.211 L806.889 517.523 L802.222 521.361 L773.697 546.916 L757.921 563.772 L746.823 576.308 L724.826 605.701 L713.62 623.213 L706.331 635.093 L693.034 664.486 \n", " L682.989 693.878 L675.486 723.271 L672.943 752.663 L672.943 782.056 L675.486 811.448 L682.989 840.841 L693.034 870.233 L706.331 899.625 L713.62 911.506 L724.826 929.018 \n", " L746.823 958.41 L757.921 970.947 L773.697 987.803 L802.222 1013.36 L806.889 1017.2 L846.523 1046.51 L846.643 1046.59 L890.824 1072.88 L896.608 1075.98 L935.125 1094.91 \n", " L960.53 1105.37 L979.426 1112.74 L1023.73 1127.33 L1050.12 1134.77 L1068.03 1139.6 Z\n", " \" fill=\"#942666\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip0702)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L669.319 1487.47 L713.62 1487.47 L757.921 1487.47 L802.222 1487.47 L846.523 1487.47 L890.824 1487.47 L935.125 1487.47 L979.426 1487.47 \n", " L1023.73 1487.47 L1068.03 1487.47 L1112.33 1487.47 L1156.63 1487.47 L1200.93 1487.47 L1245.23 1487.47 L1289.53 1487.47 L1333.83 1487.47 L1378.13 1487.47 L1422.44 1487.47 \n", " L1466.74 1487.47 L1511.04 1487.47 L1555.34 1487.47 L1599.64 1487.47 L1643.94 1487.47 L1688.24 1487.47 L1732.54 1487.47 L1776.84 1487.47 L1821.14 1487.47 L1865.45 1487.47 \n", " L1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1164.16 L2352.76 1134.77 L2352.76 1105.37 L2352.76 1075.98 L2352.76 1046.59 L2352.76 1017.2 \n", " L2352.76 987.803 L2352.76 958.41 L2352.76 929.018 L2352.76 899.625 L2352.76 870.233 L2352.76 840.841 L2352.76 811.448 L2352.76 782.056 L2352.76 752.663 L2352.76 723.271 \n", " L2352.76 693.878 L2352.76 664.486 L2352.76 635.093 L2352.76 605.701 L2352.76 576.308 L2352.76 546.916 L2352.76 517.523 L2352.76 488.131 L2352.76 458.739 L2352.76 429.346 \n", " L2352.76 399.954 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 \n", " L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 \n", " L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 L1909.75 47.2441 L1865.45 47.2441 L1821.14 47.2441 L1776.84 47.2441 L1732.54 47.2441 \n", " L1688.24 47.2441 L1643.94 47.2441 L1599.64 47.2441 L1555.34 47.2441 L1511.04 47.2441 L1466.74 47.2441 L1422.44 47.2441 L1378.13 47.2441 L1333.83 47.2441 L1289.53 47.2441 \n", " L1245.23 47.2441 L1200.93 47.2441 L1156.63 47.2441 L1112.33 47.2441 L1068.03 47.2441 L1023.73 47.2441 L979.426 47.2441 L935.125 47.2441 L890.824 47.2441 L846.523 47.2441 \n", " L802.222 47.2441 L757.921 47.2441 L713.62 47.2441 L669.319 47.2441 L625.018 47.2441 L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 \n", " L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 \n", " L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 L182.008 546.916 L182.008 576.308 L182.008 605.701 L182.008 635.093 L182.008 664.486 L182.008 693.878 \n", " L182.008 723.271 L182.008 752.663 L182.008 782.056 L182.008 811.448 L182.008 840.841 L182.008 870.233 L182.008 899.625 L182.008 929.018 L182.008 958.41 L182.008 987.803 \n", " L182.008 1017.2 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M1245.23 1224.18 L1289.53 1224.18 L1327.42 1222.94 L1333.83 1222.73 L1378.13 1218.45 L1422.44 1212.73 L1466.74 1205.19 L1511.04 1194.82 L1515.77 1193.55 L1555.34 1182.61 \n", " L1599.64 1167.99 L1609.49 1164.16 L1643.94 1150.02 L1677.18 1134.77 L1688.24 1129.32 L1731.23 1105.37 L1732.54 1104.59 L1775.66 1075.98 L1776.84 1075.11 L1812.94 1046.59 \n", " L1821.14 1039.25 L1844.13 1017.2 L1865.45 994.335 L1871.22 987.803 L1893.26 958.41 L1909.75 932.156 L1911.65 929.018 L1927.29 899.625 L1938.65 870.233 L1947.27 840.841 \n", " L1953.73 811.448 L1954.05 807.194 L1955.92 782.056 L1955.92 752.663 L1954.05 727.524 L1953.73 723.271 L1947.27 693.878 L1938.65 664.486 L1927.29 635.093 L1911.65 605.701 \n", " L1909.75 602.563 L1893.26 576.308 L1871.22 546.916 L1865.45 540.384 L1844.13 517.523 L1821.14 495.467 L1812.94 488.131 L1776.84 459.61 L1775.66 458.739 L1732.54 430.13 \n", " L1731.23 429.346 L1688.24 405.399 L1677.18 399.954 L1643.94 384.701 L1609.49 370.561 L1599.64 366.728 L1555.34 352.105 L1515.77 341.169 L1511.04 339.902 L1466.74 329.529 \n", " L1422.44 321.993 L1378.13 316.272 L1333.83 311.987 L1327.42 311.776 L1289.53 310.535 L1245.23 310.535 L1207.34 311.776 L1200.93 311.987 L1156.63 316.272 L1112.33 321.993 \n", " L1068.03 329.529 L1023.73 339.902 L1019 341.169 L979.426 352.105 L935.125 366.728 L925.279 370.561 L890.824 384.701 L857.58 399.954 L846.523 405.399 L803.534 429.346 \n", " L802.222 430.13 L759.103 458.739 L757.921 459.61 L721.828 488.131 L713.62 495.467 L690.631 517.523 L669.319 540.384 L663.542 546.916 L641.502 576.308 L625.018 602.563 \n", " L623.109 605.701 L607.473 635.093 L596.116 664.486 L587.493 693.878 L581.035 723.271 L580.717 727.524 L578.845 752.663 L578.845 782.056 L580.717 807.194 L581.035 811.448 \n", " L587.493 840.841 L596.116 870.233 L607.473 899.625 L623.109 929.018 L625.018 932.156 L641.502 958.41 L663.542 987.803 L669.319 994.335 L690.631 1017.2 L713.62 1039.25 \n", " L721.828 1046.59 L757.921 1075.11 L759.103 1075.98 L802.222 1104.59 L803.534 1105.37 L846.523 1129.32 L857.58 1134.77 L890.824 1150.02 L925.279 1164.16 L935.125 1167.99 \n", " L979.426 1182.61 L1019 1193.55 L1023.73 1194.82 L1068.03 1205.19 L1112.33 1212.73 L1156.63 1218.45 L1200.93 1222.73 L1207.34 1222.94 L1245.23 1224.18 Z\n", " \" fill=\"#ad305b\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip0702)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L669.319 1487.47 L713.62 1487.47 L757.921 1487.47 L802.222 1487.47 L846.523 1487.47 L890.824 1487.47 L935.125 1487.47 L979.426 1487.47 \n", " L1023.73 1487.47 L1068.03 1487.47 L1112.33 1487.47 L1156.63 1487.47 L1200.93 1487.47 L1245.23 1487.47 L1289.53 1487.47 L1333.83 1487.47 L1378.13 1487.47 L1422.44 1487.47 \n", " L1466.74 1487.47 L1511.04 1487.47 L1555.34 1487.47 L1599.64 1487.47 L1643.94 1487.47 L1688.24 1487.47 L1732.54 1487.47 L1776.84 1487.47 L1821.14 1487.47 L1865.45 1487.47 \n", " L1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1164.16 L2352.76 1134.77 L2352.76 1105.37 L2352.76 1075.98 L2352.76 1046.59 L2352.76 1017.2 \n", " L2352.76 987.803 L2352.76 958.41 L2352.76 929.018 L2352.76 899.625 L2352.76 870.233 L2352.76 840.841 L2352.76 811.448 L2352.76 782.056 L2352.76 752.663 L2352.76 723.271 \n", " L2352.76 693.878 L2352.76 664.486 L2352.76 635.093 L2352.76 605.701 L2352.76 576.308 L2352.76 546.916 L2352.76 517.523 L2352.76 488.131 L2352.76 458.739 L2352.76 429.346 \n", " L2352.76 399.954 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 \n", " L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 \n", " L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 L1909.75 47.2441 L1865.45 47.2441 L1821.14 47.2441 L1776.84 47.2441 L1732.54 47.2441 \n", " L1688.24 47.2441 L1643.94 47.2441 L1599.64 47.2441 L1555.34 47.2441 L1511.04 47.2441 L1466.74 47.2441 L1422.44 47.2441 L1378.13 47.2441 L1333.83 47.2441 L1289.53 47.2441 \n", " L1245.23 47.2441 L1200.93 47.2441 L1156.63 47.2441 L1112.33 47.2441 L1068.03 47.2441 L1023.73 47.2441 L979.426 47.2441 L935.125 47.2441 L890.824 47.2441 L846.523 47.2441 \n", " L802.222 47.2441 L757.921 47.2441 L713.62 47.2441 L669.319 47.2441 L625.018 47.2441 L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 \n", " L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 \n", " L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 L182.008 546.916 L182.008 576.308 L182.008 605.701 L182.008 635.093 L182.008 664.486 L182.008 693.878 \n", " L182.008 723.271 L182.008 752.663 L182.008 782.056 L182.008 811.448 L182.008 840.841 L182.008 870.233 L182.008 899.625 L182.008 929.018 L182.008 958.41 L182.008 987.803 \n", " L182.008 1017.2 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M1200.93 1285.31 L1245.23 1286.59 L1289.53 1286.59 L1333.83 1285.31 L1375.99 1281.73 L1378.13 1281.54 L1422.44 1276.53 L1466.74 1269.96 L1511.04 1260.94 L1547.57 1252.34 \n", " L1555.34 1250.46 L1599.64 1237.91 L1643.48 1222.94 L1643.94 1222.78 L1688.24 1205.41 L1714.81 1193.55 L1732.54 1185.24 L1772.59 1164.16 L1776.84 1161.76 L1821.14 1134.79 \n", " L1821.18 1134.77 L1861.83 1105.37 L1865.45 1102.55 L1897.22 1075.98 L1909.75 1064.22 L1927.62 1046.59 L1953.8 1017.2 L1954.05 1016.89 L1976.61 987.803 L1995.52 958.41 \n", " L1998.35 953.26 L2011.32 929.018 L2024.92 899.625 L2034.82 870.233 L2042.37 840.841 L2042.65 839.421 L2048.05 811.448 L2049.97 782.056 L2049.97 752.663 L2048.05 723.271 \n", " L2042.65 695.298 L2042.37 693.878 L2034.82 664.486 L2024.92 635.093 L2011.32 605.701 L1998.35 581.459 L1995.52 576.308 L1976.61 546.916 L1954.05 517.832 L1953.8 517.523 \n", " L1927.62 488.131 L1909.75 470.501 L1897.22 458.739 L1865.45 432.169 L1861.83 429.346 L1821.18 399.954 L1821.14 399.928 L1776.84 372.957 L1772.59 370.561 L1732.54 349.477 \n", " L1714.81 341.169 L1688.24 329.307 L1643.94 311.942 L1643.48 311.776 L1599.64 296.81 L1555.34 284.261 L1547.57 282.384 L1511.04 273.776 L1466.74 264.755 L1422.44 258.186 \n", " L1378.13 253.175 L1375.99 252.991 L1333.83 249.411 L1289.53 248.132 L1245.23 248.132 L1200.93 249.411 L1158.77 252.991 L1156.63 253.175 L1112.33 258.186 L1068.03 264.755 \n", " L1023.73 273.776 L987.189 282.384 L979.426 284.261 L935.125 296.81 L891.289 311.776 L890.824 311.942 L846.523 329.307 L819.95 341.169 L802.222 349.477 L762.175 370.561 \n", " L757.921 372.957 L713.62 399.928 L713.581 399.954 L672.929 429.346 L669.319 432.169 L637.541 458.739 L625.018 470.501 L607.14 488.131 L580.967 517.523 L580.717 517.832 \n", " L558.159 546.916 L539.245 576.308 L536.416 581.459 L523.441 605.701 L509.845 635.093 L499.944 664.486 L492.391 693.878 L492.115 695.298 L486.718 723.271 L484.791 752.663 \n", " L484.791 782.056 L486.718 811.448 L492.115 839.421 L492.391 840.841 L499.944 870.233 L509.845 899.625 L523.441 929.018 L536.416 953.26 L539.245 958.41 L558.159 987.803 \n", " L580.717 1016.89 L580.967 1017.2 L607.14 1046.59 L625.018 1064.22 L637.541 1075.98 L669.319 1102.55 L672.929 1105.37 L713.581 1134.77 L713.62 1134.79 L757.921 1161.76 \n", " L762.175 1164.16 L802.222 1185.24 L819.95 1193.55 L846.523 1205.41 L890.824 1222.78 L891.289 1222.94 L935.125 1237.91 L979.426 1250.46 L987.189 1252.34 L1023.73 1260.94 \n", " L1068.03 1269.96 L1112.33 1276.53 L1156.63 1281.54 L1158.77 1281.73 L1200.93 1285.31 Z\n", " \" fill=\"#c73e4c\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip0702)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L669.319 1487.47 L713.62 1487.47 L757.921 1487.47 L802.222 1487.47 L846.523 1487.47 L890.824 1487.47 L935.125 1487.47 L979.426 1487.47 \n", " L1023.73 1487.47 L1068.03 1487.47 L1112.33 1487.47 L1156.63 1487.47 L1200.93 1487.47 L1245.23 1487.47 L1289.53 1487.47 L1333.83 1487.47 L1378.13 1487.47 L1422.44 1487.47 \n", " L1466.74 1487.47 L1511.04 1487.47 L1555.34 1487.47 L1599.64 1487.47 L1643.94 1487.47 L1688.24 1487.47 L1732.54 1487.47 L1776.84 1487.47 L1821.14 1487.47 L1865.45 1487.47 \n", " L1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1164.16 L2352.76 1134.77 L2352.76 1105.37 L2352.76 1075.98 L2352.76 1046.59 L2352.76 1017.2 \n", " L2352.76 987.803 L2352.76 958.41 L2352.76 929.018 L2352.76 899.625 L2352.76 870.233 L2352.76 840.841 L2352.76 811.448 L2352.76 782.056 L2352.76 752.663 L2352.76 723.271 \n", " L2352.76 693.878 L2352.76 664.486 L2352.76 635.093 L2352.76 605.701 L2352.76 576.308 L2352.76 546.916 L2352.76 517.523 L2352.76 488.131 L2352.76 458.739 L2352.76 429.346 \n", " L2352.76 399.954 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 \n", " L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 \n", " L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 L1909.75 47.2441 L1865.45 47.2441 L1821.14 47.2441 L1776.84 47.2441 L1732.54 47.2441 \n", " L1688.24 47.2441 L1643.94 47.2441 L1599.64 47.2441 L1555.34 47.2441 L1511.04 47.2441 L1466.74 47.2441 L1422.44 47.2441 L1378.13 47.2441 L1333.83 47.2441 L1289.53 47.2441 \n", " L1245.23 47.2441 L1200.93 47.2441 L1156.63 47.2441 L1112.33 47.2441 L1068.03 47.2441 L1023.73 47.2441 L979.426 47.2441 L935.125 47.2441 L890.824 47.2441 L846.523 47.2441 \n", " L802.222 47.2441 L757.921 47.2441 L713.62 47.2441 L669.319 47.2441 L625.018 47.2441 L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 \n", " L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 \n", " L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 L182.008 546.916 L182.008 576.308 L182.008 605.701 L182.008 635.093 L182.008 664.486 L182.008 693.878 \n", " L182.008 723.271 L182.008 752.663 L182.008 782.056 L182.008 811.448 L182.008 840.841 L182.008 870.233 L182.008 899.625 L182.008 929.018 L182.008 958.41 L182.008 987.803 \n", " L182.008 1017.2 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M1156.63 1344.47 L1200.93 1347.83 L1245.23 1348.97 L1289.53 1348.97 L1333.83 1347.83 L1378.13 1344.47 L1417.58 1340.51 L1422.44 1340.02 L1466.74 1334.2 L1511.04 1326.21 \n", " L1555.34 1316.97 L1579.25 1311.12 L1599.64 1305.99 L1643.94 1292.72 L1676.93 1281.73 L1688.24 1277.84 L1732.54 1260.66 L1751.63 1252.34 L1776.84 1240.83 L1812.95 1222.94 \n", " L1821.14 1218.62 L1864.37 1193.55 L1865.45 1192.89 L1908.75 1164.16 L1909.75 1163.45 L1947.54 1134.77 L1954.05 1129.33 L1981.01 1105.37 L1998.35 1088.65 L2010.89 1075.98 \n", " L2036.78 1046.59 L2042.65 1039.08 L2059.21 1017.2 L2079.23 987.803 L2086.95 974.273 L2095.76 958.41 L2109.69 929.018 L2121.73 899.625 L2130.51 870.233 L2131.25 867.009 \n", " L2137.22 840.841 L2142.28 811.448 L2144 782.056 L2144 752.663 L2142.28 723.271 L2137.22 693.878 L2131.25 667.71 L2130.51 664.486 L2121.73 635.093 L2109.69 605.701 \n", " L2095.76 576.308 L2086.95 560.446 L2079.23 546.916 L2059.21 517.523 L2042.65 495.637 L2036.78 488.131 L2010.89 458.739 L1998.35 446.072 L1981.01 429.346 L1954.05 405.388 \n", " L1947.54 399.954 L1909.75 371.273 L1908.75 370.561 L1865.45 341.828 L1864.37 341.169 L1821.14 316.094 L1812.95 311.776 L1776.84 293.888 L1751.63 282.384 L1732.54 274.061 \n", " L1688.24 256.883 L1676.93 252.991 L1643.94 242.002 L1599.64 228.724 L1579.25 223.599 L1555.34 217.751 L1511.04 208.512 L1466.74 200.524 L1422.44 194.699 L1417.58 194.206 \n", " L1378.13 190.244 L1333.83 186.888 L1289.53 185.747 L1245.23 185.747 L1200.93 186.888 L1156.63 190.244 L1117.19 194.206 L1112.33 194.699 L1068.03 200.524 L1023.73 208.512 \n", " L979.426 217.751 L955.518 223.599 L935.125 228.724 L890.824 242.002 L857.835 252.991 L846.523 256.883 L802.222 274.061 L783.13 282.384 L757.921 293.888 L721.811 311.776 \n", " L713.62 316.094 L670.392 341.169 L669.319 341.828 L626.011 370.561 L625.018 371.273 L587.225 399.954 L580.717 405.388 L553.755 429.346 L536.416 446.072 L523.871 458.739 \n", " L497.981 488.131 L492.115 495.637 L475.551 517.523 L455.539 546.916 L447.814 560.446 L439 576.308 L425.075 605.701 L413.035 635.093 L404.255 664.486 L403.513 667.71 \n", " L397.541 693.878 L392.482 723.271 L390.763 752.663 L390.763 782.056 L392.482 811.448 L397.541 840.841 L403.513 867.009 L404.255 870.233 L413.035 899.625 L425.075 929.018 \n", " L439 958.41 L447.814 974.273 L455.539 987.803 L475.551 1017.2 L492.115 1039.08 L497.981 1046.59 L523.871 1075.98 L536.416 1088.65 L553.755 1105.37 L580.717 1129.33 \n", " L587.225 1134.77 L625.018 1163.45 L626.011 1164.16 L669.319 1192.89 L670.392 1193.55 L713.62 1218.62 L721.811 1222.94 L757.921 1240.83 L783.13 1252.34 L802.222 1260.66 \n", " L846.523 1277.84 L857.835 1281.73 L890.824 1292.72 L935.125 1305.99 L955.518 1311.12 L979.426 1316.97 L1023.73 1326.21 L1068.03 1334.2 L1112.33 1340.02 L1117.19 1340.51 \n", " L1156.63 1344.47 Z\n", " \" fill=\"#db503a\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip0702)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L669.319 1487.47 L713.62 1487.47 L757.921 1487.47 L802.222 1487.47 L846.523 1487.47 L890.824 1487.47 L935.125 1487.47 L979.426 1487.47 \n", " L1023.73 1487.47 L1068.03 1487.47 L1112.33 1487.47 L1156.63 1487.47 L1200.93 1487.47 L1245.23 1487.47 L1289.53 1487.47 L1333.83 1487.47 L1378.13 1487.47 L1422.44 1487.47 \n", " L1466.74 1487.47 L1511.04 1487.47 L1555.34 1487.47 L1599.64 1487.47 L1643.94 1487.47 L1688.24 1487.47 L1732.54 1487.47 L1776.84 1487.47 L1821.14 1487.47 L1865.45 1487.47 \n", " L1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1164.16 L2352.76 1134.77 L2352.76 1105.37 L2352.76 1075.98 L2352.76 1046.59 L2352.76 1017.2 \n", " L2352.76 987.803 L2352.76 958.41 L2352.76 929.018 L2352.76 899.625 L2352.76 870.233 L2352.76 840.841 L2352.76 811.448 L2352.76 782.056 L2352.76 752.663 L2352.76 723.271 \n", " L2352.76 693.878 L2352.76 664.486 L2352.76 635.093 L2352.76 605.701 L2352.76 576.308 L2352.76 546.916 L2352.76 517.523 L2352.76 488.131 L2352.76 458.739 L2352.76 429.346 \n", " L2352.76 399.954 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 \n", " L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 \n", " L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 L1909.75 47.2441 L1865.45 47.2441 L1821.14 47.2441 L1776.84 47.2441 L1732.54 47.2441 \n", " L1688.24 47.2441 L1643.94 47.2441 L1599.64 47.2441 L1555.34 47.2441 L1511.04 47.2441 L1466.74 47.2441 L1422.44 47.2441 L1378.13 47.2441 L1333.83 47.2441 L1289.53 47.2441 \n", " L1245.23 47.2441 L1200.93 47.2441 L1156.63 47.2441 L1112.33 47.2441 L1068.03 47.2441 L1023.73 47.2441 L979.426 47.2441 L935.125 47.2441 L890.824 47.2441 L846.523 47.2441 \n", " L802.222 47.2441 L757.921 47.2441 L713.62 47.2441 L669.319 47.2441 L625.018 47.2441 L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 \n", " L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 \n", " L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 L182.008 546.916 L182.008 576.308 L182.008 605.701 L182.008 635.093 L182.008 664.486 L182.008 693.878 \n", " L182.008 723.271 L182.008 752.663 L182.008 782.056 L182.008 811.448 L182.008 840.841 L182.008 870.233 L182.008 899.625 L182.008 929.018 L182.008 958.41 L182.008 987.803 \n", " L182.008 1017.2 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M1112.33 1403.27 L1156.63 1407.29 L1200.93 1410.31 L1245.23 1411.34 L1289.53 1411.34 L1333.83 1410.31 L1378.13 1407.29 L1422.44 1403.27 L1456.21 1399.3 L1466.74 1398.05 \n", " L1511.04 1390.87 L1555.34 1382.58 L1599.64 1372.8 L1610.7 1369.9 L1643.94 1361.02 L1688.24 1347.91 L1710.38 1340.51 L1732.54 1332.89 L1776.84 1315.7 L1787.81 1311.12 \n", " L1821.14 1296.54 L1851.74 1281.73 L1865.45 1274.8 L1906.32 1252.34 L1909.75 1250.35 L1954.05 1223 L1954.14 1222.94 L1995.35 1193.55 L1998.35 1191.28 L2032.21 1164.16 \n", " L2042.65 1155.06 L2064.97 1134.77 L2086.95 1112.65 L2093.85 1105.37 L2119.76 1075.98 L2131.25 1061.28 L2142.4 1046.59 L2162.16 1017.2 L2175.55 995.142 L2179.91 987.803 \n", " L2194.65 958.41 L2207.14 929.018 L2217.97 899.625 L2219.85 892.642 L2225.85 870.233 L2231.9 840.841 L2236.46 811.448 L2238.01 782.056 L2238.01 752.663 L2236.46 723.271 \n", " L2231.9 693.878 L2225.85 664.486 L2219.85 642.077 L2217.97 635.093 L2207.14 605.701 L2194.65 576.308 L2179.91 546.916 L2175.55 539.577 L2162.16 517.523 L2142.4 488.131 \n", " L2131.25 473.442 L2119.76 458.739 L2093.85 429.346 L2086.95 422.07 L2064.97 399.954 L2042.65 379.654 L2032.21 370.561 L1998.35 343.441 L1995.35 341.169 L1954.14 311.776 \n", " L1954.05 311.717 L1909.75 284.371 L1906.32 282.384 L1865.45 259.915 L1851.74 252.991 L1821.14 238.179 L1787.81 223.599 L1776.84 219.02 L1732.54 201.834 L1710.38 194.206 \n", " L1688.24 186.811 L1643.94 173.696 L1610.7 164.814 L1599.64 161.922 L1555.34 152.142 L1511.04 143.854 L1466.74 136.674 L1456.21 135.421 L1422.44 131.445 L1378.13 127.432 \n", " L1333.83 124.405 L1289.53 123.375 L1245.23 123.375 L1200.93 124.405 L1156.63 127.432 L1112.33 131.445 L1078.55 135.421 L1068.03 136.674 L1023.73 143.854 L979.426 152.142 \n", " L935.125 161.922 L924.063 164.814 L890.824 173.696 L846.523 186.811 L824.382 194.206 L802.222 201.834 L757.921 219.02 L746.953 223.599 L713.62 238.179 L683.024 252.991 \n", " L669.319 259.915 L628.443 282.384 L625.018 284.371 L580.717 311.717 L580.627 311.776 L539.412 341.169 L536.416 343.441 L502.55 370.561 L492.115 379.654 L469.79 399.954 \n", " L447.814 422.07 L440.912 429.346 L415.009 458.739 L403.513 473.442 L392.366 488.131 L372.6 517.523 L359.212 539.577 L354.853 546.916 L340.113 576.308 L327.62 605.701 \n", " L316.798 635.093 L314.911 642.077 L308.917 664.486 L302.869 693.878 L298.306 723.271 L296.755 752.663 L296.755 782.056 L298.306 811.448 L302.869 840.841 L308.917 870.233 \n", " L314.911 892.642 L316.798 899.625 L327.62 929.018 L340.113 958.41 L354.853 987.803 L359.212 995.142 L372.6 1017.2 L392.366 1046.59 L403.513 1061.28 L415.009 1075.98 \n", " L440.912 1105.37 L447.814 1112.65 L469.79 1134.77 L492.115 1155.06 L502.55 1164.16 L536.416 1191.28 L539.412 1193.55 L580.627 1222.94 L580.717 1223 L625.018 1250.35 \n", " L628.443 1252.34 L669.319 1274.8 L683.024 1281.73 L713.62 1296.54 L746.953 1311.12 L757.921 1315.7 L802.222 1332.89 L824.382 1340.51 L846.523 1347.91 L890.824 1361.02 \n", " L924.063 1369.9 L935.125 1372.8 L979.426 1382.58 L1023.73 1390.87 L1068.03 1398.05 L1078.55 1399.3 L1112.33 1403.27 Z\n", " \" fill=\"#ec6925\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip0702)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L669.319 1487.47 L713.62 1487.47 L757.921 1487.47 L802.222 1487.47 L846.523 1487.47 L890.824 1487.47 L935.125 1487.47 L979.426 1487.47 \n", " L1023.73 1487.47 L1068.03 1487.47 L1112.33 1487.47 L1156.63 1487.47 L1200.93 1487.47 L1245.23 1487.47 L1289.53 1487.47 L1333.83 1487.47 L1378.13 1487.47 L1422.44 1487.47 \n", " L1466.74 1487.47 L1511.04 1487.47 L1555.34 1487.47 L1599.64 1487.47 L1643.94 1487.47 L1688.24 1487.47 L1732.54 1487.47 L1776.84 1487.47 L1821.14 1487.47 L1865.45 1487.47 \n", " L1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1164.16 L2352.76 1134.77 L2352.76 1105.37 L2352.76 1075.98 L2352.76 1046.59 L2352.76 1017.2 \n", " L2352.76 987.803 L2352.76 958.41 L2352.76 929.018 L2352.76 899.625 L2352.76 870.233 L2352.76 840.841 L2352.76 811.448 L2352.76 782.056 L2352.76 752.663 L2352.76 723.271 \n", " L2352.76 693.878 L2352.76 664.486 L2352.76 635.093 L2352.76 605.701 L2352.76 576.308 L2352.76 546.916 L2352.76 517.523 L2352.76 488.131 L2352.76 458.739 L2352.76 429.346 \n", " L2352.76 399.954 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 \n", " L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 \n", " L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 L1909.75 47.2441 L1865.45 47.2441 L1821.14 47.2441 L1776.84 47.2441 L1732.54 47.2441 \n", " L1688.24 47.2441 L1643.94 47.2441 L1599.64 47.2441 L1555.34 47.2441 L1511.04 47.2441 L1466.74 47.2441 L1422.44 47.2441 L1378.13 47.2441 L1333.83 47.2441 L1289.53 47.2441 \n", " L1245.23 47.2441 L1200.93 47.2441 L1156.63 47.2441 L1112.33 47.2441 L1068.03 47.2441 L1023.73 47.2441 L979.426 47.2441 L935.125 47.2441 L890.824 47.2441 L846.523 47.2441 \n", " L802.222 47.2441 L757.921 47.2441 L713.62 47.2441 L669.319 47.2441 L625.018 47.2441 L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 \n", " L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 \n", " L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 L182.008 546.916 L182.008 576.308 L182.008 605.701 L182.008 635.093 L182.008 664.486 L182.008 693.878 \n", " L182.008 723.271 L182.008 752.663 L182.008 782.056 L182.008 811.448 L182.008 840.841 L182.008 870.233 L182.008 899.625 L182.008 929.018 L182.008 958.41 L182.008 987.803 \n", " L182.008 1017.2 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M1068.03 1461.59 L1112.33 1466.35 L1156.63 1470.01 L1200.93 1472.77 L1245.23 1473.71 L1289.53 1473.71 L1333.83 1472.77 L1378.13 1470.01 L1422.44 1466.35 L1466.74 1461.59 \n", " L1490.73 1458.08 L1511.04 1455.08 L1555.34 1447.58 L1599.64 1438.74 L1641.8 1428.69 L1643.94 1428.17 L1688.24 1416.41 L1732.54 1403.04 L1743.64 1399.3 L1776.84 1387.71 \n", " L1821.14 1370.91 L1823.56 1369.9 L1865.45 1351.93 L1889.79 1340.51 L1909.75 1330.78 L1947.53 1311.12 L1954.05 1307.53 L1997.38 1281.73 L1998.35 1281.12 L2041.74 1252.34 \n", " L2042.65 1251.69 L2081.54 1222.94 L2086.95 1218.62 L2116.58 1193.55 L2131.25 1180.31 L2148.46 1164.16 L2175.55 1136.37 L2177.06 1134.77 L2202.39 1105.37 L2219.85 1083.34 \n", " L2225.5 1075.98 L2245.65 1046.59 L2263.37 1017.2 L2264.15 1015.78 L2279.31 987.803 L2292.62 958.41 L2303.93 929.018 L2308.45 915.547 L2313.75 899.625 L2320.92 870.233 \n", " L2326.43 840.841 L2330.59 811.448 L2332 782.056 L2332 752.663 L2330.59 723.271 L2326.43 693.878 L2320.92 664.486 L2313.75 635.093 L2308.45 619.172 L2303.93 605.701 \n", " L2292.62 576.308 L2279.31 546.916 L2264.15 518.94 L2263.37 517.523 L2245.65 488.131 L2225.5 458.739 L2219.85 451.375 L2202.39 429.346 L2177.06 399.954 L2175.55 398.353 \n", " L2148.46 370.561 L2131.25 354.406 L2116.58 341.169 L2086.95 316.102 L2081.54 311.776 L2042.65 283.024 L2041.74 282.384 L1998.35 253.594 L1997.38 252.991 L1954.05 227.186 \n", " L1947.53 223.599 L1909.75 203.938 L1889.79 194.206 L1865.45 182.787 L1823.56 164.814 L1821.14 163.812 L1776.84 147.005 L1743.64 135.421 L1732.54 131.675 L1688.24 118.308 \n", " L1643.94 106.547 L1641.8 106.029 L1599.64 95.9738 L1555.34 87.1433 L1511.04 79.6389 L1490.73 76.6366 L1466.74 73.1252 L1422.44 68.3679 L1378.13 64.7112 L1333.83 61.9516 \n", " L1289.53 61.0134 L1245.23 61.0134 L1200.93 61.9516 L1156.63 64.7112 L1112.33 68.3679 L1068.03 73.1252 L1044.03 76.6366 L1023.73 79.6389 L979.426 87.1433 L935.125 95.9738 \n", " L892.959 106.029 L890.824 106.547 L846.523 118.308 L802.222 131.675 L791.124 135.421 L757.921 147.005 L713.62 163.812 L711.208 164.814 L669.319 182.787 L644.97 194.206 \n", " L625.018 203.938 L587.236 223.599 L580.717 227.186 L537.381 252.991 L536.416 253.594 L493.024 282.384 L492.115 283.024 L453.22 311.776 L447.814 316.102 L418.181 341.169 \n", " L403.513 354.406 L386.302 370.561 L359.212 398.353 L357.702 399.954 L332.37 429.346 L314.911 451.375 L309.265 458.739 L289.117 488.131 L271.391 517.523 L270.61 518.94 \n", " L255.455 546.916 L242.145 576.308 L230.834 605.701 L226.309 619.172 L221.017 635.093 L213.846 664.486 L208.335 693.878 L204.176 723.271 L202.762 752.663 L202.762 782.056 \n", " L204.176 811.448 L208.335 840.841 L213.846 870.233 L221.017 899.625 L226.309 915.547 L230.834 929.018 L242.145 958.41 L255.455 987.803 L270.61 1015.78 L271.391 1017.2 \n", " L289.117 1046.59 L309.265 1075.98 L314.911 1083.34 L332.37 1105.37 L357.702 1134.77 L359.212 1136.37 L386.302 1164.16 L403.513 1180.31 L418.181 1193.55 L447.814 1218.62 \n", " L453.22 1222.94 L492.115 1251.69 L493.024 1252.34 L536.416 1281.12 L537.381 1281.73 L580.717 1307.53 L587.236 1311.12 L625.018 1330.78 L644.97 1340.51 L669.319 1351.93 \n", " L711.208 1369.9 L713.62 1370.91 L757.921 1387.71 L791.124 1399.3 L802.222 1403.04 L846.523 1416.41 L890.824 1428.17 L892.959 1428.69 L935.125 1438.74 L979.426 1447.58 \n", " L1023.73 1455.08 L1044.03 1458.08 L1068.03 1461.59 Z\n", " \" fill=\"#f7850e\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip0702)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L669.319 1487.47 L713.62 1487.47 L757.921 1487.47 L802.222 1487.47 L846.523 1487.47 L846.523 1487.47 L861.59 1487.47 L846.523 1483.8 \n", " L802.222 1471.65 L758.573 1458.08 L757.921 1457.88 L713.62 1442.8 L676.329 1428.69 L669.319 1425.96 L625.018 1407.26 L607.316 1399.3 L580.717 1386.8 L547.663 1369.9 \n", " L536.416 1363.94 L495.044 1340.51 L492.115 1338.78 L447.814 1311.18 L447.726 1311.12 L406.126 1281.73 L403.513 1279.78 L368.208 1252.34 L359.212 1244.87 L333.75 1222.94 \n", " L314.911 1205.3 L302.911 1193.55 L274.72 1164.16 L270.61 1159.51 L249.349 1134.77 L226.621 1105.37 L226.309 1104.94 L205.857 1075.98 L187.543 1046.59 L182.008 1036.59 \n", " L182.008 1046.59 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M1688.24 1487.47 L1732.54 1487.47 L1776.84 1487.47 L1821.14 1487.47 L1865.45 1487.47 L1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 \n", " L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 \n", " L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1164.16 \n", " L2352.76 1134.77 L2352.76 1105.37 L2352.76 1075.98 L2352.76 1046.59 L2352.76 1046.59 L2352.76 1036.59 L2347.22 1046.59 L2328.91 1075.98 L2308.45 1104.94 L2308.14 1105.37 \n", " L2285.42 1134.77 L2264.15 1159.51 L2260.04 1164.16 L2231.85 1193.55 L2219.85 1205.3 L2201.01 1222.94 L2175.55 1244.87 L2166.56 1252.34 L2131.25 1279.78 L2128.64 1281.73 \n", " L2087.04 1311.12 L2086.95 1311.18 L2042.65 1338.78 L2039.72 1340.51 L1998.35 1363.94 L1987.1 1369.9 L1954.05 1386.8 L1927.45 1399.3 L1909.75 1407.26 L1865.45 1425.96 \n", " L1858.43 1428.69 L1821.14 1442.8 L1776.84 1457.88 L1776.19 1458.08 L1732.54 1471.65 L1688.24 1483.8 L1673.17 1487.47 L1643.94 1487.47 L1688.24 1487.47 M182.008 517.523 L182.008 498.128 L187.543 488.131 L205.857 458.739 L226.309 429.779 L226.621 429.346 L249.349 399.954 L270.61 375.212 L274.72 370.561 L302.911 341.169 \n", " L314.911 329.424 L333.75 311.776 L359.212 289.846 L368.208 282.384 L403.513 254.934 L406.126 252.991 L447.726 223.599 L447.814 223.541 L492.115 195.94 L495.044 194.206 \n", " L536.416 170.782 L547.663 164.814 L580.717 147.921 L607.316 135.421 L625.018 127.46 L669.319 108.756 L676.329 106.029 L713.62 91.9229 L757.921 76.8438 L758.573 76.6366 \n", " L802.222 63.0669 L846.523 50.9165 L861.59 47.2441 L846.523 47.2441 L846.523 47.2441 L802.222 47.2441 L757.921 47.2441 L713.62 47.2441 L669.319 47.2441 L625.018 47.2441 \n", " L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 \n", " L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 \n", " L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 M2352.76 498.128 L2352.76 517.523 L2352.76 488.131 L2352.76 458.739 L2352.76 429.346 L2352.76 399.954 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 \n", " L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 \n", " L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 \n", " L1909.75 47.2441 L1865.45 47.2441 L1821.14 47.2441 L1776.84 47.2441 L1732.54 47.2441 L1688.24 47.2441 L1643.94 47.2441 L1673.17 47.2441 L1688.24 50.9165 L1732.54 63.0669 \n", " L1776.19 76.6366 L1776.84 76.8438 L1821.14 91.9229 L1858.43 106.029 L1865.45 108.756 L1909.75 127.46 L1927.45 135.421 L1954.05 147.921 L1987.1 164.814 L1998.35 170.782 \n", " L2039.72 194.206 L2042.65 195.94 L2086.95 223.541 L2087.04 223.599 L2128.64 252.991 L2131.25 254.934 L2166.56 282.384 L2175.55 289.846 L2201.01 311.776 L2219.85 329.424 \n", " L2231.85 341.169 L2260.04 370.561 L2264.15 375.212 L2285.42 399.954 L2308.14 429.346 L2308.45 429.779 L2328.91 458.739 L2347.22 488.131 L2352.76 498.128 Z\n", " \" fill=\"#fba40a\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip0702)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L492.115 1487.47 L536.416 1487.47 \n", " L580.717 1487.47 L625.018 1487.47 L625.018 1487.47 L641.814 1487.47 L625.018 1480.96 L580.717 1462.66 L570.477 1458.08 L536.416 1442.37 L508.697 1428.69 L492.115 1420.22 \n", " L453.258 1399.3 L447.814 1396.21 L404.44 1369.9 L403.513 1369.32 L360.095 1340.51 L359.212 1339.9 L319.559 1311.12 L314.911 1307.51 L283.371 1281.73 L270.61 1270.73 \n", " L249.988 1252.34 L226.309 1229.74 L219.402 1222.94 L191.826 1193.55 L182.008 1182.41 L182.008 1193.55 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M1909.75 1487.47 L1954.05 1487.47 L1998.35 1487.47 L2042.65 1487.47 L2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1281.73 L2352.76 1252.34 L2352.76 1222.94 L2352.76 1193.55 L2352.76 1193.55 L2352.76 1182.41 L2342.94 1193.55 L2315.36 1222.94 L2308.45 1229.74 L2284.78 1252.34 \n", " L2264.15 1270.73 L2251.39 1281.73 L2219.85 1307.51 L2215.2 1311.12 L2175.55 1339.9 L2174.67 1340.51 L2131.25 1369.32 L2130.32 1369.9 L2086.95 1396.21 L2081.51 1399.3 \n", " L2042.65 1420.22 L2026.07 1428.69 L1998.35 1442.37 L1964.29 1458.08 L1954.05 1462.66 L1909.75 1480.96 L1892.95 1487.47 L1865.45 1487.47 L1909.75 1487.47 M182.008 370.561 L182.008 352.312 L191.826 341.169 L219.402 311.776 L226.309 304.983 L249.988 282.384 L270.61 263.993 L283.371 252.991 L314.911 227.211 L319.559 223.599 \n", " L359.212 194.822 L360.095 194.206 L403.513 165.4 L404.44 164.814 L447.814 138.506 L453.258 135.421 L492.115 114.495 L508.697 106.029 L536.416 92.3468 L570.477 76.6366 \n", " L580.717 72.0539 L625.018 53.7583 L641.814 47.2441 L625.018 47.2441 L625.018 47.2441 L580.717 47.2441 L536.416 47.2441 L492.115 47.2441 L447.814 47.2441 L403.513 47.2441 \n", " L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 M2352.76 352.312 L2352.76 370.561 L2352.76 341.169 L2352.76 311.776 L2352.76 282.384 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 \n", " L2352.76 106.029 L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 \n", " L2131.25 47.2441 L2086.95 47.2441 L2042.65 47.2441 L1998.35 47.2441 L1954.05 47.2441 L1909.75 47.2441 L1865.45 47.2441 L1892.95 47.2441 L1909.75 53.7583 L1954.05 72.0539 \n", " L1964.29 76.6366 L1998.35 92.3468 L2026.07 106.029 L2042.65 114.495 L2081.51 135.421 L2086.95 138.506 L2130.32 164.814 L2131.25 165.4 L2174.67 194.206 L2175.55 194.822 \n", " L2215.2 223.599 L2219.85 227.211 L2251.39 252.991 L2264.15 263.993 L2284.78 282.384 L2308.45 304.983 L2315.36 311.776 L2342.94 341.169 L2352.76 352.312 Z\n", " \" fill=\"#f9c52d\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip0702)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L359.212 1487.47 L403.513 1487.47 L447.814 1487.47 L447.814 1487.47 L469.984 1487.47 \n", " L447.814 1476.52 L413.119 1458.08 L403.513 1452.8 L361.828 1428.69 L359.212 1427.12 L314.911 1399.33 L314.857 1399.3 L272.977 1369.9 L270.61 1368.17 L234.264 1340.51 \n", " L226.309 1334.14 L198.524 1311.12 L182.008 1296.41 L182.008 1311.12 L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 \n", " L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 M2086.95 1487.47 L2131.25 1487.47 L2175.55 1487.47 L2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 \n", " L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 L2352.76 1428.69 L2352.76 1399.3 L2352.76 1369.9 L2352.76 1340.51 L2352.76 1311.12 \n", " L2352.76 1311.12 L2352.76 1296.41 L2336.24 1311.12 L2308.45 1334.14 L2300.5 1340.51 L2264.15 1368.17 L2261.79 1369.9 L2219.91 1399.3 L2219.85 1399.33 L2175.55 1427.12 \n", " L2172.94 1428.69 L2131.25 1452.8 L2121.65 1458.08 L2086.95 1476.52 L2064.78 1487.47 L2042.65 1487.47 L2086.95 1487.47 M182.008 252.991 L182.008 238.308 \n", " L198.524 223.599 L226.309 200.58 L234.264 194.206 L270.61 166.549 L272.977 164.814 L314.857 135.421 L314.911 135.386 L359.212 107.6 L361.828 106.029 L403.513 81.9145 \n", " L413.119 76.6366 L447.814 58.2023 L469.984 47.2441 L447.814 47.2441 L447.814 47.2441 L403.513 47.2441 L359.212 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 \n", " L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 \n", " L182.008 252.991 M2352.76 238.308 L2352.76 252.991 L2352.76 223.599 L2352.76 194.206 L2352.76 164.814 L2352.76 135.421 L2352.76 106.029 L2352.76 76.6366 \n", " L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 L2131.25 47.2441 L2086.95 47.2441 \n", " L2042.65 47.2441 L2064.78 47.2441 L2086.95 58.2023 L2121.65 76.6366 L2131.25 81.9145 L2172.94 106.029 L2175.55 107.6 L2219.85 135.386 L2219.91 135.421 L2261.79 164.814 \n", " L2264.15 166.549 L2300.5 194.206 L2308.45 200.58 L2336.24 223.599 L2352.76 238.308 Z\n", " \" fill=\"#f2e55f\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip0702)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L226.309 1487.47 L270.61 1487.47 L314.911 1487.47 L314.911 1487.47 L319.62 1487.47 L314.911 1484.75 L271.541 1458.08 L270.61 1457.49 \n", " L227.203 1428.69 L226.309 1428.07 L186.115 1399.3 L182.008 1396.17 L182.008 1399.3 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 \n", " L182.008 1487.47 M2219.85 1487.47 L2264.15 1487.47 L2308.45 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1487.47 L2352.76 1458.08 \n", " L2352.76 1428.69 L2352.76 1399.3 L2352.76 1399.3 L2352.76 1396.17 L2348.65 1399.3 L2308.45 1428.07 L2307.56 1428.69 L2264.15 1457.49 L2263.22 1458.08 L2219.85 1484.75 \n", " L2215.14 1487.47 L2175.55 1487.47 L2219.85 1487.47 M182.008 164.814 L182.008 138.546 L186.115 135.421 L226.309 106.646 L227.203 106.029 L270.61 77.2298 \n", " L271.541 76.6366 L314.911 49.9692 L319.62 47.2441 L314.911 47.2441 L314.911 47.2441 L270.61 47.2441 L226.309 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 \n", " L182.008 47.2441 L182.008 76.6366 L182.008 106.029 L182.008 135.421 L182.008 164.814 M2352.76 138.546 L2352.76 164.814 L2352.76 135.421 L2352.76 106.029 \n", " L2352.76 76.6366 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2352.76 47.2441 L2308.45 47.2441 L2264.15 47.2441 L2219.85 47.2441 L2175.55 47.2441 L2215.14 47.2441 \n", " L2219.85 49.9692 L2263.22 76.6366 L2264.15 77.2298 L2307.56 106.029 L2308.45 106.646 L2348.65 135.421 L2352.76 138.546 Z\n", " \" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 669.319,1487.47 713.62,1487.47 757.921,1487.47 802.222,1487.47 846.523,1487.47 890.824,1487.47 935.125,1487.47 979.426,1487.47 \n", " 1023.73,1487.47 1068.03,1487.47 1112.33,1487.47 1156.63,1487.47 1200.93,1487.47 1245.23,1487.47 1289.53,1487.47 1333.83,1487.47 1378.13,1487.47 1422.44,1487.47 \n", " 1466.74,1487.47 1511.04,1487.47 1555.34,1487.47 1599.64,1487.47 1643.94,1487.47 1688.24,1487.47 1732.54,1487.47 1776.84,1487.47 1821.14,1487.47 1865.45,1487.47 \n", " 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 \n", " 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 \n", " 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1164.16 2352.76,1134.77 2352.76,1105.37 2352.76,1075.98 2352.76,1046.59 2352.76,1017.2 \n", " 2352.76,987.803 2352.76,958.41 2352.76,929.018 2352.76,899.625 2352.76,870.233 2352.76,840.841 2352.76,811.448 2352.76,782.056 2352.76,752.663 2352.76,723.271 \n", " 2352.76,693.878 2352.76,664.486 2352.76,635.093 2352.76,605.701 2352.76,576.308 2352.76,546.916 2352.76,517.523 2352.76,488.131 2352.76,458.739 2352.76,429.346 \n", " 2352.76,399.954 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 \n", " 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 \n", " 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 1909.75,47.2441 1865.45,47.2441 1821.14,47.2441 1776.84,47.2441 1732.54,47.2441 \n", " 1688.24,47.2441 1643.94,47.2441 1599.64,47.2441 1555.34,47.2441 1511.04,47.2441 1466.74,47.2441 1422.44,47.2441 1378.13,47.2441 1333.83,47.2441 1289.53,47.2441 \n", " 1245.23,47.2441 1200.93,47.2441 1156.63,47.2441 1112.33,47.2441 1068.03,47.2441 1023.73,47.2441 979.426,47.2441 935.125,47.2441 890.824,47.2441 846.523,47.2441 \n", " 802.222,47.2441 757.921,47.2441 713.62,47.2441 669.319,47.2441 625.018,47.2441 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 \n", " 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 \n", " 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 182.008,546.916 182.008,576.308 182.008,605.701 182.008,635.093 182.008,664.486 182.008,693.878 \n", " 182.008,723.271 182.008,752.663 182.008,782.056 182.008,811.448 182.008,840.841 182.008,870.233 182.008,899.625 182.008,929.018 182.008,958.41 182.008,987.803 \n", " 182.008,1017.2 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 669.319,1487.47 713.62,1487.47 757.921,1487.47 802.222,1487.47 846.523,1487.47 890.824,1487.47 935.125,1487.47 979.426,1487.47 \n", " 1023.73,1487.47 1068.03,1487.47 1112.33,1487.47 1156.63,1487.47 1200.93,1487.47 1245.23,1487.47 1289.53,1487.47 1333.83,1487.47 1378.13,1487.47 1422.44,1487.47 \n", " 1466.74,1487.47 1511.04,1487.47 1555.34,1487.47 1599.64,1487.47 1643.94,1487.47 1688.24,1487.47 1732.54,1487.47 1776.84,1487.47 1821.14,1487.47 1865.45,1487.47 \n", " 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 \n", " 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 \n", " 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1164.16 2352.76,1134.77 2352.76,1105.37 2352.76,1075.98 2352.76,1046.59 2352.76,1017.2 \n", " 2352.76,987.803 2352.76,958.41 2352.76,929.018 2352.76,899.625 2352.76,870.233 2352.76,840.841 2352.76,811.448 2352.76,782.056 2352.76,752.663 2352.76,723.271 \n", " 2352.76,693.878 2352.76,664.486 2352.76,635.093 2352.76,605.701 2352.76,576.308 2352.76,546.916 2352.76,517.523 2352.76,488.131 2352.76,458.739 2352.76,429.346 \n", " 2352.76,399.954 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 \n", " 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 \n", " 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 1909.75,47.2441 1865.45,47.2441 1821.14,47.2441 1776.84,47.2441 1732.54,47.2441 \n", " 1688.24,47.2441 1643.94,47.2441 1599.64,47.2441 1555.34,47.2441 1511.04,47.2441 1466.74,47.2441 1422.44,47.2441 1378.13,47.2441 1333.83,47.2441 1289.53,47.2441 \n", " 1245.23,47.2441 1200.93,47.2441 1156.63,47.2441 1112.33,47.2441 1068.03,47.2441 1023.73,47.2441 979.426,47.2441 935.125,47.2441 890.824,47.2441 846.523,47.2441 \n", " 802.222,47.2441 757.921,47.2441 713.62,47.2441 669.319,47.2441 625.018,47.2441 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 \n", " 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 \n", " 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 182.008,546.916 182.008,576.308 182.008,605.701 182.008,635.093 182.008,664.486 182.008,693.878 \n", " 182.008,723.271 182.008,752.663 182.008,782.056 182.008,811.448 182.008,840.841 182.008,870.233 182.008,899.625 182.008,929.018 182.008,958.41 182.008,987.803 \n", " 182.008,1017.2 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1245.23,849.382 1289.53,849.382 1324.96,840.841 1333.83,838.151 1374.08,811.448 1378.13,805.562 1391.01,782.056 1391.01,752.663 1378.13,729.156 1374.08,723.271 \n", " 1333.83,696.568 1324.96,693.878 1289.53,685.337 1245.23,685.337 1209.8,693.878 1200.93,696.568 1160.68,723.271 1156.63,729.156 1143.76,752.663 1143.76,782.056 \n", " 1156.63,805.562 1160.68,811.448 1200.93,838.151 1209.8,840.841 1245.23,849.382 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 669.319,1487.47 713.62,1487.47 757.921,1487.47 802.222,1487.47 846.523,1487.47 890.824,1487.47 935.125,1487.47 979.426,1487.47 \n", " 1023.73,1487.47 1068.03,1487.47 1112.33,1487.47 1156.63,1487.47 1200.93,1487.47 1245.23,1487.47 1289.53,1487.47 1333.83,1487.47 1378.13,1487.47 1422.44,1487.47 \n", " 1466.74,1487.47 1511.04,1487.47 1555.34,1487.47 1599.64,1487.47 1643.94,1487.47 1688.24,1487.47 1732.54,1487.47 1776.84,1487.47 1821.14,1487.47 1865.45,1487.47 \n", " 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 \n", " 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 \n", " 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1164.16 2352.76,1134.77 2352.76,1105.37 2352.76,1075.98 2352.76,1046.59 2352.76,1017.2 \n", " 2352.76,987.803 2352.76,958.41 2352.76,929.018 2352.76,899.625 2352.76,870.233 2352.76,840.841 2352.76,811.448 2352.76,782.056 2352.76,752.663 2352.76,723.271 \n", " 2352.76,693.878 2352.76,664.486 2352.76,635.093 2352.76,605.701 2352.76,576.308 2352.76,546.916 2352.76,517.523 2352.76,488.131 2352.76,458.739 2352.76,429.346 \n", " 2352.76,399.954 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 \n", " 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 \n", " 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 1909.75,47.2441 1865.45,47.2441 1821.14,47.2441 1776.84,47.2441 1732.54,47.2441 \n", " 1688.24,47.2441 1643.94,47.2441 1599.64,47.2441 1555.34,47.2441 1511.04,47.2441 1466.74,47.2441 1422.44,47.2441 1378.13,47.2441 1333.83,47.2441 1289.53,47.2441 \n", " 1245.23,47.2441 1200.93,47.2441 1156.63,47.2441 1112.33,47.2441 1068.03,47.2441 1023.73,47.2441 979.426,47.2441 935.125,47.2441 890.824,47.2441 846.523,47.2441 \n", " 802.222,47.2441 757.921,47.2441 713.62,47.2441 669.319,47.2441 625.018,47.2441 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 \n", " 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 \n", " 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 182.008,546.916 182.008,576.308 182.008,605.701 182.008,635.093 182.008,664.486 182.008,693.878 \n", " 182.008,723.271 182.008,752.663 182.008,782.056 182.008,811.448 182.008,840.841 182.008,870.233 182.008,899.625 182.008,929.018 182.008,958.41 182.008,987.803 \n", " 182.008,1017.2 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1200.93,906.372 1245.23,912.175 1289.53,912.175 1333.83,906.372 1357.5,899.625 1378.13,892.942 1422.44,870.298 1422.53,870.233 1456.66,840.841 1466.74,827.149 \n", " 1476.9,811.448 1485.65,782.056 1485.65,752.663 1476.9,723.271 1466.74,707.57 1456.66,693.878 1422.53,664.486 1422.44,664.421 1378.13,641.776 1357.5,635.093 \n", " 1333.83,628.347 1289.53,622.544 1245.23,622.544 1200.93,628.347 1177.27,635.093 1156.63,641.776 1112.33,664.421 1112.23,664.486 1078.1,693.878 1068.03,707.57 \n", " 1057.86,723.271 1049.11,752.663 1049.11,782.056 1057.86,811.448 1068.03,827.149 1078.1,840.841 1112.23,870.233 1112.33,870.298 1156.63,892.942 1177.27,899.625 \n", " 1200.93,906.372 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 669.319,1487.47 713.62,1487.47 757.921,1487.47 802.222,1487.47 846.523,1487.47 890.824,1487.47 935.125,1487.47 979.426,1487.47 \n", " 1023.73,1487.47 1068.03,1487.47 1112.33,1487.47 1156.63,1487.47 1200.93,1487.47 1245.23,1487.47 1289.53,1487.47 1333.83,1487.47 1378.13,1487.47 1422.44,1487.47 \n", " 1466.74,1487.47 1511.04,1487.47 1555.34,1487.47 1599.64,1487.47 1643.94,1487.47 1688.24,1487.47 1732.54,1487.47 1776.84,1487.47 1821.14,1487.47 1865.45,1487.47 \n", " 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 \n", " 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 \n", " 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1164.16 2352.76,1134.77 2352.76,1105.37 2352.76,1075.98 2352.76,1046.59 2352.76,1017.2 \n", " 2352.76,987.803 2352.76,958.41 2352.76,929.018 2352.76,899.625 2352.76,870.233 2352.76,840.841 2352.76,811.448 2352.76,782.056 2352.76,752.663 2352.76,723.271 \n", " 2352.76,693.878 2352.76,664.486 2352.76,635.093 2352.76,605.701 2352.76,576.308 2352.76,546.916 2352.76,517.523 2352.76,488.131 2352.76,458.739 2352.76,429.346 \n", " 2352.76,399.954 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 \n", " 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 \n", " 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 1909.75,47.2441 1865.45,47.2441 1821.14,47.2441 1776.84,47.2441 1732.54,47.2441 \n", " 1688.24,47.2441 1643.94,47.2441 1599.64,47.2441 1555.34,47.2441 1511.04,47.2441 1466.74,47.2441 1422.44,47.2441 1378.13,47.2441 1333.83,47.2441 1289.53,47.2441 \n", " 1245.23,47.2441 1200.93,47.2441 1156.63,47.2441 1112.33,47.2441 1068.03,47.2441 1023.73,47.2441 979.426,47.2441 935.125,47.2441 890.824,47.2441 846.523,47.2441 \n", " 802.222,47.2441 757.921,47.2441 713.62,47.2441 669.319,47.2441 625.018,47.2441 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 \n", " 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 \n", " 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 182.008,546.916 182.008,576.308 182.008,605.701 182.008,635.093 182.008,664.486 182.008,693.878 \n", " 182.008,723.271 182.008,752.663 182.008,782.056 182.008,811.448 182.008,840.841 182.008,870.233 182.008,899.625 182.008,929.018 182.008,958.41 182.008,987.803 \n", " 182.008,1017.2 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1156.63,961.964 1200.93,970.838 1245.23,974.841 1289.53,974.841 1333.83,970.838 1378.13,961.964 1390.13,958.41 1422.44,947.992 1464.82,929.018 1466.74,928.018 \n", " 1509.53,899.625 1511.04,898.351 1539.64,870.233 1555.34,848.802 1560.69,840.841 1574.07,811.448 1580.1,782.056 1580.1,752.663 1574.07,723.271 1560.69,693.878 \n", " 1555.34,685.917 1539.64,664.486 1511.04,636.367 1509.53,635.093 1466.74,606.701 1464.82,605.701 1422.44,586.727 1390.13,576.308 1378.13,572.755 1333.83,563.881 \n", " 1289.53,559.878 1245.23,559.878 1200.93,563.881 1156.63,572.755 1144.63,576.308 1112.33,586.727 1069.95,605.701 1068.03,606.701 1025.23,635.093 1023.73,636.367 \n", " 995.128,664.486 979.426,685.917 974.07,693.878 960.695,723.271 954.662,752.663 954.662,782.056 960.695,811.448 974.07,840.841 979.426,848.802 995.128,870.233 \n", " 1023.73,898.351 1025.23,899.625 1068.03,928.018 1069.95,929.018 1112.33,947.992 1144.63,958.41 1156.63,961.964 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 669.319,1487.47 713.62,1487.47 757.921,1487.47 802.222,1487.47 846.523,1487.47 890.824,1487.47 935.125,1487.47 979.426,1487.47 \n", " 1023.73,1487.47 1068.03,1487.47 1112.33,1487.47 1156.63,1487.47 1200.93,1487.47 1245.23,1487.47 1289.53,1487.47 1333.83,1487.47 1378.13,1487.47 1422.44,1487.47 \n", " 1466.74,1487.47 1511.04,1487.47 1555.34,1487.47 1599.64,1487.47 1643.94,1487.47 1688.24,1487.47 1732.54,1487.47 1776.84,1487.47 1821.14,1487.47 1865.45,1487.47 \n", " 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 \n", " 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 \n", " 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1164.16 2352.76,1134.77 2352.76,1105.37 2352.76,1075.98 2352.76,1046.59 2352.76,1017.2 \n", " 2352.76,987.803 2352.76,958.41 2352.76,929.018 2352.76,899.625 2352.76,870.233 2352.76,840.841 2352.76,811.448 2352.76,782.056 2352.76,752.663 2352.76,723.271 \n", " 2352.76,693.878 2352.76,664.486 2352.76,635.093 2352.76,605.701 2352.76,576.308 2352.76,546.916 2352.76,517.523 2352.76,488.131 2352.76,458.739 2352.76,429.346 \n", " 2352.76,399.954 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 \n", " 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 \n", " 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 1909.75,47.2441 1865.45,47.2441 1821.14,47.2441 1776.84,47.2441 1732.54,47.2441 \n", " 1688.24,47.2441 1643.94,47.2441 1599.64,47.2441 1555.34,47.2441 1511.04,47.2441 1466.74,47.2441 1422.44,47.2441 1378.13,47.2441 1333.83,47.2441 1289.53,47.2441 \n", " 1245.23,47.2441 1200.93,47.2441 1156.63,47.2441 1112.33,47.2441 1068.03,47.2441 1023.73,47.2441 979.426,47.2441 935.125,47.2441 890.824,47.2441 846.523,47.2441 \n", " 802.222,47.2441 757.921,47.2441 713.62,47.2441 669.319,47.2441 625.018,47.2441 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 \n", " 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 \n", " 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 182.008,546.916 182.008,576.308 182.008,605.701 182.008,635.093 182.008,664.486 182.008,693.878 \n", " 182.008,723.271 182.008,752.663 182.008,782.056 182.008,811.448 182.008,840.841 182.008,870.233 182.008,899.625 182.008,929.018 182.008,958.41 182.008,987.803 \n", " 182.008,1017.2 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1112.33,1017.41 1156.63,1027.58 1200.93,1034.29 1245.23,1037.34 1289.53,1037.34 1333.83,1034.29 1378.13,1027.58 1422.44,1017.41 1423.16,1017.2 1466.74,1003.19 \n", " 1503.13,987.803 1511.04,984.093 1555.34,958.654 1555.7,958.41 1594.05,929.018 1599.64,923.773 1622.84,899.625 1643.94,870.714 1644.27,870.233 1659.59,840.841 \n", " 1669.71,811.448 1674.31,782.056 1674.31,752.663 1669.71,723.271 1659.59,693.878 1644.27,664.486 1643.94,664.005 1622.84,635.093 1599.64,610.946 1594.05,605.701 \n", " 1555.7,576.308 1555.34,576.065 1511.04,550.626 1503.13,546.916 1466.74,531.524 1423.16,517.523 1422.44,517.306 1378.13,507.14 1333.83,500.428 1289.53,497.375 \n", " 1245.23,497.375 1200.93,500.428 1156.63,507.14 1112.33,517.306 1111.6,517.523 1068.03,531.524 1031.63,546.916 1023.73,550.626 979.426,576.065 979.059,576.308 \n", " 940.717,605.701 935.125,610.946 911.926,635.093 890.824,664.005 890.496,664.486 875.173,693.878 865.058,723.271 860.455,752.663 860.455,782.056 865.058,811.448 \n", " 875.173,840.841 890.496,870.233 890.824,870.714 911.926,899.625 935.125,923.773 940.717,929.018 979.059,958.41 979.426,958.654 1023.73,984.093 1031.63,987.803 \n", " 1068.03,1003.19 1111.6,1017.2 1112.33,1017.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 669.319,1487.47 713.62,1487.47 757.921,1487.47 802.222,1487.47 846.523,1487.47 890.824,1487.47 935.125,1487.47 979.426,1487.47 \n", " 1023.73,1487.47 1068.03,1487.47 1112.33,1487.47 1156.63,1487.47 1200.93,1487.47 1245.23,1487.47 1289.53,1487.47 1333.83,1487.47 1378.13,1487.47 1422.44,1487.47 \n", " 1466.74,1487.47 1511.04,1487.47 1555.34,1487.47 1599.64,1487.47 1643.94,1487.47 1688.24,1487.47 1732.54,1487.47 1776.84,1487.47 1821.14,1487.47 1865.45,1487.47 \n", " 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 \n", " 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 \n", " 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1164.16 2352.76,1134.77 2352.76,1105.37 2352.76,1075.98 2352.76,1046.59 2352.76,1017.2 \n", " 2352.76,987.803 2352.76,958.41 2352.76,929.018 2352.76,899.625 2352.76,870.233 2352.76,840.841 2352.76,811.448 2352.76,782.056 2352.76,752.663 2352.76,723.271 \n", " 2352.76,693.878 2352.76,664.486 2352.76,635.093 2352.76,605.701 2352.76,576.308 2352.76,546.916 2352.76,517.523 2352.76,488.131 2352.76,458.739 2352.76,429.346 \n", " 2352.76,399.954 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 \n", " 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 \n", " 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 1909.75,47.2441 1865.45,47.2441 1821.14,47.2441 1776.84,47.2441 1732.54,47.2441 \n", " 1688.24,47.2441 1643.94,47.2441 1599.64,47.2441 1555.34,47.2441 1511.04,47.2441 1466.74,47.2441 1422.44,47.2441 1378.13,47.2441 1333.83,47.2441 1289.53,47.2441 \n", " 1245.23,47.2441 1200.93,47.2441 1156.63,47.2441 1112.33,47.2441 1068.03,47.2441 1023.73,47.2441 979.426,47.2441 935.125,47.2441 890.824,47.2441 846.523,47.2441 \n", " 802.222,47.2441 757.921,47.2441 713.62,47.2441 669.319,47.2441 625.018,47.2441 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 \n", " 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 \n", " 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 182.008,546.916 182.008,576.308 182.008,605.701 182.008,635.093 182.008,664.486 182.008,693.878 \n", " 182.008,723.271 182.008,752.663 182.008,782.056 182.008,811.448 182.008,840.841 182.008,870.233 182.008,899.625 182.008,929.018 182.008,958.41 182.008,987.803 \n", " 182.008,1017.2 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1112.33,1083.65 1156.63,1091.9 1200.93,1097.31 1245.23,1099.78 1289.53,1099.78 1333.83,1097.31 1378.13,1091.9 1422.44,1083.65 1454.13,1075.98 1466.74,1072.74 \n", " 1511.04,1058.16 1538.99,1046.59 1555.34,1039.38 1598.75,1017.2 1599.64,1016.68 1643.17,987.803 1643.94,987.215 1677.38,958.41 1688.24,947.565 1705.69,929.018 \n", " 1727.66,899.625 1732.54,891.259 1744.1,870.233 1756.54,840.841 1764.69,811.448 1768.41,782.056 1768.41,752.663 1764.69,723.271 1756.54,693.878 1744.1,664.486 \n", " 1732.54,643.46 1727.66,635.093 1705.69,605.701 1688.24,587.154 1677.38,576.308 1643.94,547.504 1643.17,546.916 1599.64,518.035 1598.75,517.523 1555.34,495.336 \n", " 1538.99,488.131 1511.04,476.556 1466.74,461.975 1454.13,458.739 1422.44,451.07 1378.13,442.82 1333.83,437.413 1289.53,434.942 1245.23,434.942 1200.93,437.413 \n", " 1156.63,442.82 1112.33,451.07 1080.64,458.739 1068.03,461.975 1023.73,476.556 995.773,488.131 979.426,495.336 936.01,517.523 935.125,518.035 891.595,546.916 \n", " 890.824,547.504 857.382,576.308 846.523,587.154 829.077,605.701 807.099,635.093 802.222,643.46 790.663,664.486 778.229,693.878 770.079,723.271 766.355,752.663 \n", " 766.355,782.056 770.079,811.448 778.229,840.841 790.663,870.233 802.222,891.259 807.099,899.625 829.077,929.018 846.523,947.565 857.382,958.41 890.824,987.215 \n", " 891.595,987.803 935.125,1016.68 936.01,1017.2 979.426,1039.38 995.773,1046.59 1023.73,1058.16 1068.03,1072.74 1080.64,1075.98 1112.33,1083.65 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 669.319,1487.47 713.62,1487.47 757.921,1487.47 802.222,1487.47 846.523,1487.47 890.824,1487.47 935.125,1487.47 979.426,1487.47 \n", " 1023.73,1487.47 1068.03,1487.47 1112.33,1487.47 1156.63,1487.47 1200.93,1487.47 1245.23,1487.47 1289.53,1487.47 1333.83,1487.47 1378.13,1487.47 1422.44,1487.47 \n", " 1466.74,1487.47 1511.04,1487.47 1555.34,1487.47 1599.64,1487.47 1643.94,1487.47 1688.24,1487.47 1732.54,1487.47 1776.84,1487.47 1821.14,1487.47 1865.45,1487.47 \n", " 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 \n", " 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 \n", " 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1164.16 2352.76,1134.77 2352.76,1105.37 2352.76,1075.98 2352.76,1046.59 2352.76,1017.2 \n", " 2352.76,987.803 2352.76,958.41 2352.76,929.018 2352.76,899.625 2352.76,870.233 2352.76,840.841 2352.76,811.448 2352.76,782.056 2352.76,752.663 2352.76,723.271 \n", " 2352.76,693.878 2352.76,664.486 2352.76,635.093 2352.76,605.701 2352.76,576.308 2352.76,546.916 2352.76,517.523 2352.76,488.131 2352.76,458.739 2352.76,429.346 \n", " 2352.76,399.954 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 \n", " 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 \n", " 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 1909.75,47.2441 1865.45,47.2441 1821.14,47.2441 1776.84,47.2441 1732.54,47.2441 \n", " 1688.24,47.2441 1643.94,47.2441 1599.64,47.2441 1555.34,47.2441 1511.04,47.2441 1466.74,47.2441 1422.44,47.2441 1378.13,47.2441 1333.83,47.2441 1289.53,47.2441 \n", " 1245.23,47.2441 1200.93,47.2441 1156.63,47.2441 1112.33,47.2441 1068.03,47.2441 1023.73,47.2441 979.426,47.2441 935.125,47.2441 890.824,47.2441 846.523,47.2441 \n", " 802.222,47.2441 757.921,47.2441 713.62,47.2441 669.319,47.2441 625.018,47.2441 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 \n", " 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 \n", " 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 182.008,546.916 182.008,576.308 182.008,605.701 182.008,635.093 182.008,664.486 182.008,693.878 \n", " 182.008,723.271 182.008,752.663 182.008,782.056 182.008,811.448 182.008,840.841 182.008,870.233 182.008,899.625 182.008,929.018 182.008,958.41 182.008,987.803 \n", " 182.008,1017.2 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1068.03,1139.6 1112.33,1148.42 1156.63,1155.09 1200.93,1160.07 1245.23,1161.75 1289.53,1161.75 1333.83,1160.07 1378.13,1155.09 1422.44,1148.42 1466.74,1139.6 \n", " 1484.64,1134.77 1511.04,1127.33 1555.34,1112.74 1574.23,1105.37 1599.64,1094.91 1638.16,1075.98 1643.94,1072.88 1688.12,1046.59 1688.24,1046.51 1727.87,1017.2 \n", " 1732.54,1013.36 1761.07,987.803 1776.84,970.947 1787.94,958.41 1809.94,929.018 1821.14,911.506 1828.43,899.625 1841.73,870.233 1851.77,840.841 1859.28,811.448 \n", " 1861.82,782.056 1861.82,752.663 1859.28,723.271 1851.77,693.878 1841.73,664.486 1828.43,635.093 1821.14,623.213 1809.94,605.701 1787.94,576.308 1776.84,563.772 \n", " 1761.07,546.916 1732.54,521.361 1727.87,517.523 1688.24,488.211 1688.12,488.131 1643.94,461.835 1638.16,458.739 1599.64,439.813 1574.23,429.346 1555.34,421.983 \n", " 1511.04,407.389 1484.64,399.954 1466.74,395.118 1422.44,386.295 1378.13,379.631 1333.83,374.653 1289.53,372.966 1245.23,372.966 1200.93,374.653 1156.63,379.631 \n", " 1112.33,386.295 1068.03,395.118 1050.12,399.954 1023.73,407.389 979.426,421.983 960.53,429.346 935.125,439.813 896.608,458.739 890.824,461.835 846.643,488.131 \n", " 846.523,488.211 806.889,517.523 802.222,521.361 773.697,546.916 757.921,563.772 746.823,576.308 724.826,605.701 713.62,623.213 706.331,635.093 693.034,664.486 \n", " 682.989,693.878 675.486,723.271 672.943,752.663 672.943,782.056 675.486,811.448 682.989,840.841 693.034,870.233 706.331,899.625 713.62,911.506 724.826,929.018 \n", " 746.823,958.41 757.921,970.947 773.697,987.803 802.222,1013.36 806.889,1017.2 846.523,1046.51 846.643,1046.59 890.824,1072.88 896.608,1075.98 935.125,1094.91 \n", " 960.53,1105.37 979.426,1112.74 1023.73,1127.33 1050.12,1134.77 1068.03,1139.6 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 669.319,1487.47 713.62,1487.47 757.921,1487.47 802.222,1487.47 846.523,1487.47 890.824,1487.47 935.125,1487.47 979.426,1487.47 \n", " 1023.73,1487.47 1068.03,1487.47 1112.33,1487.47 1156.63,1487.47 1200.93,1487.47 1245.23,1487.47 1289.53,1487.47 1333.83,1487.47 1378.13,1487.47 1422.44,1487.47 \n", " 1466.74,1487.47 1511.04,1487.47 1555.34,1487.47 1599.64,1487.47 1643.94,1487.47 1688.24,1487.47 1732.54,1487.47 1776.84,1487.47 1821.14,1487.47 1865.45,1487.47 \n", " 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 \n", " 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 \n", " 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1164.16 2352.76,1134.77 2352.76,1105.37 2352.76,1075.98 2352.76,1046.59 2352.76,1017.2 \n", " 2352.76,987.803 2352.76,958.41 2352.76,929.018 2352.76,899.625 2352.76,870.233 2352.76,840.841 2352.76,811.448 2352.76,782.056 2352.76,752.663 2352.76,723.271 \n", " 2352.76,693.878 2352.76,664.486 2352.76,635.093 2352.76,605.701 2352.76,576.308 2352.76,546.916 2352.76,517.523 2352.76,488.131 2352.76,458.739 2352.76,429.346 \n", " 2352.76,399.954 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 \n", " 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 \n", " 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 1909.75,47.2441 1865.45,47.2441 1821.14,47.2441 1776.84,47.2441 1732.54,47.2441 \n", " 1688.24,47.2441 1643.94,47.2441 1599.64,47.2441 1555.34,47.2441 1511.04,47.2441 1466.74,47.2441 1422.44,47.2441 1378.13,47.2441 1333.83,47.2441 1289.53,47.2441 \n", " 1245.23,47.2441 1200.93,47.2441 1156.63,47.2441 1112.33,47.2441 1068.03,47.2441 1023.73,47.2441 979.426,47.2441 935.125,47.2441 890.824,47.2441 846.523,47.2441 \n", " 802.222,47.2441 757.921,47.2441 713.62,47.2441 669.319,47.2441 625.018,47.2441 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 \n", " 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 \n", " 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 182.008,546.916 182.008,576.308 182.008,605.701 182.008,635.093 182.008,664.486 182.008,693.878 \n", " 182.008,723.271 182.008,752.663 182.008,782.056 182.008,811.448 182.008,840.841 182.008,870.233 182.008,899.625 182.008,929.018 182.008,958.41 182.008,987.803 \n", " 182.008,1017.2 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1245.23,1224.18 1289.53,1224.18 1327.42,1222.94 1333.83,1222.73 1378.13,1218.45 1422.44,1212.73 1466.74,1205.19 1511.04,1194.82 1515.77,1193.55 1555.34,1182.61 \n", " 1599.64,1167.99 1609.49,1164.16 1643.94,1150.02 1677.18,1134.77 1688.24,1129.32 1731.23,1105.37 1732.54,1104.59 1775.66,1075.98 1776.84,1075.11 1812.94,1046.59 \n", " 1821.14,1039.25 1844.13,1017.2 1865.45,994.335 1871.22,987.803 1893.26,958.41 1909.75,932.156 1911.65,929.018 1927.29,899.625 1938.65,870.233 1947.27,840.841 \n", " 1953.73,811.448 1954.05,807.194 1955.92,782.056 1955.92,752.663 1954.05,727.524 1953.73,723.271 1947.27,693.878 1938.65,664.486 1927.29,635.093 1911.65,605.701 \n", " 1909.75,602.563 1893.26,576.308 1871.22,546.916 1865.45,540.384 1844.13,517.523 1821.14,495.467 1812.94,488.131 1776.84,459.61 1775.66,458.739 1732.54,430.13 \n", " 1731.23,429.346 1688.24,405.399 1677.18,399.954 1643.94,384.701 1609.49,370.561 1599.64,366.728 1555.34,352.105 1515.77,341.169 1511.04,339.902 1466.74,329.529 \n", " 1422.44,321.993 1378.13,316.272 1333.83,311.987 1327.42,311.776 1289.53,310.535 1245.23,310.535 1207.34,311.776 1200.93,311.987 1156.63,316.272 1112.33,321.993 \n", " 1068.03,329.529 1023.73,339.902 1019,341.169 979.426,352.105 935.125,366.728 925.279,370.561 890.824,384.701 857.58,399.954 846.523,405.399 803.534,429.346 \n", " 802.222,430.13 759.103,458.739 757.921,459.61 721.828,488.131 713.62,495.467 690.631,517.523 669.319,540.384 663.542,546.916 641.502,576.308 625.018,602.563 \n", " 623.109,605.701 607.473,635.093 596.116,664.486 587.493,693.878 581.035,723.271 580.717,727.524 578.845,752.663 578.845,782.056 580.717,807.194 581.035,811.448 \n", " 587.493,840.841 596.116,870.233 607.473,899.625 623.109,929.018 625.018,932.156 641.502,958.41 663.542,987.803 669.319,994.335 690.631,1017.2 713.62,1039.25 \n", " 721.828,1046.59 757.921,1075.11 759.103,1075.98 802.222,1104.59 803.534,1105.37 846.523,1129.32 857.58,1134.77 890.824,1150.02 925.279,1164.16 935.125,1167.99 \n", " 979.426,1182.61 1019,1193.55 1023.73,1194.82 1068.03,1205.19 1112.33,1212.73 1156.63,1218.45 1200.93,1222.73 1207.34,1222.94 1245.23,1224.18 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 669.319,1487.47 713.62,1487.47 757.921,1487.47 802.222,1487.47 846.523,1487.47 890.824,1487.47 935.125,1487.47 979.426,1487.47 \n", " 1023.73,1487.47 1068.03,1487.47 1112.33,1487.47 1156.63,1487.47 1200.93,1487.47 1245.23,1487.47 1289.53,1487.47 1333.83,1487.47 1378.13,1487.47 1422.44,1487.47 \n", " 1466.74,1487.47 1511.04,1487.47 1555.34,1487.47 1599.64,1487.47 1643.94,1487.47 1688.24,1487.47 1732.54,1487.47 1776.84,1487.47 1821.14,1487.47 1865.45,1487.47 \n", " 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 \n", " 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 \n", " 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1164.16 2352.76,1134.77 2352.76,1105.37 2352.76,1075.98 2352.76,1046.59 2352.76,1017.2 \n", " 2352.76,987.803 2352.76,958.41 2352.76,929.018 2352.76,899.625 2352.76,870.233 2352.76,840.841 2352.76,811.448 2352.76,782.056 2352.76,752.663 2352.76,723.271 \n", " 2352.76,693.878 2352.76,664.486 2352.76,635.093 2352.76,605.701 2352.76,576.308 2352.76,546.916 2352.76,517.523 2352.76,488.131 2352.76,458.739 2352.76,429.346 \n", " 2352.76,399.954 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 \n", " 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 \n", " 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 1909.75,47.2441 1865.45,47.2441 1821.14,47.2441 1776.84,47.2441 1732.54,47.2441 \n", " 1688.24,47.2441 1643.94,47.2441 1599.64,47.2441 1555.34,47.2441 1511.04,47.2441 1466.74,47.2441 1422.44,47.2441 1378.13,47.2441 1333.83,47.2441 1289.53,47.2441 \n", " 1245.23,47.2441 1200.93,47.2441 1156.63,47.2441 1112.33,47.2441 1068.03,47.2441 1023.73,47.2441 979.426,47.2441 935.125,47.2441 890.824,47.2441 846.523,47.2441 \n", " 802.222,47.2441 757.921,47.2441 713.62,47.2441 669.319,47.2441 625.018,47.2441 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 \n", " 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 \n", " 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 182.008,546.916 182.008,576.308 182.008,605.701 182.008,635.093 182.008,664.486 182.008,693.878 \n", " 182.008,723.271 182.008,752.663 182.008,782.056 182.008,811.448 182.008,840.841 182.008,870.233 182.008,899.625 182.008,929.018 182.008,958.41 182.008,987.803 \n", " 182.008,1017.2 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1200.93,1285.31 1245.23,1286.59 1289.53,1286.59 1333.83,1285.31 1375.99,1281.73 1378.13,1281.54 1422.44,1276.53 1466.74,1269.96 1511.04,1260.94 1547.57,1252.34 \n", " 1555.34,1250.46 1599.64,1237.91 1643.48,1222.94 1643.94,1222.78 1688.24,1205.41 1714.81,1193.55 1732.54,1185.24 1772.59,1164.16 1776.84,1161.76 1821.14,1134.79 \n", " 1821.18,1134.77 1861.83,1105.37 1865.45,1102.55 1897.22,1075.98 1909.75,1064.22 1927.62,1046.59 1953.8,1017.2 1954.05,1016.89 1976.61,987.803 1995.52,958.41 \n", " 1998.35,953.26 2011.32,929.018 2024.92,899.625 2034.82,870.233 2042.37,840.841 2042.65,839.421 2048.05,811.448 2049.97,782.056 2049.97,752.663 2048.05,723.271 \n", " 2042.65,695.298 2042.37,693.878 2034.82,664.486 2024.92,635.093 2011.32,605.701 1998.35,581.459 1995.52,576.308 1976.61,546.916 1954.05,517.832 1953.8,517.523 \n", " 1927.62,488.131 1909.75,470.501 1897.22,458.739 1865.45,432.169 1861.83,429.346 1821.18,399.954 1821.14,399.928 1776.84,372.957 1772.59,370.561 1732.54,349.477 \n", " 1714.81,341.169 1688.24,329.307 1643.94,311.942 1643.48,311.776 1599.64,296.81 1555.34,284.261 1547.57,282.384 1511.04,273.776 1466.74,264.755 1422.44,258.186 \n", " 1378.13,253.175 1375.99,252.991 1333.83,249.411 1289.53,248.132 1245.23,248.132 1200.93,249.411 1158.77,252.991 1156.63,253.175 1112.33,258.186 1068.03,264.755 \n", " 1023.73,273.776 987.189,282.384 979.426,284.261 935.125,296.81 891.289,311.776 890.824,311.942 846.523,329.307 819.95,341.169 802.222,349.477 762.175,370.561 \n", " 757.921,372.957 713.62,399.928 713.581,399.954 672.929,429.346 669.319,432.169 637.541,458.739 625.018,470.501 607.14,488.131 580.967,517.523 580.717,517.832 \n", " 558.159,546.916 539.245,576.308 536.416,581.459 523.441,605.701 509.845,635.093 499.944,664.486 492.391,693.878 492.115,695.298 486.718,723.271 484.791,752.663 \n", " 484.791,782.056 486.718,811.448 492.115,839.421 492.391,840.841 499.944,870.233 509.845,899.625 523.441,929.018 536.416,953.26 539.245,958.41 558.159,987.803 \n", " 580.717,1016.89 580.967,1017.2 607.14,1046.59 625.018,1064.22 637.541,1075.98 669.319,1102.55 672.929,1105.37 713.581,1134.77 713.62,1134.79 757.921,1161.76 \n", " 762.175,1164.16 802.222,1185.24 819.95,1193.55 846.523,1205.41 890.824,1222.78 891.289,1222.94 935.125,1237.91 979.426,1250.46 987.189,1252.34 1023.73,1260.94 \n", " 1068.03,1269.96 1112.33,1276.53 1156.63,1281.54 1158.77,1281.73 1200.93,1285.31 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 669.319,1487.47 713.62,1487.47 757.921,1487.47 802.222,1487.47 846.523,1487.47 890.824,1487.47 935.125,1487.47 979.426,1487.47 \n", " 1023.73,1487.47 1068.03,1487.47 1112.33,1487.47 1156.63,1487.47 1200.93,1487.47 1245.23,1487.47 1289.53,1487.47 1333.83,1487.47 1378.13,1487.47 1422.44,1487.47 \n", " 1466.74,1487.47 1511.04,1487.47 1555.34,1487.47 1599.64,1487.47 1643.94,1487.47 1688.24,1487.47 1732.54,1487.47 1776.84,1487.47 1821.14,1487.47 1865.45,1487.47 \n", " 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 \n", " 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 \n", " 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1164.16 2352.76,1134.77 2352.76,1105.37 2352.76,1075.98 2352.76,1046.59 2352.76,1017.2 \n", " 2352.76,987.803 2352.76,958.41 2352.76,929.018 2352.76,899.625 2352.76,870.233 2352.76,840.841 2352.76,811.448 2352.76,782.056 2352.76,752.663 2352.76,723.271 \n", " 2352.76,693.878 2352.76,664.486 2352.76,635.093 2352.76,605.701 2352.76,576.308 2352.76,546.916 2352.76,517.523 2352.76,488.131 2352.76,458.739 2352.76,429.346 \n", " 2352.76,399.954 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 \n", " 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 \n", " 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 1909.75,47.2441 1865.45,47.2441 1821.14,47.2441 1776.84,47.2441 1732.54,47.2441 \n", " 1688.24,47.2441 1643.94,47.2441 1599.64,47.2441 1555.34,47.2441 1511.04,47.2441 1466.74,47.2441 1422.44,47.2441 1378.13,47.2441 1333.83,47.2441 1289.53,47.2441 \n", " 1245.23,47.2441 1200.93,47.2441 1156.63,47.2441 1112.33,47.2441 1068.03,47.2441 1023.73,47.2441 979.426,47.2441 935.125,47.2441 890.824,47.2441 846.523,47.2441 \n", " 802.222,47.2441 757.921,47.2441 713.62,47.2441 669.319,47.2441 625.018,47.2441 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 \n", " 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 \n", " 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 182.008,546.916 182.008,576.308 182.008,605.701 182.008,635.093 182.008,664.486 182.008,693.878 \n", " 182.008,723.271 182.008,752.663 182.008,782.056 182.008,811.448 182.008,840.841 182.008,870.233 182.008,899.625 182.008,929.018 182.008,958.41 182.008,987.803 \n", " 182.008,1017.2 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1156.63,1344.47 1200.93,1347.83 1245.23,1348.97 1289.53,1348.97 1333.83,1347.83 1378.13,1344.47 1417.58,1340.51 1422.44,1340.02 1466.74,1334.2 1511.04,1326.21 \n", " 1555.34,1316.97 1579.25,1311.12 1599.64,1305.99 1643.94,1292.72 1676.93,1281.73 1688.24,1277.84 1732.54,1260.66 1751.63,1252.34 1776.84,1240.83 1812.95,1222.94 \n", " 1821.14,1218.62 1864.37,1193.55 1865.45,1192.89 1908.75,1164.16 1909.75,1163.45 1947.54,1134.77 1954.05,1129.33 1981.01,1105.37 1998.35,1088.65 2010.89,1075.98 \n", " 2036.78,1046.59 2042.65,1039.08 2059.21,1017.2 2079.23,987.803 2086.95,974.273 2095.76,958.41 2109.69,929.018 2121.73,899.625 2130.51,870.233 2131.25,867.009 \n", " 2137.22,840.841 2142.28,811.448 2144,782.056 2144,752.663 2142.28,723.271 2137.22,693.878 2131.25,667.71 2130.51,664.486 2121.73,635.093 2109.69,605.701 \n", " 2095.76,576.308 2086.95,560.446 2079.23,546.916 2059.21,517.523 2042.65,495.637 2036.78,488.131 2010.89,458.739 1998.35,446.072 1981.01,429.346 1954.05,405.388 \n", " 1947.54,399.954 1909.75,371.273 1908.75,370.561 1865.45,341.828 1864.37,341.169 1821.14,316.094 1812.95,311.776 1776.84,293.888 1751.63,282.384 1732.54,274.061 \n", " 1688.24,256.883 1676.93,252.991 1643.94,242.002 1599.64,228.724 1579.25,223.599 1555.34,217.751 1511.04,208.512 1466.74,200.524 1422.44,194.699 1417.58,194.206 \n", " 1378.13,190.244 1333.83,186.888 1289.53,185.747 1245.23,185.747 1200.93,186.888 1156.63,190.244 1117.19,194.206 1112.33,194.699 1068.03,200.524 1023.73,208.512 \n", " 979.426,217.751 955.518,223.599 935.125,228.724 890.824,242.002 857.835,252.991 846.523,256.883 802.222,274.061 783.13,282.384 757.921,293.888 721.811,311.776 \n", " 713.62,316.094 670.392,341.169 669.319,341.828 626.011,370.561 625.018,371.273 587.225,399.954 580.717,405.388 553.755,429.346 536.416,446.072 523.871,458.739 \n", " 497.981,488.131 492.115,495.637 475.551,517.523 455.539,546.916 447.814,560.446 439,576.308 425.075,605.701 413.035,635.093 404.255,664.486 403.513,667.71 \n", " 397.541,693.878 392.482,723.271 390.763,752.663 390.763,782.056 392.482,811.448 397.541,840.841 403.513,867.009 404.255,870.233 413.035,899.625 425.075,929.018 \n", " 439,958.41 447.814,974.273 455.539,987.803 475.551,1017.2 492.115,1039.08 497.981,1046.59 523.871,1075.98 536.416,1088.65 553.755,1105.37 580.717,1129.33 \n", " 587.225,1134.77 625.018,1163.45 626.011,1164.16 669.319,1192.89 670.392,1193.55 713.62,1218.62 721.811,1222.94 757.921,1240.83 783.13,1252.34 802.222,1260.66 \n", " 846.523,1277.84 857.835,1281.73 890.824,1292.72 935.125,1305.99 955.518,1311.12 979.426,1316.97 1023.73,1326.21 1068.03,1334.2 1112.33,1340.02 1117.19,1340.51 \n", " 1156.63,1344.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 669.319,1487.47 713.62,1487.47 757.921,1487.47 802.222,1487.47 846.523,1487.47 890.824,1487.47 935.125,1487.47 979.426,1487.47 \n", " 1023.73,1487.47 1068.03,1487.47 1112.33,1487.47 1156.63,1487.47 1200.93,1487.47 1245.23,1487.47 1289.53,1487.47 1333.83,1487.47 1378.13,1487.47 1422.44,1487.47 \n", " 1466.74,1487.47 1511.04,1487.47 1555.34,1487.47 1599.64,1487.47 1643.94,1487.47 1688.24,1487.47 1732.54,1487.47 1776.84,1487.47 1821.14,1487.47 1865.45,1487.47 \n", " 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 \n", " 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 \n", " 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1164.16 2352.76,1134.77 2352.76,1105.37 2352.76,1075.98 2352.76,1046.59 2352.76,1017.2 \n", " 2352.76,987.803 2352.76,958.41 2352.76,929.018 2352.76,899.625 2352.76,870.233 2352.76,840.841 2352.76,811.448 2352.76,782.056 2352.76,752.663 2352.76,723.271 \n", " 2352.76,693.878 2352.76,664.486 2352.76,635.093 2352.76,605.701 2352.76,576.308 2352.76,546.916 2352.76,517.523 2352.76,488.131 2352.76,458.739 2352.76,429.346 \n", " 2352.76,399.954 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 \n", " 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 \n", " 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 1909.75,47.2441 1865.45,47.2441 1821.14,47.2441 1776.84,47.2441 1732.54,47.2441 \n", " 1688.24,47.2441 1643.94,47.2441 1599.64,47.2441 1555.34,47.2441 1511.04,47.2441 1466.74,47.2441 1422.44,47.2441 1378.13,47.2441 1333.83,47.2441 1289.53,47.2441 \n", " 1245.23,47.2441 1200.93,47.2441 1156.63,47.2441 1112.33,47.2441 1068.03,47.2441 1023.73,47.2441 979.426,47.2441 935.125,47.2441 890.824,47.2441 846.523,47.2441 \n", " 802.222,47.2441 757.921,47.2441 713.62,47.2441 669.319,47.2441 625.018,47.2441 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 \n", " 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 \n", " 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 182.008,546.916 182.008,576.308 182.008,605.701 182.008,635.093 182.008,664.486 182.008,693.878 \n", " 182.008,723.271 182.008,752.663 182.008,782.056 182.008,811.448 182.008,840.841 182.008,870.233 182.008,899.625 182.008,929.018 182.008,958.41 182.008,987.803 \n", " 182.008,1017.2 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1112.33,1403.27 1156.63,1407.29 1200.93,1410.31 1245.23,1411.34 1289.53,1411.34 1333.83,1410.31 1378.13,1407.29 1422.44,1403.27 1456.21,1399.3 1466.74,1398.05 \n", " 1511.04,1390.87 1555.34,1382.58 1599.64,1372.8 1610.7,1369.9 1643.94,1361.02 1688.24,1347.91 1710.38,1340.51 1732.54,1332.89 1776.84,1315.7 1787.81,1311.12 \n", " 1821.14,1296.54 1851.74,1281.73 1865.45,1274.8 1906.32,1252.34 1909.75,1250.35 1954.05,1223 1954.14,1222.94 1995.35,1193.55 1998.35,1191.28 2032.21,1164.16 \n", " 2042.65,1155.06 2064.97,1134.77 2086.95,1112.65 2093.85,1105.37 2119.76,1075.98 2131.25,1061.28 2142.4,1046.59 2162.16,1017.2 2175.55,995.142 2179.91,987.803 \n", " 2194.65,958.41 2207.14,929.018 2217.97,899.625 2219.85,892.642 2225.85,870.233 2231.9,840.841 2236.46,811.448 2238.01,782.056 2238.01,752.663 2236.46,723.271 \n", " 2231.9,693.878 2225.85,664.486 2219.85,642.077 2217.97,635.093 2207.14,605.701 2194.65,576.308 2179.91,546.916 2175.55,539.577 2162.16,517.523 2142.4,488.131 \n", " 2131.25,473.442 2119.76,458.739 2093.85,429.346 2086.95,422.07 2064.97,399.954 2042.65,379.654 2032.21,370.561 1998.35,343.441 1995.35,341.169 1954.14,311.776 \n", " 1954.05,311.717 1909.75,284.371 1906.32,282.384 1865.45,259.915 1851.74,252.991 1821.14,238.179 1787.81,223.599 1776.84,219.02 1732.54,201.834 1710.38,194.206 \n", " 1688.24,186.811 1643.94,173.696 1610.7,164.814 1599.64,161.922 1555.34,152.142 1511.04,143.854 1466.74,136.674 1456.21,135.421 1422.44,131.445 1378.13,127.432 \n", " 1333.83,124.405 1289.53,123.375 1245.23,123.375 1200.93,124.405 1156.63,127.432 1112.33,131.445 1078.55,135.421 1068.03,136.674 1023.73,143.854 979.426,152.142 \n", " 935.125,161.922 924.063,164.814 890.824,173.696 846.523,186.811 824.382,194.206 802.222,201.834 757.921,219.02 746.953,223.599 713.62,238.179 683.024,252.991 \n", " 669.319,259.915 628.443,282.384 625.018,284.371 580.717,311.717 580.627,311.776 539.412,341.169 536.416,343.441 502.55,370.561 492.115,379.654 469.79,399.954 \n", " 447.814,422.07 440.912,429.346 415.009,458.739 403.513,473.442 392.366,488.131 372.6,517.523 359.212,539.577 354.853,546.916 340.113,576.308 327.62,605.701 \n", " 316.798,635.093 314.911,642.077 308.917,664.486 302.869,693.878 298.306,723.271 296.755,752.663 296.755,782.056 298.306,811.448 302.869,840.841 308.917,870.233 \n", " 314.911,892.642 316.798,899.625 327.62,929.018 340.113,958.41 354.853,987.803 359.212,995.142 372.6,1017.2 392.366,1046.59 403.513,1061.28 415.009,1075.98 \n", " 440.912,1105.37 447.814,1112.65 469.79,1134.77 492.115,1155.06 502.55,1164.16 536.416,1191.28 539.412,1193.55 580.627,1222.94 580.717,1223 625.018,1250.35 \n", " 628.443,1252.34 669.319,1274.8 683.024,1281.73 713.62,1296.54 746.953,1311.12 757.921,1315.7 802.222,1332.89 824.382,1340.51 846.523,1347.91 890.824,1361.02 \n", " 924.063,1369.9 935.125,1372.8 979.426,1382.58 1023.73,1390.87 1068.03,1398.05 1078.55,1399.3 1112.33,1403.27 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 669.319,1487.47 713.62,1487.47 757.921,1487.47 802.222,1487.47 846.523,1487.47 890.824,1487.47 935.125,1487.47 979.426,1487.47 \n", " 1023.73,1487.47 1068.03,1487.47 1112.33,1487.47 1156.63,1487.47 1200.93,1487.47 1245.23,1487.47 1289.53,1487.47 1333.83,1487.47 1378.13,1487.47 1422.44,1487.47 \n", " 1466.74,1487.47 1511.04,1487.47 1555.34,1487.47 1599.64,1487.47 1643.94,1487.47 1688.24,1487.47 1732.54,1487.47 1776.84,1487.47 1821.14,1487.47 1865.45,1487.47 \n", " 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 \n", " 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 \n", " 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1164.16 2352.76,1134.77 2352.76,1105.37 2352.76,1075.98 2352.76,1046.59 2352.76,1017.2 \n", " 2352.76,987.803 2352.76,958.41 2352.76,929.018 2352.76,899.625 2352.76,870.233 2352.76,840.841 2352.76,811.448 2352.76,782.056 2352.76,752.663 2352.76,723.271 \n", " 2352.76,693.878 2352.76,664.486 2352.76,635.093 2352.76,605.701 2352.76,576.308 2352.76,546.916 2352.76,517.523 2352.76,488.131 2352.76,458.739 2352.76,429.346 \n", " 2352.76,399.954 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 \n", " 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 \n", " 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 1909.75,47.2441 1865.45,47.2441 1821.14,47.2441 1776.84,47.2441 1732.54,47.2441 \n", " 1688.24,47.2441 1643.94,47.2441 1599.64,47.2441 1555.34,47.2441 1511.04,47.2441 1466.74,47.2441 1422.44,47.2441 1378.13,47.2441 1333.83,47.2441 1289.53,47.2441 \n", " 1245.23,47.2441 1200.93,47.2441 1156.63,47.2441 1112.33,47.2441 1068.03,47.2441 1023.73,47.2441 979.426,47.2441 935.125,47.2441 890.824,47.2441 846.523,47.2441 \n", " 802.222,47.2441 757.921,47.2441 713.62,47.2441 669.319,47.2441 625.018,47.2441 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 \n", " 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 \n", " 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 182.008,546.916 182.008,576.308 182.008,605.701 182.008,635.093 182.008,664.486 182.008,693.878 \n", " 182.008,723.271 182.008,752.663 182.008,782.056 182.008,811.448 182.008,840.841 182.008,870.233 182.008,899.625 182.008,929.018 182.008,958.41 182.008,987.803 \n", " 182.008,1017.2 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1068.03,1461.59 1112.33,1466.35 1156.63,1470.01 1200.93,1472.77 1245.23,1473.71 1289.53,1473.71 1333.83,1472.77 1378.13,1470.01 1422.44,1466.35 1466.74,1461.59 \n", " 1490.73,1458.08 1511.04,1455.08 1555.34,1447.58 1599.64,1438.74 1641.8,1428.69 1643.94,1428.17 1688.24,1416.41 1732.54,1403.04 1743.64,1399.3 1776.84,1387.71 \n", " 1821.14,1370.91 1823.56,1369.9 1865.45,1351.93 1889.79,1340.51 1909.75,1330.78 1947.53,1311.12 1954.05,1307.53 1997.38,1281.73 1998.35,1281.12 2041.74,1252.34 \n", " 2042.65,1251.69 2081.54,1222.94 2086.95,1218.62 2116.58,1193.55 2131.25,1180.31 2148.46,1164.16 2175.55,1136.37 2177.06,1134.77 2202.39,1105.37 2219.85,1083.34 \n", " 2225.5,1075.98 2245.65,1046.59 2263.37,1017.2 2264.15,1015.78 2279.31,987.803 2292.62,958.41 2303.93,929.018 2308.45,915.547 2313.75,899.625 2320.92,870.233 \n", " 2326.43,840.841 2330.59,811.448 2332,782.056 2332,752.663 2330.59,723.271 2326.43,693.878 2320.92,664.486 2313.75,635.093 2308.45,619.172 2303.93,605.701 \n", " 2292.62,576.308 2279.31,546.916 2264.15,518.94 2263.37,517.523 2245.65,488.131 2225.5,458.739 2219.85,451.375 2202.39,429.346 2177.06,399.954 2175.55,398.353 \n", " 2148.46,370.561 2131.25,354.406 2116.58,341.169 2086.95,316.102 2081.54,311.776 2042.65,283.024 2041.74,282.384 1998.35,253.594 1997.38,252.991 1954.05,227.186 \n", " 1947.53,223.599 1909.75,203.938 1889.79,194.206 1865.45,182.787 1823.56,164.814 1821.14,163.812 1776.84,147.005 1743.64,135.421 1732.54,131.675 1688.24,118.308 \n", " 1643.94,106.547 1641.8,106.029 1599.64,95.9738 1555.34,87.1433 1511.04,79.6389 1490.73,76.6366 1466.74,73.1252 1422.44,68.3679 1378.13,64.7112 1333.83,61.9516 \n", " 1289.53,61.0134 1245.23,61.0134 1200.93,61.9516 1156.63,64.7112 1112.33,68.3679 1068.03,73.1252 1044.03,76.6366 1023.73,79.6389 979.426,87.1433 935.125,95.9738 \n", " 892.959,106.029 890.824,106.547 846.523,118.308 802.222,131.675 791.124,135.421 757.921,147.005 713.62,163.812 711.208,164.814 669.319,182.787 644.97,194.206 \n", " 625.018,203.938 587.236,223.599 580.717,227.186 537.381,252.991 536.416,253.594 493.024,282.384 492.115,283.024 453.22,311.776 447.814,316.102 418.181,341.169 \n", " 403.513,354.406 386.302,370.561 359.212,398.353 357.702,399.954 332.37,429.346 314.911,451.375 309.265,458.739 289.117,488.131 271.391,517.523 270.61,518.94 \n", " 255.455,546.916 242.145,576.308 230.834,605.701 226.309,619.172 221.017,635.093 213.846,664.486 208.335,693.878 204.176,723.271 202.762,752.663 202.762,782.056 \n", " 204.176,811.448 208.335,840.841 213.846,870.233 221.017,899.625 226.309,915.547 230.834,929.018 242.145,958.41 255.455,987.803 270.61,1015.78 271.391,1017.2 \n", " 289.117,1046.59 309.265,1075.98 314.911,1083.34 332.37,1105.37 357.702,1134.77 359.212,1136.37 386.302,1164.16 403.513,1180.31 418.181,1193.55 447.814,1218.62 \n", " 453.22,1222.94 492.115,1251.69 493.024,1252.34 536.416,1281.12 537.381,1281.73 580.717,1307.53 587.236,1311.12 625.018,1330.78 644.97,1340.51 669.319,1351.93 \n", " 711.208,1369.9 713.62,1370.91 757.921,1387.71 791.124,1399.3 802.222,1403.04 846.523,1416.41 890.824,1428.17 892.959,1428.69 935.125,1438.74 979.426,1447.58 \n", " 1023.73,1455.08 1044.03,1458.08 1068.03,1461.59 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 669.319,1487.47 713.62,1487.47 757.921,1487.47 802.222,1487.47 846.523,1487.47 861.59,1487.47 846.523,1483.8 \n", " 802.222,1471.65 758.573,1458.08 757.921,1457.88 713.62,1442.8 676.329,1428.69 669.319,1425.96 625.018,1407.26 607.316,1399.3 580.717,1386.8 547.663,1369.9 \n", " 536.416,1363.94 495.044,1340.51 492.115,1338.78 447.814,1311.18 447.726,1311.12 406.126,1281.73 403.513,1279.78 368.208,1252.34 359.212,1244.87 333.75,1222.94 \n", " 314.911,1205.3 302.911,1193.55 274.72,1164.16 270.61,1159.51 249.349,1134.77 226.621,1105.37 226.309,1104.94 205.857,1075.98 187.543,1046.59 182.008,1036.59 \n", " 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1688.24,1487.47 1732.54,1487.47 1776.84,1487.47 1821.14,1487.47 1865.45,1487.47 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 \n", " 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 2352.76,1487.47 2352.76,1458.08 \n", " 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1164.16 \n", " 2352.76,1134.77 2352.76,1105.37 2352.76,1075.98 2352.76,1046.59 2352.76,1036.59 2347.22,1046.59 2328.91,1075.98 2308.45,1104.94 2308.14,1105.37 \n", " 2285.42,1134.77 2264.15,1159.51 2260.04,1164.16 2231.85,1193.55 2219.85,1205.3 2201.01,1222.94 2175.55,1244.87 2166.56,1252.34 2131.25,1279.78 2128.64,1281.73 \n", " 2087.04,1311.12 2086.95,1311.18 2042.65,1338.78 2039.72,1340.51 1998.35,1363.94 1987.1,1369.9 1954.05,1386.8 1927.45,1399.3 1909.75,1407.26 1865.45,1425.96 \n", " 1858.43,1428.69 1821.14,1442.8 1776.84,1457.88 1776.19,1458.08 1732.54,1471.65 1688.24,1483.8 1673.17,1487.47 1643.94,1487.47 1688.24,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,517.523 182.008,498.128 187.543,488.131 205.857,458.739 226.309,429.779 226.621,429.346 249.349,399.954 270.61,375.212 274.72,370.561 302.911,341.169 \n", " 314.911,329.424 333.75,311.776 359.212,289.846 368.208,282.384 403.513,254.934 406.126,252.991 447.726,223.599 447.814,223.541 492.115,195.94 495.044,194.206 \n", " 536.416,170.782 547.663,164.814 580.717,147.921 607.316,135.421 625.018,127.46 669.319,108.756 676.329,106.029 713.62,91.9229 757.921,76.8438 758.573,76.6366 \n", " 802.222,63.0669 846.523,50.9165 861.59,47.2441 846.523,47.2441 802.222,47.2441 757.921,47.2441 713.62,47.2441 669.319,47.2441 625.018,47.2441 \n", " 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 \n", " 182.008,76.6366 182.008,106.029 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 \n", " 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2352.76,498.128 2352.76,517.523 2352.76,488.131 2352.76,458.739 2352.76,429.346 2352.76,399.954 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 \n", " 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 \n", " 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 \n", " 1909.75,47.2441 1865.45,47.2441 1821.14,47.2441 1776.84,47.2441 1732.54,47.2441 1688.24,47.2441 1643.94,47.2441 1673.17,47.2441 1688.24,50.9165 1732.54,63.0669 \n", " 1776.19,76.6366 1776.84,76.8438 1821.14,91.9229 1858.43,106.029 1865.45,108.756 1909.75,127.46 1927.45,135.421 1954.05,147.921 1987.1,164.814 1998.35,170.782 \n", " 2039.72,194.206 2042.65,195.94 2086.95,223.541 2087.04,223.599 2128.64,252.991 2131.25,254.934 2166.56,282.384 2175.55,289.846 2201.01,311.776 2219.85,329.424 \n", " 2231.85,341.169 2260.04,370.561 2264.15,375.212 2285.42,399.954 2308.14,429.346 2308.45,429.779 2328.91,458.739 2347.22,488.131 2352.76,498.128 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 492.115,1487.47 536.416,1487.47 \n", " 580.717,1487.47 625.018,1487.47 641.814,1487.47 625.018,1480.96 580.717,1462.66 570.477,1458.08 536.416,1442.37 508.697,1428.69 492.115,1420.22 \n", " 453.258,1399.3 447.814,1396.21 404.44,1369.9 403.513,1369.32 360.095,1340.51 359.212,1339.9 319.559,1311.12 314.911,1307.51 283.371,1281.73 270.61,1270.73 \n", " 249.988,1252.34 226.309,1229.74 219.402,1222.94 191.826,1193.55 182.008,1182.41 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1909.75,1487.47 1954.05,1487.47 1998.35,1487.47 2042.65,1487.47 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 \n", " 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 \n", " 2352.76,1281.73 2352.76,1252.34 2352.76,1222.94 2352.76,1193.55 2352.76,1182.41 2342.94,1193.55 2315.36,1222.94 2308.45,1229.74 2284.78,1252.34 \n", " 2264.15,1270.73 2251.39,1281.73 2219.85,1307.51 2215.2,1311.12 2175.55,1339.9 2174.67,1340.51 2131.25,1369.32 2130.32,1369.9 2086.95,1396.21 2081.51,1399.3 \n", " 2042.65,1420.22 2026.07,1428.69 1998.35,1442.37 1964.29,1458.08 1954.05,1462.66 1909.75,1480.96 1892.95,1487.47 1865.45,1487.47 1909.75,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,370.561 182.008,352.312 191.826,341.169 219.402,311.776 226.309,304.983 249.988,282.384 270.61,263.993 283.371,252.991 314.911,227.211 319.559,223.599 \n", " 359.212,194.822 360.095,194.206 403.513,165.4 404.44,164.814 447.814,138.506 453.258,135.421 492.115,114.495 508.697,106.029 536.416,92.3468 570.477,76.6366 \n", " 580.717,72.0539 625.018,53.7583 641.814,47.2441 625.018,47.2441 580.717,47.2441 536.416,47.2441 492.115,47.2441 447.814,47.2441 403.513,47.2441 \n", " 359.212,47.2441 314.911,47.2441 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2352.76,352.312 2352.76,370.561 2352.76,341.169 2352.76,311.776 2352.76,282.384 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 \n", " 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 \n", " 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 1998.35,47.2441 1954.05,47.2441 1909.75,47.2441 1865.45,47.2441 1892.95,47.2441 1909.75,53.7583 1954.05,72.0539 \n", " 1964.29,76.6366 1998.35,92.3468 2026.07,106.029 2042.65,114.495 2081.51,135.421 2086.95,138.506 2130.32,164.814 2131.25,165.4 2174.67,194.206 2175.55,194.822 \n", " 2215.2,223.599 2219.85,227.211 2251.39,252.991 2264.15,263.993 2284.78,282.384 2308.45,304.983 2315.36,311.776 2342.94,341.169 2352.76,352.312 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 359.212,1487.47 403.513,1487.47 447.814,1487.47 469.984,1487.47 \n", " 447.814,1476.52 413.119,1458.08 403.513,1452.8 361.828,1428.69 359.212,1427.12 314.911,1399.33 314.857,1399.3 272.977,1369.9 270.61,1368.17 234.264,1340.51 \n", " 226.309,1334.14 198.524,1311.12 182.008,1296.41 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 \n", " 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2086.95,1487.47 2131.25,1487.47 2175.55,1487.47 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 2352.76,1487.47 \n", " 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 2352.76,1369.9 2352.76,1340.51 2352.76,1311.12 2352.76,1296.41 2336.24,1311.12 2308.45,1334.14 \n", " 2300.5,1340.51 2264.15,1368.17 2261.79,1369.9 2219.91,1399.3 2219.85,1399.33 2175.55,1427.12 2172.94,1428.69 2131.25,1452.8 2121.65,1458.08 2086.95,1476.52 \n", " 2064.78,1487.47 2042.65,1487.47 2086.95,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,252.991 182.008,238.308 198.524,223.599 226.309,200.58 234.264,194.206 270.61,166.549 272.977,164.814 314.857,135.421 314.911,135.386 359.212,107.6 \n", " 361.828,106.029 403.513,81.9145 413.119,76.6366 447.814,58.2023 469.984,47.2441 447.814,47.2441 403.513,47.2441 359.212,47.2441 314.911,47.2441 \n", " 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 182.008,135.421 182.008,164.814 \n", " 182.008,194.206 182.008,223.599 182.008,252.991 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2352.76,238.308 2352.76,252.991 2352.76,223.599 2352.76,194.206 2352.76,164.814 2352.76,135.421 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 \n", " 2308.45,47.2441 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 2131.25,47.2441 2086.95,47.2441 2042.65,47.2441 2064.78,47.2441 \n", " 2086.95,58.2023 2121.65,76.6366 2131.25,81.9145 2172.94,106.029 2175.55,107.6 2219.85,135.386 2219.91,135.421 2261.79,164.814 2264.15,166.549 2300.5,194.206 \n", " 2308.45,200.58 2336.24,223.599 2352.76,238.308 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 226.309,1487.47 270.61,1487.47 314.911,1487.47 319.62,1487.47 314.911,1484.75 271.541,1458.08 270.61,1457.49 \n", " 227.203,1428.69 226.309,1428.07 186.115,1399.3 182.008,1396.17 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2219.85,1487.47 2264.15,1487.47 2308.45,1487.47 2352.76,1487.47 2352.76,1458.08 2352.76,1428.69 2352.76,1399.3 \n", " 2352.76,1396.17 2348.65,1399.3 2308.45,1428.07 2307.56,1428.69 2264.15,1457.49 2263.22,1458.08 2219.85,1484.75 2215.14,1487.47 2175.55,1487.47 \n", " 2219.85,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,164.814 182.008,138.546 186.115,135.421 226.309,106.646 227.203,106.029 270.61,77.2298 271.541,76.6366 314.911,49.9692 319.62,47.2441 314.911,47.2441 \n", " 270.61,47.2441 226.309,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 182.008,135.421 \n", " 182.008,164.814 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2352.76,138.546 2352.76,164.814 2352.76,135.421 2352.76,106.029 2352.76,76.6366 2352.76,47.2441 2308.45,47.2441 \n", " 2264.15,47.2441 2219.85,47.2441 2175.55,47.2441 2215.14,47.2441 2219.85,49.9692 2263.22,76.6366 2264.15,77.2298 2307.56,106.029 2308.45,106.646 2348.65,135.421 \n", " 2352.76,138.546 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,92.2513 2352.76,92.2513 2352.76,47.2441 2284.92,47.2441 2284.92,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,92.2513 2284.92,92.2513 2284.92,47.2441 2217.08,47.2441 2217.08,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,137.259 2352.76,137.259 2352.76,92.2513 2284.92,92.2513 2284.92,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,137.259 2284.92,137.259 2284.92,92.2513 2217.08,92.2513 2217.08,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,92.2513 2217.08,92.2513 2217.08,47.2441 2149.25,47.2441 2149.25,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,92.2513 2149.25,92.2513 2149.25,47.2441 2081.41,47.2441 2081.41,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,137.259 2217.08,137.259 2217.08,92.2513 2149.25,92.2513 2149.25,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,137.259 2149.25,137.259 2149.25,92.2513 2081.41,92.2513 2081.41,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,182.266 2352.76,182.266 2352.76,137.259 2284.92,137.259 2284.92,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,182.266 2284.92,182.266 2284.92,137.259 2217.08,137.259 2217.08,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,227.273 2352.76,227.273 2352.76,182.266 2284.92,182.266 2284.92,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,227.273 2284.92,227.273 2284.92,182.266 2217.08,182.266 2217.08,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,182.266 2217.08,182.266 2217.08,137.259 2149.25,137.259 2149.25,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,182.266 2149.25,182.266 2149.25,137.259 2081.41,137.259 2081.41,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,227.273 2217.08,227.273 2217.08,182.266 2149.25,182.266 2149.25,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,227.273 2149.25,227.273 2149.25,182.266 2081.41,182.266 2081.41,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,92.2513 2081.41,92.2513 2081.41,47.2441 2013.58,47.2441 2013.58,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,92.2513 2013.58,92.2513 2013.58,47.2441 1945.74,47.2441 1945.74,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,137.259 2081.41,137.259 2081.41,92.2513 2013.58,92.2513 2013.58,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,137.259 2013.58,137.259 2013.58,92.2513 1945.74,92.2513 1945.74,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,92.2513 1945.74,92.2513 1945.74,47.2441 1877.9,47.2441 1877.9,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,92.2513 1877.9,92.2513 1877.9,47.2441 1810.07,47.2441 1810.07,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,137.259 1945.74,137.259 1945.74,92.2513 1877.9,92.2513 1877.9,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,137.259 1877.9,137.259 1877.9,92.2513 1810.07,92.2513 1810.07,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,182.266 2081.41,182.266 2081.41,137.259 2013.58,137.259 2013.58,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,182.266 2013.58,182.266 2013.58,137.259 1945.74,137.259 1945.74,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,227.273 2081.41,227.273 2081.41,182.266 2013.58,182.266 2013.58,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,227.273 2013.58,227.273 2013.58,182.266 1945.74,182.266 1945.74,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,182.266 1945.74,182.266 1945.74,137.259 1877.9,137.259 1877.9,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,182.266 1877.9,182.266 1877.9,137.259 1810.07,137.259 1810.07,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,227.273 1945.74,227.273 1945.74,182.266 1877.9,182.266 1877.9,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,227.273 1877.9,227.273 1877.9,182.266 1810.07,182.266 1810.07,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,272.28 2352.76,272.28 2352.76,227.273 2284.92,227.273 2284.92,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,272.28 2284.92,272.28 2284.92,227.273 2217.08,227.273 2217.08,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,317.287 2352.76,317.287 2352.76,272.28 2284.92,272.28 2284.92,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,317.287 2284.92,317.287 2284.92,272.28 2217.08,272.28 2217.08,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,272.28 2217.08,272.28 2217.08,227.273 2149.25,227.273 2149.25,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,272.28 2149.25,272.28 2149.25,227.273 2081.41,227.273 2081.41,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,317.287 2217.08,317.287 2217.08,272.28 2149.25,272.28 2149.25,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,317.287 2149.25,317.287 2149.25,272.28 2081.41,272.28 2081.41,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,362.295 2352.76,362.295 2352.76,317.287 2284.92,317.287 2284.92,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,362.295 2284.92,362.295 2284.92,317.287 2217.08,317.287 2217.08,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,407.302 2352.76,407.302 2352.76,362.295 2284.92,362.295 2284.92,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,407.302 2284.92,407.302 2284.92,362.295 2217.08,362.295 2217.08,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,362.295 2217.08,362.295 2217.08,317.287 2149.25,317.287 2149.25,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,362.295 2149.25,362.295 2149.25,317.287 2081.41,317.287 2081.41,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,407.302 2217.08,407.302 2217.08,362.295 2149.25,362.295 2149.25,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,407.302 2149.25,407.302 2149.25,362.295 2081.41,362.295 2081.41,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,272.28 2081.41,272.28 2081.41,227.273 2013.58,227.273 2013.58,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,272.28 2013.58,272.28 2013.58,227.273 1945.74,227.273 1945.74,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,317.287 2081.41,317.287 2081.41,272.28 2013.58,272.28 2013.58,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,317.287 2013.58,317.287 2013.58,272.28 1945.74,272.28 1945.74,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,272.28 1945.74,272.28 1945.74,227.273 1877.9,227.273 1877.9,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,272.28 1877.9,272.28 1877.9,227.273 1810.07,227.273 1810.07,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,317.287 1945.74,317.287 1945.74,272.28 1877.9,272.28 1877.9,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,317.287 1877.9,317.287 1877.9,272.28 1810.07,272.28 1810.07,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,362.295 2081.41,362.295 2081.41,317.287 2013.58,317.287 2013.58,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,362.295 2013.58,362.295 2013.58,317.287 1945.74,317.287 1945.74,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,407.302 2081.41,407.302 2081.41,362.295 2013.58,362.295 2013.58,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,407.302 2013.58,407.302 2013.58,362.295 1945.74,362.295 1945.74,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,362.295 1945.74,362.295 1945.74,317.287 1877.9,317.287 1877.9,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,362.295 1877.9,362.295 1877.9,317.287 1810.07,317.287 1810.07,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,407.302 1945.74,407.302 1945.74,362.295 1877.9,362.295 1877.9,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,407.302 1877.9,407.302 1877.9,362.295 1810.07,362.295 1810.07,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,92.2513 1810.07,92.2513 1810.07,47.2441 1742.23,47.2441 1742.23,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,92.2513 1742.23,92.2513 1742.23,47.2441 1674.4,47.2441 1674.4,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,137.259 1810.07,137.259 1810.07,92.2513 1742.23,92.2513 1742.23,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,137.259 1742.23,137.259 1742.23,92.2513 1674.4,92.2513 1674.4,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,92.2513 1674.4,92.2513 1674.4,47.2441 1606.56,47.2441 1606.56,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,92.2513 1606.56,92.2513 1606.56,47.2441 1538.73,47.2441 1538.73,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,137.259 1674.4,137.259 1674.4,92.2513 1606.56,92.2513 1606.56,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,137.259 1606.56,137.259 1606.56,92.2513 1538.73,92.2513 1538.73,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,182.266 1810.07,182.266 1810.07,137.259 1742.23,137.259 1742.23,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,182.266 1742.23,182.266 1742.23,137.259 1674.4,137.259 1674.4,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,227.273 1810.07,227.273 1810.07,182.266 1742.23,182.266 1742.23,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,227.273 1742.23,227.273 1742.23,182.266 1674.4,182.266 1674.4,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,182.266 1674.4,182.266 1674.4,137.259 1606.56,137.259 1606.56,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,182.266 1606.56,182.266 1606.56,137.259 1538.73,137.259 1538.73,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,227.273 1674.4,227.273 1674.4,182.266 1606.56,182.266 1606.56,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,227.273 1606.56,227.273 1606.56,182.266 1538.73,182.266 1538.73,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,92.2513 1538.73,92.2513 1538.73,47.2441 1470.89,47.2441 1470.89,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,92.2513 1470.89,92.2513 1470.89,47.2441 1403.05,47.2441 1403.05,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,137.259 1538.73,137.259 1538.73,92.2513 1470.89,92.2513 1470.89,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,137.259 1470.89,137.259 1470.89,92.2513 1403.05,92.2513 1403.05,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,92.2513 1403.05,92.2513 1403.05,47.2441 1335.22,47.2441 1335.22,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,92.2513 1335.22,92.2513 1335.22,47.2441 1267.38,47.2441 1267.38,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,137.259 1403.05,137.259 1403.05,92.2513 1335.22,92.2513 1335.22,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,137.259 1335.22,137.259 1335.22,92.2513 1267.38,92.2513 1267.38,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,182.266 1538.73,182.266 1538.73,137.259 1470.89,137.259 1470.89,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,182.266 1470.89,182.266 1470.89,137.259 1403.05,137.259 1403.05,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,227.273 1538.73,227.273 1538.73,182.266 1470.89,182.266 1470.89,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,227.273 1470.89,227.273 1470.89,182.266 1403.05,182.266 1403.05,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,182.266 1403.05,182.266 1403.05,137.259 1335.22,137.259 1335.22,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,182.266 1335.22,182.266 1335.22,137.259 1267.38,137.259 1267.38,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,227.273 1403.05,227.273 1403.05,182.266 1335.22,182.266 1335.22,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,227.273 1335.22,227.273 1335.22,182.266 1267.38,182.266 1267.38,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,272.28 1810.07,272.28 1810.07,227.273 1742.23,227.273 1742.23,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,272.28 1742.23,272.28 1742.23,227.273 1674.4,227.273 1674.4,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,317.287 1810.07,317.287 1810.07,272.28 1742.23,272.28 1742.23,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,317.287 1742.23,317.287 1742.23,272.28 1674.4,272.28 1674.4,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,272.28 1674.4,272.28 1674.4,227.273 1606.56,227.273 1606.56,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,272.28 1606.56,272.28 1606.56,227.273 1538.73,227.273 1538.73,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,317.287 1674.4,317.287 1674.4,272.28 1606.56,272.28 1606.56,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,317.287 1606.56,317.287 1606.56,272.28 1538.73,272.28 1538.73,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,362.295 1810.07,362.295 1810.07,317.287 1742.23,317.287 1742.23,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,362.295 1742.23,362.295 1742.23,317.287 1674.4,317.287 1674.4,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,407.302 1810.07,407.302 1810.07,362.295 1742.23,362.295 1742.23,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,407.302 1742.23,407.302 1742.23,362.295 1674.4,362.295 1674.4,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,362.295 1674.4,362.295 1674.4,317.287 1606.56,317.287 1606.56,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,362.295 1606.56,362.295 1606.56,317.287 1538.73,317.287 1538.73,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,407.302 1674.4,407.302 1674.4,362.295 1606.56,362.295 1606.56,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,407.302 1606.56,407.302 1606.56,362.295 1538.73,362.295 1538.73,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,272.28 1538.73,272.28 1538.73,227.273 1470.89,227.273 1470.89,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,272.28 1470.89,272.28 1470.89,227.273 1403.05,227.273 1403.05,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,317.287 1538.73,317.287 1538.73,272.28 1470.89,272.28 1470.89,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,317.287 1470.89,317.287 1470.89,272.28 1403.05,272.28 1403.05,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,272.28 1403.05,272.28 1403.05,227.273 1335.22,227.273 1335.22,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,272.28 1335.22,272.28 1335.22,227.273 1267.38,227.273 1267.38,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,317.287 1403.05,317.287 1403.05,272.28 1335.22,272.28 1335.22,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,317.287 1335.22,317.287 1335.22,272.28 1267.38,272.28 1267.38,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,362.295 1538.73,362.295 1538.73,317.287 1470.89,317.287 1470.89,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,362.295 1470.89,362.295 1470.89,317.287 1403.05,317.287 1403.05,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,407.302 1538.73,407.302 1538.73,362.295 1470.89,362.295 1470.89,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,407.302 1470.89,407.302 1470.89,362.295 1403.05,362.295 1403.05,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,362.295 1403.05,362.295 1403.05,317.287 1335.22,317.287 1335.22,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,362.295 1335.22,362.295 1335.22,317.287 1267.38,317.287 1267.38,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,407.302 1403.05,407.302 1403.05,362.295 1335.22,362.295 1335.22,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,407.302 1335.22,407.302 1335.22,362.295 1267.38,362.295 1267.38,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,452.309 2352.76,452.309 2352.76,407.302 2284.92,407.302 2284.92,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,452.309 2284.92,452.309 2284.92,407.302 2217.08,407.302 2217.08,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,497.316 2352.76,497.316 2352.76,452.309 2284.92,452.309 2284.92,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,497.316 2284.92,497.316 2284.92,452.309 2217.08,452.309 2217.08,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,452.309 2217.08,452.309 2217.08,407.302 2149.25,407.302 2149.25,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,452.309 2149.25,452.309 2149.25,407.302 2081.41,407.302 2081.41,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,497.316 2217.08,497.316 2217.08,452.309 2149.25,452.309 2149.25,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,497.316 2149.25,497.316 2149.25,452.309 2081.41,452.309 2081.41,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,542.323 2352.76,542.323 2352.76,497.316 2284.92,497.316 2284.92,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,542.323 2284.92,542.323 2284.92,497.316 2217.08,497.316 2217.08,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,587.331 2352.76,587.331 2352.76,542.323 2284.92,542.323 2284.92,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,587.331 2284.92,587.331 2284.92,542.323 2217.08,542.323 2217.08,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,542.323 2217.08,542.323 2217.08,497.316 2149.25,497.316 2149.25,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,542.323 2149.25,542.323 2149.25,497.316 2081.41,497.316 2081.41,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,587.331 2217.08,587.331 2217.08,542.323 2149.25,542.323 2149.25,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,587.331 2149.25,587.331 2149.25,542.323 2081.41,542.323 2081.41,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,452.309 2081.41,452.309 2081.41,407.302 2013.58,407.302 2013.58,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,452.309 2013.58,452.309 2013.58,407.302 1945.74,407.302 1945.74,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,497.316 2081.41,497.316 2081.41,452.309 2013.58,452.309 2013.58,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,497.316 2013.58,497.316 2013.58,452.309 1945.74,452.309 1945.74,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,452.309 1945.74,452.309 1945.74,407.302 1877.9,407.302 1877.9,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,452.309 1877.9,452.309 1877.9,407.302 1810.07,407.302 1810.07,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,497.316 1945.74,497.316 1945.74,452.309 1877.9,452.309 1877.9,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,497.316 1877.9,497.316 1877.9,452.309 1810.07,452.309 1810.07,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,542.323 2081.41,542.323 2081.41,497.316 2013.58,497.316 2013.58,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,542.323 2013.58,542.323 2013.58,497.316 1945.74,497.316 1945.74,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,587.331 2081.41,587.331 2081.41,542.323 2013.58,542.323 2013.58,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,587.331 2013.58,587.331 2013.58,542.323 1945.74,542.323 1945.74,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,542.323 1945.74,542.323 1945.74,497.316 1877.9,497.316 1877.9,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,542.323 1877.9,542.323 1877.9,497.316 1810.07,497.316 1810.07,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,587.331 1945.74,587.331 1945.74,542.323 1877.9,542.323 1877.9,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,587.331 1877.9,587.331 1877.9,542.323 1810.07,542.323 1810.07,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,632.338 2352.76,632.338 2352.76,587.331 2284.92,587.331 2284.92,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,632.338 2284.92,632.338 2284.92,587.331 2217.08,587.331 2217.08,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,677.345 2352.76,677.345 2352.76,632.338 2284.92,632.338 2284.92,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,677.345 2284.92,677.345 2284.92,632.338 2217.08,632.338 2217.08,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,632.338 2217.08,632.338 2217.08,587.331 2149.25,587.331 2149.25,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,632.338 2149.25,632.338 2149.25,587.331 2081.41,587.331 2081.41,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,677.345 2217.08,677.345 2217.08,632.338 2149.25,632.338 2149.25,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,677.345 2149.25,677.345 2149.25,632.338 2081.41,632.338 2081.41,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,722.352 2352.76,722.352 2352.76,677.345 2284.92,677.345 2284.92,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,722.352 2284.92,722.352 2284.92,677.345 2217.08,677.345 2217.08,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,767.359 2352.76,767.359 2352.76,722.352 2284.92,722.352 2284.92,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,767.359 2284.92,767.359 2284.92,722.352 2217.08,722.352 2217.08,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,722.352 2217.08,722.352 2217.08,677.345 2149.25,677.345 2149.25,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,722.352 2149.25,722.352 2149.25,677.345 2081.41,677.345 2081.41,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,767.359 2217.08,767.359 2217.08,722.352 2149.25,722.352 2149.25,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,767.359 2149.25,767.359 2149.25,722.352 2081.41,722.352 2081.41,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,632.338 2081.41,632.338 2081.41,587.331 2013.58,587.331 2013.58,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,632.338 2013.58,632.338 2013.58,587.331 1945.74,587.331 1945.74,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,677.345 2081.41,677.345 2081.41,632.338 2013.58,632.338 2013.58,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,677.345 2013.58,677.345 2013.58,632.338 1945.74,632.338 1945.74,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,632.338 1945.74,632.338 1945.74,587.331 1877.9,587.331 1877.9,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,632.338 1877.9,632.338 1877.9,587.331 1810.07,587.331 1810.07,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,677.345 1945.74,677.345 1945.74,632.338 1877.9,632.338 1877.9,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,677.345 1877.9,677.345 1877.9,632.338 1810.07,632.338 1810.07,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,722.352 2081.41,722.352 2081.41,677.345 2013.58,677.345 2013.58,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,722.352 2013.58,722.352 2013.58,677.345 1945.74,677.345 1945.74,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,767.359 2081.41,767.359 2081.41,722.352 2013.58,722.352 2013.58,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,767.359 2013.58,767.359 2013.58,722.352 1945.74,722.352 1945.74,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,722.352 1945.74,722.352 1945.74,677.345 1877.9,677.345 1877.9,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,722.352 1877.9,722.352 1877.9,677.345 1810.07,677.345 1810.07,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,767.359 1945.74,767.359 1945.74,722.352 1877.9,722.352 1877.9,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,767.359 1877.9,767.359 1877.9,722.352 1810.07,722.352 1810.07,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,452.309 1810.07,452.309 1810.07,407.302 1742.23,407.302 1742.23,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,452.309 1742.23,452.309 1742.23,407.302 1674.4,407.302 1674.4,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,497.316 1810.07,497.316 1810.07,452.309 1742.23,452.309 1742.23,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,497.316 1742.23,497.316 1742.23,452.309 1674.4,452.309 1674.4,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,452.309 1674.4,452.309 1674.4,407.302 1606.56,407.302 1606.56,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,452.309 1606.56,452.309 1606.56,407.302 1538.73,407.302 1538.73,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,497.316 1674.4,497.316 1674.4,452.309 1606.56,452.309 1606.56,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,497.316 1606.56,497.316 1606.56,452.309 1538.73,452.309 1538.73,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,542.323 1810.07,542.323 1810.07,497.316 1742.23,497.316 1742.23,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,542.323 1742.23,542.323 1742.23,497.316 1674.4,497.316 1674.4,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,587.331 1810.07,587.331 1810.07,542.323 1742.23,542.323 1742.23,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,587.331 1742.23,587.331 1742.23,542.323 1674.4,542.323 1674.4,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1640.48,519.82 1674.4,519.82 1674.4,497.316 1640.48,497.316 1640.48,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,519.82 1640.48,519.82 1640.48,497.316 1606.56,497.316 1606.56,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1640.48,542.323 1674.4,542.323 1674.4,519.82 1640.48,519.82 1640.48,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,542.323 1640.48,542.323 1640.48,519.82 1606.56,519.82 1606.56,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1572.64,519.82 1606.56,519.82 1606.56,497.316 1572.64,497.316 1572.64,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,519.82 1572.64,519.82 1572.64,497.316 1538.73,497.316 1538.73,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1572.64,542.323 1606.56,542.323 1606.56,519.82 1572.64,519.82 1572.64,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,542.323 1572.64,542.323 1572.64,519.82 1538.73,519.82 1538.73,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1640.48,564.827 1674.4,564.827 1674.4,542.323 1640.48,542.323 1640.48,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,564.827 1640.48,564.827 1640.48,542.323 1606.56,542.323 1606.56,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1640.48,587.331 1674.4,587.331 1674.4,564.827 1640.48,564.827 1640.48,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,587.331 1640.48,587.331 1640.48,564.827 1606.56,564.827 1606.56,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1572.64,564.827 1606.56,564.827 1606.56,542.323 1572.64,542.323 1572.64,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,564.827 1572.64,564.827 1572.64,542.323 1538.73,542.323 1538.73,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1572.64,587.331 1606.56,587.331 1606.56,564.827 1572.64,564.827 1572.64,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,587.331 1572.64,587.331 1572.64,564.827 1538.73,564.827 1538.73,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,452.309 1538.73,452.309 1538.73,407.302 1470.89,407.302 1470.89,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,452.309 1470.89,452.309 1470.89,407.302 1403.05,407.302 1403.05,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,474.813 1538.73,474.813 1538.73,452.309 1504.81,452.309 1504.81,474.813 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,474.813 1504.81,474.813 1504.81,452.309 1470.89,452.309 1470.89,474.813 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,497.316 1538.73,497.316 1538.73,474.813 1504.81,474.813 1504.81,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,497.316 1504.81,497.316 1504.81,474.813 1470.89,474.813 1470.89,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,474.813 1470.89,474.813 1470.89,452.309 1436.97,452.309 1436.97,474.813 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,474.813 1436.97,474.813 1436.97,452.309 1403.05,452.309 1403.05,474.813 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,497.316 1470.89,497.316 1470.89,474.813 1436.97,474.813 1436.97,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,497.316 1436.97,497.316 1436.97,474.813 1403.05,474.813 1403.05,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,429.805 1403.05,429.805 1403.05,407.302 1369.14,407.302 1369.14,429.805 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,429.805 1369.14,429.805 1369.14,407.302 1335.22,407.302 1335.22,429.805 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,452.309 1403.05,452.309 1403.05,429.805 1369.14,429.805 1369.14,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,452.309 1369.14,452.309 1369.14,429.805 1335.22,429.805 1335.22,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,429.805 1335.22,429.805 1335.22,407.302 1301.3,407.302 1301.3,429.805 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,429.805 1301.3,429.805 1301.3,407.302 1267.38,407.302 1267.38,429.805 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,452.309 1335.22,452.309 1335.22,429.805 1301.3,429.805 1301.3,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,452.309 1301.3,452.309 1301.3,429.805 1267.38,429.805 1267.38,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,474.813 1403.05,474.813 1403.05,452.309 1369.14,452.309 1369.14,474.813 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,474.813 1369.14,474.813 1369.14,452.309 1335.22,452.309 1335.22,474.813 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,497.316 1403.05,497.316 1403.05,474.813 1369.14,474.813 1369.14,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,497.316 1369.14,497.316 1369.14,474.813 1335.22,474.813 1335.22,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,474.813 1335.22,474.813 1335.22,452.309 1301.3,452.309 1301.3,474.813 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,474.813 1301.3,474.813 1301.3,452.309 1267.38,452.309 1267.38,474.813 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,497.316 1335.22,497.316 1335.22,474.813 1301.3,474.813 1301.3,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,497.316 1301.3,497.316 1301.3,474.813 1267.38,474.813 1267.38,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,519.82 1538.73,519.82 1538.73,497.316 1504.81,497.316 1504.81,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,519.82 1504.81,519.82 1504.81,497.316 1470.89,497.316 1470.89,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,542.323 1538.73,542.323 1538.73,519.82 1504.81,519.82 1504.81,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,542.323 1504.81,542.323 1504.81,519.82 1470.89,519.82 1470.89,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,519.82 1470.89,519.82 1470.89,497.316 1436.97,497.316 1436.97,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,519.82 1436.97,519.82 1436.97,497.316 1403.05,497.316 1403.05,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,542.323 1470.89,542.323 1470.89,519.82 1436.97,519.82 1436.97,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,542.323 1436.97,542.323 1436.97,519.82 1403.05,519.82 1403.05,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,564.827 1538.73,564.827 1538.73,542.323 1504.81,542.323 1504.81,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,564.827 1504.81,564.827 1504.81,542.323 1470.89,542.323 1470.89,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,587.331 1538.73,587.331 1538.73,564.827 1504.81,564.827 1504.81,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,587.331 1504.81,587.331 1504.81,564.827 1470.89,564.827 1470.89,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,564.827 1470.89,564.827 1470.89,542.323 1436.97,542.323 1436.97,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,564.827 1436.97,564.827 1436.97,542.323 1403.05,542.323 1403.05,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,587.331 1470.89,587.331 1470.89,564.827 1436.97,564.827 1436.97,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,587.331 1436.97,587.331 1436.97,564.827 1403.05,564.827 1403.05,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,519.82 1403.05,519.82 1403.05,497.316 1369.14,497.316 1369.14,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,519.82 1369.14,519.82 1369.14,497.316 1335.22,497.316 1335.22,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,542.323 1403.05,542.323 1403.05,519.82 1369.14,519.82 1369.14,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,542.323 1369.14,542.323 1369.14,519.82 1335.22,519.82 1335.22,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,519.82 1335.22,519.82 1335.22,497.316 1301.3,497.316 1301.3,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,519.82 1301.3,519.82 1301.3,497.316 1267.38,497.316 1267.38,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,542.323 1335.22,542.323 1335.22,519.82 1301.3,519.82 1301.3,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,542.323 1301.3,542.323 1301.3,519.82 1267.38,519.82 1267.38,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,564.827 1403.05,564.827 1403.05,542.323 1369.14,542.323 1369.14,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,564.827 1369.14,564.827 1369.14,542.323 1335.22,542.323 1335.22,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,587.331 1403.05,587.331 1403.05,564.827 1369.14,564.827 1369.14,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,587.331 1369.14,587.331 1369.14,564.827 1335.22,564.827 1335.22,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,564.827 1335.22,564.827 1335.22,542.323 1301.3,542.323 1301.3,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,564.827 1301.3,564.827 1301.3,542.323 1267.38,542.323 1267.38,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,587.331 1335.22,587.331 1335.22,564.827 1301.3,564.827 1301.3,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,587.331 1301.3,587.331 1301.3,564.827 1267.38,564.827 1267.38,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,632.338 1810.07,632.338 1810.07,587.331 1742.23,587.331 1742.23,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1708.32,609.834 1742.23,609.834 1742.23,587.331 1708.32,587.331 1708.32,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,609.834 1708.32,609.834 1708.32,587.331 1674.4,587.331 1674.4,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1708.32,632.338 1742.23,632.338 1742.23,609.834 1708.32,609.834 1708.32,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,632.338 1708.32,632.338 1708.32,609.834 1674.4,609.834 1674.4,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,677.345 1810.07,677.345 1810.07,632.338 1742.23,632.338 1742.23,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1708.32,654.841 1742.23,654.841 1742.23,632.338 1708.32,632.338 1708.32,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,654.841 1708.32,654.841 1708.32,632.338 1674.4,632.338 1674.4,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1708.32,677.345 1742.23,677.345 1742.23,654.841 1708.32,654.841 1708.32,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,677.345 1708.32,677.345 1708.32,654.841 1674.4,654.841 1674.4,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1640.48,609.834 1674.4,609.834 1674.4,587.331 1640.48,587.331 1640.48,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,609.834 1640.48,609.834 1640.48,587.331 1606.56,587.331 1606.56,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1640.48,632.338 1674.4,632.338 1674.4,609.834 1640.48,609.834 1640.48,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,632.338 1640.48,632.338 1640.48,609.834 1606.56,609.834 1606.56,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1572.64,609.834 1606.56,609.834 1606.56,587.331 1572.64,587.331 1572.64,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,609.834 1572.64,609.834 1572.64,587.331 1538.73,587.331 1538.73,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1572.64,632.338 1606.56,632.338 1606.56,609.834 1572.64,609.834 1572.64,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,632.338 1572.64,632.338 1572.64,609.834 1538.73,609.834 1538.73,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1640.48,654.841 1674.4,654.841 1674.4,632.338 1640.48,632.338 1640.48,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,654.841 1640.48,654.841 1640.48,632.338 1606.56,632.338 1606.56,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1640.48,677.345 1674.4,677.345 1674.4,654.841 1640.48,654.841 1640.48,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,677.345 1640.48,677.345 1640.48,654.841 1606.56,654.841 1606.56,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1572.64,654.841 1606.56,654.841 1606.56,632.338 1572.64,632.338 1572.64,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,654.841 1572.64,654.841 1572.64,632.338 1538.73,632.338 1538.73,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1572.64,677.345 1606.56,677.345 1606.56,654.841 1572.64,654.841 1572.64,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,677.345 1572.64,677.345 1572.64,654.841 1538.73,654.841 1538.73,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1776.15,699.849 1810.07,699.849 1810.07,677.345 1776.15,677.345 1776.15,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,699.849 1776.15,699.849 1776.15,677.345 1742.23,677.345 1742.23,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1776.15,722.352 1810.07,722.352 1810.07,699.849 1776.15,699.849 1776.15,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,722.352 1776.15,722.352 1776.15,699.849 1742.23,699.849 1742.23,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1708.32,699.849 1742.23,699.849 1742.23,677.345 1708.32,677.345 1708.32,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,699.849 1708.32,699.849 1708.32,677.345 1674.4,677.345 1674.4,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1708.32,722.352 1742.23,722.352 1742.23,699.849 1708.32,699.849 1708.32,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,722.352 1708.32,722.352 1708.32,699.849 1674.4,699.849 1674.4,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1776.15,744.856 1810.07,744.856 1810.07,722.352 1776.15,722.352 1776.15,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,744.856 1776.15,744.856 1776.15,722.352 1742.23,722.352 1742.23,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1776.15,767.359 1810.07,767.359 1810.07,744.856 1776.15,744.856 1776.15,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,767.359 1776.15,767.359 1776.15,744.856 1742.23,744.856 1742.23,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1708.32,744.856 1742.23,744.856 1742.23,722.352 1708.32,722.352 1708.32,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,744.856 1708.32,744.856 1708.32,722.352 1674.4,722.352 1674.4,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1708.32,767.359 1742.23,767.359 1742.23,744.856 1708.32,744.856 1708.32,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,767.359 1708.32,767.359 1708.32,744.856 1674.4,744.856 1674.4,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1640.48,699.849 1674.4,699.849 1674.4,677.345 1640.48,677.345 1640.48,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,699.849 1640.48,699.849 1640.48,677.345 1606.56,677.345 1606.56,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1640.48,722.352 1674.4,722.352 1674.4,699.849 1640.48,699.849 1640.48,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,722.352 1640.48,722.352 1640.48,699.849 1606.56,699.849 1606.56,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1572.64,699.849 1606.56,699.849 1606.56,677.345 1572.64,677.345 1572.64,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,699.849 1572.64,699.849 1572.64,677.345 1538.73,677.345 1538.73,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1572.64,722.352 1606.56,722.352 1606.56,699.849 1572.64,699.849 1572.64,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,722.352 1572.64,722.352 1572.64,699.849 1538.73,699.849 1538.73,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1640.48,744.856 1674.4,744.856 1674.4,722.352 1640.48,722.352 1640.48,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,744.856 1640.48,744.856 1640.48,722.352 1606.56,722.352 1606.56,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1640.48,767.359 1674.4,767.359 1674.4,744.856 1640.48,744.856 1640.48,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,767.359 1640.48,767.359 1640.48,744.856 1606.56,744.856 1606.56,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1572.64,744.856 1606.56,744.856 1606.56,722.352 1572.64,722.352 1572.64,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,744.856 1572.64,744.856 1572.64,722.352 1538.73,722.352 1538.73,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1572.64,767.359 1606.56,767.359 1606.56,744.856 1572.64,744.856 1572.64,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,767.359 1572.64,767.359 1572.64,744.856 1538.73,744.856 1538.73,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,609.834 1538.73,609.834 1538.73,587.331 1504.81,587.331 1504.81,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,609.834 1504.81,609.834 1504.81,587.331 1470.89,587.331 1470.89,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,632.338 1538.73,632.338 1538.73,609.834 1504.81,609.834 1504.81,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,632.338 1504.81,632.338 1504.81,609.834 1470.89,609.834 1470.89,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,609.834 1470.89,609.834 1470.89,587.331 1436.97,587.331 1436.97,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,609.834 1436.97,609.834 1436.97,587.331 1403.05,587.331 1403.05,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,632.338 1470.89,632.338 1470.89,609.834 1436.97,609.834 1436.97,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,632.338 1436.97,632.338 1436.97,609.834 1403.05,609.834 1403.05,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,654.841 1538.73,654.841 1538.73,632.338 1504.81,632.338 1504.81,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,654.841 1504.81,654.841 1504.81,632.338 1470.89,632.338 1470.89,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,677.345 1538.73,677.345 1538.73,654.841 1504.81,654.841 1504.81,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,677.345 1504.81,677.345 1504.81,654.841 1470.89,654.841 1470.89,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,654.841 1470.89,654.841 1470.89,632.338 1436.97,632.338 1436.97,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,654.841 1436.97,654.841 1436.97,632.338 1403.05,632.338 1403.05,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,677.345 1470.89,677.345 1470.89,654.841 1436.97,654.841 1436.97,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,677.345 1436.97,677.345 1436.97,654.841 1403.05,654.841 1403.05,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,609.834 1403.05,609.834 1403.05,587.331 1369.14,587.331 1369.14,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,609.834 1369.14,609.834 1369.14,587.331 1335.22,587.331 1335.22,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,632.338 1403.05,632.338 1403.05,609.834 1369.14,609.834 1369.14,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,632.338 1369.14,632.338 1369.14,609.834 1335.22,609.834 1335.22,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,609.834 1335.22,609.834 1335.22,587.331 1301.3,587.331 1301.3,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,609.834 1301.3,609.834 1301.3,587.331 1267.38,587.331 1267.38,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,632.338 1335.22,632.338 1335.22,609.834 1301.3,609.834 1301.3,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,632.338 1301.3,632.338 1301.3,609.834 1267.38,609.834 1267.38,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,654.841 1403.05,654.841 1403.05,632.338 1369.14,632.338 1369.14,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,654.841 1369.14,654.841 1369.14,632.338 1335.22,632.338 1335.22,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,677.345 1403.05,677.345 1403.05,654.841 1369.14,654.841 1369.14,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,677.345 1369.14,677.345 1369.14,654.841 1335.22,654.841 1335.22,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,654.841 1335.22,654.841 1335.22,632.338 1301.3,632.338 1301.3,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,654.841 1301.3,654.841 1301.3,632.338 1267.38,632.338 1267.38,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,677.345 1335.22,677.345 1335.22,654.841 1301.3,654.841 1301.3,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,677.345 1301.3,677.345 1301.3,654.841 1267.38,654.841 1267.38,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,699.849 1538.73,699.849 1538.73,677.345 1504.81,677.345 1504.81,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,699.849 1504.81,699.849 1504.81,677.345 1470.89,677.345 1470.89,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,722.352 1538.73,722.352 1538.73,699.849 1504.81,699.849 1504.81,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,722.352 1504.81,722.352 1504.81,699.849 1470.89,699.849 1470.89,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,699.849 1470.89,699.849 1470.89,677.345 1436.97,677.345 1436.97,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,699.849 1436.97,699.849 1436.97,677.345 1403.05,677.345 1403.05,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,722.352 1470.89,722.352 1470.89,699.849 1436.97,699.849 1436.97,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,722.352 1436.97,722.352 1436.97,699.849 1403.05,699.849 1403.05,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,744.856 1538.73,744.856 1538.73,722.352 1504.81,722.352 1504.81,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,744.856 1504.81,744.856 1504.81,722.352 1470.89,722.352 1470.89,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,767.359 1538.73,767.359 1538.73,744.856 1504.81,744.856 1504.81,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,767.359 1504.81,767.359 1504.81,744.856 1470.89,744.856 1470.89,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,744.856 1470.89,744.856 1470.89,722.352 1436.97,722.352 1436.97,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,744.856 1436.97,744.856 1436.97,722.352 1403.05,722.352 1403.05,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,767.359 1470.89,767.359 1470.89,744.856 1436.97,744.856 1436.97,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,767.359 1436.97,767.359 1436.97,744.856 1403.05,744.856 1403.05,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,699.849 1403.05,699.849 1403.05,677.345 1369.14,677.345 1369.14,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,699.849 1369.14,699.849 1369.14,677.345 1335.22,677.345 1335.22,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,722.352 1403.05,722.352 1403.05,699.849 1369.14,699.849 1369.14,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1352.18,711.1 1369.14,711.1 1369.14,699.849 1352.18,699.849 1352.18,711.1 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,711.1 1352.18,711.1 1352.18,699.849 1335.22,699.849 1335.22,711.1 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1352.18,722.352 1369.14,722.352 1369.14,711.1 1352.18,711.1 1352.18,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,722.352 1352.18,722.352 1352.18,711.1 1335.22,711.1 1335.22,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1318.26,688.597 1335.22,688.597 1335.22,677.345 1318.26,677.345 1318.26,688.597 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,688.597 1318.26,688.597 1318.26,677.345 1301.3,677.345 1301.3,688.597 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1318.26,699.849 1335.22,699.849 1335.22,688.597 1318.26,688.597 1318.26,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,699.849 1318.26,699.849 1318.26,688.597 1301.3,688.597 1301.3,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1284.34,688.597 1301.3,688.597 1301.3,677.345 1284.34,677.345 1284.34,688.597 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,688.597 1284.34,688.597 1284.34,677.345 1267.38,677.345 1267.38,688.597 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1284.34,699.849 1301.3,699.849 1301.3,688.597 1284.34,688.597 1284.34,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,699.849 1284.34,699.849 1284.34,688.597 1267.38,688.597 1267.38,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1318.26,711.1 1335.22,711.1 1335.22,699.849 1318.26,699.849 1318.26,711.1 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,711.1 1318.26,711.1 1318.26,699.849 1301.3,699.849 1301.3,711.1 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1318.26,722.352 1335.22,722.352 1335.22,711.1 1318.26,711.1 1318.26,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,722.352 1318.26,722.352 1318.26,711.1 1301.3,711.1 1301.3,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1284.34,711.1 1301.3,711.1 1301.3,699.849 1284.34,699.849 1284.34,711.1 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,711.1 1284.34,711.1 1284.34,699.849 1267.38,699.849 1267.38,711.1 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1284.34,722.352 1301.3,722.352 1301.3,711.1 1284.34,711.1 1284.34,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,722.352 1284.34,722.352 1284.34,711.1 1267.38,711.1 1267.38,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.09,733.604 1403.05,733.604 1403.05,722.352 1386.09,722.352 1386.09,733.604 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,733.604 1386.09,733.604 1386.09,722.352 1369.14,722.352 1369.14,733.604 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.09,744.856 1403.05,744.856 1403.05,733.604 1386.09,733.604 1386.09,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,744.856 1386.09,744.856 1386.09,733.604 1369.14,733.604 1369.14,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1352.18,733.604 1369.14,733.604 1369.14,722.352 1352.18,722.352 1352.18,733.604 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,733.604 1352.18,733.604 1352.18,722.352 1335.22,722.352 1335.22,733.604 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1352.18,744.856 1369.14,744.856 1369.14,733.604 1352.18,733.604 1352.18,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,744.856 1352.18,744.856 1352.18,733.604 1335.22,733.604 1335.22,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.09,756.108 1403.05,756.108 1403.05,744.856 1386.09,744.856 1386.09,756.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,756.108 1386.09,756.108 1386.09,744.856 1369.14,744.856 1369.14,756.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.09,767.359 1403.05,767.359 1403.05,756.108 1386.09,756.108 1386.09,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,767.359 1386.09,767.359 1386.09,756.108 1369.14,756.108 1369.14,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1352.18,756.108 1369.14,756.108 1369.14,744.856 1352.18,744.856 1352.18,756.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,756.108 1352.18,756.108 1352.18,744.856 1335.22,744.856 1335.22,756.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1352.18,767.359 1369.14,767.359 1369.14,756.108 1352.18,756.108 1352.18,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,767.359 1352.18,767.359 1352.18,756.108 1335.22,756.108 1335.22,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1318.26,733.604 1335.22,733.604 1335.22,722.352 1318.26,722.352 1318.26,733.604 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,733.604 1318.26,733.604 1318.26,722.352 1301.3,722.352 1301.3,733.604 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1318.26,744.856 1335.22,744.856 1335.22,733.604 1318.26,733.604 1318.26,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,744.856 1318.26,744.856 1318.26,733.604 1301.3,733.604 1301.3,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1284.34,733.604 1301.3,733.604 1301.3,722.352 1284.34,722.352 1284.34,733.604 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,733.604 1284.34,733.604 1284.34,722.352 1267.38,722.352 1267.38,733.604 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1284.34,744.856 1301.3,744.856 1301.3,733.604 1284.34,733.604 1284.34,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,744.856 1284.34,744.856 1284.34,733.604 1267.38,733.604 1267.38,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1318.26,756.108 1335.22,756.108 1335.22,744.856 1318.26,744.856 1318.26,756.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,756.108 1318.26,756.108 1318.26,744.856 1301.3,744.856 1301.3,756.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1318.26,767.359 1335.22,767.359 1335.22,756.108 1318.26,756.108 1318.26,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,767.359 1318.26,767.359 1318.26,756.108 1301.3,756.108 1301.3,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1284.34,756.108 1301.3,756.108 1301.3,744.856 1284.34,744.856 1284.34,756.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1275.86,750.482 1284.34,750.482 1284.34,744.856 1275.86,744.856 1275.86,750.482 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,750.482 1275.86,750.482 1275.86,744.856 1267.38,744.856 1267.38,750.482 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1275.86,756.108 1284.34,756.108 1284.34,750.482 1275.86,750.482 1275.86,756.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,756.108 1275.86,756.108 1275.86,750.482 1267.38,750.482 1267.38,756.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.82,761.734 1301.3,761.734 1301.3,756.108 1292.82,756.108 1292.82,761.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1284.34,761.734 1292.82,761.734 1292.82,756.108 1284.34,756.108 1284.34,761.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.82,767.359 1301.3,767.359 1301.3,761.734 1292.82,761.734 1292.82,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1284.34,767.359 1292.82,767.359 1292.82,761.734 1284.34,761.734 1284.34,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1275.86,761.734 1284.34,761.734 1284.34,756.108 1275.86,756.108 1275.86,761.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,761.734 1275.86,761.734 1275.86,756.108 1267.38,756.108 1267.38,761.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1275.86,767.359 1284.34,767.359 1284.34,761.734 1275.86,761.734 1275.86,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.62,764.546 1275.86,764.546 1275.86,761.734 1271.62,761.734 1271.62,764.546 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,764.546 1271.62,764.546 1271.62,761.734 1267.38,761.734 1267.38,764.546 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.62,767.359 1275.86,767.359 1275.86,764.546 1271.62,764.546 1271.62,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,767.359 1271.62,767.359 1271.62,764.546 1267.38,764.546 1267.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,92.2513 1267.38,92.2513 1267.38,47.2441 1199.55,47.2441 1199.55,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,92.2513 1199.55,92.2513 1199.55,47.2441 1131.71,47.2441 1131.71,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,137.259 1267.38,137.259 1267.38,92.2513 1199.55,92.2513 1199.55,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,137.259 1199.55,137.259 1199.55,92.2513 1131.71,92.2513 1131.71,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,92.2513 1131.71,92.2513 1131.71,47.2441 1063.87,47.2441 1063.87,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,92.2513 1063.87,92.2513 1063.87,47.2441 996.039,47.2441 996.039,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,137.259 1131.71,137.259 1131.71,92.2513 1063.87,92.2513 1063.87,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,137.259 1063.87,137.259 1063.87,92.2513 996.039,92.2513 996.039,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,182.266 1267.38,182.266 1267.38,137.259 1199.55,137.259 1199.55,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,182.266 1199.55,182.266 1199.55,137.259 1131.71,137.259 1131.71,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,227.273 1267.38,227.273 1267.38,182.266 1199.55,182.266 1199.55,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,227.273 1199.55,227.273 1199.55,182.266 1131.71,182.266 1131.71,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,182.266 1131.71,182.266 1131.71,137.259 1063.87,137.259 1063.87,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,182.266 1063.87,182.266 1063.87,137.259 996.039,137.259 996.039,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,227.273 1131.71,227.273 1131.71,182.266 1063.87,182.266 1063.87,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,227.273 1063.87,227.273 1063.87,182.266 996.039,182.266 996.039,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,92.2513 996.039,92.2513 996.039,47.2441 928.203,47.2441 928.203,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,92.2513 928.203,92.2513 928.203,47.2441 860.367,47.2441 860.367,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,137.259 996.039,137.259 996.039,92.2513 928.203,92.2513 928.203,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,137.259 928.203,137.259 928.203,92.2513 860.367,92.2513 860.367,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,92.2513 860.367,92.2513 860.367,47.2441 792.531,47.2441 792.531,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,92.2513 792.531,92.2513 792.531,47.2441 724.695,47.2441 724.695,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,137.259 860.367,137.259 860.367,92.2513 792.531,92.2513 792.531,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,137.259 792.531,137.259 792.531,92.2513 724.695,92.2513 724.695,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,182.266 996.039,182.266 996.039,137.259 928.203,137.259 928.203,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,182.266 928.203,182.266 928.203,137.259 860.367,137.259 860.367,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,227.273 996.039,227.273 996.039,182.266 928.203,182.266 928.203,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,227.273 928.203,227.273 928.203,182.266 860.367,182.266 860.367,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,182.266 860.367,182.266 860.367,137.259 792.531,137.259 792.531,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,182.266 792.531,182.266 792.531,137.259 724.695,137.259 724.695,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,227.273 860.367,227.273 860.367,182.266 792.531,182.266 792.531,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,227.273 792.531,227.273 792.531,182.266 724.695,182.266 724.695,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,272.28 1267.38,272.28 1267.38,227.273 1199.55,227.273 1199.55,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,272.28 1199.55,272.28 1199.55,227.273 1131.71,227.273 1131.71,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,317.287 1267.38,317.287 1267.38,272.28 1199.55,272.28 1199.55,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,317.287 1199.55,317.287 1199.55,272.28 1131.71,272.28 1131.71,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,272.28 1131.71,272.28 1131.71,227.273 1063.87,227.273 1063.87,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,272.28 1063.87,272.28 1063.87,227.273 996.039,227.273 996.039,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,317.287 1131.71,317.287 1131.71,272.28 1063.87,272.28 1063.87,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,317.287 1063.87,317.287 1063.87,272.28 996.039,272.28 996.039,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,362.295 1267.38,362.295 1267.38,317.287 1199.55,317.287 1199.55,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,362.295 1199.55,362.295 1199.55,317.287 1131.71,317.287 1131.71,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,407.302 1267.38,407.302 1267.38,362.295 1199.55,362.295 1199.55,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,407.302 1199.55,407.302 1199.55,362.295 1131.71,362.295 1131.71,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,362.295 1131.71,362.295 1131.71,317.287 1063.87,317.287 1063.87,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,362.295 1063.87,362.295 1063.87,317.287 996.039,317.287 996.039,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,407.302 1131.71,407.302 1131.71,362.295 1063.87,362.295 1063.87,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,407.302 1063.87,407.302 1063.87,362.295 996.039,362.295 996.039,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,272.28 996.039,272.28 996.039,227.273 928.203,227.273 928.203,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,272.28 928.203,272.28 928.203,227.273 860.367,227.273 860.367,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,317.287 996.039,317.287 996.039,272.28 928.203,272.28 928.203,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,317.287 928.203,317.287 928.203,272.28 860.367,272.28 860.367,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,272.28 860.367,272.28 860.367,227.273 792.531,227.273 792.531,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,272.28 792.531,272.28 792.531,227.273 724.695,227.273 724.695,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,317.287 860.367,317.287 860.367,272.28 792.531,272.28 792.531,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,317.287 792.531,317.287 792.531,272.28 724.695,272.28 724.695,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,362.295 996.039,362.295 996.039,317.287 928.203,317.287 928.203,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,362.295 928.203,362.295 928.203,317.287 860.367,317.287 860.367,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,407.302 996.039,407.302 996.039,362.295 928.203,362.295 928.203,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,407.302 928.203,407.302 928.203,362.295 860.367,362.295 860.367,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,362.295 860.367,362.295 860.367,317.287 792.531,317.287 792.531,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,362.295 792.531,362.295 792.531,317.287 724.695,317.287 724.695,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,407.302 860.367,407.302 860.367,362.295 792.531,362.295 792.531,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,407.302 792.531,407.302 792.531,362.295 724.695,362.295 724.695,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,92.2513 724.695,92.2513 724.695,47.2441 656.859,47.2441 656.859,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,92.2513 656.859,92.2513 656.859,47.2441 589.023,47.2441 589.023,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,137.259 724.695,137.259 724.695,92.2513 656.859,92.2513 656.859,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,137.259 656.859,137.259 656.859,92.2513 589.023,92.2513 589.023,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,92.2513 589.023,92.2513 589.023,47.2441 521.187,47.2441 521.187,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,92.2513 521.187,92.2513 521.187,47.2441 453.352,47.2441 453.352,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,137.259 589.023,137.259 589.023,92.2513 521.187,92.2513 521.187,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,137.259 521.187,137.259 521.187,92.2513 453.352,92.2513 453.352,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,182.266 724.695,182.266 724.695,137.259 656.859,137.259 656.859,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,182.266 656.859,182.266 656.859,137.259 589.023,137.259 589.023,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,227.273 724.695,227.273 724.695,182.266 656.859,182.266 656.859,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,227.273 656.859,227.273 656.859,182.266 589.023,182.266 589.023,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,182.266 589.023,182.266 589.023,137.259 521.187,137.259 521.187,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,182.266 521.187,182.266 521.187,137.259 453.352,137.259 453.352,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,227.273 589.023,227.273 589.023,182.266 521.187,182.266 521.187,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,227.273 521.187,227.273 521.187,182.266 453.352,182.266 453.352,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,92.2513 453.352,92.2513 453.352,47.2441 385.516,47.2441 385.516,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,92.2513 385.516,92.2513 385.516,47.2441 317.68,47.2441 317.68,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,137.259 453.352,137.259 453.352,92.2513 385.516,92.2513 385.516,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,137.259 385.516,137.259 385.516,92.2513 317.68,92.2513 317.68,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,92.2513 317.68,92.2513 317.68,47.2441 249.844,47.2441 249.844,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,92.2513 249.844,92.2513 249.844,47.2441 182.008,47.2441 182.008,92.2513 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,137.259 317.68,137.259 317.68,92.2513 249.844,92.2513 249.844,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,137.259 249.844,137.259 249.844,92.2513 182.008,92.2513 182.008,137.259 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,182.266 453.352,182.266 453.352,137.259 385.516,137.259 385.516,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,182.266 385.516,182.266 385.516,137.259 317.68,137.259 317.68,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,227.273 453.352,227.273 453.352,182.266 385.516,182.266 385.516,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,227.273 385.516,227.273 385.516,182.266 317.68,182.266 317.68,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,182.266 317.68,182.266 317.68,137.259 249.844,137.259 249.844,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,182.266 249.844,182.266 249.844,137.259 182.008,137.259 182.008,182.266 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,227.273 317.68,227.273 317.68,182.266 249.844,182.266 249.844,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,227.273 249.844,227.273 249.844,182.266 182.008,182.266 182.008,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,272.28 724.695,272.28 724.695,227.273 656.859,227.273 656.859,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,272.28 656.859,272.28 656.859,227.273 589.023,227.273 589.023,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,317.287 724.695,317.287 724.695,272.28 656.859,272.28 656.859,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,317.287 656.859,317.287 656.859,272.28 589.023,272.28 589.023,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,272.28 589.023,272.28 589.023,227.273 521.187,227.273 521.187,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,272.28 521.187,272.28 521.187,227.273 453.352,227.273 453.352,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,317.287 589.023,317.287 589.023,272.28 521.187,272.28 521.187,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,317.287 521.187,317.287 521.187,272.28 453.352,272.28 453.352,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,362.295 724.695,362.295 724.695,317.287 656.859,317.287 656.859,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,362.295 656.859,362.295 656.859,317.287 589.023,317.287 589.023,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,407.302 724.695,407.302 724.695,362.295 656.859,362.295 656.859,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,407.302 656.859,407.302 656.859,362.295 589.023,362.295 589.023,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,362.295 589.023,362.295 589.023,317.287 521.187,317.287 521.187,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,362.295 521.187,362.295 521.187,317.287 453.352,317.287 453.352,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,407.302 589.023,407.302 589.023,362.295 521.187,362.295 521.187,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,407.302 521.187,407.302 521.187,362.295 453.352,362.295 453.352,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,272.28 453.352,272.28 453.352,227.273 385.516,227.273 385.516,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,272.28 385.516,272.28 385.516,227.273 317.68,227.273 317.68,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,317.287 453.352,317.287 453.352,272.28 385.516,272.28 385.516,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,317.287 385.516,317.287 385.516,272.28 317.68,272.28 317.68,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,272.28 317.68,272.28 317.68,227.273 249.844,227.273 249.844,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,272.28 249.844,272.28 249.844,227.273 182.008,227.273 182.008,272.28 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,317.287 317.68,317.287 317.68,272.28 249.844,272.28 249.844,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,317.287 249.844,317.287 249.844,272.28 182.008,272.28 182.008,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,362.295 453.352,362.295 453.352,317.287 385.516,317.287 385.516,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,362.295 385.516,362.295 385.516,317.287 317.68,317.287 317.68,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,407.302 453.352,407.302 453.352,362.295 385.516,362.295 385.516,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,407.302 385.516,407.302 385.516,362.295 317.68,362.295 317.68,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,362.295 317.68,362.295 317.68,317.287 249.844,317.287 249.844,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,362.295 249.844,362.295 249.844,317.287 182.008,317.287 182.008,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,407.302 317.68,407.302 317.68,362.295 249.844,362.295 249.844,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,407.302 249.844,407.302 249.844,362.295 182.008,362.295 182.008,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,429.805 1267.38,429.805 1267.38,407.302 1233.46,407.302 1233.46,429.805 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,429.805 1233.46,429.805 1233.46,407.302 1199.55,407.302 1199.55,429.805 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,452.309 1267.38,452.309 1267.38,429.805 1233.46,429.805 1233.46,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,452.309 1233.46,452.309 1233.46,429.805 1199.55,429.805 1199.55,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,429.805 1199.55,429.805 1199.55,407.302 1165.63,407.302 1165.63,429.805 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,429.805 1165.63,429.805 1165.63,407.302 1131.71,407.302 1131.71,429.805 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,452.309 1199.55,452.309 1199.55,429.805 1165.63,429.805 1165.63,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,452.309 1165.63,452.309 1165.63,429.805 1131.71,429.805 1131.71,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,474.813 1267.38,474.813 1267.38,452.309 1233.46,452.309 1233.46,474.813 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,474.813 1233.46,474.813 1233.46,452.309 1199.55,452.309 1199.55,474.813 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,497.316 1267.38,497.316 1267.38,474.813 1233.46,474.813 1233.46,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,497.316 1233.46,497.316 1233.46,474.813 1199.55,474.813 1199.55,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,474.813 1199.55,474.813 1199.55,452.309 1165.63,452.309 1165.63,474.813 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,474.813 1165.63,474.813 1165.63,452.309 1131.71,452.309 1131.71,474.813 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,497.316 1199.55,497.316 1199.55,474.813 1165.63,474.813 1165.63,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,497.316 1165.63,497.316 1165.63,474.813 1131.71,474.813 1131.71,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,452.309 1131.71,452.309 1131.71,407.302 1063.87,407.302 1063.87,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,452.309 1063.87,452.309 1063.87,407.302 996.039,407.302 996.039,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,474.813 1131.71,474.813 1131.71,452.309 1097.79,452.309 1097.79,474.813 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,474.813 1097.79,474.813 1097.79,452.309 1063.87,452.309 1063.87,474.813 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,497.316 1131.71,497.316 1131.71,474.813 1097.79,474.813 1097.79,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,497.316 1097.79,497.316 1097.79,474.813 1063.87,474.813 1063.87,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,474.813 1063.87,474.813 1063.87,452.309 1029.96,452.309 1029.96,474.813 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,474.813 1029.96,474.813 1029.96,452.309 996.039,452.309 996.039,474.813 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,497.316 1063.87,497.316 1063.87,474.813 1029.96,474.813 1029.96,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,497.316 1029.96,497.316 1029.96,474.813 996.039,474.813 996.039,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,519.82 1267.38,519.82 1267.38,497.316 1233.46,497.316 1233.46,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,519.82 1233.46,519.82 1233.46,497.316 1199.55,497.316 1199.55,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,542.323 1267.38,542.323 1267.38,519.82 1233.46,519.82 1233.46,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,542.323 1233.46,542.323 1233.46,519.82 1199.55,519.82 1199.55,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,519.82 1199.55,519.82 1199.55,497.316 1165.63,497.316 1165.63,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,519.82 1165.63,519.82 1165.63,497.316 1131.71,497.316 1131.71,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,542.323 1199.55,542.323 1199.55,519.82 1165.63,519.82 1165.63,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,542.323 1165.63,542.323 1165.63,519.82 1131.71,519.82 1131.71,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,564.827 1267.38,564.827 1267.38,542.323 1233.46,542.323 1233.46,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,564.827 1233.46,564.827 1233.46,542.323 1199.55,542.323 1199.55,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,587.331 1267.38,587.331 1267.38,564.827 1233.46,564.827 1233.46,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,587.331 1233.46,587.331 1233.46,564.827 1199.55,564.827 1199.55,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,564.827 1199.55,564.827 1199.55,542.323 1165.63,542.323 1165.63,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,564.827 1165.63,564.827 1165.63,542.323 1131.71,542.323 1131.71,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,587.331 1199.55,587.331 1199.55,564.827 1165.63,564.827 1165.63,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,587.331 1165.63,587.331 1165.63,564.827 1131.71,564.827 1131.71,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,519.82 1131.71,519.82 1131.71,497.316 1097.79,497.316 1097.79,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,519.82 1097.79,519.82 1097.79,497.316 1063.87,497.316 1063.87,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,542.323 1131.71,542.323 1131.71,519.82 1097.79,519.82 1097.79,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,542.323 1097.79,542.323 1097.79,519.82 1063.87,519.82 1063.87,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,519.82 1063.87,519.82 1063.87,497.316 1029.96,497.316 1029.96,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,519.82 1029.96,519.82 1029.96,497.316 996.039,497.316 996.039,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,542.323 1063.87,542.323 1063.87,519.82 1029.96,519.82 1029.96,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,542.323 1029.96,542.323 1029.96,519.82 996.039,519.82 996.039,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,564.827 1131.71,564.827 1131.71,542.323 1097.79,542.323 1097.79,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,564.827 1097.79,564.827 1097.79,542.323 1063.87,542.323 1063.87,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,587.331 1131.71,587.331 1131.71,564.827 1097.79,564.827 1097.79,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,587.331 1097.79,587.331 1097.79,564.827 1063.87,564.827 1063.87,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,564.827 1063.87,564.827 1063.87,542.323 1029.96,542.323 1029.96,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,564.827 1029.96,564.827 1029.96,542.323 996.039,542.323 996.039,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,587.331 1063.87,587.331 1063.87,564.827 1029.96,564.827 1029.96,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,587.331 1029.96,587.331 1029.96,564.827 996.039,564.827 996.039,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,452.309 996.039,452.309 996.039,407.302 928.203,407.302 928.203,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,452.309 928.203,452.309 928.203,407.302 860.367,407.302 860.367,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,497.316 996.039,497.316 996.039,452.309 928.203,452.309 928.203,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,497.316 928.203,497.316 928.203,452.309 860.367,452.309 860.367,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,452.309 860.367,452.309 860.367,407.302 792.531,407.302 792.531,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,452.309 792.531,452.309 792.531,407.302 724.695,407.302 724.695,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,497.316 860.367,497.316 860.367,452.309 792.531,452.309 792.531,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,497.316 792.531,497.316 792.531,452.309 724.695,452.309 724.695,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 962.121,519.82 996.039,519.82 996.039,497.316 962.121,497.316 962.121,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,519.82 962.121,519.82 962.121,497.316 928.203,497.316 928.203,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 962.121,542.323 996.039,542.323 996.039,519.82 962.121,519.82 962.121,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,542.323 962.121,542.323 962.121,519.82 928.203,519.82 928.203,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 894.285,519.82 928.203,519.82 928.203,497.316 894.285,497.316 894.285,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,519.82 894.285,519.82 894.285,497.316 860.367,497.316 860.367,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 894.285,542.323 928.203,542.323 928.203,519.82 894.285,519.82 894.285,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,542.323 894.285,542.323 894.285,519.82 860.367,519.82 860.367,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 962.121,564.827 996.039,564.827 996.039,542.323 962.121,542.323 962.121,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,564.827 962.121,564.827 962.121,542.323 928.203,542.323 928.203,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 962.121,587.331 996.039,587.331 996.039,564.827 962.121,564.827 962.121,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,587.331 962.121,587.331 962.121,564.827 928.203,564.827 928.203,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 894.285,564.827 928.203,564.827 928.203,542.323 894.285,542.323 894.285,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,564.827 894.285,564.827 894.285,542.323 860.367,542.323 860.367,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 894.285,587.331 928.203,587.331 928.203,564.827 894.285,564.827 894.285,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,587.331 894.285,587.331 894.285,564.827 860.367,564.827 860.367,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,542.323 860.367,542.323 860.367,497.316 792.531,497.316 792.531,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,542.323 792.531,542.323 792.531,497.316 724.695,497.316 724.695,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,587.331 860.367,587.331 860.367,542.323 792.531,542.323 792.531,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,587.331 792.531,587.331 792.531,542.323 724.695,542.323 724.695,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,609.834 1267.38,609.834 1267.38,587.331 1233.46,587.331 1233.46,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,609.834 1233.46,609.834 1233.46,587.331 1199.55,587.331 1199.55,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,632.338 1267.38,632.338 1267.38,609.834 1233.46,609.834 1233.46,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,632.338 1233.46,632.338 1233.46,609.834 1199.55,609.834 1199.55,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,609.834 1199.55,609.834 1199.55,587.331 1165.63,587.331 1165.63,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,609.834 1165.63,609.834 1165.63,587.331 1131.71,587.331 1131.71,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,632.338 1199.55,632.338 1199.55,609.834 1165.63,609.834 1165.63,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,632.338 1165.63,632.338 1165.63,609.834 1131.71,609.834 1131.71,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,654.841 1267.38,654.841 1267.38,632.338 1233.46,632.338 1233.46,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,654.841 1233.46,654.841 1233.46,632.338 1199.55,632.338 1199.55,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,677.345 1267.38,677.345 1267.38,654.841 1233.46,654.841 1233.46,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,677.345 1233.46,677.345 1233.46,654.841 1199.55,654.841 1199.55,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,654.841 1199.55,654.841 1199.55,632.338 1165.63,632.338 1165.63,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,654.841 1165.63,654.841 1165.63,632.338 1131.71,632.338 1131.71,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,677.345 1199.55,677.345 1199.55,654.841 1165.63,654.841 1165.63,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,677.345 1165.63,677.345 1165.63,654.841 1131.71,654.841 1131.71,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,609.834 1131.71,609.834 1131.71,587.331 1097.79,587.331 1097.79,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,609.834 1097.79,609.834 1097.79,587.331 1063.87,587.331 1063.87,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,632.338 1131.71,632.338 1131.71,609.834 1097.79,609.834 1097.79,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,632.338 1097.79,632.338 1097.79,609.834 1063.87,609.834 1063.87,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,609.834 1063.87,609.834 1063.87,587.331 1029.96,587.331 1029.96,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,609.834 1029.96,609.834 1029.96,587.331 996.039,587.331 996.039,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,632.338 1063.87,632.338 1063.87,609.834 1029.96,609.834 1029.96,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,632.338 1029.96,632.338 1029.96,609.834 996.039,609.834 996.039,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,654.841 1131.71,654.841 1131.71,632.338 1097.79,632.338 1097.79,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,654.841 1097.79,654.841 1097.79,632.338 1063.87,632.338 1063.87,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,677.345 1131.71,677.345 1131.71,654.841 1097.79,654.841 1097.79,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,677.345 1097.79,677.345 1097.79,654.841 1063.87,654.841 1063.87,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,654.841 1063.87,654.841 1063.87,632.338 1029.96,632.338 1029.96,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,654.841 1029.96,654.841 1029.96,632.338 996.039,632.338 996.039,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,677.345 1063.87,677.345 1063.87,654.841 1029.96,654.841 1029.96,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,677.345 1029.96,677.345 1029.96,654.841 996.039,654.841 996.039,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.42,688.597 1267.38,688.597 1267.38,677.345 1250.42,677.345 1250.42,688.597 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,688.597 1250.42,688.597 1250.42,677.345 1233.46,677.345 1233.46,688.597 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.42,699.849 1267.38,699.849 1267.38,688.597 1250.42,688.597 1250.42,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,699.849 1250.42,699.849 1250.42,688.597 1233.46,688.597 1233.46,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1216.51,688.597 1233.46,688.597 1233.46,677.345 1216.51,677.345 1216.51,688.597 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,688.597 1216.51,688.597 1216.51,677.345 1199.55,677.345 1199.55,688.597 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1216.51,699.849 1233.46,699.849 1233.46,688.597 1216.51,688.597 1216.51,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,699.849 1216.51,699.849 1216.51,688.597 1199.55,688.597 1199.55,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.42,711.1 1267.38,711.1 1267.38,699.849 1250.42,699.849 1250.42,711.1 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,711.1 1250.42,711.1 1250.42,699.849 1233.46,699.849 1233.46,711.1 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.42,722.352 1267.38,722.352 1267.38,711.1 1250.42,711.1 1250.42,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,722.352 1250.42,722.352 1250.42,711.1 1233.46,711.1 1233.46,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1216.51,711.1 1233.46,711.1 1233.46,699.849 1216.51,699.849 1216.51,711.1 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,711.1 1216.51,711.1 1216.51,699.849 1199.55,699.849 1199.55,711.1 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1216.51,722.352 1233.46,722.352 1233.46,711.1 1216.51,711.1 1216.51,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,722.352 1216.51,722.352 1216.51,711.1 1199.55,711.1 1199.55,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,699.849 1199.55,699.849 1199.55,677.345 1165.63,677.345 1165.63,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,699.849 1165.63,699.849 1165.63,677.345 1131.71,677.345 1131.71,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1182.59,711.1 1199.55,711.1 1199.55,699.849 1182.59,699.849 1182.59,711.1 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,711.1 1182.59,711.1 1182.59,699.849 1165.63,699.849 1165.63,711.1 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1182.59,722.352 1199.55,722.352 1199.55,711.1 1182.59,711.1 1182.59,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,722.352 1182.59,722.352 1182.59,711.1 1165.63,711.1 1165.63,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,722.352 1165.63,722.352 1165.63,699.849 1131.71,699.849 1131.71,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.42,733.604 1267.38,733.604 1267.38,722.352 1250.42,722.352 1250.42,733.604 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,733.604 1250.42,733.604 1250.42,722.352 1233.46,722.352 1233.46,733.604 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.42,744.856 1267.38,744.856 1267.38,733.604 1250.42,733.604 1250.42,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,744.856 1250.42,744.856 1250.42,733.604 1233.46,733.604 1233.46,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1216.51,733.604 1233.46,733.604 1233.46,722.352 1216.51,722.352 1216.51,733.604 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,733.604 1216.51,733.604 1216.51,722.352 1199.55,722.352 1199.55,733.604 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1216.51,744.856 1233.46,744.856 1233.46,733.604 1216.51,733.604 1216.51,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,744.856 1216.51,744.856 1216.51,733.604 1199.55,733.604 1199.55,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1258.9,750.482 1267.38,750.482 1267.38,744.856 1258.9,744.856 1258.9,750.482 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.42,750.482 1258.9,750.482 1258.9,744.856 1250.42,744.856 1250.42,750.482 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1258.9,756.108 1267.38,756.108 1267.38,750.482 1258.9,750.482 1258.9,756.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.42,756.108 1258.9,756.108 1258.9,750.482 1250.42,750.482 1250.42,756.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,756.108 1250.42,756.108 1250.42,744.856 1233.46,744.856 1233.46,756.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1258.9,761.734 1267.38,761.734 1267.38,756.108 1258.9,756.108 1258.9,761.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.42,761.734 1258.9,761.734 1258.9,756.108 1250.42,756.108 1250.42,761.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1263.14,764.546 1267.38,764.546 1267.38,761.734 1263.14,761.734 1263.14,764.546 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1258.9,764.546 1263.14,764.546 1263.14,761.734 1258.9,761.734 1258.9,764.546 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1263.14,767.359 1267.38,767.359 1267.38,764.546 1263.14,764.546 1263.14,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1258.9,767.359 1263.14,767.359 1263.14,764.546 1258.9,764.546 1258.9,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.42,767.359 1258.9,767.359 1258.9,761.734 1250.42,761.734 1250.42,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1241.94,761.734 1250.42,761.734 1250.42,756.108 1241.94,756.108 1241.94,761.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,761.734 1241.94,761.734 1241.94,756.108 1233.46,756.108 1233.46,761.734 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1241.94,767.359 1250.42,767.359 1250.42,761.734 1241.94,761.734 1241.94,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,767.359 1241.94,767.359 1241.94,761.734 1233.46,761.734 1233.46,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1216.51,756.108 1233.46,756.108 1233.46,744.856 1216.51,744.856 1216.51,756.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,756.108 1216.51,756.108 1216.51,744.856 1199.55,744.856 1199.55,756.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1216.51,767.359 1233.46,767.359 1233.46,756.108 1216.51,756.108 1216.51,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,767.359 1216.51,767.359 1216.51,756.108 1199.55,756.108 1199.55,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1182.59,733.604 1199.55,733.604 1199.55,722.352 1182.59,722.352 1182.59,733.604 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,733.604 1182.59,733.604 1182.59,722.352 1165.63,722.352 1165.63,733.604 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1182.59,744.856 1199.55,744.856 1199.55,733.604 1182.59,733.604 1182.59,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,744.856 1182.59,744.856 1182.59,733.604 1165.63,733.604 1165.63,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1148.67,733.604 1165.63,733.604 1165.63,722.352 1148.67,722.352 1148.67,733.604 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,733.604 1148.67,733.604 1148.67,722.352 1131.71,722.352 1131.71,733.604 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1148.67,744.856 1165.63,744.856 1165.63,733.604 1148.67,733.604 1148.67,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,744.856 1148.67,744.856 1148.67,733.604 1131.71,733.604 1131.71,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1182.59,756.108 1199.55,756.108 1199.55,744.856 1182.59,744.856 1182.59,756.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,756.108 1182.59,756.108 1182.59,744.856 1165.63,744.856 1165.63,756.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1182.59,767.359 1199.55,767.359 1199.55,756.108 1182.59,756.108 1182.59,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,767.359 1182.59,767.359 1182.59,756.108 1165.63,756.108 1165.63,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1148.67,756.108 1165.63,756.108 1165.63,744.856 1148.67,744.856 1148.67,756.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,756.108 1148.67,756.108 1148.67,744.856 1131.71,744.856 1131.71,756.108 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1148.67,767.359 1165.63,767.359 1165.63,756.108 1148.67,756.108 1148.67,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,767.359 1148.67,767.359 1148.67,756.108 1131.71,756.108 1131.71,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,699.849 1131.71,699.849 1131.71,677.345 1097.79,677.345 1097.79,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,699.849 1097.79,699.849 1097.79,677.345 1063.87,677.345 1063.87,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,722.352 1131.71,722.352 1131.71,699.849 1097.79,699.849 1097.79,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,722.352 1097.79,722.352 1097.79,699.849 1063.87,699.849 1063.87,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,699.849 1063.87,699.849 1063.87,677.345 1029.96,677.345 1029.96,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,699.849 1029.96,699.849 1029.96,677.345 996.039,677.345 996.039,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,722.352 1063.87,722.352 1063.87,699.849 1029.96,699.849 1029.96,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,722.352 1029.96,722.352 1029.96,699.849 996.039,699.849 996.039,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,744.856 1131.71,744.856 1131.71,722.352 1097.79,722.352 1097.79,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,744.856 1097.79,744.856 1097.79,722.352 1063.87,722.352 1063.87,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,767.359 1131.71,767.359 1131.71,744.856 1097.79,744.856 1097.79,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,767.359 1097.79,767.359 1097.79,744.856 1063.87,744.856 1063.87,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,744.856 1063.87,744.856 1063.87,722.352 1029.96,722.352 1029.96,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,744.856 1029.96,744.856 1029.96,722.352 996.039,722.352 996.039,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,767.359 1063.87,767.359 1063.87,744.856 1029.96,744.856 1029.96,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,767.359 1029.96,767.359 1029.96,744.856 996.039,744.856 996.039,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 962.121,609.834 996.039,609.834 996.039,587.331 962.121,587.331 962.121,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,609.834 962.121,609.834 962.121,587.331 928.203,587.331 928.203,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 962.121,632.338 996.039,632.338 996.039,609.834 962.121,609.834 962.121,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,632.338 962.121,632.338 962.121,609.834 928.203,609.834 928.203,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 894.285,609.834 928.203,609.834 928.203,587.331 894.285,587.331 894.285,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,609.834 894.285,609.834 894.285,587.331 860.367,587.331 860.367,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 894.285,632.338 928.203,632.338 928.203,609.834 894.285,609.834 894.285,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,632.338 894.285,632.338 894.285,609.834 860.367,609.834 860.367,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 962.121,654.841 996.039,654.841 996.039,632.338 962.121,632.338 962.121,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,654.841 962.121,654.841 962.121,632.338 928.203,632.338 928.203,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 962.121,677.345 996.039,677.345 996.039,654.841 962.121,654.841 962.121,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,677.345 962.121,677.345 962.121,654.841 928.203,654.841 928.203,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 894.285,654.841 928.203,654.841 928.203,632.338 894.285,632.338 894.285,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,654.841 894.285,654.841 894.285,632.338 860.367,632.338 860.367,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 894.285,677.345 928.203,677.345 928.203,654.841 894.285,654.841 894.285,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,677.345 894.285,677.345 894.285,654.841 860.367,654.841 860.367,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 826.449,609.834 860.367,609.834 860.367,587.331 826.449,587.331 826.449,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,609.834 826.449,609.834 826.449,587.331 792.531,587.331 792.531,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 826.449,632.338 860.367,632.338 860.367,609.834 826.449,609.834 826.449,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,632.338 826.449,632.338 826.449,609.834 792.531,609.834 792.531,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,632.338 792.531,632.338 792.531,587.331 724.695,587.331 724.695,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 826.449,654.841 860.367,654.841 860.367,632.338 826.449,632.338 826.449,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,654.841 826.449,654.841 826.449,632.338 792.531,632.338 792.531,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 826.449,677.345 860.367,677.345 860.367,654.841 826.449,654.841 826.449,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,677.345 826.449,677.345 826.449,654.841 792.531,654.841 792.531,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,677.345 792.531,677.345 792.531,632.338 724.695,632.338 724.695,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 962.121,699.849 996.039,699.849 996.039,677.345 962.121,677.345 962.121,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,699.849 962.121,699.849 962.121,677.345 928.203,677.345 928.203,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 962.121,722.352 996.039,722.352 996.039,699.849 962.121,699.849 962.121,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,722.352 962.121,722.352 962.121,699.849 928.203,699.849 928.203,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 894.285,699.849 928.203,699.849 928.203,677.345 894.285,677.345 894.285,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,699.849 894.285,699.849 894.285,677.345 860.367,677.345 860.367,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 894.285,722.352 928.203,722.352 928.203,699.849 894.285,699.849 894.285,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,722.352 894.285,722.352 894.285,699.849 860.367,699.849 860.367,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 962.121,744.856 996.039,744.856 996.039,722.352 962.121,722.352 962.121,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,744.856 962.121,744.856 962.121,722.352 928.203,722.352 928.203,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 962.121,767.359 996.039,767.359 996.039,744.856 962.121,744.856 962.121,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,767.359 962.121,767.359 962.121,744.856 928.203,744.856 928.203,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 894.285,744.856 928.203,744.856 928.203,722.352 894.285,722.352 894.285,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,744.856 894.285,744.856 894.285,722.352 860.367,722.352 860.367,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 894.285,767.359 928.203,767.359 928.203,744.856 894.285,744.856 894.285,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,767.359 894.285,767.359 894.285,744.856 860.367,744.856 860.367,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 826.449,699.849 860.367,699.849 860.367,677.345 826.449,677.345 826.449,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,699.849 826.449,699.849 826.449,677.345 792.531,677.345 792.531,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 826.449,722.352 860.367,722.352 860.367,699.849 826.449,699.849 826.449,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,722.352 826.449,722.352 826.449,699.849 792.531,699.849 792.531,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 758.613,699.849 792.531,699.849 792.531,677.345 758.613,677.345 758.613,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,699.849 758.613,699.849 758.613,677.345 724.695,677.345 724.695,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 758.613,722.352 792.531,722.352 792.531,699.849 758.613,699.849 758.613,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,722.352 758.613,722.352 758.613,699.849 724.695,699.849 724.695,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 826.449,744.856 860.367,744.856 860.367,722.352 826.449,722.352 826.449,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,744.856 826.449,744.856 826.449,722.352 792.531,722.352 792.531,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 826.449,767.359 860.367,767.359 860.367,744.856 826.449,744.856 826.449,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,767.359 826.449,767.359 826.449,744.856 792.531,744.856 792.531,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 758.613,744.856 792.531,744.856 792.531,722.352 758.613,722.352 758.613,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,744.856 758.613,744.856 758.613,722.352 724.695,722.352 724.695,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 758.613,767.359 792.531,767.359 792.531,744.856 758.613,744.856 758.613,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,767.359 758.613,767.359 758.613,744.856 724.695,744.856 724.695,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,452.309 724.695,452.309 724.695,407.302 656.859,407.302 656.859,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,452.309 656.859,452.309 656.859,407.302 589.023,407.302 589.023,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,497.316 724.695,497.316 724.695,452.309 656.859,452.309 656.859,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,497.316 656.859,497.316 656.859,452.309 589.023,452.309 589.023,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,452.309 589.023,452.309 589.023,407.302 521.187,407.302 521.187,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,452.309 521.187,452.309 521.187,407.302 453.352,407.302 453.352,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,497.316 589.023,497.316 589.023,452.309 521.187,452.309 521.187,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,497.316 521.187,497.316 521.187,452.309 453.352,452.309 453.352,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,542.323 724.695,542.323 724.695,497.316 656.859,497.316 656.859,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,542.323 656.859,542.323 656.859,497.316 589.023,497.316 589.023,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,587.331 724.695,587.331 724.695,542.323 656.859,542.323 656.859,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,587.331 656.859,587.331 656.859,542.323 589.023,542.323 589.023,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,542.323 589.023,542.323 589.023,497.316 521.187,497.316 521.187,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,542.323 521.187,542.323 521.187,497.316 453.352,497.316 453.352,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,587.331 589.023,587.331 589.023,542.323 521.187,542.323 521.187,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,587.331 521.187,587.331 521.187,542.323 453.352,542.323 453.352,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,452.309 453.352,452.309 453.352,407.302 385.516,407.302 385.516,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,452.309 385.516,452.309 385.516,407.302 317.68,407.302 317.68,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,497.316 453.352,497.316 453.352,452.309 385.516,452.309 385.516,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,497.316 385.516,497.316 385.516,452.309 317.68,452.309 317.68,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,452.309 317.68,452.309 317.68,407.302 249.844,407.302 249.844,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,452.309 249.844,452.309 249.844,407.302 182.008,407.302 182.008,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,497.316 317.68,497.316 317.68,452.309 249.844,452.309 249.844,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,497.316 249.844,497.316 249.844,452.309 182.008,452.309 182.008,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,542.323 453.352,542.323 453.352,497.316 385.516,497.316 385.516,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,542.323 385.516,542.323 385.516,497.316 317.68,497.316 317.68,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,587.331 453.352,587.331 453.352,542.323 385.516,542.323 385.516,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,587.331 385.516,587.331 385.516,542.323 317.68,542.323 317.68,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,542.323 317.68,542.323 317.68,497.316 249.844,497.316 249.844,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,542.323 249.844,542.323 249.844,497.316 182.008,497.316 182.008,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,587.331 317.68,587.331 317.68,542.323 249.844,542.323 249.844,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,587.331 249.844,587.331 249.844,542.323 182.008,542.323 182.008,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,632.338 724.695,632.338 724.695,587.331 656.859,587.331 656.859,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,632.338 656.859,632.338 656.859,587.331 589.023,587.331 589.023,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,677.345 724.695,677.345 724.695,632.338 656.859,632.338 656.859,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,677.345 656.859,677.345 656.859,632.338 589.023,632.338 589.023,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,632.338 589.023,632.338 589.023,587.331 521.187,587.331 521.187,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,632.338 521.187,632.338 521.187,587.331 453.352,587.331 453.352,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,677.345 589.023,677.345 589.023,632.338 521.187,632.338 521.187,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,677.345 521.187,677.345 521.187,632.338 453.352,632.338 453.352,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,722.352 724.695,722.352 724.695,677.345 656.859,677.345 656.859,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,722.352 656.859,722.352 656.859,677.345 589.023,677.345 589.023,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,767.359 724.695,767.359 724.695,722.352 656.859,722.352 656.859,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,767.359 656.859,767.359 656.859,722.352 589.023,722.352 589.023,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,722.352 589.023,722.352 589.023,677.345 521.187,677.345 521.187,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,722.352 521.187,722.352 521.187,677.345 453.352,677.345 453.352,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,767.359 589.023,767.359 589.023,722.352 521.187,722.352 521.187,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,767.359 521.187,767.359 521.187,722.352 453.352,722.352 453.352,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,632.338 453.352,632.338 453.352,587.331 385.516,587.331 385.516,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,632.338 385.516,632.338 385.516,587.331 317.68,587.331 317.68,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,677.345 453.352,677.345 453.352,632.338 385.516,632.338 385.516,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,677.345 385.516,677.345 385.516,632.338 317.68,632.338 317.68,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,632.338 317.68,632.338 317.68,587.331 249.844,587.331 249.844,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,632.338 249.844,632.338 249.844,587.331 182.008,587.331 182.008,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,677.345 317.68,677.345 317.68,632.338 249.844,632.338 249.844,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,677.345 249.844,677.345 249.844,632.338 182.008,632.338 182.008,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,722.352 453.352,722.352 453.352,677.345 385.516,677.345 385.516,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,722.352 385.516,722.352 385.516,677.345 317.68,677.345 317.68,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,767.359 453.352,767.359 453.352,722.352 385.516,722.352 385.516,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,767.359 385.516,767.359 385.516,722.352 317.68,722.352 317.68,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,722.352 317.68,722.352 317.68,677.345 249.844,677.345 249.844,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,722.352 249.844,722.352 249.844,677.345 182.008,677.345 182.008,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,767.359 317.68,767.359 317.68,722.352 249.844,722.352 249.844,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,767.359 249.844,767.359 249.844,722.352 182.008,722.352 182.008,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,812.367 2352.76,812.367 2352.76,767.359 2284.92,767.359 2284.92,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,812.367 2284.92,812.367 2284.92,767.359 2217.08,767.359 2217.08,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,857.374 2352.76,857.374 2352.76,812.367 2284.92,812.367 2284.92,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,857.374 2284.92,857.374 2284.92,812.367 2217.08,812.367 2217.08,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,812.367 2217.08,812.367 2217.08,767.359 2149.25,767.359 2149.25,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,812.367 2149.25,812.367 2149.25,767.359 2081.41,767.359 2081.41,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,857.374 2217.08,857.374 2217.08,812.367 2149.25,812.367 2149.25,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,857.374 2149.25,857.374 2149.25,812.367 2081.41,812.367 2081.41,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,902.381 2352.76,902.381 2352.76,857.374 2284.92,857.374 2284.92,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,902.381 2284.92,902.381 2284.92,857.374 2217.08,857.374 2217.08,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,947.388 2352.76,947.388 2352.76,902.381 2284.92,902.381 2284.92,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,947.388 2284.92,947.388 2284.92,902.381 2217.08,902.381 2217.08,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,902.381 2217.08,902.381 2217.08,857.374 2149.25,857.374 2149.25,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,902.381 2149.25,902.381 2149.25,857.374 2081.41,857.374 2081.41,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,947.388 2217.08,947.388 2217.08,902.381 2149.25,902.381 2149.25,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,947.388 2149.25,947.388 2149.25,902.381 2081.41,902.381 2081.41,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,812.367 2081.41,812.367 2081.41,767.359 2013.58,767.359 2013.58,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,812.367 2013.58,812.367 2013.58,767.359 1945.74,767.359 1945.74,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,857.374 2081.41,857.374 2081.41,812.367 2013.58,812.367 2013.58,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,857.374 2013.58,857.374 2013.58,812.367 1945.74,812.367 1945.74,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,812.367 1945.74,812.367 1945.74,767.359 1877.9,767.359 1877.9,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,812.367 1877.9,812.367 1877.9,767.359 1810.07,767.359 1810.07,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,857.374 1945.74,857.374 1945.74,812.367 1877.9,812.367 1877.9,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,857.374 1877.9,857.374 1877.9,812.367 1810.07,812.367 1810.07,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,902.381 2081.41,902.381 2081.41,857.374 2013.58,857.374 2013.58,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,902.381 2013.58,902.381 2013.58,857.374 1945.74,857.374 1945.74,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,947.388 2081.41,947.388 2081.41,902.381 2013.58,902.381 2013.58,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,947.388 2013.58,947.388 2013.58,902.381 1945.74,902.381 1945.74,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,902.381 1945.74,902.381 1945.74,857.374 1877.9,857.374 1877.9,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,902.381 1877.9,902.381 1877.9,857.374 1810.07,857.374 1810.07,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,947.388 1945.74,947.388 1945.74,902.381 1877.9,902.381 1877.9,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,947.388 1877.9,947.388 1877.9,902.381 1810.07,902.381 1810.07,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,992.395 2352.76,992.395 2352.76,947.388 2284.92,947.388 2284.92,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,992.395 2284.92,992.395 2284.92,947.388 2217.08,947.388 2217.08,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,1037.4 2352.76,1037.4 2352.76,992.395 2284.92,992.395 2284.92,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,1037.4 2284.92,1037.4 2284.92,992.395 2217.08,992.395 2217.08,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,992.395 2217.08,992.395 2217.08,947.388 2149.25,947.388 2149.25,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,992.395 2149.25,992.395 2149.25,947.388 2081.41,947.388 2081.41,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,1037.4 2217.08,1037.4 2217.08,992.395 2149.25,992.395 2149.25,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,1037.4 2149.25,1037.4 2149.25,992.395 2081.41,992.395 2081.41,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,1082.41 2352.76,1082.41 2352.76,1037.4 2284.92,1037.4 2284.92,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,1082.41 2284.92,1082.41 2284.92,1037.4 2217.08,1037.4 2217.08,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,1127.42 2352.76,1127.42 2352.76,1082.41 2284.92,1082.41 2284.92,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,1127.42 2284.92,1127.42 2284.92,1082.41 2217.08,1082.41 2217.08,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,1082.41 2217.08,1082.41 2217.08,1037.4 2149.25,1037.4 2149.25,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,1082.41 2149.25,1082.41 2149.25,1037.4 2081.41,1037.4 2081.41,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,1127.42 2217.08,1127.42 2217.08,1082.41 2149.25,1082.41 2149.25,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,1127.42 2149.25,1127.42 2149.25,1082.41 2081.41,1082.41 2081.41,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,992.395 2081.41,992.395 2081.41,947.388 2013.58,947.388 2013.58,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,992.395 2013.58,992.395 2013.58,947.388 1945.74,947.388 1945.74,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,1037.4 2081.41,1037.4 2081.41,992.395 2013.58,992.395 2013.58,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,1037.4 2013.58,1037.4 2013.58,992.395 1945.74,992.395 1945.74,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,992.395 1945.74,992.395 1945.74,947.388 1877.9,947.388 1877.9,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,992.395 1877.9,992.395 1877.9,947.388 1810.07,947.388 1810.07,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,1037.4 1945.74,1037.4 1945.74,992.395 1877.9,992.395 1877.9,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,1037.4 1877.9,1037.4 1877.9,992.395 1810.07,992.395 1810.07,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,1082.41 2081.41,1082.41 2081.41,1037.4 2013.58,1037.4 2013.58,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,1082.41 2013.58,1082.41 2013.58,1037.4 1945.74,1037.4 1945.74,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,1127.42 2081.41,1127.42 2081.41,1082.41 2013.58,1082.41 2013.58,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,1127.42 2013.58,1127.42 2013.58,1082.41 1945.74,1082.41 1945.74,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,1082.41 1945.74,1082.41 1945.74,1037.4 1877.9,1037.4 1877.9,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,1082.41 1877.9,1082.41 1877.9,1037.4 1810.07,1037.4 1810.07,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,1127.42 1945.74,1127.42 1945.74,1082.41 1877.9,1082.41 1877.9,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,1127.42 1877.9,1127.42 1877.9,1082.41 1810.07,1082.41 1810.07,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1776.15,789.863 1810.07,789.863 1810.07,767.359 1776.15,767.359 1776.15,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,789.863 1776.15,789.863 1776.15,767.359 1742.23,767.359 1742.23,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1776.15,812.367 1810.07,812.367 1810.07,789.863 1776.15,789.863 1776.15,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,812.367 1776.15,812.367 1776.15,789.863 1742.23,789.863 1742.23,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1708.32,789.863 1742.23,789.863 1742.23,767.359 1708.32,767.359 1708.32,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,789.863 1708.32,789.863 1708.32,767.359 1674.4,767.359 1674.4,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1708.32,812.367 1742.23,812.367 1742.23,789.863 1708.32,789.863 1708.32,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,812.367 1708.32,812.367 1708.32,789.863 1674.4,789.863 1674.4,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1776.15,834.87 1810.07,834.87 1810.07,812.367 1776.15,812.367 1776.15,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,834.87 1776.15,834.87 1776.15,812.367 1742.23,812.367 1742.23,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1776.15,857.374 1810.07,857.374 1810.07,834.87 1776.15,834.87 1776.15,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,857.374 1776.15,857.374 1776.15,834.87 1742.23,834.87 1742.23,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1708.32,834.87 1742.23,834.87 1742.23,812.367 1708.32,812.367 1708.32,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,834.87 1708.32,834.87 1708.32,812.367 1674.4,812.367 1674.4,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1708.32,857.374 1742.23,857.374 1742.23,834.87 1708.32,834.87 1708.32,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,857.374 1708.32,857.374 1708.32,834.87 1674.4,834.87 1674.4,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1640.48,789.863 1674.4,789.863 1674.4,767.359 1640.48,767.359 1640.48,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,789.863 1640.48,789.863 1640.48,767.359 1606.56,767.359 1606.56,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1640.48,812.367 1674.4,812.367 1674.4,789.863 1640.48,789.863 1640.48,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,812.367 1640.48,812.367 1640.48,789.863 1606.56,789.863 1606.56,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1572.64,789.863 1606.56,789.863 1606.56,767.359 1572.64,767.359 1572.64,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,789.863 1572.64,789.863 1572.64,767.359 1538.73,767.359 1538.73,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1572.64,812.367 1606.56,812.367 1606.56,789.863 1572.64,789.863 1572.64,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,812.367 1572.64,812.367 1572.64,789.863 1538.73,789.863 1538.73,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1640.48,834.87 1674.4,834.87 1674.4,812.367 1640.48,812.367 1640.48,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,834.87 1640.48,834.87 1640.48,812.367 1606.56,812.367 1606.56,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1640.48,857.374 1674.4,857.374 1674.4,834.87 1640.48,834.87 1640.48,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,857.374 1640.48,857.374 1640.48,834.87 1606.56,834.87 1606.56,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1572.64,834.87 1606.56,834.87 1606.56,812.367 1572.64,812.367 1572.64,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,834.87 1572.64,834.87 1572.64,812.367 1538.73,812.367 1538.73,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1572.64,857.374 1606.56,857.374 1606.56,834.87 1572.64,834.87 1572.64,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,857.374 1572.64,857.374 1572.64,834.87 1538.73,834.87 1538.73,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,902.381 1810.07,902.381 1810.07,857.374 1742.23,857.374 1742.23,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1708.32,879.877 1742.23,879.877 1742.23,857.374 1708.32,857.374 1708.32,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,879.877 1708.32,879.877 1708.32,857.374 1674.4,857.374 1674.4,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1708.32,902.381 1742.23,902.381 1742.23,879.877 1708.32,879.877 1708.32,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,902.381 1708.32,902.381 1708.32,879.877 1674.4,879.877 1674.4,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,947.388 1810.07,947.388 1810.07,902.381 1742.23,902.381 1742.23,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1708.32,924.885 1742.23,924.885 1742.23,902.381 1708.32,902.381 1708.32,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,924.885 1708.32,924.885 1708.32,902.381 1674.4,902.381 1674.4,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1708.32,947.388 1742.23,947.388 1742.23,924.885 1708.32,924.885 1708.32,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,947.388 1708.32,947.388 1708.32,924.885 1674.4,924.885 1674.4,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1640.48,879.877 1674.4,879.877 1674.4,857.374 1640.48,857.374 1640.48,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,879.877 1640.48,879.877 1640.48,857.374 1606.56,857.374 1606.56,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1640.48,902.381 1674.4,902.381 1674.4,879.877 1640.48,879.877 1640.48,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,902.381 1640.48,902.381 1640.48,879.877 1606.56,879.877 1606.56,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1572.64,879.877 1606.56,879.877 1606.56,857.374 1572.64,857.374 1572.64,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,879.877 1572.64,879.877 1572.64,857.374 1538.73,857.374 1538.73,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1572.64,902.381 1606.56,902.381 1606.56,879.877 1572.64,879.877 1572.64,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,902.381 1572.64,902.381 1572.64,879.877 1538.73,879.877 1538.73,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1640.48,924.885 1674.4,924.885 1674.4,902.381 1640.48,902.381 1640.48,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,924.885 1640.48,924.885 1640.48,902.381 1606.56,902.381 1606.56,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1640.48,947.388 1674.4,947.388 1674.4,924.885 1640.48,924.885 1640.48,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,947.388 1640.48,947.388 1640.48,924.885 1606.56,924.885 1606.56,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1572.64,924.885 1606.56,924.885 1606.56,902.381 1572.64,902.381 1572.64,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,924.885 1572.64,924.885 1572.64,902.381 1538.73,902.381 1538.73,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1572.64,947.388 1606.56,947.388 1606.56,924.885 1572.64,924.885 1572.64,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,947.388 1572.64,947.388 1572.64,924.885 1538.73,924.885 1538.73,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,789.863 1538.73,789.863 1538.73,767.359 1504.81,767.359 1504.81,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,789.863 1504.81,789.863 1504.81,767.359 1470.89,767.359 1470.89,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,812.367 1538.73,812.367 1538.73,789.863 1504.81,789.863 1504.81,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,812.367 1504.81,812.367 1504.81,789.863 1470.89,789.863 1470.89,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,789.863 1470.89,789.863 1470.89,767.359 1436.97,767.359 1436.97,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,789.863 1436.97,789.863 1436.97,767.359 1403.05,767.359 1403.05,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,812.367 1470.89,812.367 1470.89,789.863 1436.97,789.863 1436.97,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,812.367 1436.97,812.367 1436.97,789.863 1403.05,789.863 1403.05,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,834.87 1538.73,834.87 1538.73,812.367 1504.81,812.367 1504.81,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,834.87 1504.81,834.87 1504.81,812.367 1470.89,812.367 1470.89,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,857.374 1538.73,857.374 1538.73,834.87 1504.81,834.87 1504.81,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,857.374 1504.81,857.374 1504.81,834.87 1470.89,834.87 1470.89,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,834.87 1470.89,834.87 1470.89,812.367 1436.97,812.367 1436.97,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,834.87 1436.97,834.87 1436.97,812.367 1403.05,812.367 1403.05,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,857.374 1470.89,857.374 1470.89,834.87 1436.97,834.87 1436.97,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,857.374 1436.97,857.374 1436.97,834.87 1403.05,834.87 1403.05,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.09,778.611 1403.05,778.611 1403.05,767.359 1386.09,767.359 1386.09,778.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,778.611 1386.09,778.611 1386.09,767.359 1369.14,767.359 1369.14,778.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.09,789.863 1403.05,789.863 1403.05,778.611 1386.09,778.611 1386.09,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,789.863 1386.09,789.863 1386.09,778.611 1369.14,778.611 1369.14,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1352.18,778.611 1369.14,778.611 1369.14,767.359 1352.18,767.359 1352.18,778.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,778.611 1352.18,778.611 1352.18,767.359 1335.22,767.359 1335.22,778.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1352.18,789.863 1369.14,789.863 1369.14,778.611 1352.18,778.611 1352.18,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,789.863 1352.18,789.863 1352.18,778.611 1335.22,778.611 1335.22,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.09,801.115 1403.05,801.115 1403.05,789.863 1386.09,789.863 1386.09,801.115 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,801.115 1386.09,801.115 1386.09,789.863 1369.14,789.863 1369.14,801.115 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1386.09,812.367 1403.05,812.367 1403.05,801.115 1386.09,801.115 1386.09,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,812.367 1386.09,812.367 1386.09,801.115 1369.14,801.115 1369.14,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1352.18,801.115 1369.14,801.115 1369.14,789.863 1352.18,789.863 1352.18,801.115 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,801.115 1352.18,801.115 1352.18,789.863 1335.22,789.863 1335.22,801.115 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1352.18,812.367 1369.14,812.367 1369.14,801.115 1352.18,801.115 1352.18,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,812.367 1352.18,812.367 1352.18,801.115 1335.22,801.115 1335.22,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1318.26,778.611 1335.22,778.611 1335.22,767.359 1318.26,767.359 1318.26,778.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,778.611 1318.26,778.611 1318.26,767.359 1301.3,767.359 1301.3,778.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1318.26,789.863 1335.22,789.863 1335.22,778.611 1318.26,778.611 1318.26,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,789.863 1318.26,789.863 1318.26,778.611 1301.3,778.611 1301.3,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.82,772.985 1301.3,772.985 1301.3,767.359 1292.82,767.359 1292.82,772.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1284.34,772.985 1292.82,772.985 1292.82,767.359 1284.34,767.359 1284.34,772.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1292.82,778.611 1301.3,778.611 1301.3,772.985 1292.82,772.985 1292.82,778.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1284.34,778.611 1292.82,778.611 1292.82,772.985 1284.34,772.985 1284.34,778.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1275.86,772.985 1284.34,772.985 1284.34,767.359 1275.86,767.359 1275.86,772.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.62,770.172 1275.86,770.172 1275.86,767.359 1271.62,767.359 1271.62,770.172 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,770.172 1271.62,770.172 1271.62,767.359 1267.38,767.359 1267.38,770.172 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1271.62,772.985 1275.86,772.985 1275.86,770.172 1271.62,770.172 1271.62,772.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,772.985 1271.62,772.985 1271.62,770.172 1267.38,770.172 1267.38,772.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1275.86,778.611 1284.34,778.611 1284.34,772.985 1275.86,772.985 1275.86,778.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,778.611 1275.86,778.611 1275.86,772.985 1267.38,772.985 1267.38,778.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1284.34,789.863 1301.3,789.863 1301.3,778.611 1284.34,778.611 1284.34,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1275.86,784.237 1284.34,784.237 1284.34,778.611 1275.86,778.611 1275.86,784.237 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,784.237 1275.86,784.237 1275.86,778.611 1267.38,778.611 1267.38,784.237 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1275.86,789.863 1284.34,789.863 1284.34,784.237 1275.86,784.237 1275.86,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,789.863 1275.86,789.863 1275.86,784.237 1267.38,784.237 1267.38,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1318.26,801.115 1335.22,801.115 1335.22,789.863 1318.26,789.863 1318.26,801.115 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,801.115 1318.26,801.115 1318.26,789.863 1301.3,789.863 1301.3,801.115 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1318.26,812.367 1335.22,812.367 1335.22,801.115 1318.26,801.115 1318.26,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,812.367 1318.26,812.367 1318.26,801.115 1301.3,801.115 1301.3,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1284.34,801.115 1301.3,801.115 1301.3,789.863 1284.34,789.863 1284.34,801.115 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,801.115 1284.34,801.115 1284.34,789.863 1267.38,789.863 1267.38,801.115 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1284.34,812.367 1301.3,812.367 1301.3,801.115 1284.34,801.115 1284.34,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,812.367 1284.34,812.367 1284.34,801.115 1267.38,801.115 1267.38,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,834.87 1403.05,834.87 1403.05,812.367 1369.14,812.367 1369.14,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1352.18,823.618 1369.14,823.618 1369.14,812.367 1352.18,812.367 1352.18,823.618 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,823.618 1352.18,823.618 1352.18,812.367 1335.22,812.367 1335.22,823.618 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1352.18,834.87 1369.14,834.87 1369.14,823.618 1352.18,823.618 1352.18,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,834.87 1352.18,834.87 1352.18,823.618 1335.22,823.618 1335.22,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,857.374 1403.05,857.374 1403.05,834.87 1369.14,834.87 1369.14,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,857.374 1369.14,857.374 1369.14,834.87 1335.22,834.87 1335.22,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1318.26,823.618 1335.22,823.618 1335.22,812.367 1318.26,812.367 1318.26,823.618 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,823.618 1318.26,823.618 1318.26,812.367 1301.3,812.367 1301.3,823.618 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1318.26,834.87 1335.22,834.87 1335.22,823.618 1318.26,823.618 1318.26,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,834.87 1318.26,834.87 1318.26,823.618 1301.3,823.618 1301.3,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1284.34,823.618 1301.3,823.618 1301.3,812.367 1284.34,812.367 1284.34,823.618 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,823.618 1284.34,823.618 1284.34,812.367 1267.38,812.367 1267.38,823.618 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1284.34,834.87 1301.3,834.87 1301.3,823.618 1284.34,823.618 1284.34,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,834.87 1284.34,834.87 1284.34,823.618 1267.38,823.618 1267.38,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1318.26,846.122 1335.22,846.122 1335.22,834.87 1318.26,834.87 1318.26,846.122 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,846.122 1318.26,846.122 1318.26,834.87 1301.3,834.87 1301.3,846.122 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1318.26,857.374 1335.22,857.374 1335.22,846.122 1318.26,846.122 1318.26,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,857.374 1318.26,857.374 1318.26,846.122 1301.3,846.122 1301.3,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1284.34,846.122 1301.3,846.122 1301.3,834.87 1284.34,834.87 1284.34,846.122 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,846.122 1284.34,846.122 1284.34,834.87 1267.38,834.87 1267.38,846.122 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1284.34,857.374 1301.3,857.374 1301.3,846.122 1284.34,846.122 1284.34,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,857.374 1284.34,857.374 1284.34,846.122 1267.38,846.122 1267.38,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,879.877 1538.73,879.877 1538.73,857.374 1504.81,857.374 1504.81,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,879.877 1504.81,879.877 1504.81,857.374 1470.89,857.374 1470.89,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,902.381 1538.73,902.381 1538.73,879.877 1504.81,879.877 1504.81,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,902.381 1504.81,902.381 1504.81,879.877 1470.89,879.877 1470.89,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,879.877 1470.89,879.877 1470.89,857.374 1436.97,857.374 1436.97,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,879.877 1436.97,879.877 1436.97,857.374 1403.05,857.374 1403.05,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,902.381 1470.89,902.381 1470.89,879.877 1436.97,879.877 1436.97,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,902.381 1436.97,902.381 1436.97,879.877 1403.05,879.877 1403.05,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,924.885 1538.73,924.885 1538.73,902.381 1504.81,902.381 1504.81,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,924.885 1504.81,924.885 1504.81,902.381 1470.89,902.381 1470.89,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,947.388 1538.73,947.388 1538.73,924.885 1504.81,924.885 1504.81,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,947.388 1504.81,947.388 1504.81,924.885 1470.89,924.885 1470.89,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,924.885 1470.89,924.885 1470.89,902.381 1436.97,902.381 1436.97,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,924.885 1436.97,924.885 1436.97,902.381 1403.05,902.381 1403.05,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,947.388 1470.89,947.388 1470.89,924.885 1436.97,924.885 1436.97,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,947.388 1436.97,947.388 1436.97,924.885 1403.05,924.885 1403.05,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,879.877 1403.05,879.877 1403.05,857.374 1369.14,857.374 1369.14,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,879.877 1369.14,879.877 1369.14,857.374 1335.22,857.374 1335.22,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,902.381 1403.05,902.381 1403.05,879.877 1369.14,879.877 1369.14,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,902.381 1369.14,902.381 1369.14,879.877 1335.22,879.877 1335.22,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,879.877 1335.22,879.877 1335.22,857.374 1301.3,857.374 1301.3,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,879.877 1301.3,879.877 1301.3,857.374 1267.38,857.374 1267.38,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,902.381 1335.22,902.381 1335.22,879.877 1301.3,879.877 1301.3,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,902.381 1301.3,902.381 1301.3,879.877 1267.38,879.877 1267.38,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,924.885 1403.05,924.885 1403.05,902.381 1369.14,902.381 1369.14,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,924.885 1369.14,924.885 1369.14,902.381 1335.22,902.381 1335.22,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,947.388 1403.05,947.388 1403.05,924.885 1369.14,924.885 1369.14,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,947.388 1369.14,947.388 1369.14,924.885 1335.22,924.885 1335.22,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,924.885 1335.22,924.885 1335.22,902.381 1301.3,902.381 1301.3,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,924.885 1301.3,924.885 1301.3,902.381 1267.38,902.381 1267.38,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,947.388 1335.22,947.388 1335.22,924.885 1301.3,924.885 1301.3,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,947.388 1301.3,947.388 1301.3,924.885 1267.38,924.885 1267.38,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,992.395 1810.07,992.395 1810.07,947.388 1742.23,947.388 1742.23,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,992.395 1742.23,992.395 1742.23,947.388 1674.4,947.388 1674.4,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,1037.4 1810.07,1037.4 1810.07,992.395 1742.23,992.395 1742.23,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,1037.4 1742.23,1037.4 1742.23,992.395 1674.4,992.395 1674.4,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1640.48,969.892 1674.4,969.892 1674.4,947.388 1640.48,947.388 1640.48,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,969.892 1640.48,969.892 1640.48,947.388 1606.56,947.388 1606.56,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1640.48,992.395 1674.4,992.395 1674.4,969.892 1640.48,969.892 1640.48,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,992.395 1640.48,992.395 1640.48,969.892 1606.56,969.892 1606.56,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1572.64,969.892 1606.56,969.892 1606.56,947.388 1572.64,947.388 1572.64,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,969.892 1572.64,969.892 1572.64,947.388 1538.73,947.388 1538.73,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1572.64,992.395 1606.56,992.395 1606.56,969.892 1572.64,969.892 1572.64,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,992.395 1572.64,992.395 1572.64,969.892 1538.73,969.892 1538.73,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1640.48,1014.9 1674.4,1014.9 1674.4,992.395 1640.48,992.395 1640.48,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,1014.9 1640.48,1014.9 1640.48,992.395 1606.56,992.395 1606.56,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1640.48,1037.4 1674.4,1037.4 1674.4,1014.9 1640.48,1014.9 1640.48,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,1037.4 1640.48,1037.4 1640.48,1014.9 1606.56,1014.9 1606.56,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1572.64,1014.9 1606.56,1014.9 1606.56,992.395 1572.64,992.395 1572.64,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,1014.9 1572.64,1014.9 1572.64,992.395 1538.73,992.395 1538.73,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1572.64,1037.4 1606.56,1037.4 1606.56,1014.9 1572.64,1014.9 1572.64,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,1037.4 1572.64,1037.4 1572.64,1014.9 1538.73,1014.9 1538.73,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,1082.41 1810.07,1082.41 1810.07,1037.4 1742.23,1037.4 1742.23,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,1082.41 1742.23,1082.41 1742.23,1037.4 1674.4,1037.4 1674.4,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,1127.42 1810.07,1127.42 1810.07,1082.41 1742.23,1082.41 1742.23,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,1127.42 1742.23,1127.42 1742.23,1082.41 1674.4,1082.41 1674.4,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,1082.41 1674.4,1082.41 1674.4,1037.4 1606.56,1037.4 1606.56,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,1082.41 1606.56,1082.41 1606.56,1037.4 1538.73,1037.4 1538.73,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,1127.42 1674.4,1127.42 1674.4,1082.41 1606.56,1082.41 1606.56,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,1127.42 1606.56,1127.42 1606.56,1082.41 1538.73,1082.41 1538.73,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,969.892 1538.73,969.892 1538.73,947.388 1504.81,947.388 1504.81,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,969.892 1504.81,969.892 1504.81,947.388 1470.89,947.388 1470.89,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,992.395 1538.73,992.395 1538.73,969.892 1504.81,969.892 1504.81,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,992.395 1504.81,992.395 1504.81,969.892 1470.89,969.892 1470.89,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,969.892 1470.89,969.892 1470.89,947.388 1436.97,947.388 1436.97,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,969.892 1436.97,969.892 1436.97,947.388 1403.05,947.388 1403.05,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,992.395 1470.89,992.395 1470.89,969.892 1436.97,969.892 1436.97,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,992.395 1436.97,992.395 1436.97,969.892 1403.05,969.892 1403.05,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,1014.9 1538.73,1014.9 1538.73,992.395 1504.81,992.395 1504.81,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,1014.9 1504.81,1014.9 1504.81,992.395 1470.89,992.395 1470.89,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,1037.4 1538.73,1037.4 1538.73,1014.9 1504.81,1014.9 1504.81,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,1037.4 1504.81,1037.4 1504.81,1014.9 1470.89,1014.9 1470.89,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,1014.9 1470.89,1014.9 1470.89,992.395 1436.97,992.395 1436.97,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,1014.9 1436.97,1014.9 1436.97,992.395 1403.05,992.395 1403.05,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,1037.4 1470.89,1037.4 1470.89,1014.9 1436.97,1014.9 1436.97,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,1037.4 1436.97,1037.4 1436.97,1014.9 1403.05,1014.9 1403.05,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,969.892 1403.05,969.892 1403.05,947.388 1369.14,947.388 1369.14,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,969.892 1369.14,969.892 1369.14,947.388 1335.22,947.388 1335.22,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,992.395 1403.05,992.395 1403.05,969.892 1369.14,969.892 1369.14,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,992.395 1369.14,992.395 1369.14,969.892 1335.22,969.892 1335.22,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,969.892 1335.22,969.892 1335.22,947.388 1301.3,947.388 1301.3,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,969.892 1301.3,969.892 1301.3,947.388 1267.38,947.388 1267.38,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,992.395 1335.22,992.395 1335.22,969.892 1301.3,969.892 1301.3,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,992.395 1301.3,992.395 1301.3,969.892 1267.38,969.892 1267.38,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,1014.9 1403.05,1014.9 1403.05,992.395 1369.14,992.395 1369.14,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,1014.9 1369.14,1014.9 1369.14,992.395 1335.22,992.395 1335.22,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,1037.4 1403.05,1037.4 1403.05,1014.9 1369.14,1014.9 1369.14,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,1037.4 1369.14,1037.4 1369.14,1014.9 1335.22,1014.9 1335.22,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,1014.9 1335.22,1014.9 1335.22,992.395 1301.3,992.395 1301.3,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,1014.9 1301.3,1014.9 1301.3,992.395 1267.38,992.395 1267.38,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,1037.4 1335.22,1037.4 1335.22,1014.9 1301.3,1014.9 1301.3,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,1037.4 1301.3,1037.4 1301.3,1014.9 1267.38,1014.9 1267.38,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,1059.91 1538.73,1059.91 1538.73,1037.4 1504.81,1037.4 1504.81,1059.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,1059.91 1504.81,1059.91 1504.81,1037.4 1470.89,1037.4 1470.89,1059.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1504.81,1082.41 1538.73,1082.41 1538.73,1059.91 1504.81,1059.91 1504.81,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,1082.41 1504.81,1082.41 1504.81,1059.91 1470.89,1059.91 1470.89,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,1059.91 1470.89,1059.91 1470.89,1037.4 1436.97,1037.4 1436.97,1059.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,1059.91 1436.97,1059.91 1436.97,1037.4 1403.05,1037.4 1403.05,1059.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1436.97,1082.41 1470.89,1082.41 1470.89,1059.91 1436.97,1059.91 1436.97,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,1082.41 1436.97,1082.41 1436.97,1059.91 1403.05,1059.91 1403.05,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,1127.42 1538.73,1127.42 1538.73,1082.41 1470.89,1082.41 1470.89,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,1127.42 1470.89,1127.42 1470.89,1082.41 1403.05,1082.41 1403.05,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,1059.91 1403.05,1059.91 1403.05,1037.4 1369.14,1037.4 1369.14,1059.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,1059.91 1369.14,1059.91 1369.14,1037.4 1335.22,1037.4 1335.22,1059.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,1082.41 1403.05,1082.41 1403.05,1059.91 1369.14,1059.91 1369.14,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,1082.41 1369.14,1082.41 1369.14,1059.91 1335.22,1059.91 1335.22,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,1059.91 1335.22,1059.91 1335.22,1037.4 1301.3,1037.4 1301.3,1059.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,1059.91 1301.3,1059.91 1301.3,1037.4 1267.38,1037.4 1267.38,1059.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,1082.41 1335.22,1082.41 1335.22,1059.91 1301.3,1059.91 1301.3,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,1082.41 1301.3,1082.41 1301.3,1059.91 1267.38,1059.91 1267.38,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,1104.91 1403.05,1104.91 1403.05,1082.41 1369.14,1082.41 1369.14,1104.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,1104.91 1369.14,1104.91 1369.14,1082.41 1335.22,1082.41 1335.22,1104.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1369.14,1127.42 1403.05,1127.42 1403.05,1104.91 1369.14,1104.91 1369.14,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,1127.42 1369.14,1127.42 1369.14,1104.91 1335.22,1104.91 1335.22,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,1104.91 1335.22,1104.91 1335.22,1082.41 1301.3,1082.41 1301.3,1104.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,1104.91 1301.3,1104.91 1301.3,1082.41 1267.38,1082.41 1267.38,1104.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1301.3,1127.42 1335.22,1127.42 1335.22,1104.91 1301.3,1104.91 1301.3,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,1127.42 1301.3,1127.42 1301.3,1104.91 1267.38,1104.91 1267.38,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,1172.42 2352.76,1172.42 2352.76,1127.42 2284.92,1127.42 2284.92,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,1172.42 2284.92,1172.42 2284.92,1127.42 2217.08,1127.42 2217.08,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,1217.43 2352.76,1217.43 2352.76,1172.42 2284.92,1172.42 2284.92,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,1217.43 2284.92,1217.43 2284.92,1172.42 2217.08,1172.42 2217.08,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,1172.42 2217.08,1172.42 2217.08,1127.42 2149.25,1127.42 2149.25,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,1172.42 2149.25,1172.42 2149.25,1127.42 2081.41,1127.42 2081.41,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,1217.43 2217.08,1217.43 2217.08,1172.42 2149.25,1172.42 2149.25,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,1217.43 2149.25,1217.43 2149.25,1172.42 2081.41,1172.42 2081.41,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,1262.44 2352.76,1262.44 2352.76,1217.43 2284.92,1217.43 2284.92,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,1262.44 2284.92,1262.44 2284.92,1217.43 2217.08,1217.43 2217.08,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,1307.45 2352.76,1307.45 2352.76,1262.44 2284.92,1262.44 2284.92,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,1307.45 2284.92,1307.45 2284.92,1262.44 2217.08,1262.44 2217.08,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,1262.44 2217.08,1262.44 2217.08,1217.43 2149.25,1217.43 2149.25,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,1262.44 2149.25,1262.44 2149.25,1217.43 2081.41,1217.43 2081.41,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,1307.45 2217.08,1307.45 2217.08,1262.44 2149.25,1262.44 2149.25,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,1307.45 2149.25,1307.45 2149.25,1262.44 2081.41,1262.44 2081.41,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,1172.42 2081.41,1172.42 2081.41,1127.42 2013.58,1127.42 2013.58,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,1172.42 2013.58,1172.42 2013.58,1127.42 1945.74,1127.42 1945.74,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,1217.43 2081.41,1217.43 2081.41,1172.42 2013.58,1172.42 2013.58,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,1217.43 2013.58,1217.43 2013.58,1172.42 1945.74,1172.42 1945.74,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,1172.42 1945.74,1172.42 1945.74,1127.42 1877.9,1127.42 1877.9,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,1172.42 1877.9,1172.42 1877.9,1127.42 1810.07,1127.42 1810.07,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,1217.43 1945.74,1217.43 1945.74,1172.42 1877.9,1172.42 1877.9,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,1217.43 1877.9,1217.43 1877.9,1172.42 1810.07,1172.42 1810.07,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,1262.44 2081.41,1262.44 2081.41,1217.43 2013.58,1217.43 2013.58,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,1262.44 2013.58,1262.44 2013.58,1217.43 1945.74,1217.43 1945.74,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,1307.45 2081.41,1307.45 2081.41,1262.44 2013.58,1262.44 2013.58,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,1307.45 2013.58,1307.45 2013.58,1262.44 1945.74,1262.44 1945.74,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,1262.44 1945.74,1262.44 1945.74,1217.43 1877.9,1217.43 1877.9,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,1262.44 1877.9,1262.44 1877.9,1217.43 1810.07,1217.43 1810.07,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,1307.45 1945.74,1307.45 1945.74,1262.44 1877.9,1262.44 1877.9,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,1307.45 1877.9,1307.45 1877.9,1262.44 1810.07,1262.44 1810.07,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,1352.45 2352.76,1352.45 2352.76,1307.45 2284.92,1307.45 2284.92,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,1352.45 2284.92,1352.45 2284.92,1307.45 2217.08,1307.45 2217.08,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,1397.46 2352.76,1397.46 2352.76,1352.45 2284.92,1352.45 2284.92,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,1397.46 2284.92,1397.46 2284.92,1352.45 2217.08,1352.45 2217.08,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,1352.45 2217.08,1352.45 2217.08,1307.45 2149.25,1307.45 2149.25,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,1352.45 2149.25,1352.45 2149.25,1307.45 2081.41,1307.45 2081.41,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,1397.46 2217.08,1397.46 2217.08,1352.45 2149.25,1352.45 2149.25,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,1397.46 2149.25,1397.46 2149.25,1352.45 2081.41,1352.45 2081.41,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,1442.47 2352.76,1442.47 2352.76,1397.46 2284.92,1397.46 2284.92,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,1442.47 2284.92,1442.47 2284.92,1397.46 2217.08,1397.46 2217.08,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2284.92,1487.47 2352.76,1487.47 2352.76,1442.47 2284.92,1442.47 2284.92,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2217.08,1487.47 2284.92,1487.47 2284.92,1442.47 2217.08,1442.47 2217.08,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,1442.47 2217.08,1442.47 2217.08,1397.46 2149.25,1397.46 2149.25,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,1442.47 2149.25,1442.47 2149.25,1397.46 2081.41,1397.46 2081.41,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2149.25,1487.47 2217.08,1487.47 2217.08,1442.47 2149.25,1442.47 2149.25,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2081.41,1487.47 2149.25,1487.47 2149.25,1442.47 2081.41,1442.47 2081.41,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,1352.45 2081.41,1352.45 2081.41,1307.45 2013.58,1307.45 2013.58,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,1352.45 2013.58,1352.45 2013.58,1307.45 1945.74,1307.45 1945.74,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,1397.46 2081.41,1397.46 2081.41,1352.45 2013.58,1352.45 2013.58,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,1397.46 2013.58,1397.46 2013.58,1352.45 1945.74,1352.45 1945.74,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,1352.45 1945.74,1352.45 1945.74,1307.45 1877.9,1307.45 1877.9,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,1352.45 1877.9,1352.45 1877.9,1307.45 1810.07,1307.45 1810.07,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,1397.46 1945.74,1397.46 1945.74,1352.45 1877.9,1352.45 1877.9,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,1397.46 1877.9,1397.46 1877.9,1352.45 1810.07,1352.45 1810.07,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,1442.47 2081.41,1442.47 2081.41,1397.46 2013.58,1397.46 2013.58,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,1442.47 2013.58,1442.47 2013.58,1397.46 1945.74,1397.46 1945.74,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2013.58,1487.47 2081.41,1487.47 2081.41,1442.47 2013.58,1442.47 2013.58,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1945.74,1487.47 2013.58,1487.47 2013.58,1442.47 1945.74,1442.47 1945.74,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,1442.47 1945.74,1442.47 1945.74,1397.46 1877.9,1397.46 1877.9,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,1442.47 1877.9,1442.47 1877.9,1397.46 1810.07,1397.46 1810.07,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1877.9,1487.47 1945.74,1487.47 1945.74,1442.47 1877.9,1442.47 1877.9,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1810.07,1487.47 1877.9,1487.47 1877.9,1442.47 1810.07,1442.47 1810.07,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,1172.42 1810.07,1172.42 1810.07,1127.42 1742.23,1127.42 1742.23,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,1172.42 1742.23,1172.42 1742.23,1127.42 1674.4,1127.42 1674.4,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,1217.43 1810.07,1217.43 1810.07,1172.42 1742.23,1172.42 1742.23,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,1217.43 1742.23,1217.43 1742.23,1172.42 1674.4,1172.42 1674.4,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,1172.42 1674.4,1172.42 1674.4,1127.42 1606.56,1127.42 1606.56,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,1172.42 1606.56,1172.42 1606.56,1127.42 1538.73,1127.42 1538.73,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,1217.43 1674.4,1217.43 1674.4,1172.42 1606.56,1172.42 1606.56,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,1217.43 1606.56,1217.43 1606.56,1172.42 1538.73,1172.42 1538.73,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,1262.44 1810.07,1262.44 1810.07,1217.43 1742.23,1217.43 1742.23,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,1262.44 1742.23,1262.44 1742.23,1217.43 1674.4,1217.43 1674.4,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,1307.45 1810.07,1307.45 1810.07,1262.44 1742.23,1262.44 1742.23,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,1307.45 1742.23,1307.45 1742.23,1262.44 1674.4,1262.44 1674.4,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,1262.44 1674.4,1262.44 1674.4,1217.43 1606.56,1217.43 1606.56,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,1262.44 1606.56,1262.44 1606.56,1217.43 1538.73,1217.43 1538.73,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,1307.45 1674.4,1307.45 1674.4,1262.44 1606.56,1262.44 1606.56,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,1307.45 1606.56,1307.45 1606.56,1262.44 1538.73,1262.44 1538.73,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,1172.42 1538.73,1172.42 1538.73,1127.42 1470.89,1127.42 1470.89,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,1172.42 1470.89,1172.42 1470.89,1127.42 1403.05,1127.42 1403.05,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,1217.43 1538.73,1217.43 1538.73,1172.42 1470.89,1172.42 1470.89,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,1217.43 1470.89,1217.43 1470.89,1172.42 1403.05,1172.42 1403.05,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,1172.42 1403.05,1172.42 1403.05,1127.42 1335.22,1127.42 1335.22,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,1172.42 1335.22,1172.42 1335.22,1127.42 1267.38,1127.42 1267.38,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,1217.43 1403.05,1217.43 1403.05,1172.42 1335.22,1172.42 1335.22,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,1217.43 1335.22,1217.43 1335.22,1172.42 1267.38,1172.42 1267.38,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,1262.44 1538.73,1262.44 1538.73,1217.43 1470.89,1217.43 1470.89,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,1262.44 1470.89,1262.44 1470.89,1217.43 1403.05,1217.43 1403.05,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,1307.45 1538.73,1307.45 1538.73,1262.44 1470.89,1262.44 1470.89,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,1307.45 1470.89,1307.45 1470.89,1262.44 1403.05,1262.44 1403.05,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,1262.44 1403.05,1262.44 1403.05,1217.43 1335.22,1217.43 1335.22,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,1262.44 1335.22,1262.44 1335.22,1217.43 1267.38,1217.43 1267.38,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,1307.45 1403.05,1307.45 1403.05,1262.44 1335.22,1262.44 1335.22,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,1307.45 1335.22,1307.45 1335.22,1262.44 1267.38,1262.44 1267.38,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,1352.45 1810.07,1352.45 1810.07,1307.45 1742.23,1307.45 1742.23,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,1352.45 1742.23,1352.45 1742.23,1307.45 1674.4,1307.45 1674.4,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,1397.46 1810.07,1397.46 1810.07,1352.45 1742.23,1352.45 1742.23,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,1397.46 1742.23,1397.46 1742.23,1352.45 1674.4,1352.45 1674.4,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,1352.45 1674.4,1352.45 1674.4,1307.45 1606.56,1307.45 1606.56,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,1352.45 1606.56,1352.45 1606.56,1307.45 1538.73,1307.45 1538.73,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,1397.46 1674.4,1397.46 1674.4,1352.45 1606.56,1352.45 1606.56,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,1397.46 1606.56,1397.46 1606.56,1352.45 1538.73,1352.45 1538.73,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,1442.47 1810.07,1442.47 1810.07,1397.46 1742.23,1397.46 1742.23,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,1442.47 1742.23,1442.47 1742.23,1397.46 1674.4,1397.46 1674.4,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1742.23,1487.47 1810.07,1487.47 1810.07,1442.47 1742.23,1442.47 1742.23,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1674.4,1487.47 1742.23,1487.47 1742.23,1442.47 1674.4,1442.47 1674.4,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,1442.47 1674.4,1442.47 1674.4,1397.46 1606.56,1397.46 1606.56,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,1442.47 1606.56,1442.47 1606.56,1397.46 1538.73,1397.46 1538.73,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1606.56,1487.47 1674.4,1487.47 1674.4,1442.47 1606.56,1442.47 1606.56,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1538.73,1487.47 1606.56,1487.47 1606.56,1442.47 1538.73,1442.47 1538.73,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,1352.45 1538.73,1352.45 1538.73,1307.45 1470.89,1307.45 1470.89,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,1352.45 1470.89,1352.45 1470.89,1307.45 1403.05,1307.45 1403.05,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,1397.46 1538.73,1397.46 1538.73,1352.45 1470.89,1352.45 1470.89,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,1397.46 1470.89,1397.46 1470.89,1352.45 1403.05,1352.45 1403.05,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,1352.45 1403.05,1352.45 1403.05,1307.45 1335.22,1307.45 1335.22,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,1352.45 1335.22,1352.45 1335.22,1307.45 1267.38,1307.45 1267.38,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,1397.46 1403.05,1397.46 1403.05,1352.45 1335.22,1352.45 1335.22,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,1397.46 1335.22,1397.46 1335.22,1352.45 1267.38,1352.45 1267.38,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,1442.47 1538.73,1442.47 1538.73,1397.46 1470.89,1397.46 1470.89,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,1442.47 1470.89,1442.47 1470.89,1397.46 1403.05,1397.46 1403.05,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1470.89,1487.47 1538.73,1487.47 1538.73,1442.47 1470.89,1442.47 1470.89,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1403.05,1487.47 1470.89,1487.47 1470.89,1442.47 1403.05,1442.47 1403.05,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,1442.47 1403.05,1442.47 1403.05,1397.46 1335.22,1397.46 1335.22,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,1442.47 1335.22,1442.47 1335.22,1397.46 1267.38,1397.46 1267.38,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1335.22,1487.47 1403.05,1487.47 1403.05,1442.47 1335.22,1442.47 1335.22,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1267.38,1487.47 1335.22,1487.47 1335.22,1442.47 1267.38,1442.47 1267.38,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1263.14,770.172 1267.38,770.172 1267.38,767.359 1263.14,767.359 1263.14,770.172 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1258.9,770.172 1263.14,770.172 1263.14,767.359 1258.9,767.359 1258.9,770.172 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1263.14,772.985 1267.38,772.985 1267.38,770.172 1263.14,770.172 1263.14,772.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1258.9,772.985 1263.14,772.985 1263.14,770.172 1258.9,770.172 1258.9,772.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.42,772.985 1258.9,772.985 1258.9,767.359 1250.42,767.359 1250.42,772.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1258.9,778.611 1267.38,778.611 1267.38,772.985 1258.9,772.985 1258.9,778.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.42,778.611 1258.9,778.611 1258.9,772.985 1250.42,772.985 1250.42,778.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1241.94,772.985 1250.42,772.985 1250.42,767.359 1241.94,767.359 1241.94,772.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,772.985 1241.94,772.985 1241.94,767.359 1233.46,767.359 1233.46,772.985 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1241.94,778.611 1250.42,778.611 1250.42,772.985 1241.94,772.985 1241.94,778.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,778.611 1241.94,778.611 1241.94,772.985 1233.46,772.985 1233.46,778.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1258.9,784.237 1267.38,784.237 1267.38,778.611 1258.9,778.611 1258.9,784.237 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.42,784.237 1258.9,784.237 1258.9,778.611 1250.42,778.611 1250.42,784.237 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1258.9,789.863 1267.38,789.863 1267.38,784.237 1258.9,784.237 1258.9,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.42,789.863 1258.9,789.863 1258.9,784.237 1250.42,784.237 1250.42,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,789.863 1250.42,789.863 1250.42,778.611 1233.46,778.611 1233.46,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1216.51,778.611 1233.46,778.611 1233.46,767.359 1216.51,767.359 1216.51,778.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,778.611 1216.51,778.611 1216.51,767.359 1199.55,767.359 1199.55,778.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1216.51,789.863 1233.46,789.863 1233.46,778.611 1216.51,778.611 1216.51,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,789.863 1216.51,789.863 1216.51,778.611 1199.55,778.611 1199.55,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.42,801.115 1267.38,801.115 1267.38,789.863 1250.42,789.863 1250.42,801.115 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,801.115 1250.42,801.115 1250.42,789.863 1233.46,789.863 1233.46,801.115 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.42,812.367 1267.38,812.367 1267.38,801.115 1250.42,801.115 1250.42,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,812.367 1250.42,812.367 1250.42,801.115 1233.46,801.115 1233.46,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1216.51,801.115 1233.46,801.115 1233.46,789.863 1216.51,789.863 1216.51,801.115 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,801.115 1216.51,801.115 1216.51,789.863 1199.55,789.863 1199.55,801.115 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1216.51,812.367 1233.46,812.367 1233.46,801.115 1216.51,801.115 1216.51,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,812.367 1216.51,812.367 1216.51,801.115 1199.55,801.115 1199.55,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1182.59,778.611 1199.55,778.611 1199.55,767.359 1182.59,767.359 1182.59,778.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,778.611 1182.59,778.611 1182.59,767.359 1165.63,767.359 1165.63,778.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1182.59,789.863 1199.55,789.863 1199.55,778.611 1182.59,778.611 1182.59,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,789.863 1182.59,789.863 1182.59,778.611 1165.63,778.611 1165.63,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1148.67,778.611 1165.63,778.611 1165.63,767.359 1148.67,767.359 1148.67,778.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,778.611 1148.67,778.611 1148.67,767.359 1131.71,767.359 1131.71,778.611 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1148.67,789.863 1165.63,789.863 1165.63,778.611 1148.67,778.611 1148.67,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,789.863 1148.67,789.863 1148.67,778.611 1131.71,778.611 1131.71,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1182.59,801.115 1199.55,801.115 1199.55,789.863 1182.59,789.863 1182.59,801.115 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,801.115 1182.59,801.115 1182.59,789.863 1165.63,789.863 1165.63,801.115 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1182.59,812.367 1199.55,812.367 1199.55,801.115 1182.59,801.115 1182.59,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,812.367 1182.59,812.367 1182.59,801.115 1165.63,801.115 1165.63,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1148.67,801.115 1165.63,801.115 1165.63,789.863 1148.67,789.863 1148.67,801.115 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,801.115 1148.67,801.115 1148.67,789.863 1131.71,789.863 1131.71,801.115 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1148.67,812.367 1165.63,812.367 1165.63,801.115 1148.67,801.115 1148.67,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,812.367 1148.67,812.367 1148.67,801.115 1131.71,801.115 1131.71,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.42,823.618 1267.38,823.618 1267.38,812.367 1250.42,812.367 1250.42,823.618 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,823.618 1250.42,823.618 1250.42,812.367 1233.46,812.367 1233.46,823.618 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.42,834.87 1267.38,834.87 1267.38,823.618 1250.42,823.618 1250.42,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,834.87 1250.42,834.87 1250.42,823.618 1233.46,823.618 1233.46,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1216.51,823.618 1233.46,823.618 1233.46,812.367 1216.51,812.367 1216.51,823.618 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,823.618 1216.51,823.618 1216.51,812.367 1199.55,812.367 1199.55,823.618 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1216.51,834.87 1233.46,834.87 1233.46,823.618 1216.51,823.618 1216.51,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,834.87 1216.51,834.87 1216.51,823.618 1199.55,823.618 1199.55,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.42,846.122 1267.38,846.122 1267.38,834.87 1250.42,834.87 1250.42,846.122 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,846.122 1250.42,846.122 1250.42,834.87 1233.46,834.87 1233.46,846.122 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1250.42,857.374 1267.38,857.374 1267.38,846.122 1250.42,846.122 1250.42,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,857.374 1250.42,857.374 1250.42,846.122 1233.46,846.122 1233.46,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1216.51,846.122 1233.46,846.122 1233.46,834.87 1216.51,834.87 1216.51,846.122 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,846.122 1216.51,846.122 1216.51,834.87 1199.55,834.87 1199.55,846.122 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1216.51,857.374 1233.46,857.374 1233.46,846.122 1216.51,846.122 1216.51,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,857.374 1216.51,857.374 1216.51,846.122 1199.55,846.122 1199.55,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1182.59,823.618 1199.55,823.618 1199.55,812.367 1182.59,812.367 1182.59,823.618 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,823.618 1182.59,823.618 1182.59,812.367 1165.63,812.367 1165.63,823.618 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1182.59,834.87 1199.55,834.87 1199.55,823.618 1182.59,823.618 1182.59,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,834.87 1182.59,834.87 1182.59,823.618 1165.63,823.618 1165.63,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,834.87 1165.63,834.87 1165.63,812.367 1131.71,812.367 1131.71,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,857.374 1199.55,857.374 1199.55,834.87 1165.63,834.87 1165.63,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,857.374 1165.63,857.374 1165.63,834.87 1131.71,834.87 1131.71,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,789.863 1131.71,789.863 1131.71,767.359 1097.79,767.359 1097.79,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,789.863 1097.79,789.863 1097.79,767.359 1063.87,767.359 1063.87,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,812.367 1131.71,812.367 1131.71,789.863 1097.79,789.863 1097.79,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,812.367 1097.79,812.367 1097.79,789.863 1063.87,789.863 1063.87,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,789.863 1063.87,789.863 1063.87,767.359 1029.96,767.359 1029.96,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,789.863 1029.96,789.863 1029.96,767.359 996.039,767.359 996.039,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,812.367 1063.87,812.367 1063.87,789.863 1029.96,789.863 1029.96,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,812.367 1029.96,812.367 1029.96,789.863 996.039,789.863 996.039,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,834.87 1131.71,834.87 1131.71,812.367 1097.79,812.367 1097.79,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,834.87 1097.79,834.87 1097.79,812.367 1063.87,812.367 1063.87,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,857.374 1131.71,857.374 1131.71,834.87 1097.79,834.87 1097.79,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,857.374 1097.79,857.374 1097.79,834.87 1063.87,834.87 1063.87,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,834.87 1063.87,834.87 1063.87,812.367 1029.96,812.367 1029.96,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,834.87 1029.96,834.87 1029.96,812.367 996.039,812.367 996.039,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,857.374 1063.87,857.374 1063.87,834.87 1029.96,834.87 1029.96,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,857.374 1029.96,857.374 1029.96,834.87 996.039,834.87 996.039,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,879.877 1267.38,879.877 1267.38,857.374 1233.46,857.374 1233.46,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,879.877 1233.46,879.877 1233.46,857.374 1199.55,857.374 1199.55,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,902.381 1267.38,902.381 1267.38,879.877 1233.46,879.877 1233.46,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,902.381 1233.46,902.381 1233.46,879.877 1199.55,879.877 1199.55,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,879.877 1199.55,879.877 1199.55,857.374 1165.63,857.374 1165.63,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,879.877 1165.63,879.877 1165.63,857.374 1131.71,857.374 1131.71,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,902.381 1199.55,902.381 1199.55,879.877 1165.63,879.877 1165.63,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,902.381 1165.63,902.381 1165.63,879.877 1131.71,879.877 1131.71,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,924.885 1267.38,924.885 1267.38,902.381 1233.46,902.381 1233.46,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,924.885 1233.46,924.885 1233.46,902.381 1199.55,902.381 1199.55,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,947.388 1267.38,947.388 1267.38,924.885 1233.46,924.885 1233.46,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,947.388 1233.46,947.388 1233.46,924.885 1199.55,924.885 1199.55,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,924.885 1199.55,924.885 1199.55,902.381 1165.63,902.381 1165.63,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,924.885 1165.63,924.885 1165.63,902.381 1131.71,902.381 1131.71,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,947.388 1199.55,947.388 1199.55,924.885 1165.63,924.885 1165.63,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,947.388 1165.63,947.388 1165.63,924.885 1131.71,924.885 1131.71,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,879.877 1131.71,879.877 1131.71,857.374 1097.79,857.374 1097.79,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,879.877 1097.79,879.877 1097.79,857.374 1063.87,857.374 1063.87,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,902.381 1131.71,902.381 1131.71,879.877 1097.79,879.877 1097.79,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,902.381 1097.79,902.381 1097.79,879.877 1063.87,879.877 1063.87,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,879.877 1063.87,879.877 1063.87,857.374 1029.96,857.374 1029.96,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,879.877 1029.96,879.877 1029.96,857.374 996.039,857.374 996.039,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,902.381 1063.87,902.381 1063.87,879.877 1029.96,879.877 1029.96,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,902.381 1029.96,902.381 1029.96,879.877 996.039,879.877 996.039,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,924.885 1131.71,924.885 1131.71,902.381 1097.79,902.381 1097.79,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,924.885 1097.79,924.885 1097.79,902.381 1063.87,902.381 1063.87,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,947.388 1131.71,947.388 1131.71,924.885 1097.79,924.885 1097.79,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,947.388 1097.79,947.388 1097.79,924.885 1063.87,924.885 1063.87,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,924.885 1063.87,924.885 1063.87,902.381 1029.96,902.381 1029.96,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,924.885 1029.96,924.885 1029.96,902.381 996.039,902.381 996.039,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,947.388 1063.87,947.388 1063.87,924.885 1029.96,924.885 1029.96,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,947.388 1029.96,947.388 1029.96,924.885 996.039,924.885 996.039,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 962.121,789.863 996.039,789.863 996.039,767.359 962.121,767.359 962.121,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,789.863 962.121,789.863 962.121,767.359 928.203,767.359 928.203,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 962.121,812.367 996.039,812.367 996.039,789.863 962.121,789.863 962.121,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,812.367 962.121,812.367 962.121,789.863 928.203,789.863 928.203,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 894.285,789.863 928.203,789.863 928.203,767.359 894.285,767.359 894.285,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,789.863 894.285,789.863 894.285,767.359 860.367,767.359 860.367,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 894.285,812.367 928.203,812.367 928.203,789.863 894.285,789.863 894.285,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,812.367 894.285,812.367 894.285,789.863 860.367,789.863 860.367,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 962.121,834.87 996.039,834.87 996.039,812.367 962.121,812.367 962.121,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,834.87 962.121,834.87 962.121,812.367 928.203,812.367 928.203,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 962.121,857.374 996.039,857.374 996.039,834.87 962.121,834.87 962.121,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,857.374 962.121,857.374 962.121,834.87 928.203,834.87 928.203,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 894.285,834.87 928.203,834.87 928.203,812.367 894.285,812.367 894.285,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,834.87 894.285,834.87 894.285,812.367 860.367,812.367 860.367,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 894.285,857.374 928.203,857.374 928.203,834.87 894.285,834.87 894.285,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,857.374 894.285,857.374 894.285,834.87 860.367,834.87 860.367,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 826.449,789.863 860.367,789.863 860.367,767.359 826.449,767.359 826.449,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,789.863 826.449,789.863 826.449,767.359 792.531,767.359 792.531,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 826.449,812.367 860.367,812.367 860.367,789.863 826.449,789.863 826.449,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,812.367 826.449,812.367 826.449,789.863 792.531,789.863 792.531,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 758.613,789.863 792.531,789.863 792.531,767.359 758.613,767.359 758.613,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,789.863 758.613,789.863 758.613,767.359 724.695,767.359 724.695,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 758.613,812.367 792.531,812.367 792.531,789.863 758.613,789.863 758.613,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,812.367 758.613,812.367 758.613,789.863 724.695,789.863 724.695,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 826.449,834.87 860.367,834.87 860.367,812.367 826.449,812.367 826.449,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,834.87 826.449,834.87 826.449,812.367 792.531,812.367 792.531,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 826.449,857.374 860.367,857.374 860.367,834.87 826.449,834.87 826.449,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,857.374 826.449,857.374 826.449,834.87 792.531,834.87 792.531,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 758.613,834.87 792.531,834.87 792.531,812.367 758.613,812.367 758.613,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,834.87 758.613,834.87 758.613,812.367 724.695,812.367 724.695,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 758.613,857.374 792.531,857.374 792.531,834.87 758.613,834.87 758.613,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,857.374 758.613,857.374 758.613,834.87 724.695,834.87 724.695,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 962.121,879.877 996.039,879.877 996.039,857.374 962.121,857.374 962.121,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,879.877 962.121,879.877 962.121,857.374 928.203,857.374 928.203,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 962.121,902.381 996.039,902.381 996.039,879.877 962.121,879.877 962.121,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,902.381 962.121,902.381 962.121,879.877 928.203,879.877 928.203,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 894.285,879.877 928.203,879.877 928.203,857.374 894.285,857.374 894.285,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,879.877 894.285,879.877 894.285,857.374 860.367,857.374 860.367,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 894.285,902.381 928.203,902.381 928.203,879.877 894.285,879.877 894.285,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,902.381 894.285,902.381 894.285,879.877 860.367,879.877 860.367,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 962.121,924.885 996.039,924.885 996.039,902.381 962.121,902.381 962.121,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,924.885 962.121,924.885 962.121,902.381 928.203,902.381 928.203,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 962.121,947.388 996.039,947.388 996.039,924.885 962.121,924.885 962.121,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,947.388 962.121,947.388 962.121,924.885 928.203,924.885 928.203,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 894.285,924.885 928.203,924.885 928.203,902.381 894.285,902.381 894.285,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,924.885 894.285,924.885 894.285,902.381 860.367,902.381 860.367,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 894.285,947.388 928.203,947.388 928.203,924.885 894.285,924.885 894.285,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,947.388 894.285,947.388 894.285,924.885 860.367,924.885 860.367,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 826.449,879.877 860.367,879.877 860.367,857.374 826.449,857.374 826.449,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,879.877 826.449,879.877 826.449,857.374 792.531,857.374 792.531,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 826.449,902.381 860.367,902.381 860.367,879.877 826.449,879.877 826.449,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,902.381 826.449,902.381 826.449,879.877 792.531,879.877 792.531,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,902.381 792.531,902.381 792.531,857.374 724.695,857.374 724.695,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 826.449,924.885 860.367,924.885 860.367,902.381 826.449,902.381 826.449,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,924.885 826.449,924.885 826.449,902.381 792.531,902.381 792.531,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 826.449,947.388 860.367,947.388 860.367,924.885 826.449,924.885 826.449,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,947.388 826.449,947.388 826.449,924.885 792.531,924.885 792.531,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,947.388 792.531,947.388 792.531,902.381 724.695,902.381 724.695,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,969.892 1267.38,969.892 1267.38,947.388 1233.46,947.388 1233.46,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,969.892 1233.46,969.892 1233.46,947.388 1199.55,947.388 1199.55,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,992.395 1267.38,992.395 1267.38,969.892 1233.46,969.892 1233.46,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,992.395 1233.46,992.395 1233.46,969.892 1199.55,969.892 1199.55,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,969.892 1199.55,969.892 1199.55,947.388 1165.63,947.388 1165.63,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,969.892 1165.63,969.892 1165.63,947.388 1131.71,947.388 1131.71,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,992.395 1199.55,992.395 1199.55,969.892 1165.63,969.892 1165.63,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,992.395 1165.63,992.395 1165.63,969.892 1131.71,969.892 1131.71,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,1014.9 1267.38,1014.9 1267.38,992.395 1233.46,992.395 1233.46,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,1014.9 1233.46,1014.9 1233.46,992.395 1199.55,992.395 1199.55,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,1037.4 1267.38,1037.4 1267.38,1014.9 1233.46,1014.9 1233.46,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,1037.4 1233.46,1037.4 1233.46,1014.9 1199.55,1014.9 1199.55,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,1014.9 1199.55,1014.9 1199.55,992.395 1165.63,992.395 1165.63,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,1014.9 1165.63,1014.9 1165.63,992.395 1131.71,992.395 1131.71,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,1037.4 1199.55,1037.4 1199.55,1014.9 1165.63,1014.9 1165.63,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,1037.4 1165.63,1037.4 1165.63,1014.9 1131.71,1014.9 1131.71,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,969.892 1131.71,969.892 1131.71,947.388 1097.79,947.388 1097.79,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,969.892 1097.79,969.892 1097.79,947.388 1063.87,947.388 1063.87,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,992.395 1131.71,992.395 1131.71,969.892 1097.79,969.892 1097.79,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,992.395 1097.79,992.395 1097.79,969.892 1063.87,969.892 1063.87,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,969.892 1063.87,969.892 1063.87,947.388 1029.96,947.388 1029.96,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,969.892 1029.96,969.892 1029.96,947.388 996.039,947.388 996.039,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,992.395 1063.87,992.395 1063.87,969.892 1029.96,969.892 1029.96,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,992.395 1029.96,992.395 1029.96,969.892 996.039,969.892 996.039,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,1014.9 1131.71,1014.9 1131.71,992.395 1097.79,992.395 1097.79,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,1014.9 1097.79,1014.9 1097.79,992.395 1063.87,992.395 1063.87,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,1037.4 1131.71,1037.4 1131.71,1014.9 1097.79,1014.9 1097.79,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,1037.4 1097.79,1037.4 1097.79,1014.9 1063.87,1014.9 1063.87,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,1014.9 1063.87,1014.9 1063.87,992.395 1029.96,992.395 1029.96,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,1014.9 1029.96,1014.9 1029.96,992.395 996.039,992.395 996.039,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,1037.4 1063.87,1037.4 1063.87,1014.9 1029.96,1014.9 1029.96,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,1037.4 1029.96,1037.4 1029.96,1014.9 996.039,1014.9 996.039,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,1059.91 1267.38,1059.91 1267.38,1037.4 1233.46,1037.4 1233.46,1059.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,1059.91 1233.46,1059.91 1233.46,1037.4 1199.55,1037.4 1199.55,1059.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,1082.41 1267.38,1082.41 1267.38,1059.91 1233.46,1059.91 1233.46,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,1082.41 1233.46,1082.41 1233.46,1059.91 1199.55,1059.91 1199.55,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,1059.91 1199.55,1059.91 1199.55,1037.4 1165.63,1037.4 1165.63,1059.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,1059.91 1165.63,1059.91 1165.63,1037.4 1131.71,1037.4 1131.71,1059.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,1082.41 1199.55,1082.41 1199.55,1059.91 1165.63,1059.91 1165.63,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,1082.41 1165.63,1082.41 1165.63,1059.91 1131.71,1059.91 1131.71,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,1104.91 1267.38,1104.91 1267.38,1082.41 1233.46,1082.41 1233.46,1104.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,1104.91 1233.46,1104.91 1233.46,1082.41 1199.55,1082.41 1199.55,1104.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1233.46,1127.42 1267.38,1127.42 1267.38,1104.91 1233.46,1104.91 1233.46,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,1127.42 1233.46,1127.42 1233.46,1104.91 1199.55,1104.91 1199.55,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,1104.91 1199.55,1104.91 1199.55,1082.41 1165.63,1082.41 1165.63,1104.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,1104.91 1165.63,1104.91 1165.63,1082.41 1131.71,1082.41 1131.71,1104.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1165.63,1127.42 1199.55,1127.42 1199.55,1104.91 1165.63,1104.91 1165.63,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,1127.42 1165.63,1127.42 1165.63,1104.91 1131.71,1104.91 1131.71,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,1059.91 1131.71,1059.91 1131.71,1037.4 1097.79,1037.4 1097.79,1059.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,1059.91 1097.79,1059.91 1097.79,1037.4 1063.87,1037.4 1063.87,1059.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1097.79,1082.41 1131.71,1082.41 1131.71,1059.91 1097.79,1059.91 1097.79,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,1082.41 1097.79,1082.41 1097.79,1059.91 1063.87,1059.91 1063.87,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,1059.91 1063.87,1059.91 1063.87,1037.4 1029.96,1037.4 1029.96,1059.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,1059.91 1029.96,1059.91 1029.96,1037.4 996.039,1037.4 996.039,1059.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1029.96,1082.41 1063.87,1082.41 1063.87,1059.91 1029.96,1059.91 1029.96,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,1082.41 1029.96,1082.41 1029.96,1059.91 996.039,1059.91 996.039,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,1127.42 1131.71,1127.42 1131.71,1082.41 1063.87,1082.41 1063.87,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,1127.42 1063.87,1127.42 1063.87,1082.41 996.039,1082.41 996.039,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 962.121,969.892 996.039,969.892 996.039,947.388 962.121,947.388 962.121,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,969.892 962.121,969.892 962.121,947.388 928.203,947.388 928.203,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 962.121,992.395 996.039,992.395 996.039,969.892 962.121,969.892 962.121,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,992.395 962.121,992.395 962.121,969.892 928.203,969.892 928.203,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 894.285,969.892 928.203,969.892 928.203,947.388 894.285,947.388 894.285,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,969.892 894.285,969.892 894.285,947.388 860.367,947.388 860.367,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 894.285,992.395 928.203,992.395 928.203,969.892 894.285,969.892 894.285,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,992.395 894.285,992.395 894.285,969.892 860.367,969.892 860.367,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 962.121,1014.9 996.039,1014.9 996.039,992.395 962.121,992.395 962.121,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,1014.9 962.121,1014.9 962.121,992.395 928.203,992.395 928.203,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 962.121,1037.4 996.039,1037.4 996.039,1014.9 962.121,1014.9 962.121,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,1037.4 962.121,1037.4 962.121,1014.9 928.203,1014.9 928.203,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 894.285,1014.9 928.203,1014.9 928.203,992.395 894.285,992.395 894.285,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,1014.9 894.285,1014.9 894.285,992.395 860.367,992.395 860.367,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 894.285,1037.4 928.203,1037.4 928.203,1014.9 894.285,1014.9 894.285,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,1037.4 894.285,1037.4 894.285,1014.9 860.367,1014.9 860.367,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,992.395 860.367,992.395 860.367,947.388 792.531,947.388 792.531,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,992.395 792.531,992.395 792.531,947.388 724.695,947.388 724.695,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,1037.4 860.367,1037.4 860.367,992.395 792.531,992.395 792.531,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,1037.4 792.531,1037.4 792.531,992.395 724.695,992.395 724.695,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,1082.41 996.039,1082.41 996.039,1037.4 928.203,1037.4 928.203,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,1082.41 928.203,1082.41 928.203,1037.4 860.367,1037.4 860.367,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,1127.42 996.039,1127.42 996.039,1082.41 928.203,1082.41 928.203,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,1127.42 928.203,1127.42 928.203,1082.41 860.367,1082.41 860.367,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,1082.41 860.367,1082.41 860.367,1037.4 792.531,1037.4 792.531,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,1082.41 792.531,1082.41 792.531,1037.4 724.695,1037.4 724.695,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,1127.42 860.367,1127.42 860.367,1082.41 792.531,1082.41 792.531,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,1127.42 792.531,1127.42 792.531,1082.41 724.695,1082.41 724.695,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,812.367 724.695,812.367 724.695,767.359 656.859,767.359 656.859,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,812.367 656.859,812.367 656.859,767.359 589.023,767.359 589.023,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,857.374 724.695,857.374 724.695,812.367 656.859,812.367 656.859,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,857.374 656.859,857.374 656.859,812.367 589.023,812.367 589.023,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,812.367 589.023,812.367 589.023,767.359 521.187,767.359 521.187,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,812.367 521.187,812.367 521.187,767.359 453.352,767.359 453.352,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,857.374 589.023,857.374 589.023,812.367 521.187,812.367 521.187,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,857.374 521.187,857.374 521.187,812.367 453.352,812.367 453.352,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,902.381 724.695,902.381 724.695,857.374 656.859,857.374 656.859,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,902.381 656.859,902.381 656.859,857.374 589.023,857.374 589.023,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,947.388 724.695,947.388 724.695,902.381 656.859,902.381 656.859,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,947.388 656.859,947.388 656.859,902.381 589.023,902.381 589.023,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,902.381 589.023,902.381 589.023,857.374 521.187,857.374 521.187,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,902.381 521.187,902.381 521.187,857.374 453.352,857.374 453.352,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,947.388 589.023,947.388 589.023,902.381 521.187,902.381 521.187,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,947.388 521.187,947.388 521.187,902.381 453.352,902.381 453.352,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,812.367 453.352,812.367 453.352,767.359 385.516,767.359 385.516,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,812.367 385.516,812.367 385.516,767.359 317.68,767.359 317.68,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,857.374 453.352,857.374 453.352,812.367 385.516,812.367 385.516,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,857.374 385.516,857.374 385.516,812.367 317.68,812.367 317.68,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,812.367 317.68,812.367 317.68,767.359 249.844,767.359 249.844,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,812.367 249.844,812.367 249.844,767.359 182.008,767.359 182.008,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,857.374 317.68,857.374 317.68,812.367 249.844,812.367 249.844,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,857.374 249.844,857.374 249.844,812.367 182.008,812.367 182.008,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,902.381 453.352,902.381 453.352,857.374 385.516,857.374 385.516,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,902.381 385.516,902.381 385.516,857.374 317.68,857.374 317.68,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,947.388 453.352,947.388 453.352,902.381 385.516,902.381 385.516,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,947.388 385.516,947.388 385.516,902.381 317.68,902.381 317.68,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,902.381 317.68,902.381 317.68,857.374 249.844,857.374 249.844,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,902.381 249.844,902.381 249.844,857.374 182.008,857.374 182.008,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,947.388 317.68,947.388 317.68,902.381 249.844,902.381 249.844,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,947.388 249.844,947.388 249.844,902.381 182.008,902.381 182.008,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,992.395 724.695,992.395 724.695,947.388 656.859,947.388 656.859,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,992.395 656.859,992.395 656.859,947.388 589.023,947.388 589.023,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,1037.4 724.695,1037.4 724.695,992.395 656.859,992.395 656.859,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,1037.4 656.859,1037.4 656.859,992.395 589.023,992.395 589.023,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,992.395 589.023,992.395 589.023,947.388 521.187,947.388 521.187,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,992.395 521.187,992.395 521.187,947.388 453.352,947.388 453.352,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,1037.4 589.023,1037.4 589.023,992.395 521.187,992.395 521.187,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,1037.4 521.187,1037.4 521.187,992.395 453.352,992.395 453.352,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,1082.41 724.695,1082.41 724.695,1037.4 656.859,1037.4 656.859,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,1082.41 656.859,1082.41 656.859,1037.4 589.023,1037.4 589.023,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,1127.42 724.695,1127.42 724.695,1082.41 656.859,1082.41 656.859,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,1127.42 656.859,1127.42 656.859,1082.41 589.023,1082.41 589.023,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,1082.41 589.023,1082.41 589.023,1037.4 521.187,1037.4 521.187,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,1082.41 521.187,1082.41 521.187,1037.4 453.352,1037.4 453.352,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,1127.42 589.023,1127.42 589.023,1082.41 521.187,1082.41 521.187,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,1127.42 521.187,1127.42 521.187,1082.41 453.352,1082.41 453.352,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,992.395 453.352,992.395 453.352,947.388 385.516,947.388 385.516,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,992.395 385.516,992.395 385.516,947.388 317.68,947.388 317.68,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,1037.4 453.352,1037.4 453.352,992.395 385.516,992.395 385.516,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,1037.4 385.516,1037.4 385.516,992.395 317.68,992.395 317.68,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,992.395 317.68,992.395 317.68,947.388 249.844,947.388 249.844,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,992.395 249.844,992.395 249.844,947.388 182.008,947.388 182.008,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,1037.4 317.68,1037.4 317.68,992.395 249.844,992.395 249.844,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1037.4 249.844,1037.4 249.844,992.395 182.008,992.395 182.008,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,1082.41 453.352,1082.41 453.352,1037.4 385.516,1037.4 385.516,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,1082.41 385.516,1082.41 385.516,1037.4 317.68,1037.4 317.68,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,1127.42 453.352,1127.42 453.352,1082.41 385.516,1082.41 385.516,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,1127.42 385.516,1127.42 385.516,1082.41 317.68,1082.41 317.68,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,1082.41 317.68,1082.41 317.68,1037.4 249.844,1037.4 249.844,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1082.41 249.844,1082.41 249.844,1037.4 182.008,1037.4 182.008,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,1127.42 317.68,1127.42 317.68,1082.41 249.844,1082.41 249.844,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1127.42 249.844,1127.42 249.844,1082.41 182.008,1082.41 182.008,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,1172.42 1267.38,1172.42 1267.38,1127.42 1199.55,1127.42 1199.55,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,1172.42 1199.55,1172.42 1199.55,1127.42 1131.71,1127.42 1131.71,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,1217.43 1267.38,1217.43 1267.38,1172.42 1199.55,1172.42 1199.55,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,1217.43 1199.55,1217.43 1199.55,1172.42 1131.71,1172.42 1131.71,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,1172.42 1131.71,1172.42 1131.71,1127.42 1063.87,1127.42 1063.87,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,1172.42 1063.87,1172.42 1063.87,1127.42 996.039,1127.42 996.039,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,1217.43 1131.71,1217.43 1131.71,1172.42 1063.87,1172.42 1063.87,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,1217.43 1063.87,1217.43 1063.87,1172.42 996.039,1172.42 996.039,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,1262.44 1267.38,1262.44 1267.38,1217.43 1199.55,1217.43 1199.55,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,1262.44 1199.55,1262.44 1199.55,1217.43 1131.71,1217.43 1131.71,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,1307.45 1267.38,1307.45 1267.38,1262.44 1199.55,1262.44 1199.55,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,1307.45 1199.55,1307.45 1199.55,1262.44 1131.71,1262.44 1131.71,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,1262.44 1131.71,1262.44 1131.71,1217.43 1063.87,1217.43 1063.87,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,1262.44 1063.87,1262.44 1063.87,1217.43 996.039,1217.43 996.039,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,1307.45 1131.71,1307.45 1131.71,1262.44 1063.87,1262.44 1063.87,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,1307.45 1063.87,1307.45 1063.87,1262.44 996.039,1262.44 996.039,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,1172.42 996.039,1172.42 996.039,1127.42 928.203,1127.42 928.203,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,1172.42 928.203,1172.42 928.203,1127.42 860.367,1127.42 860.367,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,1217.43 996.039,1217.43 996.039,1172.42 928.203,1172.42 928.203,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,1217.43 928.203,1217.43 928.203,1172.42 860.367,1172.42 860.367,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,1172.42 860.367,1172.42 860.367,1127.42 792.531,1127.42 792.531,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,1172.42 792.531,1172.42 792.531,1127.42 724.695,1127.42 724.695,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,1217.43 860.367,1217.43 860.367,1172.42 792.531,1172.42 792.531,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,1217.43 792.531,1217.43 792.531,1172.42 724.695,1172.42 724.695,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,1262.44 996.039,1262.44 996.039,1217.43 928.203,1217.43 928.203,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,1262.44 928.203,1262.44 928.203,1217.43 860.367,1217.43 860.367,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,1307.45 996.039,1307.45 996.039,1262.44 928.203,1262.44 928.203,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,1307.45 928.203,1307.45 928.203,1262.44 860.367,1262.44 860.367,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,1262.44 860.367,1262.44 860.367,1217.43 792.531,1217.43 792.531,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,1262.44 792.531,1262.44 792.531,1217.43 724.695,1217.43 724.695,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,1307.45 860.367,1307.45 860.367,1262.44 792.531,1262.44 792.531,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,1307.45 792.531,1307.45 792.531,1262.44 724.695,1262.44 724.695,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,1352.45 1267.38,1352.45 1267.38,1307.45 1199.55,1307.45 1199.55,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,1352.45 1199.55,1352.45 1199.55,1307.45 1131.71,1307.45 1131.71,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,1397.46 1267.38,1397.46 1267.38,1352.45 1199.55,1352.45 1199.55,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,1397.46 1199.55,1397.46 1199.55,1352.45 1131.71,1352.45 1131.71,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,1352.45 1131.71,1352.45 1131.71,1307.45 1063.87,1307.45 1063.87,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,1352.45 1063.87,1352.45 1063.87,1307.45 996.039,1307.45 996.039,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,1397.46 1131.71,1397.46 1131.71,1352.45 1063.87,1352.45 1063.87,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,1397.46 1063.87,1397.46 1063.87,1352.45 996.039,1352.45 996.039,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,1442.47 1267.38,1442.47 1267.38,1397.46 1199.55,1397.46 1199.55,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,1442.47 1199.55,1442.47 1199.55,1397.46 1131.71,1397.46 1131.71,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1199.55,1487.47 1267.38,1487.47 1267.38,1442.47 1199.55,1442.47 1199.55,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1131.71,1487.47 1199.55,1487.47 1199.55,1442.47 1131.71,1442.47 1131.71,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,1442.47 1131.71,1442.47 1131.71,1397.46 1063.87,1397.46 1063.87,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,1442.47 1063.87,1442.47 1063.87,1397.46 996.039,1397.46 996.039,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1063.87,1487.47 1131.71,1487.47 1131.71,1442.47 1063.87,1442.47 1063.87,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 996.039,1487.47 1063.87,1487.47 1063.87,1442.47 996.039,1442.47 996.039,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,1352.45 996.039,1352.45 996.039,1307.45 928.203,1307.45 928.203,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,1352.45 928.203,1352.45 928.203,1307.45 860.367,1307.45 860.367,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,1397.46 996.039,1397.46 996.039,1352.45 928.203,1352.45 928.203,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,1397.46 928.203,1397.46 928.203,1352.45 860.367,1352.45 860.367,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,1352.45 860.367,1352.45 860.367,1307.45 792.531,1307.45 792.531,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,1352.45 792.531,1352.45 792.531,1307.45 724.695,1307.45 724.695,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,1397.46 860.367,1397.46 860.367,1352.45 792.531,1352.45 792.531,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,1397.46 792.531,1397.46 792.531,1352.45 724.695,1352.45 724.695,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,1442.47 996.039,1442.47 996.039,1397.46 928.203,1397.46 928.203,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,1442.47 928.203,1442.47 928.203,1397.46 860.367,1397.46 860.367,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 928.203,1487.47 996.039,1487.47 996.039,1442.47 928.203,1442.47 928.203,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 860.367,1487.47 928.203,1487.47 928.203,1442.47 860.367,1442.47 860.367,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,1442.47 860.367,1442.47 860.367,1397.46 792.531,1397.46 792.531,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,1442.47 792.531,1442.47 792.531,1397.46 724.695,1397.46 724.695,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 792.531,1487.47 860.367,1487.47 860.367,1442.47 792.531,1442.47 792.531,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 724.695,1487.47 792.531,1487.47 792.531,1442.47 724.695,1442.47 724.695,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,1172.42 724.695,1172.42 724.695,1127.42 656.859,1127.42 656.859,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,1172.42 656.859,1172.42 656.859,1127.42 589.023,1127.42 589.023,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,1217.43 724.695,1217.43 724.695,1172.42 656.859,1172.42 656.859,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,1217.43 656.859,1217.43 656.859,1172.42 589.023,1172.42 589.023,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,1172.42 589.023,1172.42 589.023,1127.42 521.187,1127.42 521.187,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,1172.42 521.187,1172.42 521.187,1127.42 453.352,1127.42 453.352,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,1217.43 589.023,1217.43 589.023,1172.42 521.187,1172.42 521.187,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,1217.43 521.187,1217.43 521.187,1172.42 453.352,1172.42 453.352,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,1262.44 724.695,1262.44 724.695,1217.43 656.859,1217.43 656.859,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,1262.44 656.859,1262.44 656.859,1217.43 589.023,1217.43 589.023,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,1307.45 724.695,1307.45 724.695,1262.44 656.859,1262.44 656.859,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,1307.45 656.859,1307.45 656.859,1262.44 589.023,1262.44 589.023,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,1262.44 589.023,1262.44 589.023,1217.43 521.187,1217.43 521.187,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,1262.44 521.187,1262.44 521.187,1217.43 453.352,1217.43 453.352,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,1307.45 589.023,1307.45 589.023,1262.44 521.187,1262.44 521.187,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,1307.45 521.187,1307.45 521.187,1262.44 453.352,1262.44 453.352,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,1172.42 453.352,1172.42 453.352,1127.42 385.516,1127.42 385.516,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,1172.42 385.516,1172.42 385.516,1127.42 317.68,1127.42 317.68,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,1217.43 453.352,1217.43 453.352,1172.42 385.516,1172.42 385.516,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,1217.43 385.516,1217.43 385.516,1172.42 317.68,1172.42 317.68,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,1172.42 317.68,1172.42 317.68,1127.42 249.844,1127.42 249.844,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1172.42 249.844,1172.42 249.844,1127.42 182.008,1127.42 182.008,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,1217.43 317.68,1217.43 317.68,1172.42 249.844,1172.42 249.844,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1217.43 249.844,1217.43 249.844,1172.42 182.008,1172.42 182.008,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,1262.44 453.352,1262.44 453.352,1217.43 385.516,1217.43 385.516,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,1262.44 385.516,1262.44 385.516,1217.43 317.68,1217.43 317.68,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,1307.45 453.352,1307.45 453.352,1262.44 385.516,1262.44 385.516,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,1307.45 385.516,1307.45 385.516,1262.44 317.68,1262.44 317.68,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,1262.44 317.68,1262.44 317.68,1217.43 249.844,1217.43 249.844,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1262.44 249.844,1262.44 249.844,1217.43 182.008,1217.43 182.008,1262.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,1307.45 317.68,1307.45 317.68,1262.44 249.844,1262.44 249.844,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1307.45 249.844,1307.45 249.844,1262.44 182.008,1262.44 182.008,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,1352.45 724.695,1352.45 724.695,1307.45 656.859,1307.45 656.859,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,1352.45 656.859,1352.45 656.859,1307.45 589.023,1307.45 589.023,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,1397.46 724.695,1397.46 724.695,1352.45 656.859,1352.45 656.859,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,1397.46 656.859,1397.46 656.859,1352.45 589.023,1352.45 589.023,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,1352.45 589.023,1352.45 589.023,1307.45 521.187,1307.45 521.187,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,1352.45 521.187,1352.45 521.187,1307.45 453.352,1307.45 453.352,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,1397.46 589.023,1397.46 589.023,1352.45 521.187,1352.45 521.187,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,1397.46 521.187,1397.46 521.187,1352.45 453.352,1352.45 453.352,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,1442.47 724.695,1442.47 724.695,1397.46 656.859,1397.46 656.859,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,1442.47 656.859,1442.47 656.859,1397.46 589.023,1397.46 589.023,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 656.859,1487.47 724.695,1487.47 724.695,1442.47 656.859,1442.47 656.859,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 589.023,1487.47 656.859,1487.47 656.859,1442.47 589.023,1442.47 589.023,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,1442.47 589.023,1442.47 589.023,1397.46 521.187,1397.46 521.187,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,1442.47 521.187,1442.47 521.187,1397.46 453.352,1397.46 453.352,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 521.187,1487.47 589.023,1487.47 589.023,1442.47 521.187,1442.47 521.187,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 453.352,1487.47 521.187,1487.47 521.187,1442.47 453.352,1442.47 453.352,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,1352.45 453.352,1352.45 453.352,1307.45 385.516,1307.45 385.516,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,1352.45 385.516,1352.45 385.516,1307.45 317.68,1307.45 317.68,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,1397.46 453.352,1397.46 453.352,1352.45 385.516,1352.45 385.516,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,1397.46 385.516,1397.46 385.516,1352.45 317.68,1352.45 317.68,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,1352.45 317.68,1352.45 317.68,1307.45 249.844,1307.45 249.844,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1352.45 249.844,1352.45 249.844,1307.45 182.008,1307.45 182.008,1352.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,1397.46 317.68,1397.46 317.68,1352.45 249.844,1352.45 249.844,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1397.46 249.844,1397.46 249.844,1352.45 182.008,1352.45 182.008,1397.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,1442.47 453.352,1442.47 453.352,1397.46 385.516,1397.46 385.516,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,1442.47 385.516,1442.47 385.516,1397.46 317.68,1397.46 317.68,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 385.516,1487.47 453.352,1487.47 453.352,1442.47 385.516,1442.47 385.516,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 317.68,1487.47 385.516,1487.47 385.516,1442.47 317.68,1442.47 317.68,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,1442.47 317.68,1442.47 317.68,1397.46 249.844,1397.46 249.844,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1442.47 249.844,1442.47 249.844,1397.46 182.008,1397.46 182.008,1442.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 249.844,1487.47 317.68,1487.47 317.68,1442.47 249.844,1442.47 249.844,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip0702)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 249.844,1487.47 249.844,1442.47 182.008,1442.47 182.008,1487.47 \n", " \"/>\n", "</svg>\n" ] }, "execution_count": 21, "metadata": {}, "output_type": "execute_result" } ], "source": [ "plt = plot(xlim=(-1, 1), ylim=(-1, 1), legend=nothing)\n", "\n", "x = range(-1, stop=1, length=50)\n", "y = range(-1, stop=1, length=50)\n", "contour!(plt, x, y, (x, y) -> AdaptivelySampledDistanceFields.evaluate(adf, SVector(x, y)), fill=true)\n", "for leaf in allleaves(adf)\n", " v = hcat(collect(vertices(leaf.boundary))...)\n", " plot!(plt, v[1,[1,2,4,3,1]], v[2,[1,2,4,3,1]], color=:white)\n", "end\n", "\n", "\n", "plt" ] }, { "cell_type": "markdown", "metadata": {}, "source": [ "## Coupon Multisize" ] }, { "cell_type": "code", "execution_count": 444, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "Cell: HyperRectangle{2,Float64}([-1.5, -0.2], [3.0, 0.4])" ] }, "execution_count": 444, "metadata": {}, "output_type": "execute_result" } ], "source": [ "rx=1.5\n", "ry=0.2\n", "adf = ASDF(frepCouponScale, SVector(-rx, -ry), SVector(2.0*rx, 2.0*ry),1e-2,1e-2)" ] }, { "cell_type": "code", "execution_count": 446, "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=\"clip2900\">\n", " <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip2900)\" 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=\"clip2901\">\n", " <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip2900)\" d=\"\n", "M182.008 1487.47 L2112.76 1487.47 L2112.76 47.2441 L182.008 47.2441 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip2902\">\n", " <rect x=\"182\" y=\"47\" width=\"1932\" height=\"1441\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 503.799,1487.47 503.799,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 825.591,1487.47 825.591,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1147.38,1487.47 1147.38,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1469.17,1487.47 1469.17,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1790.96,1487.47 1790.96,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,1487.47 2112.76,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,1127.42 2112.76,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,767.359 2112.76,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,407.302 2112.76,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,47.2441 2112.76,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 2112.76,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,47.2441 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.799,1487.47 503.799,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 825.591,1487.47 825.591,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,1487.47 1147.38,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1469.17,1487.47 1469.17,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1790.96,1487.47 1790.96,1470.19 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 205.177,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1127.42 205.177,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,767.359 205.177,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,407.302 205.177,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,47.2441 205.177,47.2441 \n", " \"/>\n", "<g clip-path=\"url(#clip2900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 503.799, 1541.47)\" x=\"503.799\" y=\"1541.47\">-1.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip2900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 825.591, 1541.47)\" x=\"825.591\" y=\"1541.47\">-0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip2900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1147.38, 1541.47)\" x=\"1147.38\" y=\"1541.47\">0.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip2900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1469.17, 1541.47)\" x=\"1469.17\" y=\"1541.47\">0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip2900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1790.96, 1541.47)\" x=\"1790.96\" y=\"1541.47\">1.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip2900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 1504.97)\" x=\"158.008\" y=\"1504.97\">-0.2</text>\n", "</g>\n", "<g clip-path=\"url(#clip2900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 1144.92)\" x=\"158.008\" y=\"1144.92\">-0.1</text>\n", "</g>\n", "<g clip-path=\"url(#clip2900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 784.859)\" x=\"158.008\" y=\"784.859\">0.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip2900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 424.802)\" x=\"158.008\" y=\"424.802\">0.1</text>\n", "</g>\n", "<g clip-path=\"url(#clip2900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 64.7441)\" x=\"158.008\" y=\"64.7441\">0.2</text>\n", "</g>\n", "<path clip-path=\"url(#clip2902)\" d=\"\n", "M182.008 1487.47 L182.008 1487.47 L221.411 1487.47 L260.814 1487.47 L300.217 1487.47 L339.62 1487.47 L379.023 1487.47 L418.426 1487.47 L457.829 1487.47 L497.232 1487.47 \n", " L536.635 1487.47 L576.038 1487.47 L615.441 1487.47 L654.844 1487.47 L694.247 1487.47 L733.65 1487.47 L773.053 1487.47 L812.456 1487.47 L851.859 1487.47 L891.262 1487.47 \n", " L930.665 1487.47 L970.068 1487.47 L1009.47 1487.47 L1048.87 1487.47 L1088.28 1487.47 L1127.68 1487.47 L1167.08 1487.47 L1206.49 1487.47 L1245.89 1487.47 L1285.29 1487.47 \n", " L1324.7 1487.47 L1364.1 1487.47 L1403.5 1487.47 L1442.9 1487.47 L1482.31 1487.47 L1521.71 1487.47 L1561.11 1487.47 L1600.52 1487.47 L1639.92 1487.47 L1679.32 1487.47 \n", " L1718.73 1487.47 L1758.13 1487.47 L1797.53 1487.47 L1836.93 1487.47 L1876.34 1487.47 L1915.74 1487.47 L1955.14 1487.47 L1994.55 1487.47 L2033.95 1487.47 L2073.35 1487.47 \n", " L2112.76 1487.47 L2112.76 1487.47 L2112.76 1487.47 L2112.76 1487.47 L2112.76 1458.08 L2112.76 1428.69 L2112.76 1399.3 L2112.76 1369.9 L2112.76 1340.51 L2112.76 1311.12 \n", " L2112.76 1281.73 L2112.76 1252.34 L2112.76 1222.94 L2112.76 1193.55 L2112.76 1164.16 L2112.76 1134.77 L2112.76 1105.37 L2112.76 1075.98 L2112.76 1046.59 L2112.76 1017.2 \n", " L2112.76 987.803 L2112.76 958.41 L2112.76 929.018 L2112.76 899.625 L2112.76 870.233 L2112.76 840.841 L2112.76 811.448 L2112.76 782.056 L2112.76 752.663 L2112.76 723.271 \n", " L2112.76 693.878 L2112.76 664.486 L2112.76 635.093 L2112.76 605.701 L2112.76 576.308 L2112.76 546.916 L2112.76 517.523 L2112.76 488.131 L2112.76 458.739 L2112.76 429.346 \n", " L2112.76 399.954 L2112.76 370.561 L2112.76 341.169 L2112.76 311.776 L2112.76 282.384 L2112.76 252.991 L2112.76 223.599 L2112.76 194.206 L2112.76 164.814 L2112.76 135.421 \n", " L2112.76 106.029 L2112.76 76.6366 L2112.76 47.2441 L2112.76 47.2441 L2112.76 47.2441 L2112.76 47.2441 L2073.35 47.2441 L2033.95 47.2441 L1994.55 47.2441 L1955.14 47.2441 \n", " L1915.74 47.2441 L1876.34 47.2441 L1836.93 47.2441 L1797.53 47.2441 L1758.13 47.2441 L1718.73 47.2441 L1679.32 47.2441 L1639.92 47.2441 L1600.52 47.2441 L1561.11 47.2441 \n", " L1521.71 47.2441 L1482.31 47.2441 L1442.9 47.2441 L1403.5 47.2441 L1364.1 47.2441 L1324.7 47.2441 L1285.29 47.2441 L1245.89 47.2441 L1206.49 47.2441 L1167.08 47.2441 \n", " L1127.68 47.2441 L1088.28 47.2441 L1048.87 47.2441 L1009.47 47.2441 L970.068 47.2441 L930.665 47.2441 L891.262 47.2441 L851.859 47.2441 L812.456 47.2441 L773.053 47.2441 \n", " L733.65 47.2441 L694.247 47.2441 L654.844 47.2441 L615.441 47.2441 L576.038 47.2441 L536.635 47.2441 L497.232 47.2441 L457.829 47.2441 L418.426 47.2441 L379.023 47.2441 \n", " L339.62 47.2441 L300.217 47.2441 L260.814 47.2441 L221.411 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 47.2441 L182.008 76.6366 L182.008 106.029 \n", " L182.008 135.421 L182.008 164.814 L182.008 194.206 L182.008 223.599 L182.008 252.991 L182.008 282.384 L182.008 311.776 L182.008 341.169 L182.008 370.561 L182.008 399.954 \n", " L182.008 429.346 L182.008 458.739 L182.008 488.131 L182.008 517.523 L182.008 546.916 L182.008 576.308 L182.008 605.701 L182.008 635.093 L182.008 664.486 L182.008 693.878 \n", " L182.008 723.271 L182.008 752.663 L182.008 782.056 L182.008 811.448 L182.008 840.841 L182.008 870.233 L182.008 899.625 L182.008 929.018 L182.008 958.41 L182.008 987.803 \n", " L182.008 1017.2 L182.008 1046.59 L182.008 1075.98 L182.008 1105.37 L182.008 1134.77 L182.008 1164.16 L182.008 1193.55 L182.008 1222.94 L182.008 1252.34 L182.008 1281.73 \n", " L182.008 1311.12 L182.008 1340.51 L182.008 1369.9 L182.008 1399.3 L182.008 1428.69 L182.008 1458.08 L182.008 1487.47 L182.008 1487.47 L182.008 1487.47 Z\n", " \" fill=\"#000003\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2902)\" d=\"\n", "M379.023 1285.71 L418.426 1294.36 L457.829 1296.83 L497.232 1296.83 L536.635 1296.83 L576.038 1296.83 L615.441 1296.83 L654.844 1296.83 L694.247 1295.05 L733.65 1295.05 \n", " L773.053 1295.05 L812.456 1290.39 L840.046 1281.73 L851.859 1276.12 L875.242 1252.34 L885.954 1222.94 L891.262 1200.55 L894.562 1193.55 L904.608 1164.16 L910.533 1134.77 \n", " L930.665 1125.46 L970.068 1123.01 L1009.47 1119.11 L1048.87 1116.48 L1088.28 1116.29 L1127.68 1116.1 L1167.08 1116.1 L1206.49 1116.29 L1245.89 1116.48 L1285.29 1119.11 \n", " L1324.7 1123.01 L1364.1 1125.46 L1384.23 1134.77 L1390.16 1164.16 L1400.2 1193.55 L1403.5 1200.55 L1408.81 1222.94 L1419.52 1252.34 L1442.9 1276.12 L1454.72 1281.73 \n", " L1482.31 1290.39 L1521.71 1295.05 L1561.11 1295.05 L1600.52 1295.05 L1639.92 1296.83 L1679.32 1296.83 L1718.73 1296.83 L1758.13 1296.83 L1797.53 1296.83 L1836.93 1296.83 \n", " L1876.34 1294.36 L1915.74 1285.71 L1926.09 1281.73 L1955.14 1261.5 L1961.7 1252.34 L1973.12 1222.94 L1976.67 1193.55 L1976.67 1164.16 L1976.67 1134.77 L1976.67 1105.37 \n", " L1976.67 1075.98 L1976.67 1046.59 L1976.67 1017.2 L1976.67 987.803 L1976.67 958.41 L1976.67 929.018 L1976.67 899.625 L1976.67 870.233 L1976.67 840.841 L1976.67 811.448 \n", " L1976.67 782.056 L1976.67 752.663 L1976.67 723.271 L1976.67 693.878 L1976.67 664.486 L1976.67 635.093 L1976.67 605.701 L1976.67 576.308 L1976.67 546.916 L1976.67 517.523 \n", " L1976.67 488.131 L1976.67 458.739 L1976.67 429.346 L1976.67 399.954 L1976.67 370.561 L1976.67 341.169 L1973.12 311.776 L1961.7 282.384 L1955.14 273.218 L1926.09 252.991 \n", " L1915.74 249.006 L1876.34 240.357 L1836.93 237.887 L1797.53 237.887 L1758.13 237.887 L1718.73 237.887 L1679.32 237.887 L1639.92 237.887 L1600.52 239.673 L1561.11 239.673 \n", " L1521.71 239.673 L1482.31 244.326 L1454.72 252.991 L1442.9 258.599 L1419.52 282.384 L1408.81 311.776 L1403.5 334.165 L1400.2 341.169 L1390.16 370.561 L1384.23 399.954 \n", " L1364.1 409.256 L1324.7 411.712 L1285.29 415.605 L1245.89 418.241 L1206.49 418.432 L1167.08 418.617 L1127.68 418.617 L1088.28 418.432 L1048.87 418.241 L1009.47 415.605 \n", " L970.068 411.712 L930.665 409.256 L910.533 399.954 L904.608 370.561 L894.562 341.169 L891.262 334.165 L885.954 311.776 L875.242 282.384 L851.859 258.599 L840.046 252.991 \n", " L812.456 244.326 L773.053 239.673 L733.65 239.673 L694.247 239.673 L654.844 237.887 L615.441 237.887 L576.038 237.887 L536.635 237.887 L497.232 237.887 L457.829 237.887 \n", " L418.426 240.357 L379.023 249.006 L368.672 252.991 L339.62 273.218 L333.067 282.384 L321.641 311.776 L318.094 341.169 L318.094 370.561 L318.094 399.954 L318.094 429.346 \n", " L318.094 458.739 L318.094 488.131 L318.094 517.523 L318.094 546.916 L318.094 576.308 L318.094 605.701 L318.094 635.093 L318.094 664.486 L318.094 693.878 L318.094 723.271 \n", " L318.094 752.663 L318.094 782.056 L318.094 811.448 L318.094 840.841 L318.094 870.233 L318.094 899.625 L318.094 929.018 L318.094 958.41 L318.094 987.803 L318.094 1017.2 \n", " L318.094 1046.59 L318.094 1075.98 L318.094 1105.37 L318.094 1134.77 L318.094 1164.16 L318.094 1193.55 L321.641 1222.94 L333.067 1252.34 L339.62 1261.5 L368.672 1281.73 \n", " L379.023 1285.71 Z\n", " \" fill=\"#0c0727\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2902)\" d=\"\n", "M457.829 1282.54 L497.232 1282.54 L536.635 1282.54 L576.038 1282.54 L615.441 1282.54 L654.844 1282.54 L664.695 1281.73 L694.247 1279.32 L733.65 1279.32 L773.053 1279.32 \n", " L812.456 1271.17 L844.446 1252.34 L851.859 1244.79 L865.869 1222.94 L878.205 1193.55 L885.256 1164.16 L889.653 1134.77 L891.262 1133.17 L930.665 1114.59 L970.068 1109.67 \n", " L994.242 1105.37 L1009.47 1102.85 L1048.87 1099.29 L1088.28 1099.29 L1127.68 1099.29 L1167.08 1099.29 L1206.49 1099.29 L1245.89 1099.29 L1285.29 1102.85 L1300.52 1105.37 \n", " L1324.7 1109.67 L1364.1 1114.59 L1403.5 1133.17 L1405.11 1134.77 L1409.51 1164.16 L1416.56 1193.55 L1428.89 1222.94 L1442.9 1244.79 L1450.32 1252.34 L1482.31 1271.17 \n", " L1521.71 1279.32 L1561.11 1279.32 L1600.52 1279.32 L1630.07 1281.73 L1639.92 1282.54 L1679.32 1282.54 L1718.73 1282.54 L1758.13 1282.54 L1797.53 1282.54 L1836.93 1282.54 \n", " L1844.36 1281.73 L1876.34 1278.12 L1915.74 1262.98 L1930.49 1252.34 L1951.91 1222.94 L1955.14 1209.99 L1958.79 1193.55 L1958.79 1164.16 L1958.79 1134.77 L1958.79 1105.37 \n", " L1958.79 1075.98 L1958.79 1046.59 L1958.79 1017.2 L1958.79 987.803 L1958.79 958.41 L1958.79 929.018 L1958.79 899.625 L1958.79 870.233 L1958.79 840.841 L1958.79 811.448 \n", " L1958.79 782.056 L1958.79 752.663 L1958.79 723.271 L1958.79 693.878 L1958.79 664.486 L1958.79 635.093 L1958.79 605.701 L1958.79 576.308 L1958.79 546.916 L1958.79 517.523 \n", " L1958.79 488.131 L1958.79 458.739 L1958.79 429.346 L1958.79 399.954 L1958.79 370.561 L1958.79 341.169 L1955.14 324.728 L1951.91 311.776 L1930.49 282.384 L1915.74 271.736 \n", " L1876.34 256.599 L1844.36 252.991 L1836.93 252.175 L1797.53 252.175 L1758.13 252.175 L1718.73 252.175 L1679.32 252.175 L1639.92 252.175 L1630.07 252.991 L1600.52 255.402 \n", " L1561.11 255.402 L1521.71 255.402 L1482.31 263.545 L1450.32 282.384 L1442.9 289.925 L1428.89 311.776 L1416.56 341.169 L1409.51 370.561 L1405.11 399.954 L1403.5 401.548 \n", " L1364.1 420.132 L1324.7 425.05 L1300.52 429.346 L1285.29 431.869 L1245.89 435.431 L1206.49 435.431 L1167.08 435.431 L1127.68 435.431 L1088.28 435.431 L1048.87 435.431 \n", " L1009.47 431.869 L994.242 429.346 L970.068 425.05 L930.665 420.132 L891.262 401.548 L889.653 399.954 L885.256 370.561 L878.205 341.169 L865.869 311.776 L851.859 289.925 \n", " L844.446 282.384 L812.456 263.545 L773.053 255.402 L733.65 255.402 L694.247 255.402 L664.695 252.991 L654.844 252.175 L615.441 252.175 L576.038 252.175 L536.635 252.175 \n", " L497.232 252.175 L457.829 252.175 L450.403 252.991 L418.426 256.599 L379.023 271.736 L364.273 282.384 L342.849 311.776 L339.62 324.728 L335.972 341.169 L335.972 370.561 \n", " L335.972 399.954 L335.972 429.346 L335.972 458.739 L335.972 488.131 L335.972 517.523 L335.972 546.916 L335.972 576.308 L335.972 605.701 L335.972 635.093 L335.972 664.486 \n", " L335.972 693.878 L335.972 723.271 L335.972 752.663 L335.972 782.056 L335.972 811.448 L335.972 840.841 L335.972 870.233 L335.972 899.625 L335.972 929.018 L335.972 958.41 \n", " L335.972 987.803 L335.972 1017.2 L335.972 1046.59 L335.972 1075.98 L335.972 1105.37 L335.972 1134.77 L335.972 1164.16 L335.972 1193.55 L339.62 1209.99 L342.849 1222.94 \n", " L364.273 1252.34 L379.023 1262.98 L418.426 1278.12 L450.403 1281.73 L457.829 1282.54 Z\n", " \" fill=\"#240b4e\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2902)\" d=\"\n", "M418.426 1263.46 L457.829 1269.94 L497.232 1269.94 L536.635 1269.94 L576.038 1269.94 L615.441 1269.94 L654.844 1269.94 L694.247 1265.25 L733.65 1265.25 L773.053 1265.25 \n", " L812.456 1253.04 L813.649 1252.34 L845.785 1222.94 L851.859 1215.24 L863.972 1193.55 L874.32 1164.16 L880.775 1134.77 L891.262 1124.38 L928.064 1105.37 L930.665 1104.13 \n", " L970.068 1098.71 L1009.47 1090.42 L1048.87 1085.22 L1088.28 1085.22 L1127.68 1085.22 L1167.08 1085.22 L1206.49 1085.22 L1245.89 1085.22 L1285.29 1090.42 L1324.7 1098.71 \n", " L1364.1 1104.13 L1366.7 1105.37 L1403.5 1124.38 L1413.99 1134.77 L1420.44 1164.16 L1430.79 1193.55 L1442.9 1215.24 L1448.98 1222.94 L1481.11 1252.34 L1482.31 1253.04 \n", " L1521.71 1265.25 L1561.11 1265.25 L1600.52 1265.25 L1639.92 1269.94 L1679.32 1269.94 L1718.73 1269.94 L1758.13 1269.94 L1797.53 1269.94 L1836.93 1269.94 L1876.34 1263.46 \n", " L1899.69 1252.34 L1915.74 1240.75 L1931.83 1222.94 L1947.32 1193.55 L1949.33 1164.16 L1950.52 1134.77 L1951.2 1105.37 L1951.21 1075.98 L1951.21 1046.59 L1951.21 1017.2 \n", " L1951.21 987.803 L1951.21 958.41 L1951.21 929.018 L1951.21 899.625 L1951.21 870.233 L1951.21 840.841 L1951.21 811.448 L1951.21 782.056 L1951.21 752.663 L1951.21 723.271 \n", " L1951.21 693.878 L1951.21 664.486 L1951.21 635.093 L1951.21 605.701 L1951.21 576.308 L1951.21 546.916 L1951.21 517.523 L1951.21 488.131 L1951.21 458.739 L1951.2 429.346 \n", " L1950.52 399.954 L1949.33 370.561 L1947.32 341.169 L1931.83 311.776 L1915.74 293.967 L1899.69 282.384 L1876.34 271.263 L1836.93 264.779 L1797.53 264.779 L1758.13 264.779 \n", " L1718.73 264.779 L1679.32 264.779 L1639.92 264.779 L1600.52 269.467 L1561.11 269.467 L1521.71 269.467 L1482.31 281.681 L1481.11 282.384 L1448.98 311.776 L1442.9 319.484 \n", " L1430.79 341.169 L1420.44 370.561 L1413.99 399.954 L1403.5 410.339 L1366.7 429.346 L1364.1 430.588 L1324.7 436.008 L1285.29 444.302 L1245.89 449.496 L1206.49 449.496 \n", " L1167.08 449.496 L1127.68 449.496 L1088.28 449.496 L1048.87 449.496 L1009.47 444.302 L970.068 436.008 L930.665 430.588 L928.064 429.346 L891.262 410.339 L880.775 399.954 \n", " L874.32 370.561 L863.972 341.169 L851.859 319.484 L845.785 311.776 L813.649 282.384 L812.456 281.681 L773.053 269.467 L733.65 269.467 L694.247 269.467 L654.844 264.779 \n", " L615.441 264.779 L576.038 264.779 L536.635 264.779 L497.232 264.779 L457.829 264.779 L418.426 271.263 L395.069 282.384 L379.023 293.967 L362.934 311.776 L347.445 341.169 \n", " L345.434 370.561 L344.246 399.954 L343.561 429.346 L343.552 458.739 L343.552 488.131 L343.552 517.523 L343.552 546.916 L343.552 576.308 L343.552 605.701 L343.552 635.093 \n", " L343.552 664.486 L343.552 693.878 L343.552 723.271 L343.552 752.663 L343.552 782.056 L343.552 811.448 L343.552 840.841 L343.552 870.233 L343.552 899.625 L343.552 929.018 \n", " L343.552 958.41 L343.552 987.803 L343.552 1017.2 L343.552 1046.59 L343.552 1075.98 L343.561 1105.37 L344.246 1134.77 L345.434 1164.16 L347.445 1193.55 L362.934 1222.94 \n", " L379.023 1240.75 L395.069 1252.34 L418.426 1263.46 Z\n", " \" fill=\"#420a67\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2902)\" d=\"\n", "M457.829 1257.44 L497.232 1257.44 L536.635 1257.44 L576.038 1257.44 L615.441 1257.44 L654.844 1257.44 L687.68 1252.34 L694.247 1251.19 L733.65 1251.19 L773.053 1251.19 \n", " L812.456 1234.9 L825.7 1222.94 L849.738 1193.55 L851.859 1189.91 L863.385 1164.16 L871.897 1134.77 L891.262 1115.59 L911.043 1105.37 L930.665 1096.01 L970.068 1088.88 \n", " L1009.47 1077.98 L1022.07 1075.98 L1048.87 1071.16 L1088.28 1071.16 L1127.68 1071.16 L1167.08 1071.16 L1206.49 1071.16 L1245.89 1071.16 L1272.69 1075.98 L1285.29 1077.98 \n", " L1324.7 1088.88 L1364.1 1096.01 L1383.72 1105.37 L1403.5 1115.59 L1422.87 1134.77 L1431.38 1164.16 L1442.9 1189.91 L1445.03 1193.55 L1469.06 1222.94 L1482.31 1234.9 \n", " L1521.71 1251.19 L1561.11 1251.19 L1600.52 1251.19 L1607.08 1252.34 L1639.92 1257.44 L1679.32 1257.44 L1718.73 1257.44 L1758.13 1257.44 L1797.53 1257.44 L1836.93 1257.44 \n", " L1861.69 1252.34 L1876.34 1248.79 L1911.75 1222.94 L1915.74 1220.52 L1937.49 1193.55 L1942.02 1164.16 L1944.71 1134.77 L1946.25 1105.37 L1946.27 1075.98 L1946.27 1046.59 \n", " L1946.27 1017.2 L1946.27 987.803 L1946.27 958.41 L1946.27 929.018 L1946.27 899.625 L1946.27 870.233 L1946.27 840.841 L1946.27 811.448 L1946.27 782.056 L1946.27 752.663 \n", " L1946.27 723.271 L1946.27 693.878 L1946.27 664.486 L1946.27 635.093 L1946.27 605.701 L1946.27 576.308 L1946.27 546.916 L1946.27 517.523 L1946.27 488.131 L1946.27 458.739 \n", " L1946.25 429.346 L1944.71 399.954 L1942.02 370.561 L1937.49 341.169 L1915.74 314.201 L1911.75 311.776 L1876.34 285.926 L1861.69 282.384 L1836.93 277.281 L1797.53 277.281 \n", " L1758.13 277.281 L1718.73 277.281 L1679.32 277.281 L1639.92 277.281 L1607.08 282.384 L1600.52 283.532 L1561.11 283.532 L1521.71 283.532 L1482.31 299.817 L1469.06 311.776 \n", " L1445.03 341.169 L1442.9 344.81 L1431.38 370.561 L1422.87 399.954 L1403.5 419.13 L1383.72 429.346 L1364.1 438.712 L1324.7 445.834 L1285.29 456.735 L1272.69 458.739 \n", " L1245.89 463.561 L1206.49 463.561 L1167.08 463.561 L1127.68 463.561 L1088.28 463.561 L1048.87 463.561 L1022.07 458.739 L1009.47 456.735 L970.068 445.834 L930.665 438.712 \n", " L911.043 429.346 L891.262 419.13 L871.897 399.954 L863.385 370.561 L851.859 344.81 L849.738 341.169 L825.7 311.776 L812.456 299.817 L773.053 283.532 L733.65 283.532 \n", " L694.247 283.532 L687.68 282.384 L654.844 277.281 L615.441 277.281 L576.038 277.281 L536.635 277.281 L497.232 277.281 L457.829 277.281 L433.076 282.384 L418.426 285.926 \n", " L383.018 311.776 L379.023 314.201 L357.277 341.169 L352.739 370.561 L350.057 399.954 L348.512 429.346 L348.493 458.739 L348.493 488.131 L348.493 517.523 L348.493 546.916 \n", " L348.493 576.308 L348.493 605.701 L348.493 635.093 L348.493 664.486 L348.493 693.878 L348.493 723.271 L348.493 752.663 L348.493 782.056 L348.493 811.448 L348.493 840.841 \n", " L348.493 870.233 L348.493 899.625 L348.493 929.018 L348.493 958.41 L348.493 987.803 L348.493 1017.2 L348.493 1046.59 L348.493 1075.98 L348.512 1105.37 L350.057 1134.77 \n", " L352.739 1164.16 L357.277 1193.55 L379.023 1220.52 L383.018 1222.94 L418.426 1248.79 L433.076 1252.34 L457.829 1257.44 Z\n", " \" fill=\"#5d126d\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2902)\" d=\"\n", "M418.426 1234.13 L457.829 1244.94 L497.232 1244.94 L536.635 1244.94 L576.038 1244.94 L615.441 1244.94 L654.844 1244.94 L694.247 1237.12 L733.65 1237.12 L773.053 1237.12 \n", " L802.506 1222.94 L812.456 1217.83 L835.504 1193.55 L851.859 1165.48 L852.45 1164.16 L863.02 1134.77 L891.262 1106.8 L894.021 1105.37 L930.665 1087.88 L970.068 1079.06 \n", " L980.779 1075.98 L1009.47 1065.55 L1048.87 1057.09 L1088.28 1057.09 L1127.68 1057.09 L1167.08 1057.09 L1206.49 1057.09 L1245.89 1057.09 L1285.29 1065.55 L1313.98 1075.98 \n", " L1324.7 1079.06 L1364.1 1087.88 L1400.74 1105.37 L1403.5 1106.8 L1431.74 1134.77 L1442.31 1164.16 L1442.9 1165.48 L1459.26 1193.55 L1482.31 1217.83 L1492.26 1222.94 \n", " L1521.71 1237.12 L1561.11 1237.12 L1600.52 1237.12 L1639.92 1244.94 L1679.32 1244.94 L1718.73 1244.94 L1758.13 1244.94 L1797.53 1244.94 L1836.93 1244.94 L1876.34 1234.13 \n", " L1891.66 1222.94 L1915.74 1208.33 L1927.66 1193.55 L1934.72 1164.16 L1938.89 1134.77 L1941.3 1105.37 L1941.33 1075.98 L1941.33 1046.59 L1941.33 1017.2 L1941.33 987.803 \n", " L1941.33 958.41 L1941.33 929.018 L1941.33 899.625 L1941.33 870.233 L1941.33 840.841 L1941.33 811.448 L1941.33 782.056 L1941.33 752.663 L1941.33 723.271 L1941.33 693.878 \n", " L1941.33 664.486 L1941.33 635.093 L1941.33 605.701 L1941.33 576.308 L1941.33 546.916 L1941.33 517.523 L1941.33 488.131 L1941.33 458.739 L1941.3 429.346 L1938.89 399.954 \n", " L1934.72 370.561 L1927.66 341.169 L1915.74 326.393 L1891.66 311.776 L1876.34 300.589 L1836.93 289.783 L1797.53 289.783 L1758.13 289.783 L1718.73 289.783 L1679.32 289.783 \n", " L1639.92 289.783 L1600.52 297.597 L1561.11 297.597 L1521.71 297.597 L1492.26 311.776 L1482.31 316.884 L1459.26 341.169 L1442.9 369.241 L1442.31 370.561 L1431.74 399.954 \n", " L1403.5 427.921 L1400.74 429.346 L1364.1 446.836 L1324.7 455.661 L1313.98 458.739 L1285.29 469.168 L1245.89 477.626 L1206.49 477.626 L1167.08 477.626 L1127.68 477.626 \n", " L1088.28 477.626 L1048.87 477.626 L1009.47 469.168 L980.779 458.739 L970.068 455.661 L930.665 446.836 L894.021 429.346 L891.262 427.921 L863.02 399.954 L852.45 370.561 \n", " L851.859 369.241 L835.504 341.169 L812.456 316.884 L802.506 311.776 L773.053 297.597 L733.65 297.597 L694.247 297.597 L654.844 289.783 L615.441 289.783 L576.038 289.783 \n", " L536.635 289.783 L497.232 289.783 L457.829 289.783 L418.426 300.589 L403.103 311.776 L379.023 326.393 L367.108 341.169 L360.045 370.561 L355.869 399.954 L353.463 429.346 \n", " L353.433 458.739 L353.433 488.131 L353.433 517.523 L353.433 546.916 L353.433 576.308 L353.433 605.701 L353.433 635.093 L353.433 664.486 L353.433 693.878 L353.433 723.271 \n", " L353.433 752.663 L353.433 782.056 L353.433 811.448 L353.433 840.841 L353.433 870.233 L353.433 899.625 L353.433 929.018 L353.433 958.41 L353.433 987.803 L353.433 1017.2 \n", " L353.433 1046.59 L353.433 1075.98 L353.463 1105.37 L355.869 1134.77 L360.045 1164.16 L367.108 1193.55 L379.023 1208.33 L403.103 1222.94 L418.426 1234.13 Z\n", " \" fill=\"#781c6d\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2902)\" d=\"\n", "M457.829 1232.43 L497.232 1232.43 L536.635 1232.43 L576.038 1232.43 L615.441 1232.43 L654.844 1232.43 L694.247 1223.06 L733.65 1223.06 L773.053 1223.06 L773.292 1222.94 \n", " L812.456 1202.84 L821.271 1193.55 L841.515 1164.16 L851.859 1141.05 L854.142 1134.77 L885.106 1105.37 L891.262 1098.94 L930.665 1079.76 L946.575 1075.98 L970.068 1069.23 \n", " L1009.47 1053.12 L1036.06 1046.59 L1048.87 1043.55 L1088.28 1043.55 L1127.68 1043.55 L1167.08 1043.55 L1206.49 1043.55 L1245.89 1043.55 L1258.7 1046.59 L1285.29 1053.12 \n", " L1324.7 1069.23 L1348.19 1075.98 L1364.1 1079.76 L1403.5 1098.94 L1409.66 1105.37 L1440.62 1134.77 L1442.9 1141.05 L1453.25 1164.16 L1473.49 1193.55 L1482.31 1202.84 \n", " L1521.47 1222.94 L1521.71 1223.06 L1561.11 1223.06 L1600.52 1223.06 L1639.92 1232.43 L1679.32 1232.43 L1718.73 1232.43 L1758.13 1232.43 L1797.53 1232.43 L1836.93 1232.43 \n", " L1866.96 1222.94 L1876.34 1220.42 L1915.74 1196.13 L1917.82 1193.55 L1927.41 1164.16 L1933.08 1134.77 L1936.35 1105.37 L1936.39 1075.98 L1936.39 1046.59 L1936.39 1017.2 \n", " L1936.39 987.803 L1936.39 958.41 L1936.39 929.018 L1936.39 899.625 L1936.39 870.233 L1936.39 840.841 L1936.39 811.448 L1936.39 782.056 L1936.39 752.663 L1936.39 723.271 \n", " L1936.39 693.878 L1936.39 664.486 L1936.39 635.093 L1936.39 605.701 L1936.39 576.308 L1936.39 546.916 L1936.39 517.523 L1936.39 488.131 L1936.39 458.739 L1936.35 429.346 \n", " L1933.08 399.954 L1927.41 370.561 L1917.82 341.169 L1915.74 338.585 L1876.34 314.301 L1866.96 311.776 L1836.93 302.285 L1797.53 302.285 L1758.13 302.285 L1718.73 302.285 \n", " L1679.32 302.285 L1639.92 302.285 L1600.52 311.661 L1561.11 311.661 L1521.71 311.661 L1521.47 311.776 L1482.31 331.882 L1473.49 341.169 L1453.25 370.561 L1442.9 393.672 \n", " L1440.62 399.954 L1409.66 429.346 L1403.5 435.779 L1364.1 454.96 L1348.19 458.739 L1324.7 465.488 L1285.29 481.601 L1258.7 488.131 L1245.89 491.168 L1206.49 491.168 \n", " L1167.08 491.168 L1127.68 491.168 L1088.28 491.168 L1048.87 491.168 L1036.06 488.131 L1009.47 481.601 L970.068 465.488 L946.575 458.739 L930.665 454.96 L891.262 435.779 \n", " L885.106 429.346 L854.142 399.954 L851.859 393.672 L841.515 370.561 L821.271 341.169 L812.456 331.882 L773.292 311.776 L773.053 311.661 L733.65 311.661 L694.247 311.661 \n", " L654.844 302.285 L615.441 302.285 L576.038 302.285 L536.635 302.285 L497.232 302.285 L457.829 302.285 L427.802 311.776 L418.426 314.301 L379.023 338.585 L376.94 341.169 \n", " L367.35 370.561 L361.681 399.954 L358.415 429.346 L358.374 458.739 L358.374 488.131 L358.374 517.523 L358.374 546.916 L358.374 576.308 L358.374 605.701 L358.374 635.093 \n", " L358.374 664.486 L358.374 693.878 L358.374 723.271 L358.374 752.663 L358.374 782.056 L358.374 811.448 L358.374 840.841 L358.374 870.233 L358.374 899.625 L358.374 929.018 \n", " L358.374 958.41 L358.374 987.803 L358.374 1017.2 L358.374 1046.59 L358.374 1075.98 L358.415 1105.37 L361.681 1134.77 L367.35 1164.16 L376.94 1193.55 L379.023 1196.13 \n", " L418.426 1220.42 L427.802 1222.94 L457.829 1232.43 Z\n", " \" fill=\"#942666\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2902)\" d=\"\n", "M418.426 1209.77 L457.829 1219.93 L497.232 1219.93 L536.635 1219.93 L576.038 1219.93 L615.441 1219.93 L654.844 1219.93 L694.247 1211.35 L733.65 1211.35 L773.053 1211.35 \n", " L804.573 1193.55 L812.456 1188.06 L830.58 1164.16 L845.264 1134.77 L851.859 1129.65 L877.759 1105.37 L891.262 1091.26 L922.32 1075.98 L930.665 1071.64 L970.068 1059.4 \n", " L998.955 1046.59 L1009.47 1040.75 L1048.87 1031.55 L1088.28 1031.55 L1127.68 1031.55 L1167.08 1031.55 L1206.49 1031.55 L1245.89 1031.55 L1285.29 1040.75 L1295.81 1046.59 \n", " L1324.7 1059.4 L1364.1 1071.64 L1372.44 1075.98 L1403.5 1091.26 L1417 1105.37 L1442.9 1129.65 L1449.5 1134.77 L1464.18 1164.16 L1482.31 1188.06 L1490.19 1193.55 \n", " L1521.71 1211.35 L1561.11 1211.35 L1600.52 1211.35 L1639.92 1219.93 L1679.32 1219.93 L1718.73 1219.93 L1758.13 1219.93 L1797.53 1219.93 L1836.93 1219.93 L1876.34 1209.77 \n", " L1902.3 1193.55 L1915.74 1176.84 L1920.11 1164.16 L1927.27 1134.77 L1931.4 1105.37 L1931.45 1075.98 L1931.45 1046.59 L1931.45 1017.2 L1931.45 987.803 L1931.45 958.41 \n", " L1931.45 929.018 L1931.45 899.625 L1931.45 870.233 L1931.45 840.841 L1931.45 811.448 L1931.45 782.056 L1931.45 752.663 L1931.45 723.271 L1931.45 693.878 L1931.45 664.486 \n", " L1931.45 635.093 L1931.45 605.701 L1931.45 576.308 L1931.45 546.916 L1931.45 517.523 L1931.45 488.131 L1931.45 458.739 L1931.4 429.346 L1927.27 399.954 L1920.11 370.561 \n", " L1915.74 357.88 L1902.3 341.169 L1876.34 324.953 L1836.93 314.787 L1797.53 314.787 L1758.13 314.787 L1718.73 314.787 L1679.32 314.787 L1639.92 314.787 L1600.52 323.371 \n", " L1561.11 323.371 L1521.71 323.371 L1490.19 341.169 L1482.31 346.66 L1464.18 370.561 L1449.5 399.954 L1442.9 405.069 L1417 429.346 L1403.5 443.457 L1372.44 458.739 \n", " L1364.1 463.084 L1324.7 475.315 L1295.81 488.131 L1285.29 493.965 L1245.89 503.17 L1206.49 503.17 L1167.08 503.17 L1127.68 503.17 L1088.28 503.17 L1048.87 503.17 \n", " L1009.47 493.965 L998.955 488.131 L970.068 475.315 L930.665 463.084 L922.32 458.739 L891.262 443.457 L877.759 429.346 L851.859 405.069 L845.264 399.954 L830.58 370.561 \n", " L812.456 346.66 L804.573 341.169 L773.053 323.371 L733.65 323.371 L694.247 323.371 L654.844 314.787 L615.441 314.787 L576.038 314.787 L536.635 314.787 L497.232 314.787 \n", " L457.829 314.787 L418.426 324.953 L392.463 341.169 L379.023 357.88 L374.655 370.561 L367.492 399.954 L363.366 429.346 L363.314 458.739 L363.314 488.131 L363.314 517.523 \n", " L363.314 546.916 L363.314 576.308 L363.314 605.701 L363.314 635.093 L363.314 664.486 L363.314 693.878 L363.314 723.271 L363.314 752.663 L363.314 782.056 L363.314 811.448 \n", " L363.314 840.841 L363.314 870.233 L363.314 899.625 L363.314 929.018 L363.314 958.41 L363.314 987.803 L363.314 1017.2 L363.314 1046.59 L363.314 1075.98 L363.366 1105.37 \n", " L367.492 1134.77 L374.655 1164.16 L379.023 1176.84 L392.463 1193.55 L418.426 1209.77 Z\n", " \" fill=\"#ad305b\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2902)\" d=\"\n", "M418.426 1199.11 L457.829 1207.43 L497.232 1207.43 L536.635 1207.43 L576.038 1207.43 L615.441 1207.43 L654.844 1207.43 L694.247 1199.66 L733.65 1199.66 L773.053 1199.66 \n", " L783.87 1193.55 L812.456 1173.64 L819.645 1164.16 L836.386 1134.77 L851.859 1122.76 L870.413 1105.37 L891.262 1083.58 L906.717 1075.98 L930.665 1063.51 L970.068 1049.58 \n", " L976.806 1046.59 L1009.47 1028.47 L1048.87 1019.55 L1088.28 1019.55 L1127.68 1019.55 L1167.08 1019.55 L1206.49 1019.55 L1245.89 1019.55 L1285.29 1028.47 L1317.96 1046.59 \n", " L1324.7 1049.58 L1364.1 1063.51 L1388.05 1075.98 L1403.5 1083.58 L1424.35 1105.37 L1442.9 1122.76 L1458.38 1134.77 L1475.12 1164.16 L1482.31 1173.64 L1510.89 1193.55 \n", " L1521.71 1199.66 L1561.11 1199.66 L1600.52 1199.66 L1639.92 1207.43 L1679.32 1207.43 L1718.73 1207.43 L1758.13 1207.43 L1797.53 1207.43 L1836.93 1207.43 L1876.34 1199.11 \n", " L1885.25 1193.55 L1911.26 1164.16 L1915.74 1155.63 L1921.46 1134.77 L1926.45 1105.37 L1926.51 1075.98 L1926.51 1046.59 L1926.51 1017.2 L1926.51 987.803 L1926.51 958.41 \n", " L1926.51 929.018 L1926.51 899.625 L1926.51 870.233 L1926.51 840.841 L1926.51 811.448 L1926.51 782.056 L1926.51 752.663 L1926.51 723.271 L1926.51 693.878 L1926.51 664.486 \n", " L1926.51 635.093 L1926.51 605.701 L1926.51 576.308 L1926.51 546.916 L1926.51 517.523 L1926.51 488.131 L1926.51 458.739 L1926.45 429.346 L1921.46 399.954 L1915.74 379.086 \n", " L1911.26 370.561 L1885.25 341.169 L1876.34 335.604 L1836.93 327.289 L1797.53 327.289 L1758.13 327.289 L1718.73 327.289 L1679.32 327.289 L1639.92 327.289 L1600.52 335.061 \n", " L1561.11 335.061 L1521.71 335.061 L1510.89 341.169 L1482.31 361.081 L1475.12 370.561 L1458.38 399.954 L1442.9 411.956 L1424.35 429.346 L1403.5 451.134 L1388.05 458.739 \n", " L1364.1 471.208 L1324.7 485.142 L1317.96 488.131 L1285.29 506.252 L1245.89 515.172 L1206.49 515.172 L1167.08 515.172 L1127.68 515.172 L1088.28 515.172 L1048.87 515.172 \n", " L1009.47 506.252 L976.806 488.131 L970.068 485.142 L930.665 471.208 L906.717 458.739 L891.262 451.134 L870.413 429.346 L851.859 411.956 L836.386 399.954 L819.645 370.561 \n", " L812.456 361.081 L783.87 341.169 L773.053 335.061 L733.65 335.061 L694.247 335.061 L654.844 327.289 L615.441 327.289 L576.038 327.289 L536.635 327.289 L497.232 327.289 \n", " L457.829 327.289 L418.426 335.604 L409.517 341.169 L383.502 370.561 L379.023 379.086 L373.304 399.954 L368.317 429.346 L368.255 458.739 L368.255 488.131 L368.255 517.523 \n", " L368.255 546.916 L368.255 576.308 L368.255 605.701 L368.255 635.093 L368.255 664.486 L368.255 693.878 L368.255 723.271 L368.255 752.663 L368.255 782.056 L368.255 811.448 \n", " L368.255 840.841 L368.255 870.233 L368.255 899.625 L368.255 929.018 L368.255 958.41 L368.255 987.803 L368.255 1017.2 L368.255 1046.59 L368.255 1075.98 L368.317 1105.37 \n", " L373.304 1134.77 L379.023 1155.63 L383.502 1164.16 L409.517 1193.55 L418.426 1199.11 Z\n", " \" fill=\"#c73e4c\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2902)\" d=\"\n", "M457.829 1194.93 L497.232 1194.93 L536.635 1194.93 L576.038 1194.93 L615.441 1194.93 L654.844 1194.93 L662.232 1193.55 L694.247 1188.18 L733.65 1188.18 L773.053 1188.18 \n", " L807.007 1164.16 L812.456 1159.22 L827.509 1134.77 L851.859 1115.88 L863.066 1105.37 L891.186 1075.98 L891.262 1075.9 L930.665 1055.39 L954.656 1046.59 L970.068 1037.55 \n", " L1007.49 1017.2 L1009.47 1016.18 L1048.87 1008.15 L1088.28 1008.15 L1127.68 1008.15 L1167.08 1008.15 L1206.49 1008.15 L1245.89 1008.15 L1285.29 1016.18 L1287.27 1017.2 \n", " L1324.7 1037.55 L1340.11 1046.59 L1364.1 1055.39 L1403.5 1075.9 L1403.58 1075.98 L1431.7 1105.37 L1442.9 1115.88 L1467.26 1134.77 L1482.31 1159.22 L1487.76 1164.16 \n", " L1521.71 1188.18 L1561.11 1188.18 L1600.52 1188.18 L1632.53 1193.55 L1639.92 1194.93 L1679.32 1194.93 L1718.73 1194.93 L1758.13 1194.93 L1797.53 1194.93 L1836.93 1194.93 \n", " L1844.32 1193.55 L1876.34 1188.18 L1900.12 1164.16 L1915.61 1134.77 L1915.74 1134.37 L1921.5 1105.37 L1921.57 1075.98 L1921.57 1046.59 L1921.57 1017.2 L1921.57 987.803 \n", " L1921.57 958.41 L1921.57 929.018 L1921.57 899.625 L1921.57 870.233 L1921.57 840.841 L1921.57 811.448 L1921.57 782.056 L1921.57 752.663 L1921.57 723.271 L1921.57 693.878 \n", " L1921.57 664.486 L1921.57 635.093 L1921.57 605.701 L1921.57 576.308 L1921.57 546.916 L1921.57 517.523 L1921.57 488.131 L1921.57 458.739 L1921.5 429.346 L1915.74 400.351 \n", " L1915.61 399.954 L1900.12 370.561 L1876.34 346.542 L1844.32 341.169 L1836.93 339.791 L1797.53 339.791 L1758.13 339.791 L1718.73 339.791 L1679.32 339.791 L1639.92 339.791 \n", " L1632.53 341.169 L1600.52 346.542 L1561.11 346.542 L1521.71 346.542 L1487.76 370.561 L1482.31 375.502 L1467.26 399.954 L1442.9 418.842 L1431.7 429.346 L1403.58 458.739 \n", " L1403.5 458.824 L1364.1 479.332 L1340.11 488.131 L1324.7 497.173 L1287.27 517.523 L1285.29 518.535 L1245.89 526.571 L1206.49 526.571 L1167.08 526.571 L1127.68 526.571 \n", " L1088.28 526.571 L1048.87 526.571 L1009.47 518.535 L1007.49 517.523 L970.068 497.173 L954.656 488.131 L930.665 479.332 L891.262 458.824 L891.186 458.739 L863.066 429.346 \n", " L851.859 418.842 L827.509 399.954 L812.456 375.502 L807.007 370.561 L773.053 346.542 L733.65 346.542 L694.247 346.542 L662.232 341.169 L654.844 339.791 L615.441 339.791 \n", " L576.038 339.791 L536.635 339.791 L497.232 339.791 L457.829 339.791 L450.441 341.169 L418.426 346.542 L394.643 370.561 L379.155 399.954 L379.023 400.351 L373.268 429.346 \n", " L373.195 458.739 L373.195 488.131 L373.195 517.523 L373.195 546.916 L373.195 576.308 L373.195 605.701 L373.195 635.093 L373.195 664.486 L373.195 693.878 L373.195 723.271 \n", " L373.195 752.663 L373.195 782.056 L373.195 811.448 L373.195 840.841 L373.195 870.233 L373.195 899.625 L373.195 929.018 L373.195 958.41 L373.195 987.803 L373.195 1017.2 \n", " L373.195 1046.59 L373.195 1075.98 L373.268 1105.37 L379.023 1134.37 L379.155 1134.77 L394.643 1164.16 L418.426 1188.18 L450.441 1193.55 L457.829 1194.93 Z\n", " \" fill=\"#db503a\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2902)\" d=\"\n", "M418.426 1176.92 L457.829 1182.43 L497.232 1182.43 L536.635 1182.43 L576.038 1182.43 L615.441 1182.43 L654.844 1182.43 L694.247 1176.92 L733.65 1176.92 L773.053 1176.92 \n", " L791.101 1164.16 L812.456 1144.8 L818.631 1134.77 L851.859 1108.99 L855.719 1105.37 L883.191 1075.98 L891.262 1066.98 L930.665 1047.26 L932.506 1046.59 L970.068 1024.55 \n", " L983.596 1017.2 L1009.47 1003.96 L1048.87 996.896 L1088.28 996.896 L1127.68 996.896 L1167.08 996.896 L1206.49 996.896 L1245.89 996.896 L1285.29 1003.96 L1311.17 1017.2 \n", " L1324.7 1024.55 L1362.26 1046.59 L1364.1 1047.26 L1403.5 1066.98 L1411.57 1075.98 L1439.04 1105.37 L1442.9 1108.99 L1476.13 1134.77 L1482.31 1144.8 L1503.66 1164.16 \n", " L1521.71 1176.92 L1561.11 1176.92 L1600.52 1176.92 L1639.92 1182.43 L1679.32 1182.43 L1718.73 1182.43 L1758.13 1182.43 L1797.53 1182.43 L1836.93 1182.43 L1876.34 1176.92 \n", " L1888.98 1164.16 L1907.34 1134.77 L1915.74 1109.42 L1916.54 1105.37 L1916.63 1075.98 L1916.63 1046.59 L1916.63 1017.2 L1916.63 987.803 L1916.63 958.41 L1916.63 929.018 \n", " L1916.63 899.625 L1916.63 870.233 L1916.63 840.841 L1916.63 811.448 L1916.63 782.056 L1916.63 752.663 L1916.63 723.271 L1916.63 693.878 L1916.63 664.486 L1916.63 635.093 \n", " L1916.63 605.701 L1916.63 576.308 L1916.63 546.916 L1916.63 517.523 L1916.63 488.131 L1916.63 458.739 L1916.54 429.346 L1915.74 425.298 L1907.34 399.954 L1888.98 370.561 \n", " L1876.34 357.794 L1836.93 352.293 L1797.53 352.293 L1758.13 352.293 L1718.73 352.293 L1679.32 352.293 L1639.92 352.293 L1600.52 357.794 L1561.11 357.794 L1521.71 357.794 \n", " L1503.66 370.561 L1482.31 389.923 L1476.13 399.954 L1442.9 425.728 L1439.04 429.346 L1411.57 458.739 L1403.5 467.738 L1364.1 487.456 L1362.26 488.131 L1324.7 510.168 \n", " L1311.17 517.523 L1285.29 530.757 L1245.89 537.823 L1206.49 537.823 L1167.08 537.823 L1127.68 537.823 L1088.28 537.823 L1048.87 537.823 L1009.47 530.757 L983.596 517.523 \n", " L970.068 510.168 L932.506 488.131 L930.665 487.456 L891.262 467.738 L883.191 458.739 L855.719 429.346 L851.859 425.728 L818.631 399.954 L812.456 389.923 L791.101 370.561 \n", " L773.053 357.794 L733.65 357.794 L694.247 357.794 L654.844 352.293 L615.441 352.293 L576.038 352.293 L536.635 352.293 L497.232 352.293 L457.829 352.293 L418.426 357.794 \n", " L405.784 370.561 L387.428 399.954 L379.023 425.298 L378.22 429.346 L378.136 458.739 L378.136 488.131 L378.136 517.523 L378.136 546.916 L378.136 576.308 L378.136 605.701 \n", " L378.136 635.093 L378.136 664.486 L378.136 693.878 L378.136 723.271 L378.136 752.663 L378.136 782.056 L378.136 811.448 L378.136 840.841 L378.136 870.233 L378.136 899.625 \n", " L378.136 929.018 L378.136 958.41 L378.136 987.803 L378.136 1017.2 L378.136 1046.59 L378.136 1075.98 L378.22 1105.37 L379.023 1109.42 L387.428 1134.77 L405.784 1164.16 \n", " L418.426 1176.92 Z\n", " \" fill=\"#ec6925\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2902)\" d=\"\n", "M418.426 1165.67 L457.829 1169.92 L497.232 1169.92 L536.635 1169.92 L576.038 1169.92 L615.441 1169.92 L654.844 1169.92 L694.247 1165.67 L733.65 1165.67 L773.053 1165.67 \n", " L775.196 1164.16 L808.525 1134.77 L812.456 1131.54 L845.505 1105.37 L851.859 1101.26 L875.196 1075.98 L891.262 1058.07 L914.276 1046.59 L930.665 1033.95 L959.699 1017.2 \n", " L970.068 1010.59 L1009.47 991.739 L1034.16 987.803 L1048.87 985.644 L1088.28 985.644 L1127.68 985.644 L1167.08 985.644 L1206.49 985.644 L1245.89 985.644 L1260.6 987.803 \n", " L1285.29 991.739 L1324.7 1010.59 L1335.07 1017.2 L1364.1 1033.95 L1380.49 1046.59 L1403.5 1058.07 L1419.57 1075.98 L1442.9 1101.26 L1449.26 1105.37 L1482.31 1131.54 \n", " L1486.24 1134.77 L1519.57 1164.16 L1521.71 1165.67 L1561.11 1165.67 L1600.52 1165.67 L1639.92 1169.92 L1679.32 1169.92 L1718.73 1169.92 L1758.13 1169.92 L1797.53 1169.92 \n", " L1836.93 1169.92 L1876.34 1165.67 L1877.84 1164.16 L1899.06 1134.77 L1910.05 1105.37 L1910.19 1075.98 L1910.19 1046.59 L1910.19 1017.2 L1910.19 987.803 L1910.19 958.41 \n", " L1910.19 929.018 L1910.19 899.625 L1910.19 870.233 L1910.19 840.841 L1910.19 811.448 L1910.19 782.056 L1910.19 752.663 L1910.19 723.271 L1910.19 693.878 L1910.19 664.486 \n", " L1910.19 635.093 L1910.19 605.701 L1910.19 576.308 L1910.19 546.916 L1910.19 517.523 L1910.19 488.131 L1910.19 458.739 L1910.05 429.346 L1899.06 399.954 L1877.84 370.561 \n", " L1876.34 369.046 L1836.93 364.795 L1797.53 364.795 L1758.13 364.795 L1718.73 364.795 L1679.32 364.795 L1639.92 364.795 L1600.52 369.046 L1561.11 369.046 L1521.71 369.046 \n", " L1519.57 370.561 L1486.24 399.954 L1482.31 403.181 L1449.26 429.346 L1442.9 433.457 L1419.57 458.739 L1403.5 476.653 L1380.49 488.131 L1364.1 500.773 L1335.07 517.523 \n", " L1324.7 524.13 L1285.29 542.98 L1260.6 546.916 L1245.89 549.074 L1206.49 549.074 L1167.08 549.074 L1127.68 549.074 L1088.28 549.074 L1048.87 549.074 L1034.16 546.916 \n", " L1009.47 542.98 L970.068 524.13 L959.699 517.523 L930.665 500.773 L914.276 488.131 L891.262 476.653 L875.196 458.739 L851.859 433.457 L845.505 429.346 L812.456 403.181 \n", " L808.525 399.954 L775.196 370.561 L773.053 369.046 L733.65 369.046 L694.247 369.046 L654.844 364.795 L615.441 364.795 L576.038 364.795 L536.635 364.795 L497.232 364.795 \n", " L457.829 364.795 L418.426 369.046 L416.926 370.561 L395.701 399.954 L384.709 429.346 L384.577 458.739 L384.577 488.131 L384.577 517.523 L384.577 546.916 L384.577 576.308 \n", " L384.577 605.701 L384.577 635.093 L384.577 664.486 L384.577 693.878 L384.577 723.271 L384.577 752.663 L384.577 782.056 L384.577 811.448 L384.577 840.841 L384.577 870.233 \n", " L384.577 899.625 L384.577 929.018 L384.577 958.41 L384.577 987.803 L384.577 1017.2 L384.577 1046.59 L384.577 1075.98 L384.709 1105.37 L395.701 1134.77 L416.926 1164.16 \n", " L418.426 1165.67 Z\n", " \" fill=\"#f7850e\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2902)\" d=\"\n", "M418.426 1154.42 L457.829 1157.42 L497.232 1157.42 L536.635 1157.42 L576.038 1157.42 L615.441 1157.42 L654.844 1157.42 L694.247 1154.42 L733.65 1154.42 L773.053 1154.42 \n", " L795.612 1134.77 L812.456 1120.94 L832.116 1105.37 L851.859 1092.6 L867.201 1075.98 L891.262 1049.15 L896.402 1046.59 L930.665 1020.16 L935.801 1017.2 L970.068 995.363 \n", " L986.727 987.803 L1009.47 979.516 L1048.87 974.393 L1088.28 974.393 L1127.68 974.393 L1167.08 974.393 L1206.49 974.393 L1245.89 974.393 L1285.29 979.516 L1308.04 987.803 \n", " L1324.7 995.363 L1358.96 1017.2 L1364.1 1020.16 L1398.36 1046.59 L1403.5 1049.15 L1427.56 1075.98 L1442.9 1092.6 L1462.65 1105.37 L1482.31 1120.94 L1499.15 1134.77 \n", " L1521.71 1154.42 L1561.11 1154.42 L1600.52 1154.42 L1639.92 1157.42 L1679.32 1157.42 L1718.73 1157.42 L1758.13 1157.42 L1797.53 1157.42 L1836.93 1157.42 L1876.34 1154.42 \n", " L1890.79 1134.77 L1903.27 1105.37 L1903.42 1075.98 L1903.42 1046.59 L1903.42 1017.2 L1903.42 987.803 L1903.42 958.41 L1903.42 929.018 L1903.42 899.625 L1903.42 870.233 \n", " L1903.42 840.841 L1903.42 811.448 L1903.42 782.056 L1903.42 752.663 L1903.42 723.271 L1903.42 693.878 L1903.42 664.486 L1903.42 635.093 L1903.42 605.701 L1903.42 576.308 \n", " L1903.42 546.916 L1903.42 517.523 L1903.42 488.131 L1903.42 458.739 L1903.27 429.346 L1890.79 399.954 L1876.34 380.297 L1836.93 377.297 L1797.53 377.297 L1758.13 377.297 \n", " L1718.73 377.297 L1679.32 377.297 L1639.92 377.297 L1600.52 380.297 L1561.11 380.297 L1521.71 380.297 L1499.15 399.954 L1482.31 413.781 L1462.65 429.346 L1442.9 442.118 \n", " L1427.56 458.739 L1403.5 485.568 L1398.36 488.131 L1364.1 514.561 L1358.96 517.523 L1324.7 539.355 L1308.04 546.916 L1285.29 555.203 L1245.89 560.326 L1206.49 560.326 \n", " L1167.08 560.326 L1127.68 560.326 L1088.28 560.326 L1048.87 560.326 L1009.47 555.203 L986.727 546.916 L970.068 539.355 L935.801 517.523 L930.665 514.561 L896.402 488.131 \n", " L891.262 485.568 L867.201 458.739 L851.859 442.118 L832.116 429.346 L812.456 413.781 L795.612 399.954 L773.053 380.297 L733.65 380.297 L694.247 380.297 L654.844 377.297 \n", " L615.441 377.297 L576.038 377.297 L536.635 377.297 L497.232 377.297 L457.829 377.297 L418.426 380.297 L403.974 399.954 L391.497 429.346 L391.347 458.739 L391.347 488.131 \n", " L391.347 517.523 L391.347 546.916 L391.347 576.308 L391.347 605.701 L391.347 635.093 L391.347 664.486 L391.347 693.878 L391.347 723.271 L391.347 752.663 L391.347 782.056 \n", " L391.347 811.448 L391.347 840.841 L391.347 870.233 L391.347 899.625 L391.347 929.018 L391.347 958.41 L391.347 987.803 L391.347 1017.2 L391.347 1046.59 L391.347 1075.98 \n", " L391.497 1105.37 L403.974 1134.77 L418.426 1154.42 Z\n", " \" fill=\"#fba40a\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2902)\" d=\"\n", "M418.426 1143.17 L457.829 1144.92 L497.232 1144.92 L536.635 1144.92 L576.038 1144.92 L615.441 1144.92 L654.844 1144.92 L694.247 1143.17 L733.65 1143.17 L773.053 1143.17 \n", " L782.699 1134.77 L812.456 1110.34 L818.728 1105.37 L851.859 1083.94 L859.206 1075.98 L881.716 1046.59 L891.262 1030.42 L908.048 1017.2 L930.665 1001.35 L953.18 987.803 \n", " L970.068 980.138 L1009.47 967.294 L1048.87 963.141 L1088.28 963.141 L1127.68 963.141 L1167.08 963.141 L1206.49 963.141 L1245.89 963.141 L1285.29 967.294 L1324.7 980.138 \n", " L1341.58 987.803 L1364.1 1001.35 L1386.72 1017.2 L1403.5 1030.42 L1413.05 1046.59 L1435.56 1075.98 L1442.9 1083.94 L1476.04 1105.37 L1482.31 1110.34 L1512.07 1134.77 \n", " L1521.71 1143.17 L1561.11 1143.17 L1600.52 1143.17 L1639.92 1144.92 L1679.32 1144.92 L1718.73 1144.92 L1758.13 1144.92 L1797.53 1144.92 L1836.93 1144.92 L1876.34 1143.17 \n", " L1882.52 1134.77 L1896.48 1105.37 L1896.65 1075.98 L1896.65 1046.59 L1896.65 1017.2 L1896.65 987.803 L1896.65 958.41 L1896.65 929.018 L1896.65 899.625 L1896.65 870.233 \n", " L1896.65 840.841 L1896.65 811.448 L1896.65 782.056 L1896.65 752.663 L1896.65 723.271 L1896.65 693.878 L1896.65 664.486 L1896.65 635.093 L1896.65 605.701 L1896.65 576.308 \n", " L1896.65 546.916 L1896.65 517.523 L1896.65 488.131 L1896.65 458.739 L1896.48 429.346 L1882.52 399.954 L1876.34 391.549 L1836.93 389.799 L1797.53 389.799 L1758.13 389.799 \n", " L1718.73 389.799 L1679.32 389.799 L1639.92 389.799 L1600.52 391.549 L1561.11 391.549 L1521.71 391.549 L1512.07 399.954 L1482.31 424.381 L1476.04 429.346 L1442.9 450.78 \n", " L1435.56 458.739 L1413.05 488.131 L1403.5 504.3 L1386.72 517.523 L1364.1 533.37 L1341.58 546.916 L1324.7 554.581 L1285.29 567.425 L1245.89 571.578 L1206.49 571.578 \n", " L1167.08 571.578 L1127.68 571.578 L1088.28 571.578 L1048.87 571.578 L1009.47 567.425 L970.068 554.581 L953.18 546.916 L930.665 533.37 L908.048 517.523 L891.262 504.3 \n", " L881.716 488.131 L859.206 458.739 L851.859 450.78 L818.728 429.346 L812.456 424.381 L782.699 399.954 L773.053 391.549 L733.65 391.549 L694.247 391.549 L654.844 389.799 \n", " L615.441 389.799 L576.038 389.799 L536.635 389.799 L497.232 389.799 L457.829 389.799 L418.426 391.549 L412.247 399.954 L398.285 429.346 L398.117 458.739 L398.117 488.131 \n", " L398.117 517.523 L398.117 546.916 L398.117 576.308 L398.117 605.701 L398.117 635.093 L398.117 664.486 L398.117 693.878 L398.117 723.271 L398.117 752.663 L398.117 782.056 \n", " L398.117 811.448 L398.117 840.841 L398.117 870.233 L398.117 899.625 L398.117 929.018 L398.117 958.41 L398.117 987.803 L398.117 1017.2 L398.117 1046.59 L398.117 1075.98 \n", " L398.285 1105.37 L412.247 1134.77 L418.426 1143.17 Z\n", " \" fill=\"#f9c52d\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2902)\" d=\"\n", "M418.426 1131.42 L457.829 1127.72 L497.232 1127.72 L536.635 1127.72 L576.038 1127.72 L615.441 1127.72 L654.844 1127.72 L694.247 1127.65 L733.65 1127.65 L773.053 1127.65 \n", " L796.629 1105.37 L812.456 1097.33 L849.719 1075.98 L851.859 1074.16 L868.318 1046.59 L872.981 1017.2 L891.262 1005.14 L916.722 987.803 L930.665 981.165 L970.068 964.913 \n", " L994.099 958.41 L1009.47 953.565 L1048.87 948.559 L1088.28 947.013 L1127.68 944.892 L1167.08 944.892 L1206.49 947.013 L1245.89 948.559 L1285.29 953.565 L1300.67 958.41 \n", " L1324.7 964.913 L1364.1 981.165 L1378.04 987.803 L1403.5 1005.14 L1421.78 1017.2 L1426.45 1046.59 L1442.9 1074.16 L1445.05 1075.98 L1482.31 1097.33 L1498.13 1105.37 \n", " L1521.71 1127.65 L1561.11 1127.65 L1600.52 1127.65 L1639.92 1127.72 L1679.32 1127.72 L1718.73 1127.72 L1758.13 1127.72 L1797.53 1127.72 L1836.93 1127.72 L1876.34 1131.42 \n", " L1889.69 1105.37 L1889.88 1075.98 L1889.88 1046.59 L1889.88 1017.2 L1889.88 987.803 L1889.88 958.41 L1889.88 929.018 L1889.88 899.625 L1889.88 870.233 L1889.88 840.841 \n", " L1889.88 811.448 L1889.88 782.056 L1889.88 752.663 L1889.88 723.271 L1889.88 693.878 L1889.88 664.486 L1889.88 635.093 L1889.88 605.701 L1889.88 576.308 L1889.88 546.916 \n", " L1889.88 517.523 L1889.88 488.131 L1889.88 458.739 L1889.69 429.346 L1876.34 403.304 L1836.93 406.996 L1797.53 406.996 L1758.13 406.996 L1718.73 406.996 L1679.32 406.996 \n", " L1639.92 406.996 L1600.52 407.072 L1561.11 407.072 L1521.71 407.072 L1498.13 429.346 L1482.31 437.388 L1445.05 458.739 L1442.9 460.558 L1426.45 488.131 L1421.78 517.523 \n", " L1403.5 529.575 L1378.04 546.916 L1364.1 553.554 L1324.7 569.806 L1300.67 576.308 L1285.29 581.153 L1245.89 586.16 L1206.49 587.706 L1167.08 589.827 L1127.68 589.827 \n", " L1088.28 587.706 L1048.87 586.16 L1009.47 581.153 L994.099 576.308 L970.068 569.806 L930.665 553.554 L916.722 546.916 L891.262 529.575 L872.981 517.523 L868.318 488.131 \n", " L851.859 460.558 L849.719 458.739 L812.456 437.388 L796.629 429.346 L773.053 407.072 L733.65 407.072 L694.247 407.072 L654.844 406.996 L615.441 406.996 L576.038 406.996 \n", " L536.635 406.996 L497.232 406.996 L457.829 406.996 L418.426 403.304 L405.072 429.346 L404.887 458.739 L404.887 488.131 L404.887 517.523 L404.887 546.916 L404.887 576.308 \n", " L404.887 605.701 L404.887 635.093 L404.887 664.486 L404.887 693.878 L404.887 723.271 L404.887 752.663 L404.887 782.056 L404.887 811.448 L404.887 840.841 L404.887 870.233 \n", " L404.887 899.625 L404.887 929.018 L404.887 958.41 L404.887 987.803 L404.887 1017.2 L404.887 1046.59 L404.887 1075.98 L405.072 1105.37 L418.426 1131.42 Z\n", " \" fill=\"#f2e55f\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2902)\" d=\"\n", "M418.426 1118.18 L446.219 1105.37 L452.904 1075.98 L457.829 1059.91 L497.232 1059.91 L536.635 1059.91 L576.038 1059.91 L615.441 1059.91 L654.844 1059.91 L667.158 1075.98 \n", " L694.247 1093.66 L733.65 1093.66 L773.053 1093.66 L812.456 1082.2 L823.318 1075.98 L851.859 1051.71 L854.919 1046.59 L851.859 1037.59 L829.174 1017.2 L851.859 993.379 \n", " L861.034 987.803 L891.262 976.266 L930.665 960.981 L937.832 958.41 L970.068 944.28 L1009.47 935.832 L1048.87 931.562 L1074.02 929.018 L1088.28 916.37 L1111.35 899.625 \n", " L1127.68 889.879 L1167.08 889.879 L1183.42 899.625 L1206.49 916.37 L1220.74 929.018 L1245.89 931.562 L1285.29 935.832 L1324.7 944.28 L1356.93 958.41 L1364.1 960.981 \n", " L1403.5 976.266 L1433.73 987.803 L1442.9 993.379 L1465.59 1017.2 L1442.9 1037.59 L1439.84 1046.59 L1442.9 1051.71 L1471.45 1075.98 L1482.31 1082.2 L1521.71 1093.66 \n", " L1561.11 1093.66 L1600.52 1093.66 L1627.61 1075.98 L1639.92 1059.91 L1679.32 1059.91 L1718.73 1059.91 L1758.13 1059.91 L1797.53 1059.91 L1836.93 1059.91 L1841.86 1075.98 \n", " L1848.54 1105.37 L1876.34 1118.18 L1882.9 1105.37 L1883.11 1075.98 L1883.11 1046.59 L1883.11 1017.2 L1883.11 987.803 L1883.11 958.41 L1883.11 929.018 L1883.11 899.625 \n", " L1883.11 870.233 L1883.11 840.841 L1883.11 811.448 L1883.11 782.056 L1883.11 752.663 L1883.11 723.271 L1883.11 693.878 L1883.11 664.486 L1883.11 635.093 L1883.11 605.701 \n", " L1883.11 576.308 L1883.11 546.916 L1883.11 517.523 L1883.11 488.131 L1883.11 458.739 L1882.9 429.346 L1876.34 416.541 L1848.54 429.346 L1841.86 458.739 L1836.93 474.813 \n", " L1797.53 474.813 L1758.13 474.813 L1718.73 474.813 L1679.32 474.813 L1639.92 474.813 L1627.61 458.739 L1600.52 441.057 L1561.11 441.057 L1521.71 441.057 L1482.31 452.515 \n", " L1471.45 458.739 L1442.9 483.005 L1439.84 488.131 L1442.9 497.126 L1465.59 517.523 L1442.9 541.34 L1433.73 546.916 L1403.5 558.453 L1364.1 573.737 L1356.93 576.308 \n", " L1324.7 590.439 L1285.29 598.887 L1245.89 603.157 L1220.74 605.701 L1206.49 618.349 L1183.42 635.093 L1167.08 644.84 L1127.68 644.84 L1111.35 635.093 L1088.28 618.349 \n", " L1074.02 605.701 L1048.87 603.157 L1009.47 598.887 L970.068 590.439 L937.832 576.308 L930.665 573.737 L891.262 558.453 L861.034 546.916 L851.859 541.34 L829.174 517.523 \n", " L851.859 497.126 L854.919 488.131 L851.859 483.005 L823.318 458.739 L812.456 452.515 L773.053 441.057 L733.65 441.057 L694.247 441.057 L667.158 458.739 L654.844 474.813 \n", " L615.441 474.813 L576.038 474.813 L536.635 474.813 L497.232 474.813 L457.829 474.813 L452.904 458.739 L446.219 429.346 L418.426 416.541 L411.86 429.346 L411.656 458.739 \n", " L411.656 488.131 L411.656 517.523 L411.656 546.916 L411.656 576.308 L411.656 605.701 L411.656 635.093 L411.656 664.486 L411.656 693.878 L411.656 723.271 L411.656 752.663 \n", " L411.656 782.056 L411.656 811.448 L411.656 840.841 L411.656 870.233 L411.656 899.625 L411.656 929.018 L411.656 958.41 L411.656 987.803 L411.656 1017.2 L411.656 1046.59 \n", " L411.656 1075.98 L411.86 1105.37 L418.426 1118.18 Z\n", " \" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 182.008,1487.47 221.411,1487.47 260.814,1487.47 300.217,1487.47 339.62,1487.47 379.023,1487.47 418.426,1487.47 457.829,1487.47 497.232,1487.47 \n", " 536.635,1487.47 576.038,1487.47 615.441,1487.47 654.844,1487.47 694.247,1487.47 733.65,1487.47 773.053,1487.47 812.456,1487.47 851.859,1487.47 891.262,1487.47 \n", " 930.665,1487.47 970.068,1487.47 1009.47,1487.47 1048.87,1487.47 1088.28,1487.47 1127.68,1487.47 1167.08,1487.47 1206.49,1487.47 1245.89,1487.47 1285.29,1487.47 \n", " 1324.7,1487.47 1364.1,1487.47 1403.5,1487.47 1442.9,1487.47 1482.31,1487.47 1521.71,1487.47 1561.11,1487.47 1600.52,1487.47 1639.92,1487.47 1679.32,1487.47 \n", " 1718.73,1487.47 1758.13,1487.47 1797.53,1487.47 1836.93,1487.47 1876.34,1487.47 1915.74,1487.47 1955.14,1487.47 1994.55,1487.47 2033.95,1487.47 2073.35,1487.47 \n", " 2112.76,1487.47 2112.76,1458.08 2112.76,1428.69 2112.76,1399.3 2112.76,1369.9 2112.76,1340.51 2112.76,1311.12 \n", " 2112.76,1281.73 2112.76,1252.34 2112.76,1222.94 2112.76,1193.55 2112.76,1164.16 2112.76,1134.77 2112.76,1105.37 2112.76,1075.98 2112.76,1046.59 2112.76,1017.2 \n", " 2112.76,987.803 2112.76,958.41 2112.76,929.018 2112.76,899.625 2112.76,870.233 2112.76,840.841 2112.76,811.448 2112.76,782.056 2112.76,752.663 2112.76,723.271 \n", " 2112.76,693.878 2112.76,664.486 2112.76,635.093 2112.76,605.701 2112.76,576.308 2112.76,546.916 2112.76,517.523 2112.76,488.131 2112.76,458.739 2112.76,429.346 \n", " 2112.76,399.954 2112.76,370.561 2112.76,341.169 2112.76,311.776 2112.76,282.384 2112.76,252.991 2112.76,223.599 2112.76,194.206 2112.76,164.814 2112.76,135.421 \n", " 2112.76,106.029 2112.76,76.6366 2112.76,47.2441 2073.35,47.2441 2033.95,47.2441 1994.55,47.2441 1955.14,47.2441 \n", " 1915.74,47.2441 1876.34,47.2441 1836.93,47.2441 1797.53,47.2441 1758.13,47.2441 1718.73,47.2441 1679.32,47.2441 1639.92,47.2441 1600.52,47.2441 1561.11,47.2441 \n", " 1521.71,47.2441 1482.31,47.2441 1442.9,47.2441 1403.5,47.2441 1364.1,47.2441 1324.7,47.2441 1285.29,47.2441 1245.89,47.2441 1206.49,47.2441 1167.08,47.2441 \n", " 1127.68,47.2441 1088.28,47.2441 1048.87,47.2441 1009.47,47.2441 970.068,47.2441 930.665,47.2441 891.262,47.2441 851.859,47.2441 812.456,47.2441 773.053,47.2441 \n", " 733.65,47.2441 694.247,47.2441 654.844,47.2441 615.441,47.2441 576.038,47.2441 536.635,47.2441 497.232,47.2441 457.829,47.2441 418.426,47.2441 379.023,47.2441 \n", " 339.62,47.2441 300.217,47.2441 260.814,47.2441 221.411,47.2441 182.008,47.2441 182.008,76.6366 182.008,106.029 \n", " 182.008,135.421 182.008,164.814 182.008,194.206 182.008,223.599 182.008,252.991 182.008,282.384 182.008,311.776 182.008,341.169 182.008,370.561 182.008,399.954 \n", " 182.008,429.346 182.008,458.739 182.008,488.131 182.008,517.523 182.008,546.916 182.008,576.308 182.008,605.701 182.008,635.093 182.008,664.486 182.008,693.878 \n", " 182.008,723.271 182.008,752.663 182.008,782.056 182.008,811.448 182.008,840.841 182.008,870.233 182.008,899.625 182.008,929.018 182.008,958.41 182.008,987.803 \n", " 182.008,1017.2 182.008,1046.59 182.008,1075.98 182.008,1105.37 182.008,1134.77 182.008,1164.16 182.008,1193.55 182.008,1222.94 182.008,1252.34 182.008,1281.73 \n", " 182.008,1311.12 182.008,1340.51 182.008,1369.9 182.008,1399.3 182.008,1428.69 182.008,1458.08 182.008,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 379.023,1285.71 418.426,1294.36 457.829,1296.83 497.232,1296.83 536.635,1296.83 576.038,1296.83 615.441,1296.83 654.844,1296.83 694.247,1295.05 733.65,1295.05 \n", " 773.053,1295.05 812.456,1290.39 840.046,1281.73 851.859,1276.12 875.242,1252.34 885.954,1222.94 891.262,1200.55 894.562,1193.55 904.608,1164.16 910.533,1134.77 \n", " 930.665,1125.46 970.068,1123.01 1009.47,1119.11 1048.87,1116.48 1088.28,1116.29 1127.68,1116.1 1167.08,1116.1 1206.49,1116.29 1245.89,1116.48 1285.29,1119.11 \n", " 1324.7,1123.01 1364.1,1125.46 1384.23,1134.77 1390.16,1164.16 1400.2,1193.55 1403.5,1200.55 1408.81,1222.94 1419.52,1252.34 1442.9,1276.12 1454.72,1281.73 \n", " 1482.31,1290.39 1521.71,1295.05 1561.11,1295.05 1600.52,1295.05 1639.92,1296.83 1679.32,1296.83 1718.73,1296.83 1758.13,1296.83 1797.53,1296.83 1836.93,1296.83 \n", " 1876.34,1294.36 1915.74,1285.71 1926.09,1281.73 1955.14,1261.5 1961.7,1252.34 1973.12,1222.94 1976.67,1193.55 1976.67,1164.16 1976.67,1134.77 1976.67,1105.37 \n", " 1976.67,1075.98 1976.67,1046.59 1976.67,1017.2 1976.67,987.803 1976.67,958.41 1976.67,929.018 1976.67,899.625 1976.67,870.233 1976.67,840.841 1976.67,811.448 \n", " 1976.67,782.056 1976.67,752.663 1976.67,723.271 1976.67,693.878 1976.67,664.486 1976.67,635.093 1976.67,605.701 1976.67,576.308 1976.67,546.916 1976.67,517.523 \n", " 1976.67,488.131 1976.67,458.739 1976.67,429.346 1976.67,399.954 1976.67,370.561 1976.67,341.169 1973.12,311.776 1961.7,282.384 1955.14,273.218 1926.09,252.991 \n", " 1915.74,249.006 1876.34,240.357 1836.93,237.887 1797.53,237.887 1758.13,237.887 1718.73,237.887 1679.32,237.887 1639.92,237.887 1600.52,239.673 1561.11,239.673 \n", " 1521.71,239.673 1482.31,244.326 1454.72,252.991 1442.9,258.599 1419.52,282.384 1408.81,311.776 1403.5,334.165 1400.2,341.169 1390.16,370.561 1384.23,399.954 \n", " 1364.1,409.256 1324.7,411.712 1285.29,415.605 1245.89,418.241 1206.49,418.432 1167.08,418.617 1127.68,418.617 1088.28,418.432 1048.87,418.241 1009.47,415.605 \n", " 970.068,411.712 930.665,409.256 910.533,399.954 904.608,370.561 894.562,341.169 891.262,334.165 885.954,311.776 875.242,282.384 851.859,258.599 840.046,252.991 \n", " 812.456,244.326 773.053,239.673 733.65,239.673 694.247,239.673 654.844,237.887 615.441,237.887 576.038,237.887 536.635,237.887 497.232,237.887 457.829,237.887 \n", " 418.426,240.357 379.023,249.006 368.672,252.991 339.62,273.218 333.067,282.384 321.641,311.776 318.094,341.169 318.094,370.561 318.094,399.954 318.094,429.346 \n", " 318.094,458.739 318.094,488.131 318.094,517.523 318.094,546.916 318.094,576.308 318.094,605.701 318.094,635.093 318.094,664.486 318.094,693.878 318.094,723.271 \n", " 318.094,752.663 318.094,782.056 318.094,811.448 318.094,840.841 318.094,870.233 318.094,899.625 318.094,929.018 318.094,958.41 318.094,987.803 318.094,1017.2 \n", " 318.094,1046.59 318.094,1075.98 318.094,1105.37 318.094,1134.77 318.094,1164.16 318.094,1193.55 321.641,1222.94 333.067,1252.34 339.62,1261.5 368.672,1281.73 \n", " 379.023,1285.71 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 457.829,1282.54 497.232,1282.54 536.635,1282.54 576.038,1282.54 615.441,1282.54 654.844,1282.54 664.695,1281.73 694.247,1279.32 733.65,1279.32 773.053,1279.32 \n", " 812.456,1271.17 844.446,1252.34 851.859,1244.79 865.869,1222.94 878.205,1193.55 885.256,1164.16 889.653,1134.77 891.262,1133.17 930.665,1114.59 970.068,1109.67 \n", " 994.242,1105.37 1009.47,1102.85 1048.87,1099.29 1088.28,1099.29 1127.68,1099.29 1167.08,1099.29 1206.49,1099.29 1245.89,1099.29 1285.29,1102.85 1300.52,1105.37 \n", " 1324.7,1109.67 1364.1,1114.59 1403.5,1133.17 1405.11,1134.77 1409.51,1164.16 1416.56,1193.55 1428.89,1222.94 1442.9,1244.79 1450.32,1252.34 1482.31,1271.17 \n", " 1521.71,1279.32 1561.11,1279.32 1600.52,1279.32 1630.07,1281.73 1639.92,1282.54 1679.32,1282.54 1718.73,1282.54 1758.13,1282.54 1797.53,1282.54 1836.93,1282.54 \n", " 1844.36,1281.73 1876.34,1278.12 1915.74,1262.98 1930.49,1252.34 1951.91,1222.94 1955.14,1209.99 1958.79,1193.55 1958.79,1164.16 1958.79,1134.77 1958.79,1105.37 \n", " 1958.79,1075.98 1958.79,1046.59 1958.79,1017.2 1958.79,987.803 1958.79,958.41 1958.79,929.018 1958.79,899.625 1958.79,870.233 1958.79,840.841 1958.79,811.448 \n", " 1958.79,782.056 1958.79,752.663 1958.79,723.271 1958.79,693.878 1958.79,664.486 1958.79,635.093 1958.79,605.701 1958.79,576.308 1958.79,546.916 1958.79,517.523 \n", " 1958.79,488.131 1958.79,458.739 1958.79,429.346 1958.79,399.954 1958.79,370.561 1958.79,341.169 1955.14,324.728 1951.91,311.776 1930.49,282.384 1915.74,271.736 \n", " 1876.34,256.599 1844.36,252.991 1836.93,252.175 1797.53,252.175 1758.13,252.175 1718.73,252.175 1679.32,252.175 1639.92,252.175 1630.07,252.991 1600.52,255.402 \n", " 1561.11,255.402 1521.71,255.402 1482.31,263.545 1450.32,282.384 1442.9,289.925 1428.89,311.776 1416.56,341.169 1409.51,370.561 1405.11,399.954 1403.5,401.548 \n", " 1364.1,420.132 1324.7,425.05 1300.52,429.346 1285.29,431.869 1245.89,435.431 1206.49,435.431 1167.08,435.431 1127.68,435.431 1088.28,435.431 1048.87,435.431 \n", " 1009.47,431.869 994.242,429.346 970.068,425.05 930.665,420.132 891.262,401.548 889.653,399.954 885.256,370.561 878.205,341.169 865.869,311.776 851.859,289.925 \n", " 844.446,282.384 812.456,263.545 773.053,255.402 733.65,255.402 694.247,255.402 664.695,252.991 654.844,252.175 615.441,252.175 576.038,252.175 536.635,252.175 \n", " 497.232,252.175 457.829,252.175 450.403,252.991 418.426,256.599 379.023,271.736 364.273,282.384 342.849,311.776 339.62,324.728 335.972,341.169 335.972,370.561 \n", " 335.972,399.954 335.972,429.346 335.972,458.739 335.972,488.131 335.972,517.523 335.972,546.916 335.972,576.308 335.972,605.701 335.972,635.093 335.972,664.486 \n", " 335.972,693.878 335.972,723.271 335.972,752.663 335.972,782.056 335.972,811.448 335.972,840.841 335.972,870.233 335.972,899.625 335.972,929.018 335.972,958.41 \n", " 335.972,987.803 335.972,1017.2 335.972,1046.59 335.972,1075.98 335.972,1105.37 335.972,1134.77 335.972,1164.16 335.972,1193.55 339.62,1209.99 342.849,1222.94 \n", " 364.273,1252.34 379.023,1262.98 418.426,1278.12 450.403,1281.73 457.829,1282.54 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 418.426,1263.46 457.829,1269.94 497.232,1269.94 536.635,1269.94 576.038,1269.94 615.441,1269.94 654.844,1269.94 694.247,1265.25 733.65,1265.25 773.053,1265.25 \n", " 812.456,1253.04 813.649,1252.34 845.785,1222.94 851.859,1215.24 863.972,1193.55 874.32,1164.16 880.775,1134.77 891.262,1124.38 928.064,1105.37 930.665,1104.13 \n", " 970.068,1098.71 1009.47,1090.42 1048.87,1085.22 1088.28,1085.22 1127.68,1085.22 1167.08,1085.22 1206.49,1085.22 1245.89,1085.22 1285.29,1090.42 1324.7,1098.71 \n", " 1364.1,1104.13 1366.7,1105.37 1403.5,1124.38 1413.99,1134.77 1420.44,1164.16 1430.79,1193.55 1442.9,1215.24 1448.98,1222.94 1481.11,1252.34 1482.31,1253.04 \n", " 1521.71,1265.25 1561.11,1265.25 1600.52,1265.25 1639.92,1269.94 1679.32,1269.94 1718.73,1269.94 1758.13,1269.94 1797.53,1269.94 1836.93,1269.94 1876.34,1263.46 \n", " 1899.69,1252.34 1915.74,1240.75 1931.83,1222.94 1947.32,1193.55 1949.33,1164.16 1950.52,1134.77 1951.2,1105.37 1951.21,1075.98 1951.21,1046.59 1951.21,1017.2 \n", " 1951.21,987.803 1951.21,958.41 1951.21,929.018 1951.21,899.625 1951.21,870.233 1951.21,840.841 1951.21,811.448 1951.21,782.056 1951.21,752.663 1951.21,723.271 \n", " 1951.21,693.878 1951.21,664.486 1951.21,635.093 1951.21,605.701 1951.21,576.308 1951.21,546.916 1951.21,517.523 1951.21,488.131 1951.21,458.739 1951.2,429.346 \n", " 1950.52,399.954 1949.33,370.561 1947.32,341.169 1931.83,311.776 1915.74,293.967 1899.69,282.384 1876.34,271.263 1836.93,264.779 1797.53,264.779 1758.13,264.779 \n", " 1718.73,264.779 1679.32,264.779 1639.92,264.779 1600.52,269.467 1561.11,269.467 1521.71,269.467 1482.31,281.681 1481.11,282.384 1448.98,311.776 1442.9,319.484 \n", " 1430.79,341.169 1420.44,370.561 1413.99,399.954 1403.5,410.339 1366.7,429.346 1364.1,430.588 1324.7,436.008 1285.29,444.302 1245.89,449.496 1206.49,449.496 \n", " 1167.08,449.496 1127.68,449.496 1088.28,449.496 1048.87,449.496 1009.47,444.302 970.068,436.008 930.665,430.588 928.064,429.346 891.262,410.339 880.775,399.954 \n", " 874.32,370.561 863.972,341.169 851.859,319.484 845.785,311.776 813.649,282.384 812.456,281.681 773.053,269.467 733.65,269.467 694.247,269.467 654.844,264.779 \n", " 615.441,264.779 576.038,264.779 536.635,264.779 497.232,264.779 457.829,264.779 418.426,271.263 395.069,282.384 379.023,293.967 362.934,311.776 347.445,341.169 \n", " 345.434,370.561 344.246,399.954 343.561,429.346 343.552,458.739 343.552,488.131 343.552,517.523 343.552,546.916 343.552,576.308 343.552,605.701 343.552,635.093 \n", " 343.552,664.486 343.552,693.878 343.552,723.271 343.552,752.663 343.552,782.056 343.552,811.448 343.552,840.841 343.552,870.233 343.552,899.625 343.552,929.018 \n", " 343.552,958.41 343.552,987.803 343.552,1017.2 343.552,1046.59 343.552,1075.98 343.561,1105.37 344.246,1134.77 345.434,1164.16 347.445,1193.55 362.934,1222.94 \n", " 379.023,1240.75 395.069,1252.34 418.426,1263.46 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 457.829,1257.44 497.232,1257.44 536.635,1257.44 576.038,1257.44 615.441,1257.44 654.844,1257.44 687.68,1252.34 694.247,1251.19 733.65,1251.19 773.053,1251.19 \n", " 812.456,1234.9 825.7,1222.94 849.738,1193.55 851.859,1189.91 863.385,1164.16 871.897,1134.77 891.262,1115.59 911.043,1105.37 930.665,1096.01 970.068,1088.88 \n", " 1009.47,1077.98 1022.07,1075.98 1048.87,1071.16 1088.28,1071.16 1127.68,1071.16 1167.08,1071.16 1206.49,1071.16 1245.89,1071.16 1272.69,1075.98 1285.29,1077.98 \n", " 1324.7,1088.88 1364.1,1096.01 1383.72,1105.37 1403.5,1115.59 1422.87,1134.77 1431.38,1164.16 1442.9,1189.91 1445.03,1193.55 1469.06,1222.94 1482.31,1234.9 \n", " 1521.71,1251.19 1561.11,1251.19 1600.52,1251.19 1607.08,1252.34 1639.92,1257.44 1679.32,1257.44 1718.73,1257.44 1758.13,1257.44 1797.53,1257.44 1836.93,1257.44 \n", " 1861.69,1252.34 1876.34,1248.79 1911.75,1222.94 1915.74,1220.52 1937.49,1193.55 1942.02,1164.16 1944.71,1134.77 1946.25,1105.37 1946.27,1075.98 1946.27,1046.59 \n", " 1946.27,1017.2 1946.27,987.803 1946.27,958.41 1946.27,929.018 1946.27,899.625 1946.27,870.233 1946.27,840.841 1946.27,811.448 1946.27,782.056 1946.27,752.663 \n", " 1946.27,723.271 1946.27,693.878 1946.27,664.486 1946.27,635.093 1946.27,605.701 1946.27,576.308 1946.27,546.916 1946.27,517.523 1946.27,488.131 1946.27,458.739 \n", " 1946.25,429.346 1944.71,399.954 1942.02,370.561 1937.49,341.169 1915.74,314.201 1911.75,311.776 1876.34,285.926 1861.69,282.384 1836.93,277.281 1797.53,277.281 \n", " 1758.13,277.281 1718.73,277.281 1679.32,277.281 1639.92,277.281 1607.08,282.384 1600.52,283.532 1561.11,283.532 1521.71,283.532 1482.31,299.817 1469.06,311.776 \n", " 1445.03,341.169 1442.9,344.81 1431.38,370.561 1422.87,399.954 1403.5,419.13 1383.72,429.346 1364.1,438.712 1324.7,445.834 1285.29,456.735 1272.69,458.739 \n", " 1245.89,463.561 1206.49,463.561 1167.08,463.561 1127.68,463.561 1088.28,463.561 1048.87,463.561 1022.07,458.739 1009.47,456.735 970.068,445.834 930.665,438.712 \n", " 911.043,429.346 891.262,419.13 871.897,399.954 863.385,370.561 851.859,344.81 849.738,341.169 825.7,311.776 812.456,299.817 773.053,283.532 733.65,283.532 \n", " 694.247,283.532 687.68,282.384 654.844,277.281 615.441,277.281 576.038,277.281 536.635,277.281 497.232,277.281 457.829,277.281 433.076,282.384 418.426,285.926 \n", " 383.018,311.776 379.023,314.201 357.277,341.169 352.739,370.561 350.057,399.954 348.512,429.346 348.493,458.739 348.493,488.131 348.493,517.523 348.493,546.916 \n", " 348.493,576.308 348.493,605.701 348.493,635.093 348.493,664.486 348.493,693.878 348.493,723.271 348.493,752.663 348.493,782.056 348.493,811.448 348.493,840.841 \n", " 348.493,870.233 348.493,899.625 348.493,929.018 348.493,958.41 348.493,987.803 348.493,1017.2 348.493,1046.59 348.493,1075.98 348.512,1105.37 350.057,1134.77 \n", " 352.739,1164.16 357.277,1193.55 379.023,1220.52 383.018,1222.94 418.426,1248.79 433.076,1252.34 457.829,1257.44 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 418.426,1234.13 457.829,1244.94 497.232,1244.94 536.635,1244.94 576.038,1244.94 615.441,1244.94 654.844,1244.94 694.247,1237.12 733.65,1237.12 773.053,1237.12 \n", " 802.506,1222.94 812.456,1217.83 835.504,1193.55 851.859,1165.48 852.45,1164.16 863.02,1134.77 891.262,1106.8 894.021,1105.37 930.665,1087.88 970.068,1079.06 \n", " 980.779,1075.98 1009.47,1065.55 1048.87,1057.09 1088.28,1057.09 1127.68,1057.09 1167.08,1057.09 1206.49,1057.09 1245.89,1057.09 1285.29,1065.55 1313.98,1075.98 \n", " 1324.7,1079.06 1364.1,1087.88 1400.74,1105.37 1403.5,1106.8 1431.74,1134.77 1442.31,1164.16 1442.9,1165.48 1459.26,1193.55 1482.31,1217.83 1492.26,1222.94 \n", " 1521.71,1237.12 1561.11,1237.12 1600.52,1237.12 1639.92,1244.94 1679.32,1244.94 1718.73,1244.94 1758.13,1244.94 1797.53,1244.94 1836.93,1244.94 1876.34,1234.13 \n", " 1891.66,1222.94 1915.74,1208.33 1927.66,1193.55 1934.72,1164.16 1938.89,1134.77 1941.3,1105.37 1941.33,1075.98 1941.33,1046.59 1941.33,1017.2 1941.33,987.803 \n", " 1941.33,958.41 1941.33,929.018 1941.33,899.625 1941.33,870.233 1941.33,840.841 1941.33,811.448 1941.33,782.056 1941.33,752.663 1941.33,723.271 1941.33,693.878 \n", " 1941.33,664.486 1941.33,635.093 1941.33,605.701 1941.33,576.308 1941.33,546.916 1941.33,517.523 1941.33,488.131 1941.33,458.739 1941.3,429.346 1938.89,399.954 \n", " 1934.72,370.561 1927.66,341.169 1915.74,326.393 1891.66,311.776 1876.34,300.589 1836.93,289.783 1797.53,289.783 1758.13,289.783 1718.73,289.783 1679.32,289.783 \n", " 1639.92,289.783 1600.52,297.597 1561.11,297.597 1521.71,297.597 1492.26,311.776 1482.31,316.884 1459.26,341.169 1442.9,369.241 1442.31,370.561 1431.74,399.954 \n", " 1403.5,427.921 1400.74,429.346 1364.1,446.836 1324.7,455.661 1313.98,458.739 1285.29,469.168 1245.89,477.626 1206.49,477.626 1167.08,477.626 1127.68,477.626 \n", " 1088.28,477.626 1048.87,477.626 1009.47,469.168 980.779,458.739 970.068,455.661 930.665,446.836 894.021,429.346 891.262,427.921 863.02,399.954 852.45,370.561 \n", " 851.859,369.241 835.504,341.169 812.456,316.884 802.506,311.776 773.053,297.597 733.65,297.597 694.247,297.597 654.844,289.783 615.441,289.783 576.038,289.783 \n", " 536.635,289.783 497.232,289.783 457.829,289.783 418.426,300.589 403.103,311.776 379.023,326.393 367.108,341.169 360.045,370.561 355.869,399.954 353.463,429.346 \n", " 353.433,458.739 353.433,488.131 353.433,517.523 353.433,546.916 353.433,576.308 353.433,605.701 353.433,635.093 353.433,664.486 353.433,693.878 353.433,723.271 \n", " 353.433,752.663 353.433,782.056 353.433,811.448 353.433,840.841 353.433,870.233 353.433,899.625 353.433,929.018 353.433,958.41 353.433,987.803 353.433,1017.2 \n", " 353.433,1046.59 353.433,1075.98 353.463,1105.37 355.869,1134.77 360.045,1164.16 367.108,1193.55 379.023,1208.33 403.103,1222.94 418.426,1234.13 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 457.829,1232.43 497.232,1232.43 536.635,1232.43 576.038,1232.43 615.441,1232.43 654.844,1232.43 694.247,1223.06 733.65,1223.06 773.053,1223.06 773.292,1222.94 \n", " 812.456,1202.84 821.271,1193.55 841.515,1164.16 851.859,1141.05 854.142,1134.77 885.106,1105.37 891.262,1098.94 930.665,1079.76 946.575,1075.98 970.068,1069.23 \n", " 1009.47,1053.12 1036.06,1046.59 1048.87,1043.55 1088.28,1043.55 1127.68,1043.55 1167.08,1043.55 1206.49,1043.55 1245.89,1043.55 1258.7,1046.59 1285.29,1053.12 \n", " 1324.7,1069.23 1348.19,1075.98 1364.1,1079.76 1403.5,1098.94 1409.66,1105.37 1440.62,1134.77 1442.9,1141.05 1453.25,1164.16 1473.49,1193.55 1482.31,1202.84 \n", " 1521.47,1222.94 1521.71,1223.06 1561.11,1223.06 1600.52,1223.06 1639.92,1232.43 1679.32,1232.43 1718.73,1232.43 1758.13,1232.43 1797.53,1232.43 1836.93,1232.43 \n", " 1866.96,1222.94 1876.34,1220.42 1915.74,1196.13 1917.82,1193.55 1927.41,1164.16 1933.08,1134.77 1936.35,1105.37 1936.39,1075.98 1936.39,1046.59 1936.39,1017.2 \n", " 1936.39,987.803 1936.39,958.41 1936.39,929.018 1936.39,899.625 1936.39,870.233 1936.39,840.841 1936.39,811.448 1936.39,782.056 1936.39,752.663 1936.39,723.271 \n", " 1936.39,693.878 1936.39,664.486 1936.39,635.093 1936.39,605.701 1936.39,576.308 1936.39,546.916 1936.39,517.523 1936.39,488.131 1936.39,458.739 1936.35,429.346 \n", " 1933.08,399.954 1927.41,370.561 1917.82,341.169 1915.74,338.585 1876.34,314.301 1866.96,311.776 1836.93,302.285 1797.53,302.285 1758.13,302.285 1718.73,302.285 \n", " 1679.32,302.285 1639.92,302.285 1600.52,311.661 1561.11,311.661 1521.71,311.661 1521.47,311.776 1482.31,331.882 1473.49,341.169 1453.25,370.561 1442.9,393.672 \n", " 1440.62,399.954 1409.66,429.346 1403.5,435.779 1364.1,454.96 1348.19,458.739 1324.7,465.488 1285.29,481.601 1258.7,488.131 1245.89,491.168 1206.49,491.168 \n", " 1167.08,491.168 1127.68,491.168 1088.28,491.168 1048.87,491.168 1036.06,488.131 1009.47,481.601 970.068,465.488 946.575,458.739 930.665,454.96 891.262,435.779 \n", " 885.106,429.346 854.142,399.954 851.859,393.672 841.515,370.561 821.271,341.169 812.456,331.882 773.292,311.776 773.053,311.661 733.65,311.661 694.247,311.661 \n", " 654.844,302.285 615.441,302.285 576.038,302.285 536.635,302.285 497.232,302.285 457.829,302.285 427.802,311.776 418.426,314.301 379.023,338.585 376.94,341.169 \n", " 367.35,370.561 361.681,399.954 358.415,429.346 358.374,458.739 358.374,488.131 358.374,517.523 358.374,546.916 358.374,576.308 358.374,605.701 358.374,635.093 \n", " 358.374,664.486 358.374,693.878 358.374,723.271 358.374,752.663 358.374,782.056 358.374,811.448 358.374,840.841 358.374,870.233 358.374,899.625 358.374,929.018 \n", " 358.374,958.41 358.374,987.803 358.374,1017.2 358.374,1046.59 358.374,1075.98 358.415,1105.37 361.681,1134.77 367.35,1164.16 376.94,1193.55 379.023,1196.13 \n", " 418.426,1220.42 427.802,1222.94 457.829,1232.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 418.426,1209.77 457.829,1219.93 497.232,1219.93 536.635,1219.93 576.038,1219.93 615.441,1219.93 654.844,1219.93 694.247,1211.35 733.65,1211.35 773.053,1211.35 \n", " 804.573,1193.55 812.456,1188.06 830.58,1164.16 845.264,1134.77 851.859,1129.65 877.759,1105.37 891.262,1091.26 922.32,1075.98 930.665,1071.64 970.068,1059.4 \n", " 998.955,1046.59 1009.47,1040.75 1048.87,1031.55 1088.28,1031.55 1127.68,1031.55 1167.08,1031.55 1206.49,1031.55 1245.89,1031.55 1285.29,1040.75 1295.81,1046.59 \n", " 1324.7,1059.4 1364.1,1071.64 1372.44,1075.98 1403.5,1091.26 1417,1105.37 1442.9,1129.65 1449.5,1134.77 1464.18,1164.16 1482.31,1188.06 1490.19,1193.55 \n", " 1521.71,1211.35 1561.11,1211.35 1600.52,1211.35 1639.92,1219.93 1679.32,1219.93 1718.73,1219.93 1758.13,1219.93 1797.53,1219.93 1836.93,1219.93 1876.34,1209.77 \n", " 1902.3,1193.55 1915.74,1176.84 1920.11,1164.16 1927.27,1134.77 1931.4,1105.37 1931.45,1075.98 1931.45,1046.59 1931.45,1017.2 1931.45,987.803 1931.45,958.41 \n", " 1931.45,929.018 1931.45,899.625 1931.45,870.233 1931.45,840.841 1931.45,811.448 1931.45,782.056 1931.45,752.663 1931.45,723.271 1931.45,693.878 1931.45,664.486 \n", " 1931.45,635.093 1931.45,605.701 1931.45,576.308 1931.45,546.916 1931.45,517.523 1931.45,488.131 1931.45,458.739 1931.4,429.346 1927.27,399.954 1920.11,370.561 \n", " 1915.74,357.88 1902.3,341.169 1876.34,324.953 1836.93,314.787 1797.53,314.787 1758.13,314.787 1718.73,314.787 1679.32,314.787 1639.92,314.787 1600.52,323.371 \n", " 1561.11,323.371 1521.71,323.371 1490.19,341.169 1482.31,346.66 1464.18,370.561 1449.5,399.954 1442.9,405.069 1417,429.346 1403.5,443.457 1372.44,458.739 \n", " 1364.1,463.084 1324.7,475.315 1295.81,488.131 1285.29,493.965 1245.89,503.17 1206.49,503.17 1167.08,503.17 1127.68,503.17 1088.28,503.17 1048.87,503.17 \n", " 1009.47,493.965 998.955,488.131 970.068,475.315 930.665,463.084 922.32,458.739 891.262,443.457 877.759,429.346 851.859,405.069 845.264,399.954 830.58,370.561 \n", " 812.456,346.66 804.573,341.169 773.053,323.371 733.65,323.371 694.247,323.371 654.844,314.787 615.441,314.787 576.038,314.787 536.635,314.787 497.232,314.787 \n", " 457.829,314.787 418.426,324.953 392.463,341.169 379.023,357.88 374.655,370.561 367.492,399.954 363.366,429.346 363.314,458.739 363.314,488.131 363.314,517.523 \n", " 363.314,546.916 363.314,576.308 363.314,605.701 363.314,635.093 363.314,664.486 363.314,693.878 363.314,723.271 363.314,752.663 363.314,782.056 363.314,811.448 \n", " 363.314,840.841 363.314,870.233 363.314,899.625 363.314,929.018 363.314,958.41 363.314,987.803 363.314,1017.2 363.314,1046.59 363.314,1075.98 363.366,1105.37 \n", " 367.492,1134.77 374.655,1164.16 379.023,1176.84 392.463,1193.55 418.426,1209.77 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 418.426,1199.11 457.829,1207.43 497.232,1207.43 536.635,1207.43 576.038,1207.43 615.441,1207.43 654.844,1207.43 694.247,1199.66 733.65,1199.66 773.053,1199.66 \n", " 783.87,1193.55 812.456,1173.64 819.645,1164.16 836.386,1134.77 851.859,1122.76 870.413,1105.37 891.262,1083.58 906.717,1075.98 930.665,1063.51 970.068,1049.58 \n", " 976.806,1046.59 1009.47,1028.47 1048.87,1019.55 1088.28,1019.55 1127.68,1019.55 1167.08,1019.55 1206.49,1019.55 1245.89,1019.55 1285.29,1028.47 1317.96,1046.59 \n", " 1324.7,1049.58 1364.1,1063.51 1388.05,1075.98 1403.5,1083.58 1424.35,1105.37 1442.9,1122.76 1458.38,1134.77 1475.12,1164.16 1482.31,1173.64 1510.89,1193.55 \n", " 1521.71,1199.66 1561.11,1199.66 1600.52,1199.66 1639.92,1207.43 1679.32,1207.43 1718.73,1207.43 1758.13,1207.43 1797.53,1207.43 1836.93,1207.43 1876.34,1199.11 \n", " 1885.25,1193.55 1911.26,1164.16 1915.74,1155.63 1921.46,1134.77 1926.45,1105.37 1926.51,1075.98 1926.51,1046.59 1926.51,1017.2 1926.51,987.803 1926.51,958.41 \n", " 1926.51,929.018 1926.51,899.625 1926.51,870.233 1926.51,840.841 1926.51,811.448 1926.51,782.056 1926.51,752.663 1926.51,723.271 1926.51,693.878 1926.51,664.486 \n", " 1926.51,635.093 1926.51,605.701 1926.51,576.308 1926.51,546.916 1926.51,517.523 1926.51,488.131 1926.51,458.739 1926.45,429.346 1921.46,399.954 1915.74,379.086 \n", " 1911.26,370.561 1885.25,341.169 1876.34,335.604 1836.93,327.289 1797.53,327.289 1758.13,327.289 1718.73,327.289 1679.32,327.289 1639.92,327.289 1600.52,335.061 \n", " 1561.11,335.061 1521.71,335.061 1510.89,341.169 1482.31,361.081 1475.12,370.561 1458.38,399.954 1442.9,411.956 1424.35,429.346 1403.5,451.134 1388.05,458.739 \n", " 1364.1,471.208 1324.7,485.142 1317.96,488.131 1285.29,506.252 1245.89,515.172 1206.49,515.172 1167.08,515.172 1127.68,515.172 1088.28,515.172 1048.87,515.172 \n", " 1009.47,506.252 976.806,488.131 970.068,485.142 930.665,471.208 906.717,458.739 891.262,451.134 870.413,429.346 851.859,411.956 836.386,399.954 819.645,370.561 \n", " 812.456,361.081 783.87,341.169 773.053,335.061 733.65,335.061 694.247,335.061 654.844,327.289 615.441,327.289 576.038,327.289 536.635,327.289 497.232,327.289 \n", " 457.829,327.289 418.426,335.604 409.517,341.169 383.502,370.561 379.023,379.086 373.304,399.954 368.317,429.346 368.255,458.739 368.255,488.131 368.255,517.523 \n", " 368.255,546.916 368.255,576.308 368.255,605.701 368.255,635.093 368.255,664.486 368.255,693.878 368.255,723.271 368.255,752.663 368.255,782.056 368.255,811.448 \n", " 368.255,840.841 368.255,870.233 368.255,899.625 368.255,929.018 368.255,958.41 368.255,987.803 368.255,1017.2 368.255,1046.59 368.255,1075.98 368.317,1105.37 \n", " 373.304,1134.77 379.023,1155.63 383.502,1164.16 409.517,1193.55 418.426,1199.11 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 457.829,1194.93 497.232,1194.93 536.635,1194.93 576.038,1194.93 615.441,1194.93 654.844,1194.93 662.232,1193.55 694.247,1188.18 733.65,1188.18 773.053,1188.18 \n", " 807.007,1164.16 812.456,1159.22 827.509,1134.77 851.859,1115.88 863.066,1105.37 891.186,1075.98 891.262,1075.9 930.665,1055.39 954.656,1046.59 970.068,1037.55 \n", " 1007.49,1017.2 1009.47,1016.18 1048.87,1008.15 1088.28,1008.15 1127.68,1008.15 1167.08,1008.15 1206.49,1008.15 1245.89,1008.15 1285.29,1016.18 1287.27,1017.2 \n", " 1324.7,1037.55 1340.11,1046.59 1364.1,1055.39 1403.5,1075.9 1403.58,1075.98 1431.7,1105.37 1442.9,1115.88 1467.26,1134.77 1482.31,1159.22 1487.76,1164.16 \n", " 1521.71,1188.18 1561.11,1188.18 1600.52,1188.18 1632.53,1193.55 1639.92,1194.93 1679.32,1194.93 1718.73,1194.93 1758.13,1194.93 1797.53,1194.93 1836.93,1194.93 \n", " 1844.32,1193.55 1876.34,1188.18 1900.12,1164.16 1915.61,1134.77 1915.74,1134.37 1921.5,1105.37 1921.57,1075.98 1921.57,1046.59 1921.57,1017.2 1921.57,987.803 \n", " 1921.57,958.41 1921.57,929.018 1921.57,899.625 1921.57,870.233 1921.57,840.841 1921.57,811.448 1921.57,782.056 1921.57,752.663 1921.57,723.271 1921.57,693.878 \n", " 1921.57,664.486 1921.57,635.093 1921.57,605.701 1921.57,576.308 1921.57,546.916 1921.57,517.523 1921.57,488.131 1921.57,458.739 1921.5,429.346 1915.74,400.351 \n", " 1915.61,399.954 1900.12,370.561 1876.34,346.542 1844.32,341.169 1836.93,339.791 1797.53,339.791 1758.13,339.791 1718.73,339.791 1679.32,339.791 1639.92,339.791 \n", " 1632.53,341.169 1600.52,346.542 1561.11,346.542 1521.71,346.542 1487.76,370.561 1482.31,375.502 1467.26,399.954 1442.9,418.842 1431.7,429.346 1403.58,458.739 \n", " 1403.5,458.824 1364.1,479.332 1340.11,488.131 1324.7,497.173 1287.27,517.523 1285.29,518.535 1245.89,526.571 1206.49,526.571 1167.08,526.571 1127.68,526.571 \n", " 1088.28,526.571 1048.87,526.571 1009.47,518.535 1007.49,517.523 970.068,497.173 954.656,488.131 930.665,479.332 891.262,458.824 891.186,458.739 863.066,429.346 \n", " 851.859,418.842 827.509,399.954 812.456,375.502 807.007,370.561 773.053,346.542 733.65,346.542 694.247,346.542 662.232,341.169 654.844,339.791 615.441,339.791 \n", " 576.038,339.791 536.635,339.791 497.232,339.791 457.829,339.791 450.441,341.169 418.426,346.542 394.643,370.561 379.155,399.954 379.023,400.351 373.268,429.346 \n", " 373.195,458.739 373.195,488.131 373.195,517.523 373.195,546.916 373.195,576.308 373.195,605.701 373.195,635.093 373.195,664.486 373.195,693.878 373.195,723.271 \n", " 373.195,752.663 373.195,782.056 373.195,811.448 373.195,840.841 373.195,870.233 373.195,899.625 373.195,929.018 373.195,958.41 373.195,987.803 373.195,1017.2 \n", " 373.195,1046.59 373.195,1075.98 373.268,1105.37 379.023,1134.37 379.155,1134.77 394.643,1164.16 418.426,1188.18 450.441,1193.55 457.829,1194.93 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 418.426,1176.92 457.829,1182.43 497.232,1182.43 536.635,1182.43 576.038,1182.43 615.441,1182.43 654.844,1182.43 694.247,1176.92 733.65,1176.92 773.053,1176.92 \n", " 791.101,1164.16 812.456,1144.8 818.631,1134.77 851.859,1108.99 855.719,1105.37 883.191,1075.98 891.262,1066.98 930.665,1047.26 932.506,1046.59 970.068,1024.55 \n", " 983.596,1017.2 1009.47,1003.96 1048.87,996.896 1088.28,996.896 1127.68,996.896 1167.08,996.896 1206.49,996.896 1245.89,996.896 1285.29,1003.96 1311.17,1017.2 \n", " 1324.7,1024.55 1362.26,1046.59 1364.1,1047.26 1403.5,1066.98 1411.57,1075.98 1439.04,1105.37 1442.9,1108.99 1476.13,1134.77 1482.31,1144.8 1503.66,1164.16 \n", " 1521.71,1176.92 1561.11,1176.92 1600.52,1176.92 1639.92,1182.43 1679.32,1182.43 1718.73,1182.43 1758.13,1182.43 1797.53,1182.43 1836.93,1182.43 1876.34,1176.92 \n", " 1888.98,1164.16 1907.34,1134.77 1915.74,1109.42 1916.54,1105.37 1916.63,1075.98 1916.63,1046.59 1916.63,1017.2 1916.63,987.803 1916.63,958.41 1916.63,929.018 \n", " 1916.63,899.625 1916.63,870.233 1916.63,840.841 1916.63,811.448 1916.63,782.056 1916.63,752.663 1916.63,723.271 1916.63,693.878 1916.63,664.486 1916.63,635.093 \n", " 1916.63,605.701 1916.63,576.308 1916.63,546.916 1916.63,517.523 1916.63,488.131 1916.63,458.739 1916.54,429.346 1915.74,425.298 1907.34,399.954 1888.98,370.561 \n", " 1876.34,357.794 1836.93,352.293 1797.53,352.293 1758.13,352.293 1718.73,352.293 1679.32,352.293 1639.92,352.293 1600.52,357.794 1561.11,357.794 1521.71,357.794 \n", " 1503.66,370.561 1482.31,389.923 1476.13,399.954 1442.9,425.728 1439.04,429.346 1411.57,458.739 1403.5,467.738 1364.1,487.456 1362.26,488.131 1324.7,510.168 \n", " 1311.17,517.523 1285.29,530.757 1245.89,537.823 1206.49,537.823 1167.08,537.823 1127.68,537.823 1088.28,537.823 1048.87,537.823 1009.47,530.757 983.596,517.523 \n", " 970.068,510.168 932.506,488.131 930.665,487.456 891.262,467.738 883.191,458.739 855.719,429.346 851.859,425.728 818.631,399.954 812.456,389.923 791.101,370.561 \n", " 773.053,357.794 733.65,357.794 694.247,357.794 654.844,352.293 615.441,352.293 576.038,352.293 536.635,352.293 497.232,352.293 457.829,352.293 418.426,357.794 \n", " 405.784,370.561 387.428,399.954 379.023,425.298 378.22,429.346 378.136,458.739 378.136,488.131 378.136,517.523 378.136,546.916 378.136,576.308 378.136,605.701 \n", " 378.136,635.093 378.136,664.486 378.136,693.878 378.136,723.271 378.136,752.663 378.136,782.056 378.136,811.448 378.136,840.841 378.136,870.233 378.136,899.625 \n", " 378.136,929.018 378.136,958.41 378.136,987.803 378.136,1017.2 378.136,1046.59 378.136,1075.98 378.22,1105.37 379.023,1109.42 387.428,1134.77 405.784,1164.16 \n", " 418.426,1176.92 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 418.426,1165.67 457.829,1169.92 497.232,1169.92 536.635,1169.92 576.038,1169.92 615.441,1169.92 654.844,1169.92 694.247,1165.67 733.65,1165.67 773.053,1165.67 \n", " 775.196,1164.16 808.525,1134.77 812.456,1131.54 845.505,1105.37 851.859,1101.26 875.196,1075.98 891.262,1058.07 914.276,1046.59 930.665,1033.95 959.699,1017.2 \n", " 970.068,1010.59 1009.47,991.739 1034.16,987.803 1048.87,985.644 1088.28,985.644 1127.68,985.644 1167.08,985.644 1206.49,985.644 1245.89,985.644 1260.6,987.803 \n", " 1285.29,991.739 1324.7,1010.59 1335.07,1017.2 1364.1,1033.95 1380.49,1046.59 1403.5,1058.07 1419.57,1075.98 1442.9,1101.26 1449.26,1105.37 1482.31,1131.54 \n", " 1486.24,1134.77 1519.57,1164.16 1521.71,1165.67 1561.11,1165.67 1600.52,1165.67 1639.92,1169.92 1679.32,1169.92 1718.73,1169.92 1758.13,1169.92 1797.53,1169.92 \n", " 1836.93,1169.92 1876.34,1165.67 1877.84,1164.16 1899.06,1134.77 1910.05,1105.37 1910.19,1075.98 1910.19,1046.59 1910.19,1017.2 1910.19,987.803 1910.19,958.41 \n", " 1910.19,929.018 1910.19,899.625 1910.19,870.233 1910.19,840.841 1910.19,811.448 1910.19,782.056 1910.19,752.663 1910.19,723.271 1910.19,693.878 1910.19,664.486 \n", " 1910.19,635.093 1910.19,605.701 1910.19,576.308 1910.19,546.916 1910.19,517.523 1910.19,488.131 1910.19,458.739 1910.05,429.346 1899.06,399.954 1877.84,370.561 \n", " 1876.34,369.046 1836.93,364.795 1797.53,364.795 1758.13,364.795 1718.73,364.795 1679.32,364.795 1639.92,364.795 1600.52,369.046 1561.11,369.046 1521.71,369.046 \n", " 1519.57,370.561 1486.24,399.954 1482.31,403.181 1449.26,429.346 1442.9,433.457 1419.57,458.739 1403.5,476.653 1380.49,488.131 1364.1,500.773 1335.07,517.523 \n", " 1324.7,524.13 1285.29,542.98 1260.6,546.916 1245.89,549.074 1206.49,549.074 1167.08,549.074 1127.68,549.074 1088.28,549.074 1048.87,549.074 1034.16,546.916 \n", " 1009.47,542.98 970.068,524.13 959.699,517.523 930.665,500.773 914.276,488.131 891.262,476.653 875.196,458.739 851.859,433.457 845.505,429.346 812.456,403.181 \n", " 808.525,399.954 775.196,370.561 773.053,369.046 733.65,369.046 694.247,369.046 654.844,364.795 615.441,364.795 576.038,364.795 536.635,364.795 497.232,364.795 \n", " 457.829,364.795 418.426,369.046 416.926,370.561 395.701,399.954 384.709,429.346 384.577,458.739 384.577,488.131 384.577,517.523 384.577,546.916 384.577,576.308 \n", " 384.577,605.701 384.577,635.093 384.577,664.486 384.577,693.878 384.577,723.271 384.577,752.663 384.577,782.056 384.577,811.448 384.577,840.841 384.577,870.233 \n", " 384.577,899.625 384.577,929.018 384.577,958.41 384.577,987.803 384.577,1017.2 384.577,1046.59 384.577,1075.98 384.709,1105.37 395.701,1134.77 416.926,1164.16 \n", " 418.426,1165.67 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 418.426,1154.42 457.829,1157.42 497.232,1157.42 536.635,1157.42 576.038,1157.42 615.441,1157.42 654.844,1157.42 694.247,1154.42 733.65,1154.42 773.053,1154.42 \n", " 795.612,1134.77 812.456,1120.94 832.116,1105.37 851.859,1092.6 867.201,1075.98 891.262,1049.15 896.402,1046.59 930.665,1020.16 935.801,1017.2 970.068,995.363 \n", " 986.727,987.803 1009.47,979.516 1048.87,974.393 1088.28,974.393 1127.68,974.393 1167.08,974.393 1206.49,974.393 1245.89,974.393 1285.29,979.516 1308.04,987.803 \n", " 1324.7,995.363 1358.96,1017.2 1364.1,1020.16 1398.36,1046.59 1403.5,1049.15 1427.56,1075.98 1442.9,1092.6 1462.65,1105.37 1482.31,1120.94 1499.15,1134.77 \n", " 1521.71,1154.42 1561.11,1154.42 1600.52,1154.42 1639.92,1157.42 1679.32,1157.42 1718.73,1157.42 1758.13,1157.42 1797.53,1157.42 1836.93,1157.42 1876.34,1154.42 \n", " 1890.79,1134.77 1903.27,1105.37 1903.42,1075.98 1903.42,1046.59 1903.42,1017.2 1903.42,987.803 1903.42,958.41 1903.42,929.018 1903.42,899.625 1903.42,870.233 \n", " 1903.42,840.841 1903.42,811.448 1903.42,782.056 1903.42,752.663 1903.42,723.271 1903.42,693.878 1903.42,664.486 1903.42,635.093 1903.42,605.701 1903.42,576.308 \n", " 1903.42,546.916 1903.42,517.523 1903.42,488.131 1903.42,458.739 1903.27,429.346 1890.79,399.954 1876.34,380.297 1836.93,377.297 1797.53,377.297 1758.13,377.297 \n", " 1718.73,377.297 1679.32,377.297 1639.92,377.297 1600.52,380.297 1561.11,380.297 1521.71,380.297 1499.15,399.954 1482.31,413.781 1462.65,429.346 1442.9,442.118 \n", " 1427.56,458.739 1403.5,485.568 1398.36,488.131 1364.1,514.561 1358.96,517.523 1324.7,539.355 1308.04,546.916 1285.29,555.203 1245.89,560.326 1206.49,560.326 \n", " 1167.08,560.326 1127.68,560.326 1088.28,560.326 1048.87,560.326 1009.47,555.203 986.727,546.916 970.068,539.355 935.801,517.523 930.665,514.561 896.402,488.131 \n", " 891.262,485.568 867.201,458.739 851.859,442.118 832.116,429.346 812.456,413.781 795.612,399.954 773.053,380.297 733.65,380.297 694.247,380.297 654.844,377.297 \n", " 615.441,377.297 576.038,377.297 536.635,377.297 497.232,377.297 457.829,377.297 418.426,380.297 403.974,399.954 391.497,429.346 391.347,458.739 391.347,488.131 \n", " 391.347,517.523 391.347,546.916 391.347,576.308 391.347,605.701 391.347,635.093 391.347,664.486 391.347,693.878 391.347,723.271 391.347,752.663 391.347,782.056 \n", " 391.347,811.448 391.347,840.841 391.347,870.233 391.347,899.625 391.347,929.018 391.347,958.41 391.347,987.803 391.347,1017.2 391.347,1046.59 391.347,1075.98 \n", " 391.497,1105.37 403.974,1134.77 418.426,1154.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 418.426,1143.17 457.829,1144.92 497.232,1144.92 536.635,1144.92 576.038,1144.92 615.441,1144.92 654.844,1144.92 694.247,1143.17 733.65,1143.17 773.053,1143.17 \n", " 782.699,1134.77 812.456,1110.34 818.728,1105.37 851.859,1083.94 859.206,1075.98 881.716,1046.59 891.262,1030.42 908.048,1017.2 930.665,1001.35 953.18,987.803 \n", " 970.068,980.138 1009.47,967.294 1048.87,963.141 1088.28,963.141 1127.68,963.141 1167.08,963.141 1206.49,963.141 1245.89,963.141 1285.29,967.294 1324.7,980.138 \n", " 1341.58,987.803 1364.1,1001.35 1386.72,1017.2 1403.5,1030.42 1413.05,1046.59 1435.56,1075.98 1442.9,1083.94 1476.04,1105.37 1482.31,1110.34 1512.07,1134.77 \n", " 1521.71,1143.17 1561.11,1143.17 1600.52,1143.17 1639.92,1144.92 1679.32,1144.92 1718.73,1144.92 1758.13,1144.92 1797.53,1144.92 1836.93,1144.92 1876.34,1143.17 \n", " 1882.52,1134.77 1896.48,1105.37 1896.65,1075.98 1896.65,1046.59 1896.65,1017.2 1896.65,987.803 1896.65,958.41 1896.65,929.018 1896.65,899.625 1896.65,870.233 \n", " 1896.65,840.841 1896.65,811.448 1896.65,782.056 1896.65,752.663 1896.65,723.271 1896.65,693.878 1896.65,664.486 1896.65,635.093 1896.65,605.701 1896.65,576.308 \n", " 1896.65,546.916 1896.65,517.523 1896.65,488.131 1896.65,458.739 1896.48,429.346 1882.52,399.954 1876.34,391.549 1836.93,389.799 1797.53,389.799 1758.13,389.799 \n", " 1718.73,389.799 1679.32,389.799 1639.92,389.799 1600.52,391.549 1561.11,391.549 1521.71,391.549 1512.07,399.954 1482.31,424.381 1476.04,429.346 1442.9,450.78 \n", " 1435.56,458.739 1413.05,488.131 1403.5,504.3 1386.72,517.523 1364.1,533.37 1341.58,546.916 1324.7,554.581 1285.29,567.425 1245.89,571.578 1206.49,571.578 \n", " 1167.08,571.578 1127.68,571.578 1088.28,571.578 1048.87,571.578 1009.47,567.425 970.068,554.581 953.18,546.916 930.665,533.37 908.048,517.523 891.262,504.3 \n", " 881.716,488.131 859.206,458.739 851.859,450.78 818.728,429.346 812.456,424.381 782.699,399.954 773.053,391.549 733.65,391.549 694.247,391.549 654.844,389.799 \n", " 615.441,389.799 576.038,389.799 536.635,389.799 497.232,389.799 457.829,389.799 418.426,391.549 412.247,399.954 398.285,429.346 398.117,458.739 398.117,488.131 \n", " 398.117,517.523 398.117,546.916 398.117,576.308 398.117,605.701 398.117,635.093 398.117,664.486 398.117,693.878 398.117,723.271 398.117,752.663 398.117,782.056 \n", " 398.117,811.448 398.117,840.841 398.117,870.233 398.117,899.625 398.117,929.018 398.117,958.41 398.117,987.803 398.117,1017.2 398.117,1046.59 398.117,1075.98 \n", " 398.285,1105.37 412.247,1134.77 418.426,1143.17 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 418.426,1131.42 457.829,1127.72 497.232,1127.72 536.635,1127.72 576.038,1127.72 615.441,1127.72 654.844,1127.72 694.247,1127.65 733.65,1127.65 773.053,1127.65 \n", " 796.629,1105.37 812.456,1097.33 849.719,1075.98 851.859,1074.16 868.318,1046.59 872.981,1017.2 891.262,1005.14 916.722,987.803 930.665,981.165 970.068,964.913 \n", " 994.099,958.41 1009.47,953.565 1048.87,948.559 1088.28,947.013 1127.68,944.892 1167.08,944.892 1206.49,947.013 1245.89,948.559 1285.29,953.565 1300.67,958.41 \n", " 1324.7,964.913 1364.1,981.165 1378.04,987.803 1403.5,1005.14 1421.78,1017.2 1426.45,1046.59 1442.9,1074.16 1445.05,1075.98 1482.31,1097.33 1498.13,1105.37 \n", " 1521.71,1127.65 1561.11,1127.65 1600.52,1127.65 1639.92,1127.72 1679.32,1127.72 1718.73,1127.72 1758.13,1127.72 1797.53,1127.72 1836.93,1127.72 1876.34,1131.42 \n", " 1889.69,1105.37 1889.88,1075.98 1889.88,1046.59 1889.88,1017.2 1889.88,987.803 1889.88,958.41 1889.88,929.018 1889.88,899.625 1889.88,870.233 1889.88,840.841 \n", " 1889.88,811.448 1889.88,782.056 1889.88,752.663 1889.88,723.271 1889.88,693.878 1889.88,664.486 1889.88,635.093 1889.88,605.701 1889.88,576.308 1889.88,546.916 \n", " 1889.88,517.523 1889.88,488.131 1889.88,458.739 1889.69,429.346 1876.34,403.304 1836.93,406.996 1797.53,406.996 1758.13,406.996 1718.73,406.996 1679.32,406.996 \n", " 1639.92,406.996 1600.52,407.072 1561.11,407.072 1521.71,407.072 1498.13,429.346 1482.31,437.388 1445.05,458.739 1442.9,460.558 1426.45,488.131 1421.78,517.523 \n", " 1403.5,529.575 1378.04,546.916 1364.1,553.554 1324.7,569.806 1300.67,576.308 1285.29,581.153 1245.89,586.16 1206.49,587.706 1167.08,589.827 1127.68,589.827 \n", " 1088.28,587.706 1048.87,586.16 1009.47,581.153 994.099,576.308 970.068,569.806 930.665,553.554 916.722,546.916 891.262,529.575 872.981,517.523 868.318,488.131 \n", " 851.859,460.558 849.719,458.739 812.456,437.388 796.629,429.346 773.053,407.072 733.65,407.072 694.247,407.072 654.844,406.996 615.441,406.996 576.038,406.996 \n", " 536.635,406.996 497.232,406.996 457.829,406.996 418.426,403.304 405.072,429.346 404.887,458.739 404.887,488.131 404.887,517.523 404.887,546.916 404.887,576.308 \n", " 404.887,605.701 404.887,635.093 404.887,664.486 404.887,693.878 404.887,723.271 404.887,752.663 404.887,782.056 404.887,811.448 404.887,840.841 404.887,870.233 \n", " 404.887,899.625 404.887,929.018 404.887,958.41 404.887,987.803 404.887,1017.2 404.887,1046.59 404.887,1075.98 405.072,1105.37 418.426,1131.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 418.426,1118.18 446.219,1105.37 452.904,1075.98 457.829,1059.91 497.232,1059.91 536.635,1059.91 576.038,1059.91 615.441,1059.91 654.844,1059.91 667.158,1075.98 \n", " 694.247,1093.66 733.65,1093.66 773.053,1093.66 812.456,1082.2 823.318,1075.98 851.859,1051.71 854.919,1046.59 851.859,1037.59 829.174,1017.2 851.859,993.379 \n", " 861.034,987.803 891.262,976.266 930.665,960.981 937.832,958.41 970.068,944.28 1009.47,935.832 1048.87,931.562 1074.02,929.018 1088.28,916.37 1111.35,899.625 \n", " 1127.68,889.879 1167.08,889.879 1183.42,899.625 1206.49,916.37 1220.74,929.018 1245.89,931.562 1285.29,935.832 1324.7,944.28 1356.93,958.41 1364.1,960.981 \n", " 1403.5,976.266 1433.73,987.803 1442.9,993.379 1465.59,1017.2 1442.9,1037.59 1439.84,1046.59 1442.9,1051.71 1471.45,1075.98 1482.31,1082.2 1521.71,1093.66 \n", " 1561.11,1093.66 1600.52,1093.66 1627.61,1075.98 1639.92,1059.91 1679.32,1059.91 1718.73,1059.91 1758.13,1059.91 1797.53,1059.91 1836.93,1059.91 1841.86,1075.98 \n", " 1848.54,1105.37 1876.34,1118.18 1882.9,1105.37 1883.11,1075.98 1883.11,1046.59 1883.11,1017.2 1883.11,987.803 1883.11,958.41 1883.11,929.018 1883.11,899.625 \n", " 1883.11,870.233 1883.11,840.841 1883.11,811.448 1883.11,782.056 1883.11,752.663 1883.11,723.271 1883.11,693.878 1883.11,664.486 1883.11,635.093 1883.11,605.701 \n", " 1883.11,576.308 1883.11,546.916 1883.11,517.523 1883.11,488.131 1883.11,458.739 1882.9,429.346 1876.34,416.541 1848.54,429.346 1841.86,458.739 1836.93,474.813 \n", " 1797.53,474.813 1758.13,474.813 1718.73,474.813 1679.32,474.813 1639.92,474.813 1627.61,458.739 1600.52,441.057 1561.11,441.057 1521.71,441.057 1482.31,452.515 \n", " 1471.45,458.739 1442.9,483.005 1439.84,488.131 1442.9,497.126 1465.59,517.523 1442.9,541.34 1433.73,546.916 1403.5,558.453 1364.1,573.737 1356.93,576.308 \n", " 1324.7,590.439 1285.29,598.887 1245.89,603.157 1220.74,605.701 1206.49,618.349 1183.42,635.093 1167.08,644.84 1127.68,644.84 1111.35,635.093 1088.28,618.349 \n", " 1074.02,605.701 1048.87,603.157 1009.47,598.887 970.068,590.439 937.832,576.308 930.665,573.737 891.262,558.453 861.034,546.916 851.859,541.34 829.174,517.523 \n", " 851.859,497.126 854.919,488.131 851.859,483.005 823.318,458.739 812.456,452.515 773.053,441.057 733.65,441.057 694.247,441.057 667.158,458.739 654.844,474.813 \n", " 615.441,474.813 576.038,474.813 536.635,474.813 497.232,474.813 457.829,474.813 452.904,458.739 446.219,429.346 418.426,416.541 411.86,429.346 411.656,458.739 \n", " 411.656,488.131 411.656,517.523 411.656,546.916 411.656,576.308 411.656,605.701 411.656,635.093 411.656,664.486 411.656,693.878 411.656,723.271 411.656,752.663 \n", " 411.656,782.056 411.656,811.448 411.656,840.841 411.656,870.233 411.656,899.625 411.656,929.018 411.656,958.41 411.656,987.803 411.656,1017.2 411.656,1046.59 \n", " 411.656,1075.98 411.86,1105.37 418.426,1118.18 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,227.273 2112.76,227.273 2112.76,47.2441 1871.41,47.2441 1871.41,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1630.07,227.273 1871.41,227.273 1871.41,47.2441 1630.07,47.2441 1630.07,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1992.08,317.287 2112.76,317.287 2112.76,227.273 1992.08,227.273 1992.08,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,317.287 1992.08,317.287 1992.08,227.273 1871.41,227.273 1871.41,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1992.08,407.302 2112.76,407.302 2112.76,317.287 1992.08,317.287 1992.08,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,362.295 1992.08,362.295 1992.08,317.287 1931.75,317.287 1931.75,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,339.791 1931.75,339.791 1931.75,317.287 1901.58,317.287 1901.58,339.791 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,339.791 1901.58,339.791 1901.58,317.287 1871.41,317.287 1871.41,339.791 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,362.295 1931.75,362.295 1931.75,339.791 1901.58,339.791 1901.58,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,362.295 1901.58,362.295 1901.58,339.791 1871.41,339.791 1871.41,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,407.302 1992.08,407.302 1992.08,362.295 1931.75,362.295 1931.75,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,384.798 1931.75,384.798 1931.75,362.295 1901.58,362.295 1901.58,384.798 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,384.798 1901.58,384.798 1901.58,362.295 1871.41,362.295 1871.41,384.798 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,407.302 1931.75,407.302 1931.75,384.798 1901.58,384.798 1901.58,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,407.302 1901.58,407.302 1901.58,384.798 1871.41,384.798 1871.41,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1630.07,407.302 1871.41,407.302 1871.41,227.273 1630.07,227.273 1630.07,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,227.273 1630.07,227.273 1630.07,47.2441 1388.73,47.2441 1388.73,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,227.273 1388.73,227.273 1388.73,47.2441 1147.38,47.2441 1147.38,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1509.4,317.287 1630.07,317.287 1630.07,227.273 1509.4,227.273 1509.4,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,317.287 1509.4,317.287 1509.4,227.273 1388.73,227.273 1388.73,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1509.4,407.302 1630.07,407.302 1630.07,317.287 1509.4,317.287 1509.4,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,407.302 1509.4,407.302 1509.4,317.287 1388.73,317.287 1388.73,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,407.302 1388.73,407.302 1388.73,227.273 1147.38,227.273 1147.38,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1992.08,497.316 2112.76,497.316 2112.76,407.302 1992.08,407.302 1992.08,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,452.309 1992.08,452.309 1992.08,407.302 1931.75,407.302 1931.75,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,429.805 1931.75,429.805 1931.75,407.302 1901.58,407.302 1901.58,429.805 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,429.805 1901.58,429.805 1901.58,407.302 1871.41,407.302 1871.41,429.805 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,452.309 1931.75,452.309 1931.75,429.805 1901.58,429.805 1901.58,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,452.309 1901.58,452.309 1901.58,429.805 1871.41,429.805 1871.41,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,497.316 1992.08,497.316 1992.08,452.309 1931.75,452.309 1931.75,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,474.813 1931.75,474.813 1931.75,452.309 1901.58,452.309 1901.58,474.813 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,474.813 1901.58,474.813 1901.58,452.309 1871.41,452.309 1871.41,474.813 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,497.316 1931.75,497.316 1931.75,474.813 1901.58,474.813 1901.58,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,497.316 1901.58,497.316 1901.58,474.813 1871.41,474.813 1871.41,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1992.08,587.331 2112.76,587.331 2112.76,497.316 1992.08,497.316 1992.08,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,542.323 1992.08,542.323 1992.08,497.316 1931.75,497.316 1931.75,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,519.82 1931.75,519.82 1931.75,497.316 1901.58,497.316 1901.58,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,519.82 1901.58,519.82 1901.58,497.316 1871.41,497.316 1871.41,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,542.323 1931.75,542.323 1931.75,519.82 1901.58,519.82 1901.58,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,542.323 1901.58,542.323 1901.58,519.82 1871.41,519.82 1871.41,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,587.331 1992.08,587.331 1992.08,542.323 1931.75,542.323 1931.75,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,564.827 1931.75,564.827 1931.75,542.323 1901.58,542.323 1901.58,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,564.827 1901.58,564.827 1901.58,542.323 1871.41,542.323 1871.41,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,587.331 1931.75,587.331 1931.75,564.827 1901.58,564.827 1901.58,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,587.331 1901.58,587.331 1901.58,564.827 1871.41,564.827 1871.41,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1630.07,587.331 1871.41,587.331 1871.41,407.302 1630.07,407.302 1630.07,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1992.08,677.345 2112.76,677.345 2112.76,587.331 1992.08,587.331 1992.08,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,632.338 1992.08,632.338 1992.08,587.331 1931.75,587.331 1931.75,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,609.834 1931.75,609.834 1931.75,587.331 1901.58,587.331 1901.58,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,609.834 1901.58,609.834 1901.58,587.331 1871.41,587.331 1871.41,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,632.338 1931.75,632.338 1931.75,609.834 1901.58,609.834 1901.58,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,632.338 1901.58,632.338 1901.58,609.834 1871.41,609.834 1871.41,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,677.345 1992.08,677.345 1992.08,632.338 1931.75,632.338 1931.75,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,654.841 1931.75,654.841 1931.75,632.338 1901.58,632.338 1901.58,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,654.841 1901.58,654.841 1901.58,632.338 1871.41,632.338 1871.41,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,677.345 1931.75,677.345 1931.75,654.841 1901.58,654.841 1901.58,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,677.345 1901.58,677.345 1901.58,654.841 1871.41,654.841 1871.41,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1992.08,767.359 2112.76,767.359 2112.76,677.345 1992.08,677.345 1992.08,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,722.352 1992.08,722.352 1992.08,677.345 1931.75,677.345 1931.75,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,699.849 1931.75,699.849 1931.75,677.345 1901.58,677.345 1901.58,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,699.849 1901.58,699.849 1901.58,677.345 1871.41,677.345 1871.41,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,722.352 1931.75,722.352 1931.75,699.849 1901.58,699.849 1901.58,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,722.352 1901.58,722.352 1901.58,699.849 1871.41,699.849 1871.41,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,767.359 1992.08,767.359 1992.08,722.352 1931.75,722.352 1931.75,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,744.856 1931.75,744.856 1931.75,722.352 1901.58,722.352 1901.58,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,744.856 1901.58,744.856 1901.58,722.352 1871.41,722.352 1871.41,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,767.359 1931.75,767.359 1931.75,744.856 1901.58,744.856 1901.58,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,767.359 1901.58,767.359 1901.58,744.856 1871.41,744.856 1871.41,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1630.07,767.359 1871.41,767.359 1871.41,587.331 1630.07,587.331 1630.07,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1509.4,497.316 1630.07,497.316 1630.07,407.302 1509.4,407.302 1509.4,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.06,452.309 1509.4,452.309 1509.4,407.302 1449.06,407.302 1449.06,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,452.309 1449.06,452.309 1449.06,407.302 1388.73,407.302 1388.73,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.06,497.316 1509.4,497.316 1509.4,452.309 1449.06,452.309 1449.06,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,497.316 1449.06,497.316 1449.06,452.309 1388.73,452.309 1388.73,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1509.4,587.331 1630.07,587.331 1630.07,497.316 1509.4,497.316 1509.4,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,587.331 1509.4,587.331 1509.4,497.316 1388.73,497.316 1388.73,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1268.05,497.316 1388.73,497.316 1388.73,407.302 1268.05,407.302 1268.05,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,497.316 1268.05,497.316 1268.05,407.302 1147.38,407.302 1147.38,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1268.05,587.331 1388.73,587.331 1388.73,497.316 1268.05,497.316 1268.05,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,587.331 1268.05,587.331 1268.05,497.316 1147.38,497.316 1147.38,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,767.359 1630.07,767.359 1630.07,587.331 1388.73,587.331 1388.73,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,767.359 1388.73,767.359 1388.73,587.331 1147.38,587.331 1147.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 906.039,227.273 1147.38,227.273 1147.38,47.2441 906.039,47.2441 906.039,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 664.695,227.273 906.039,227.273 906.039,47.2441 664.695,47.2441 664.695,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 906.039,407.302 1147.38,407.302 1147.38,227.273 906.039,227.273 906.039,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 785.367,317.287 906.039,317.287 906.039,227.273 785.367,227.273 785.367,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 664.695,317.287 785.367,317.287 785.367,227.273 664.695,227.273 664.695,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 785.367,407.302 906.039,407.302 906.039,317.287 785.367,317.287 785.367,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 664.695,407.302 785.367,407.302 785.367,317.287 664.695,317.287 664.695,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 423.352,227.273 664.695,227.273 664.695,47.2441 423.352,47.2441 423.352,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,227.273 423.352,227.273 423.352,47.2441 182.008,47.2441 182.008,227.273 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 423.352,407.302 664.695,407.302 664.695,227.273 423.352,227.273 423.352,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,317.287 423.352,317.287 423.352,227.273 302.68,227.273 302.68,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,317.287 302.68,317.287 302.68,227.273 182.008,227.273 182.008,317.287 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,339.791 423.352,339.791 423.352,317.287 393.184,317.287 393.184,339.791 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,339.791 393.184,339.791 393.184,317.287 363.016,317.287 363.016,339.791 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,362.295 423.352,362.295 423.352,339.791 393.184,339.791 393.184,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,362.295 393.184,362.295 393.184,339.791 363.016,339.791 363.016,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,362.295 363.016,362.295 363.016,317.287 302.68,317.287 302.68,362.295 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,384.798 423.352,384.798 423.352,362.295 393.184,362.295 393.184,384.798 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,384.798 393.184,384.798 393.184,362.295 363.016,362.295 363.016,384.798 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,407.302 423.352,407.302 423.352,384.798 393.184,384.798 393.184,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,407.302 393.184,407.302 393.184,384.798 363.016,384.798 363.016,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,407.302 363.016,407.302 363.016,362.295 302.68,362.295 302.68,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,407.302 302.68,407.302 302.68,317.287 182.008,317.287 182.008,407.302 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1026.71,497.316 1147.38,497.316 1147.38,407.302 1026.71,407.302 1026.71,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 906.039,497.316 1026.71,497.316 1026.71,407.302 906.039,407.302 906.039,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1026.71,587.331 1147.38,587.331 1147.38,497.316 1026.71,497.316 1026.71,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 906.039,587.331 1026.71,587.331 1026.71,497.316 906.039,497.316 906.039,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 845.703,452.309 906.039,452.309 906.039,407.302 845.703,407.302 845.703,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 785.367,452.309 845.703,452.309 845.703,407.302 785.367,407.302 785.367,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 845.703,497.316 906.039,497.316 906.039,452.309 845.703,452.309 845.703,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 785.367,497.316 845.703,497.316 845.703,452.309 785.367,452.309 785.367,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 664.695,497.316 785.367,497.316 785.367,407.302 664.695,407.302 664.695,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 785.367,587.331 906.039,587.331 906.039,497.316 785.367,497.316 785.367,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 664.695,587.331 785.367,587.331 785.367,497.316 664.695,497.316 664.695,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 906.039,767.359 1147.38,767.359 1147.38,587.331 906.039,587.331 906.039,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 664.695,767.359 906.039,767.359 906.039,587.331 664.695,587.331 664.695,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 423.352,587.331 664.695,587.331 664.695,407.302 423.352,407.302 423.352,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,429.805 423.352,429.805 423.352,407.302 393.184,407.302 393.184,429.805 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,429.805 393.184,429.805 393.184,407.302 363.016,407.302 363.016,429.805 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,452.309 423.352,452.309 423.352,429.805 393.184,429.805 393.184,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,452.309 393.184,452.309 393.184,429.805 363.016,429.805 363.016,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,452.309 363.016,452.309 363.016,407.302 302.68,407.302 302.68,452.309 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,474.813 423.352,474.813 423.352,452.309 393.184,452.309 393.184,474.813 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,474.813 393.184,474.813 393.184,452.309 363.016,452.309 363.016,474.813 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,497.316 423.352,497.316 423.352,474.813 393.184,474.813 393.184,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,497.316 393.184,497.316 393.184,474.813 363.016,474.813 363.016,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,497.316 363.016,497.316 363.016,452.309 302.68,452.309 302.68,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,497.316 302.68,497.316 302.68,407.302 182.008,407.302 182.008,497.316 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,519.82 423.352,519.82 423.352,497.316 393.184,497.316 393.184,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,519.82 393.184,519.82 393.184,497.316 363.016,497.316 363.016,519.82 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,542.323 423.352,542.323 423.352,519.82 393.184,519.82 393.184,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,542.323 393.184,542.323 393.184,519.82 363.016,519.82 363.016,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,542.323 363.016,542.323 363.016,497.316 302.68,497.316 302.68,542.323 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,564.827 423.352,564.827 423.352,542.323 393.184,542.323 393.184,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,564.827 393.184,564.827 393.184,542.323 363.016,542.323 363.016,564.827 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,587.331 423.352,587.331 423.352,564.827 393.184,564.827 393.184,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,587.331 393.184,587.331 393.184,564.827 363.016,564.827 363.016,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,587.331 363.016,587.331 363.016,542.323 302.68,542.323 302.68,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,587.331 302.68,587.331 302.68,497.316 182.008,497.316 182.008,587.331 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 423.352,767.359 664.695,767.359 664.695,587.331 423.352,587.331 423.352,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,609.834 423.352,609.834 423.352,587.331 393.184,587.331 393.184,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,609.834 393.184,609.834 393.184,587.331 363.016,587.331 363.016,609.834 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,632.338 423.352,632.338 423.352,609.834 393.184,609.834 393.184,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,632.338 393.184,632.338 393.184,609.834 363.016,609.834 363.016,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,632.338 363.016,632.338 363.016,587.331 302.68,587.331 302.68,632.338 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,654.841 423.352,654.841 423.352,632.338 393.184,632.338 393.184,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,654.841 393.184,654.841 393.184,632.338 363.016,632.338 363.016,654.841 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,677.345 423.352,677.345 423.352,654.841 393.184,654.841 393.184,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,677.345 393.184,677.345 393.184,654.841 363.016,654.841 363.016,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,677.345 363.016,677.345 363.016,632.338 302.68,632.338 302.68,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,677.345 302.68,677.345 302.68,587.331 182.008,587.331 182.008,677.345 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,699.849 423.352,699.849 423.352,677.345 393.184,677.345 393.184,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,699.849 393.184,699.849 393.184,677.345 363.016,677.345 363.016,699.849 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,722.352 423.352,722.352 423.352,699.849 393.184,699.849 393.184,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,722.352 393.184,722.352 393.184,699.849 363.016,699.849 363.016,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,722.352 363.016,722.352 363.016,677.345 302.68,677.345 302.68,722.352 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,744.856 423.352,744.856 423.352,722.352 393.184,722.352 393.184,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,744.856 393.184,744.856 393.184,722.352 363.016,722.352 363.016,744.856 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,767.359 423.352,767.359 423.352,744.856 393.184,744.856 393.184,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,767.359 393.184,767.359 393.184,744.856 363.016,744.856 363.016,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,767.359 363.016,767.359 363.016,722.352 302.68,722.352 302.68,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,767.359 302.68,767.359 302.68,677.345 182.008,677.345 182.008,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1992.08,857.374 2112.76,857.374 2112.76,767.359 1992.08,767.359 1992.08,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,812.367 1992.08,812.367 1992.08,767.359 1931.75,767.359 1931.75,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,789.863 1931.75,789.863 1931.75,767.359 1901.58,767.359 1901.58,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,789.863 1901.58,789.863 1901.58,767.359 1871.41,767.359 1871.41,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,812.367 1931.75,812.367 1931.75,789.863 1901.58,789.863 1901.58,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,812.367 1901.58,812.367 1901.58,789.863 1871.41,789.863 1871.41,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,857.374 1992.08,857.374 1992.08,812.367 1931.75,812.367 1931.75,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,834.87 1931.75,834.87 1931.75,812.367 1901.58,812.367 1901.58,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,834.87 1901.58,834.87 1901.58,812.367 1871.41,812.367 1871.41,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,857.374 1931.75,857.374 1931.75,834.87 1901.58,834.87 1901.58,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,857.374 1901.58,857.374 1901.58,834.87 1871.41,834.87 1871.41,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1992.08,947.388 2112.76,947.388 2112.76,857.374 1992.08,857.374 1992.08,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,902.381 1992.08,902.381 1992.08,857.374 1931.75,857.374 1931.75,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,879.877 1931.75,879.877 1931.75,857.374 1901.58,857.374 1901.58,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,879.877 1901.58,879.877 1901.58,857.374 1871.41,857.374 1871.41,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,902.381 1931.75,902.381 1931.75,879.877 1901.58,879.877 1901.58,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,902.381 1901.58,902.381 1901.58,879.877 1871.41,879.877 1871.41,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,947.388 1992.08,947.388 1992.08,902.381 1931.75,902.381 1931.75,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,924.885 1931.75,924.885 1931.75,902.381 1901.58,902.381 1901.58,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,924.885 1901.58,924.885 1901.58,902.381 1871.41,902.381 1871.41,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,947.388 1931.75,947.388 1931.75,924.885 1901.58,924.885 1901.58,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,947.388 1901.58,947.388 1901.58,924.885 1871.41,924.885 1871.41,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1630.07,947.388 1871.41,947.388 1871.41,767.359 1630.07,767.359 1630.07,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1992.08,1037.4 2112.76,1037.4 2112.76,947.388 1992.08,947.388 1992.08,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,992.395 1992.08,992.395 1992.08,947.388 1931.75,947.388 1931.75,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,969.892 1931.75,969.892 1931.75,947.388 1901.58,947.388 1901.58,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,969.892 1901.58,969.892 1901.58,947.388 1871.41,947.388 1871.41,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,992.395 1931.75,992.395 1931.75,969.892 1901.58,969.892 1901.58,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,992.395 1901.58,992.395 1901.58,969.892 1871.41,969.892 1871.41,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,1037.4 1992.08,1037.4 1992.08,992.395 1931.75,992.395 1931.75,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,1014.9 1931.75,1014.9 1931.75,992.395 1901.58,992.395 1901.58,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,1014.9 1901.58,1014.9 1901.58,992.395 1871.41,992.395 1871.41,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,1037.4 1931.75,1037.4 1931.75,1014.9 1901.58,1014.9 1901.58,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,1037.4 1901.58,1037.4 1901.58,1014.9 1871.41,1014.9 1871.41,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1992.08,1127.42 2112.76,1127.42 2112.76,1037.4 1992.08,1037.4 1992.08,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,1082.41 1992.08,1082.41 1992.08,1037.4 1931.75,1037.4 1931.75,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,1059.91 1931.75,1059.91 1931.75,1037.4 1901.58,1037.4 1901.58,1059.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,1059.91 1901.58,1059.91 1901.58,1037.4 1871.41,1037.4 1871.41,1059.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,1082.41 1931.75,1082.41 1931.75,1059.91 1901.58,1059.91 1901.58,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,1082.41 1901.58,1082.41 1901.58,1059.91 1871.41,1059.91 1871.41,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,1127.42 1992.08,1127.42 1992.08,1082.41 1931.75,1082.41 1931.75,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,1104.91 1931.75,1104.91 1931.75,1082.41 1901.58,1082.41 1901.58,1104.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,1104.91 1901.58,1104.91 1901.58,1082.41 1871.41,1082.41 1871.41,1104.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,1127.42 1931.75,1127.42 1931.75,1104.91 1901.58,1104.91 1901.58,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,1127.42 1901.58,1127.42 1901.58,1104.91 1871.41,1104.91 1871.41,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1630.07,1127.42 1871.41,1127.42 1871.41,947.388 1630.07,947.388 1630.07,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,947.388 1630.07,947.388 1630.07,767.359 1388.73,767.359 1388.73,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,947.388 1388.73,947.388 1388.73,767.359 1147.38,767.359 1147.38,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1509.4,1037.4 1630.07,1037.4 1630.07,947.388 1509.4,947.388 1509.4,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,1037.4 1509.4,1037.4 1509.4,947.388 1388.73,947.388 1388.73,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1509.4,1127.42 1630.07,1127.42 1630.07,1037.4 1509.4,1037.4 1509.4,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.06,1082.41 1509.4,1082.41 1509.4,1037.4 1449.06,1037.4 1449.06,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,1082.41 1449.06,1082.41 1449.06,1037.4 1388.73,1037.4 1388.73,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.06,1127.42 1509.4,1127.42 1509.4,1082.41 1449.06,1082.41 1449.06,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,1127.42 1449.06,1127.42 1449.06,1082.41 1388.73,1082.41 1388.73,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1268.05,1037.4 1388.73,1037.4 1388.73,947.388 1268.05,947.388 1268.05,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,1037.4 1268.05,1037.4 1268.05,947.388 1147.38,947.388 1147.38,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1268.05,1127.42 1388.73,1127.42 1388.73,1037.4 1268.05,1037.4 1268.05,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,1127.42 1268.05,1127.42 1268.05,1037.4 1147.38,1037.4 1147.38,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1992.08,1217.43 2112.76,1217.43 2112.76,1127.42 1992.08,1127.42 1992.08,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,1172.42 1992.08,1172.42 1992.08,1127.42 1931.75,1127.42 1931.75,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,1149.92 1931.75,1149.92 1931.75,1127.42 1901.58,1127.42 1901.58,1149.92 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,1149.92 1901.58,1149.92 1901.58,1127.42 1871.41,1127.42 1871.41,1149.92 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,1172.42 1931.75,1172.42 1931.75,1149.92 1901.58,1149.92 1901.58,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,1172.42 1901.58,1172.42 1901.58,1149.92 1871.41,1149.92 1871.41,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,1217.43 1992.08,1217.43 1992.08,1172.42 1931.75,1172.42 1931.75,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,1194.93 1931.75,1194.93 1931.75,1172.42 1901.58,1172.42 1901.58,1194.93 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,1194.93 1901.58,1194.93 1901.58,1172.42 1871.41,1172.42 1871.41,1194.93 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,1217.43 1931.75,1217.43 1931.75,1194.93 1901.58,1194.93 1901.58,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,1217.43 1901.58,1217.43 1901.58,1194.93 1871.41,1194.93 1871.41,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1992.08,1307.45 2112.76,1307.45 2112.76,1217.43 1992.08,1217.43 1992.08,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,1307.45 1992.08,1307.45 1992.08,1217.43 1871.41,1217.43 1871.41,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1630.07,1307.45 1871.41,1307.45 1871.41,1127.42 1630.07,1127.42 1630.07,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,1487.47 2112.76,1487.47 2112.76,1307.45 1871.41,1307.45 1871.41,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1630.07,1487.47 1871.41,1487.47 1871.41,1307.45 1630.07,1307.45 1630.07,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1509.4,1217.43 1630.07,1217.43 1630.07,1127.42 1509.4,1127.42 1509.4,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,1217.43 1509.4,1217.43 1509.4,1127.42 1388.73,1127.42 1388.73,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1509.4,1307.45 1630.07,1307.45 1630.07,1217.43 1509.4,1217.43 1509.4,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,1307.45 1509.4,1307.45 1509.4,1217.43 1388.73,1217.43 1388.73,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,1307.45 1388.73,1307.45 1388.73,1127.42 1147.38,1127.42 1147.38,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,1487.47 1630.07,1487.47 1630.07,1307.45 1388.73,1307.45 1388.73,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,1487.47 1388.73,1487.47 1388.73,1307.45 1147.38,1307.45 1147.38,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 906.039,947.388 1147.38,947.388 1147.38,767.359 906.039,767.359 906.039,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 664.695,947.388 906.039,947.388 906.039,767.359 664.695,767.359 664.695,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1026.71,1037.4 1147.38,1037.4 1147.38,947.388 1026.71,947.388 1026.71,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 906.039,1037.4 1026.71,1037.4 1026.71,947.388 906.039,947.388 906.039,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1026.71,1127.42 1147.38,1127.42 1147.38,1037.4 1026.71,1037.4 1026.71,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 906.039,1127.42 1026.71,1127.42 1026.71,1037.4 906.039,1037.4 906.039,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 785.367,1037.4 906.039,1037.4 906.039,947.388 785.367,947.388 785.367,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 664.695,1037.4 785.367,1037.4 785.367,947.388 664.695,947.388 664.695,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 845.703,1082.41 906.039,1082.41 906.039,1037.4 845.703,1037.4 845.703,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 785.367,1082.41 845.703,1082.41 845.703,1037.4 785.367,1037.4 785.367,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 845.703,1127.42 906.039,1127.42 906.039,1082.41 845.703,1082.41 845.703,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 785.367,1127.42 845.703,1127.42 845.703,1082.41 785.367,1082.41 785.367,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 664.695,1127.42 785.367,1127.42 785.367,1037.4 664.695,1037.4 664.695,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 423.352,947.388 664.695,947.388 664.695,767.359 423.352,767.359 423.352,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,789.863 423.352,789.863 423.352,767.359 393.184,767.359 393.184,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,789.863 393.184,789.863 393.184,767.359 363.016,767.359 363.016,789.863 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,812.367 423.352,812.367 423.352,789.863 393.184,789.863 393.184,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,812.367 393.184,812.367 393.184,789.863 363.016,789.863 363.016,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,812.367 363.016,812.367 363.016,767.359 302.68,767.359 302.68,812.367 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,834.87 423.352,834.87 423.352,812.367 393.184,812.367 393.184,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,834.87 393.184,834.87 393.184,812.367 363.016,812.367 363.016,834.87 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,857.374 423.352,857.374 423.352,834.87 393.184,834.87 393.184,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,857.374 393.184,857.374 393.184,834.87 363.016,834.87 363.016,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,857.374 363.016,857.374 363.016,812.367 302.68,812.367 302.68,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,857.374 302.68,857.374 302.68,767.359 182.008,767.359 182.008,857.374 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,879.877 423.352,879.877 423.352,857.374 393.184,857.374 393.184,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,879.877 393.184,879.877 393.184,857.374 363.016,857.374 363.016,879.877 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,902.381 423.352,902.381 423.352,879.877 393.184,879.877 393.184,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,902.381 393.184,902.381 393.184,879.877 363.016,879.877 363.016,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,902.381 363.016,902.381 363.016,857.374 302.68,857.374 302.68,902.381 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,924.885 423.352,924.885 423.352,902.381 393.184,902.381 393.184,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,924.885 393.184,924.885 393.184,902.381 363.016,902.381 363.016,924.885 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,947.388 423.352,947.388 423.352,924.885 393.184,924.885 393.184,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,947.388 393.184,947.388 393.184,924.885 363.016,924.885 363.016,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,947.388 363.016,947.388 363.016,902.381 302.68,902.381 302.68,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,947.388 302.68,947.388 302.68,857.374 182.008,857.374 182.008,947.388 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 423.352,1127.42 664.695,1127.42 664.695,947.388 423.352,947.388 423.352,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,969.892 423.352,969.892 423.352,947.388 393.184,947.388 393.184,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,969.892 393.184,969.892 393.184,947.388 363.016,947.388 363.016,969.892 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,992.395 423.352,992.395 423.352,969.892 393.184,969.892 393.184,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,992.395 393.184,992.395 393.184,969.892 363.016,969.892 363.016,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,992.395 363.016,992.395 363.016,947.388 302.68,947.388 302.68,992.395 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,1014.9 423.352,1014.9 423.352,992.395 393.184,992.395 393.184,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,1014.9 393.184,1014.9 393.184,992.395 363.016,992.395 363.016,1014.9 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,1037.4 423.352,1037.4 423.352,1014.9 393.184,1014.9 393.184,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,1037.4 393.184,1037.4 393.184,1014.9 363.016,1014.9 363.016,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,1037.4 363.016,1037.4 363.016,992.395 302.68,992.395 302.68,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1037.4 302.68,1037.4 302.68,947.388 182.008,947.388 182.008,1037.4 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,1059.91 423.352,1059.91 423.352,1037.4 393.184,1037.4 393.184,1059.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,1059.91 393.184,1059.91 393.184,1037.4 363.016,1037.4 363.016,1059.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,1082.41 423.352,1082.41 423.352,1059.91 393.184,1059.91 393.184,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,1082.41 393.184,1082.41 393.184,1059.91 363.016,1059.91 363.016,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,1082.41 363.016,1082.41 363.016,1037.4 302.68,1037.4 302.68,1082.41 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,1104.91 423.352,1104.91 423.352,1082.41 393.184,1082.41 393.184,1104.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,1104.91 393.184,1104.91 393.184,1082.41 363.016,1082.41 363.016,1104.91 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,1127.42 423.352,1127.42 423.352,1104.91 393.184,1104.91 393.184,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,1127.42 393.184,1127.42 393.184,1104.91 363.016,1104.91 363.016,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,1127.42 363.016,1127.42 363.016,1082.41 302.68,1082.41 302.68,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1127.42 302.68,1127.42 302.68,1037.4 182.008,1037.4 182.008,1127.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 906.039,1307.45 1147.38,1307.45 1147.38,1127.42 906.039,1127.42 906.039,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 785.367,1217.43 906.039,1217.43 906.039,1127.42 785.367,1127.42 785.367,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 664.695,1217.43 785.367,1217.43 785.367,1127.42 664.695,1127.42 664.695,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 785.367,1307.45 906.039,1307.45 906.039,1217.43 785.367,1217.43 785.367,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 664.695,1307.45 785.367,1307.45 785.367,1217.43 664.695,1217.43 664.695,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 906.039,1487.47 1147.38,1487.47 1147.38,1307.45 906.039,1307.45 906.039,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 664.695,1487.47 906.039,1487.47 906.039,1307.45 664.695,1307.45 664.695,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 423.352,1307.45 664.695,1307.45 664.695,1127.42 423.352,1127.42 423.352,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,1149.92 423.352,1149.92 423.352,1127.42 393.184,1127.42 393.184,1149.92 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,1149.92 393.184,1149.92 393.184,1127.42 363.016,1127.42 363.016,1149.92 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,1172.42 423.352,1172.42 423.352,1149.92 393.184,1149.92 393.184,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,1172.42 393.184,1172.42 393.184,1149.92 363.016,1149.92 363.016,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,1172.42 363.016,1172.42 363.016,1127.42 302.68,1127.42 302.68,1172.42 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,1194.93 423.352,1194.93 423.352,1172.42 393.184,1172.42 393.184,1194.93 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,1194.93 393.184,1194.93 393.184,1172.42 363.016,1172.42 363.016,1194.93 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,1217.43 423.352,1217.43 423.352,1194.93 393.184,1194.93 393.184,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,1217.43 393.184,1217.43 393.184,1194.93 363.016,1194.93 363.016,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,1217.43 363.016,1217.43 363.016,1172.42 302.68,1172.42 302.68,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1217.43 302.68,1217.43 302.68,1127.42 182.008,1127.42 182.008,1217.43 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,1307.45 423.352,1307.45 423.352,1217.43 302.68,1217.43 302.68,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1307.45 302.68,1307.45 302.68,1217.43 182.008,1217.43 182.008,1307.45 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 423.352,1487.47 664.695,1487.47 664.695,1307.45 423.352,1307.45 423.352,1487.47 \n", " \"/>\n", "<polyline clip-path=\"url(#clip2902)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1487.47 423.352,1487.47 423.352,1307.45 182.008,1307.45 182.008,1487.47 \n", " \"/>\n", "<defs>\n", " <clipPath id=\"clip2903\">\n", " <rect x=\"2160\" y=\"47\" width=\"73\" height=\"1441\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip2903)\" d=\"\n", "M2160.76 1487.47 L2232.76 1487.47 L2232.76 1397.46 L2160.76 1397.46 Z\n", " \" fill=\"#000003\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2903)\" d=\"\n", "M2160.76 1397.46 L2232.76 1397.46 L2232.76 1307.45 L2160.76 1307.45 Z\n", " \" fill=\"#0c0727\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2903)\" d=\"\n", "M2160.76 1307.45 L2232.76 1307.45 L2232.76 1217.43 L2160.76 1217.43 Z\n", " \" fill=\"#240b4e\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2903)\" d=\"\n", "M2160.76 1217.43 L2232.76 1217.43 L2232.76 1127.42 L2160.76 1127.42 Z\n", " \" fill=\"#420a67\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2903)\" d=\"\n", "M2160.76 1127.42 L2232.76 1127.42 L2232.76 1037.4 L2160.76 1037.4 Z\n", " \" fill=\"#5d126d\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2903)\" d=\"\n", "M2160.76 1037.4 L2232.76 1037.4 L2232.76 947.388 L2160.76 947.388 Z\n", " \" fill=\"#781c6d\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2903)\" d=\"\n", "M2160.76 947.388 L2232.76 947.388 L2232.76 857.374 L2160.76 857.374 Z\n", " \" fill=\"#942666\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2903)\" d=\"\n", "M2160.76 857.374 L2232.76 857.374 L2232.76 767.359 L2160.76 767.359 Z\n", " \" fill=\"#ad305b\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2903)\" d=\"\n", "M2160.76 767.359 L2232.76 767.359 L2232.76 677.345 L2160.76 677.345 Z\n", " \" fill=\"#c73e4c\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2903)\" d=\"\n", "M2160.76 677.345 L2232.76 677.345 L2232.76 587.331 L2160.76 587.331 Z\n", " \" fill=\"#db503a\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2903)\" d=\"\n", "M2160.76 587.331 L2232.76 587.331 L2232.76 497.316 L2160.76 497.316 Z\n", " \" fill=\"#ec6925\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2903)\" d=\"\n", "M2160.76 497.316 L2232.76 497.316 L2232.76 407.302 L2160.76 407.302 Z\n", " \" fill=\"#f7850e\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2903)\" d=\"\n", "M2160.76 407.302 L2232.76 407.302 L2232.76 317.287 L2160.76 317.287 Z\n", " \" fill=\"#fba40a\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2903)\" d=\"\n", "M2160.76 317.287 L2232.76 317.287 L2232.76 227.273 L2160.76 227.273 Z\n", " \" fill=\"#f9c52d\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2903)\" d=\"\n", "M2160.76 227.273 L2232.76 227.273 L2232.76 137.259 L2160.76 137.259 Z\n", " \" fill=\"#f2e55f\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip2903)\" d=\"\n", "M2160.76 137.259 L2232.76 137.259 L2232.76 47.2441 L2160.76 47.2441 Z\n", " \" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<g clip-path=\"url(#clip2900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 1501.13)\" x=\"2268.76\" y=\"1501.13\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip2900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 1357.1)\" x=\"2268.76\" y=\"1357.1\">0.005</text>\n", "</g>\n", "<g clip-path=\"url(#clip2900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 1213.08)\" x=\"2268.76\" y=\"1213.08\">0.010</text>\n", "</g>\n", "<g clip-path=\"url(#clip2900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 1069.06)\" x=\"2268.76\" y=\"1069.06\">0.015</text>\n", "</g>\n", "<g clip-path=\"url(#clip2900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 925.034)\" x=\"2268.76\" y=\"925.034\">0.020</text>\n", "</g>\n", "<g clip-path=\"url(#clip2900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 781.011)\" x=\"2268.76\" y=\"781.011\">0.025</text>\n", "</g>\n", "<g clip-path=\"url(#clip2900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 636.988)\" x=\"2268.76\" y=\"636.988\">0.030</text>\n", "</g>\n", "<g clip-path=\"url(#clip2900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 492.964)\" x=\"2268.76\" y=\"492.964\">0.035</text>\n", "</g>\n", "<g clip-path=\"url(#clip2900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 348.941)\" x=\"2268.76\" y=\"348.941\">0.040</text>\n", "</g>\n", "<g clip-path=\"url(#clip2900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 204.918)\" x=\"2268.76\" y=\"204.918\">0.045</text>\n", "</g>\n", "<g clip-path=\"url(#clip2900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 60.8953)\" x=\"2268.76\" y=\"60.8953\">0.050</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip2900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2232.76,1487.47 2232.76,1487.47 2256.76,1487.47 2232.76,1487.47 2232.76,1343.45 2256.76,1343.45 2232.76,1343.45 2232.76,1199.43 2256.76,1199.43 2232.76,1199.43 \n", " 2232.76,1055.41 2256.76,1055.41 2232.76,1055.41 2232.76,911.382 2256.76,911.382 2232.76,911.382 2232.76,767.359 2256.76,767.359 2232.76,767.359 2232.76,623.336 \n", " 2256.76,623.336 2232.76,623.336 2232.76,479.313 2256.76,479.313 2232.76,479.313 2232.76,335.29 2256.76,335.29 2232.76,335.29 2232.76,191.267 2256.76,191.267 \n", " 2232.76,191.267 2232.76,47.2441 2256.76,47.2441 2232.76,47.2441 2232.76,47.2441 \n", " \"/>\n", "</svg>\n" ] }, "execution_count": 446, "metadata": {}, "output_type": "execute_result" } ], "source": [ "plt = plot(xlim=(-rx, rx), ylim=(-ry, ry))# legend=nothing)\n", "\n", "x = range(-rx, stop=rx, length=50)\n", "y = range(-ry, stop=ry, length=50)\n", "contour!(plt, x, y, (x, y) -> AdaptivelySampledDistanceFields.evaluate(adf, SVector(x, y)), fill=true)\n", "\n", "for leaf in allleaves(adf)\n", " v = hcat(collect(vertices(leaf.boundary))...)\n", " plot!(plt, v[1,[1,2,4,3,1]], v[2,[1,2,4,3,1]], color=:black,label=\"\")\n", "end\n", "\n", "\n", "plt" ] }, { "cell_type": "code", "execution_count": 131, "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=\"clip5300\">\n", " <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip5300)\" 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=\"clip5301\">\n", " <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip5300)\" d=\"\n", "M182.008 896.076 L2112.76 896.076 L2112.76 638.643 L182.008 638.643 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip5302\">\n", " <rect x=\"182\" y=\"638\" width=\"1932\" height=\"258\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 503.799,896.076 503.799,638.643 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 825.591,896.076 825.591,638.643 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1147.38,896.076 1147.38,638.643 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1469.17,896.076 1469.17,638.643 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1790.96,896.076 1790.96,638.643 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,896.076 2112.76,896.076 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,831.718 2112.76,831.718 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,767.359 2112.76,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,703.001 2112.76,703.001 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,638.643 2112.76,638.643 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,896.076 2112.76,896.076 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,896.076 182.008,638.643 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 503.799,896.076 503.799,892.987 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 825.591,896.076 825.591,892.987 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,896.076 1147.38,892.987 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1469.17,896.076 1469.17,892.987 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1790.96,896.076 1790.96,892.987 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,896.076 205.177,896.076 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,831.718 205.177,831.718 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,767.359 205.177,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,703.001 205.177,703.001 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,638.643 205.177,638.643 \n", " \"/>\n", "<g clip-path=\"url(#clip5300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 503.799, 950.076)\" x=\"503.799\" y=\"950.076\">-1.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip5300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 825.591, 950.076)\" x=\"825.591\" y=\"950.076\">-0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip5300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1147.38, 950.076)\" x=\"1147.38\" y=\"950.076\">0.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip5300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1469.17, 950.076)\" x=\"1469.17\" y=\"950.076\">0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip5300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1790.96, 950.076)\" x=\"1790.96\" y=\"950.076\">1.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip5300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 913.576)\" x=\"158.008\" y=\"913.576\">-0.2</text>\n", "</g>\n", "<g clip-path=\"url(#clip5300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 849.218)\" x=\"158.008\" y=\"849.218\">-0.1</text>\n", "</g>\n", "<g clip-path=\"url(#clip5300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 784.859)\" x=\"158.008\" y=\"784.859\">0.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip5300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 720.501)\" x=\"158.008\" y=\"720.501\">0.1</text>\n", "</g>\n", "<g clip-path=\"url(#clip5300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 656.143)\" x=\"158.008\" y=\"656.143\">0.2</text>\n", "</g>\n", "<path clip-path=\"url(#clip5302)\" d=\"\n", "M182.008 896.076 L182.008 896.076 L221.411 896.076 L260.814 896.076 L300.217 896.076 L339.62 896.076 L379.023 896.076 L418.426 896.076 L457.829 896.076 L497.232 896.076 \n", " L536.635 896.076 L576.038 896.076 L615.441 896.076 L654.844 896.076 L694.247 896.076 L733.65 896.076 L773.053 896.076 L812.456 896.076 L851.859 896.076 L891.262 896.076 \n", " L930.665 896.076 L970.068 896.076 L1009.47 896.076 L1048.87 896.076 L1088.28 896.076 L1127.68 896.076 L1167.08 896.076 L1206.49 896.076 L1245.89 896.076 L1285.29 896.076 \n", " L1324.7 896.076 L1364.1 896.076 L1403.5 896.076 L1442.9 896.076 L1482.31 896.076 L1521.71 896.076 L1561.11 896.076 L1600.52 896.076 L1639.92 896.076 L1679.32 896.076 \n", " L1718.73 896.076 L1758.13 896.076 L1797.53 896.076 L1836.93 896.076 L1876.34 896.076 L1915.74 896.076 L1955.14 896.076 L1994.55 896.076 L2033.95 896.076 L2073.35 896.076 \n", " L2112.76 896.076 L2112.76 896.076 L2112.76 896.076 L2112.76 896.076 L2112.76 890.822 L2112.76 885.568 L2112.76 880.315 L2112.76 875.061 L2112.76 869.807 L2112.76 864.554 \n", " L2112.76 859.3 L2112.76 854.046 L2112.76 848.792 L2112.76 843.539 L2112.76 838.285 L2112.76 833.031 L2112.76 827.777 L2112.76 822.524 L2112.76 817.27 L2112.76 812.016 \n", " L2112.76 806.762 L2112.76 801.509 L2112.76 796.255 L2112.76 791.001 L2112.76 785.747 L2112.76 780.494 L2112.76 775.24 L2112.76 769.986 L2112.76 764.733 L2112.76 759.479 \n", " L2112.76 754.225 L2112.76 748.971 L2112.76 743.718 L2112.76 738.464 L2112.76 733.21 L2112.76 727.956 L2112.76 722.703 L2112.76 717.449 L2112.76 712.195 L2112.76 706.941 \n", " L2112.76 701.688 L2112.76 696.434 L2112.76 691.18 L2112.76 685.927 L2112.76 680.673 L2112.76 675.419 L2112.76 670.165 L2112.76 664.912 L2112.76 659.658 L2112.76 654.404 \n", " L2112.76 649.15 L2112.76 643.897 L2112.76 638.643 L2112.76 638.643 L2112.76 638.643 L2112.76 638.643 L2073.35 638.643 L2033.95 638.643 L1994.55 638.643 L1955.14 638.643 \n", " L1915.74 638.643 L1876.34 638.643 L1836.93 638.643 L1797.53 638.643 L1758.13 638.643 L1718.73 638.643 L1679.32 638.643 L1639.92 638.643 L1600.52 638.643 L1561.11 638.643 \n", " L1521.71 638.643 L1482.31 638.643 L1442.9 638.643 L1403.5 638.643 L1364.1 638.643 L1324.7 638.643 L1285.29 638.643 L1245.89 638.643 L1206.49 638.643 L1167.08 638.643 \n", " L1127.68 638.643 L1088.28 638.643 L1048.87 638.643 L1009.47 638.643 L970.068 638.643 L930.665 638.643 L891.262 638.643 L851.859 638.643 L812.456 638.643 L773.053 638.643 \n", " L733.65 638.643 L694.247 638.643 L654.844 638.643 L615.441 638.643 L576.038 638.643 L536.635 638.643 L497.232 638.643 L457.829 638.643 L418.426 638.643 L379.023 638.643 \n", " L339.62 638.643 L300.217 638.643 L260.814 638.643 L221.411 638.643 L182.008 638.643 L182.008 638.643 L182.008 638.643 L182.008 638.643 L182.008 643.897 L182.008 649.15 \n", " L182.008 654.404 L182.008 659.658 L182.008 664.912 L182.008 670.165 L182.008 675.419 L182.008 680.673 L182.008 685.927 L182.008 691.18 L182.008 696.434 L182.008 701.688 \n", " L182.008 706.941 L182.008 712.195 L182.008 717.449 L182.008 722.703 L182.008 727.956 L182.008 733.21 L182.008 738.464 L182.008 743.718 L182.008 748.971 L182.008 754.225 \n", " L182.008 759.479 L182.008 764.733 L182.008 769.986 L182.008 775.24 L182.008 780.494 L182.008 785.747 L182.008 791.001 L182.008 796.255 L182.008 801.509 L182.008 806.762 \n", " L182.008 812.016 L182.008 817.27 L182.008 822.524 L182.008 827.777 L182.008 833.031 L182.008 838.285 L182.008 843.539 L182.008 848.792 L182.008 854.046 L182.008 859.3 \n", " L182.008 864.554 L182.008 869.807 L182.008 875.061 L182.008 880.315 L182.008 885.568 L182.008 890.822 L182.008 896.076 L182.008 896.076 L182.008 896.076 Z\n", " \" fill=\"#000003\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5302)\" d=\"\n", "M379.023 860.012 L418.426 861.558 L457.829 862 L497.232 862 L536.635 862 L576.038 862 L615.441 862 L654.844 862 L694.247 861.68 L733.65 861.68 \n", " L773.053 861.68 L812.456 860.849 L840.046 859.3 L851.859 858.297 L875.242 854.046 L885.954 848.792 L891.262 844.79 L894.562 843.539 L904.608 838.285 L910.533 833.031 \n", " L930.665 831.368 L970.068 830.929 L1009.47 830.233 L1048.87 829.762 L1088.28 829.728 L1127.68 829.695 L1167.08 829.695 L1206.49 829.728 L1245.89 829.762 L1285.29 830.233 \n", " L1324.7 830.929 L1364.1 831.368 L1384.23 833.031 L1390.16 838.285 L1400.2 843.539 L1403.5 844.79 L1408.81 848.792 L1419.52 854.046 L1442.9 858.297 L1454.72 859.3 \n", " L1482.31 860.849 L1521.71 861.68 L1561.11 861.68 L1600.52 861.68 L1639.92 862 L1679.32 862 L1718.73 862 L1758.13 862 L1797.53 862 L1836.93 862 \n", " L1876.34 861.558 L1915.74 860.012 L1926.09 859.3 L1955.14 855.684 L1961.7 854.046 L1973.12 848.792 L1976.67 843.539 L1976.67 838.285 L1976.67 833.031 L1976.67 827.777 \n", " L1976.67 822.524 L1976.67 817.27 L1976.67 812.016 L1976.67 806.762 L1976.67 801.509 L1976.67 796.255 L1976.67 791.001 L1976.67 785.747 L1976.67 780.494 L1976.67 775.24 \n", " L1976.67 769.986 L1976.67 764.733 L1976.67 759.479 L1976.67 754.225 L1976.67 748.971 L1976.67 743.718 L1976.67 738.464 L1976.67 733.21 L1976.67 727.956 L1976.67 722.703 \n", " L1976.67 717.449 L1976.67 712.195 L1976.67 706.941 L1976.67 701.688 L1976.67 696.434 L1976.67 691.18 L1973.12 685.927 L1961.7 680.673 L1955.14 679.034 L1926.09 675.419 \n", " L1915.74 674.707 L1876.34 673.161 L1836.93 672.719 L1797.53 672.719 L1758.13 672.719 L1718.73 672.719 L1679.32 672.719 L1639.92 672.719 L1600.52 673.038 L1561.11 673.038 \n", " L1521.71 673.038 L1482.31 673.87 L1454.72 675.419 L1442.9 676.421 L1419.52 680.673 L1408.81 685.927 L1403.5 689.928 L1400.2 691.18 L1390.16 696.434 L1384.23 701.688 \n", " L1364.1 703.35 L1324.7 703.789 L1285.29 704.485 L1245.89 704.956 L1206.49 704.991 L1167.08 705.024 L1127.68 705.024 L1088.28 704.991 L1048.87 704.956 L1009.47 704.485 \n", " L970.068 703.789 L930.665 703.35 L910.533 701.688 L904.608 696.434 L894.562 691.18 L891.262 689.928 L885.954 685.927 L875.242 680.673 L851.859 676.421 L840.046 675.419 \n", " L812.456 673.87 L773.053 673.038 L733.65 673.038 L694.247 673.038 L654.844 672.719 L615.441 672.719 L576.038 672.719 L536.635 672.719 L497.232 672.719 L457.829 672.719 \n", " L418.426 673.161 L379.023 674.707 L368.672 675.419 L339.62 679.034 L333.067 680.673 L321.641 685.927 L318.094 691.18 L318.094 696.434 L318.094 701.688 L318.094 706.941 \n", " L318.094 712.195 L318.094 717.449 L318.094 722.703 L318.094 727.956 L318.094 733.21 L318.094 738.464 L318.094 743.718 L318.094 748.971 L318.094 754.225 L318.094 759.479 \n", " L318.094 764.733 L318.094 769.986 L318.094 775.24 L318.094 780.494 L318.094 785.747 L318.094 791.001 L318.094 796.255 L318.094 801.509 L318.094 806.762 L318.094 812.016 \n", " L318.094 817.27 L318.094 822.524 L318.094 827.777 L318.094 833.031 L318.094 838.285 L318.094 843.539 L321.641 848.792 L333.067 854.046 L339.62 855.684 L368.672 859.3 \n", " L379.023 860.012 Z\n", " \" fill=\"#0c0727\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5302)\" d=\"\n", "M457.829 859.446 L497.232 859.446 L536.635 859.446 L576.038 859.446 L615.441 859.446 L654.844 859.446 L664.695 859.3 L694.247 858.869 L733.65 858.869 L773.053 858.869 \n", " L812.456 857.413 L844.446 854.046 L851.859 852.698 L865.869 848.792 L878.205 843.539 L885.256 838.285 L889.653 833.031 L891.262 832.746 L930.665 829.424 L970.068 828.545 \n", " L994.242 827.777 L1009.47 827.326 L1048.87 826.69 L1088.28 826.69 L1127.68 826.69 L1167.08 826.69 L1206.49 826.69 L1245.89 826.69 L1285.29 827.326 L1300.52 827.777 \n", " L1324.7 828.545 L1364.1 829.424 L1403.5 832.746 L1405.11 833.031 L1409.51 838.285 L1416.56 843.539 L1428.89 848.792 L1442.9 852.698 L1450.32 854.046 L1482.31 857.413 \n", " L1521.71 858.869 L1561.11 858.869 L1600.52 858.869 L1630.07 859.3 L1639.92 859.446 L1679.32 859.446 L1718.73 859.446 L1758.13 859.446 L1797.53 859.446 L1836.93 859.446 \n", " L1844.36 859.3 L1876.34 858.655 L1915.74 855.949 L1930.49 854.046 L1951.91 848.792 L1955.14 846.477 L1958.79 843.539 L1958.79 838.285 L1958.79 833.031 L1958.79 827.777 \n", " L1958.79 822.524 L1958.79 817.27 L1958.79 812.016 L1958.79 806.762 L1958.79 801.509 L1958.79 796.255 L1958.79 791.001 L1958.79 785.747 L1958.79 780.494 L1958.79 775.24 \n", " L1958.79 769.986 L1958.79 764.733 L1958.79 759.479 L1958.79 754.225 L1958.79 748.971 L1958.79 743.718 L1958.79 738.464 L1958.79 733.21 L1958.79 727.956 L1958.79 722.703 \n", " L1958.79 717.449 L1958.79 712.195 L1958.79 706.941 L1958.79 701.688 L1958.79 696.434 L1958.79 691.18 L1955.14 688.242 L1951.91 685.927 L1930.49 680.673 L1915.74 678.769 \n", " L1876.34 676.064 L1844.36 675.419 L1836.93 675.273 L1797.53 675.273 L1758.13 675.273 L1718.73 675.273 L1679.32 675.273 L1639.92 675.273 L1630.07 675.419 L1600.52 675.85 \n", " L1561.11 675.85 L1521.71 675.85 L1482.31 677.305 L1450.32 680.673 L1442.9 682.021 L1428.89 685.927 L1416.56 691.18 L1409.51 696.434 L1405.11 701.688 L1403.5 701.973 \n", " L1364.1 705.294 L1324.7 706.174 L1300.52 706.941 L1285.29 707.392 L1245.89 708.029 L1206.49 708.029 L1167.08 708.029 L1127.68 708.029 L1088.28 708.029 L1048.87 708.029 \n", " L1009.47 707.392 L994.242 706.941 L970.068 706.174 L930.665 705.294 L891.262 701.973 L889.653 701.688 L885.256 696.434 L878.205 691.18 L865.869 685.927 L851.859 682.021 \n", " L844.446 680.673 L812.456 677.305 L773.053 675.85 L733.65 675.85 L694.247 675.85 L664.695 675.419 L654.844 675.273 L615.441 675.273 L576.038 675.273 L536.635 675.273 \n", " L497.232 675.273 L457.829 675.273 L450.403 675.419 L418.426 676.064 L379.023 678.769 L364.273 680.673 L342.849 685.927 L339.62 688.242 L335.972 691.18 L335.972 696.434 \n", " L335.972 701.688 L335.972 706.941 L335.972 712.195 L335.972 717.449 L335.972 722.703 L335.972 727.956 L335.972 733.21 L335.972 738.464 L335.972 743.718 L335.972 748.971 \n", " L335.972 754.225 L335.972 759.479 L335.972 764.733 L335.972 769.986 L335.972 775.24 L335.972 780.494 L335.972 785.747 L335.972 791.001 L335.972 796.255 L335.972 801.509 \n", " L335.972 806.762 L335.972 812.016 L335.972 817.27 L335.972 822.524 L335.972 827.777 L335.972 833.031 L335.972 838.285 L335.972 843.539 L339.62 846.477 L342.849 848.792 \n", " L364.273 854.046 L379.023 855.949 L418.426 858.655 L450.403 859.3 L457.829 859.446 Z\n", " \" fill=\"#240b4e\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5302)\" d=\"\n", "M418.426 856.034 L457.829 857.193 L497.232 857.193 L536.635 857.193 L576.038 857.193 L615.441 857.193 L654.844 857.193 L694.247 856.355 L733.65 856.355 L773.053 856.355 \n", " L812.456 854.172 L813.649 854.046 L845.785 848.792 L851.859 847.415 L863.972 843.539 L874.32 838.285 L880.775 833.031 L891.262 831.175 L928.064 827.777 L930.665 827.555 \n", " L970.068 826.587 L1009.47 825.104 L1048.87 824.176 L1088.28 824.176 L1127.68 824.176 L1167.08 824.176 L1206.49 824.176 L1245.89 824.176 L1285.29 825.104 L1324.7 826.587 \n", " L1364.1 827.555 L1366.7 827.777 L1403.5 831.175 L1413.99 833.031 L1420.44 838.285 L1430.79 843.539 L1442.9 847.415 L1448.98 848.792 L1481.11 854.046 L1482.31 854.172 \n", " L1521.71 856.355 L1561.11 856.355 L1600.52 856.355 L1639.92 857.193 L1679.32 857.193 L1718.73 857.193 L1758.13 857.193 L1797.53 857.193 L1836.93 857.193 L1876.34 856.034 \n", " L1899.69 854.046 L1915.74 851.976 L1931.83 848.792 L1947.32 843.539 L1949.33 838.285 L1950.52 833.031 L1951.2 827.777 L1951.21 822.524 L1951.21 817.27 L1951.21 812.016 \n", " L1951.21 806.762 L1951.21 801.509 L1951.21 796.255 L1951.21 791.001 L1951.21 785.747 L1951.21 780.494 L1951.21 775.24 L1951.21 769.986 L1951.21 764.733 L1951.21 759.479 \n", " L1951.21 754.225 L1951.21 748.971 L1951.21 743.718 L1951.21 738.464 L1951.21 733.21 L1951.21 727.956 L1951.21 722.703 L1951.21 717.449 L1951.21 712.195 L1951.2 706.941 \n", " L1950.52 701.688 L1949.33 696.434 L1947.32 691.18 L1931.83 685.927 L1915.74 682.743 L1899.69 680.673 L1876.34 678.685 L1836.93 677.526 L1797.53 677.526 L1758.13 677.526 \n", " L1718.73 677.526 L1679.32 677.526 L1639.92 677.526 L1600.52 678.364 L1561.11 678.364 L1521.71 678.364 L1482.31 680.547 L1481.11 680.673 L1448.98 685.927 L1442.9 687.304 \n", " L1430.79 691.18 L1420.44 696.434 L1413.99 701.688 L1403.5 703.544 L1366.7 706.941 L1364.1 707.163 L1324.7 708.132 L1285.29 709.615 L1245.89 710.543 L1206.49 710.543 \n", " L1167.08 710.543 L1127.68 710.543 L1088.28 710.543 L1048.87 710.543 L1009.47 709.615 L970.068 708.132 L930.665 707.163 L928.064 706.941 L891.262 703.544 L880.775 701.688 \n", " L874.32 696.434 L863.972 691.18 L851.859 687.304 L845.785 685.927 L813.649 680.673 L812.456 680.547 L773.053 678.364 L733.65 678.364 L694.247 678.364 L654.844 677.526 \n", " L615.441 677.526 L576.038 677.526 L536.635 677.526 L497.232 677.526 L457.829 677.526 L418.426 678.685 L395.069 680.673 L379.023 682.743 L362.934 685.927 L347.445 691.18 \n", " L345.434 696.434 L344.246 701.688 L343.561 706.941 L343.552 712.195 L343.552 717.449 L343.552 722.703 L343.552 727.956 L343.552 733.21 L343.552 738.464 L343.552 743.718 \n", " L343.552 748.971 L343.552 754.225 L343.552 759.479 L343.552 764.733 L343.552 769.986 L343.552 775.24 L343.552 780.494 L343.552 785.747 L343.552 791.001 L343.552 796.255 \n", " L343.552 801.509 L343.552 806.762 L343.552 812.016 L343.552 817.27 L343.552 822.524 L343.561 827.777 L344.246 833.031 L345.434 838.285 L347.445 843.539 L362.934 848.792 \n", " L379.023 851.976 L395.069 854.046 L418.426 856.034 Z\n", " \" fill=\"#420a67\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5302)\" d=\"\n", "M457.829 854.958 L497.232 854.958 L536.635 854.958 L576.038 854.958 L615.441 854.958 L654.844 854.958 L687.68 854.046 L694.247 853.841 L733.65 853.841 L773.053 853.841 \n", " L812.456 850.93 L825.7 848.792 L849.738 843.539 L851.859 842.888 L863.385 838.285 L871.897 833.031 L891.262 829.603 L911.043 827.777 L930.665 826.103 L970.068 824.83 \n", " L1009.47 822.882 L1022.07 822.524 L1048.87 821.662 L1088.28 821.662 L1127.68 821.662 L1167.08 821.662 L1206.49 821.662 L1245.89 821.662 L1272.69 822.524 L1285.29 822.882 \n", " L1324.7 824.83 L1364.1 826.103 L1383.72 827.777 L1403.5 829.603 L1422.87 833.031 L1431.38 838.285 L1442.9 842.888 L1445.03 843.539 L1469.06 848.792 L1482.31 850.93 \n", " L1521.71 853.841 L1561.11 853.841 L1600.52 853.841 L1607.08 854.046 L1639.92 854.958 L1679.32 854.958 L1718.73 854.958 L1758.13 854.958 L1797.53 854.958 L1836.93 854.958 \n", " L1861.69 854.046 L1876.34 853.413 L1911.75 848.792 L1915.74 848.359 L1937.49 843.539 L1942.02 838.285 L1944.71 833.031 L1946.25 827.777 L1946.27 822.524 L1946.27 817.27 \n", " L1946.27 812.016 L1946.27 806.762 L1946.27 801.509 L1946.27 796.255 L1946.27 791.001 L1946.27 785.747 L1946.27 780.494 L1946.27 775.24 L1946.27 769.986 L1946.27 764.733 \n", " L1946.27 759.479 L1946.27 754.225 L1946.27 748.971 L1946.27 743.718 L1946.27 738.464 L1946.27 733.21 L1946.27 727.956 L1946.27 722.703 L1946.27 717.449 L1946.27 712.195 \n", " L1946.25 706.941 L1944.71 701.688 L1942.02 696.434 L1937.49 691.18 L1915.74 686.36 L1911.75 685.927 L1876.34 681.306 L1861.69 680.673 L1836.93 679.761 L1797.53 679.761 \n", " L1758.13 679.761 L1718.73 679.761 L1679.32 679.761 L1639.92 679.761 L1607.08 680.673 L1600.52 680.878 L1561.11 680.878 L1521.71 680.878 L1482.31 683.789 L1469.06 685.927 \n", " L1445.03 691.18 L1442.9 691.831 L1431.38 696.434 L1422.87 701.688 L1403.5 705.115 L1383.72 706.941 L1364.1 708.615 L1324.7 709.889 L1285.29 711.837 L1272.69 712.195 \n", " L1245.89 713.057 L1206.49 713.057 L1167.08 713.057 L1127.68 713.057 L1088.28 713.057 L1048.87 713.057 L1022.07 712.195 L1009.47 711.837 L970.068 709.889 L930.665 708.615 \n", " L911.043 706.941 L891.262 705.115 L871.897 701.688 L863.385 696.434 L851.859 691.831 L849.738 691.18 L825.7 685.927 L812.456 683.789 L773.053 680.878 L733.65 680.878 \n", " L694.247 680.878 L687.68 680.673 L654.844 679.761 L615.441 679.761 L576.038 679.761 L536.635 679.761 L497.232 679.761 L457.829 679.761 L433.076 680.673 L418.426 681.306 \n", " L383.018 685.927 L379.023 686.36 L357.277 691.18 L352.739 696.434 L350.057 701.688 L348.512 706.941 L348.493 712.195 L348.493 717.449 L348.493 722.703 L348.493 727.956 \n", " L348.493 733.21 L348.493 738.464 L348.493 743.718 L348.493 748.971 L348.493 754.225 L348.493 759.479 L348.493 764.733 L348.493 769.986 L348.493 775.24 L348.493 780.494 \n", " L348.493 785.747 L348.493 791.001 L348.493 796.255 L348.493 801.509 L348.493 806.762 L348.493 812.016 L348.493 817.27 L348.493 822.524 L348.512 827.777 L350.057 833.031 \n", " L352.739 838.285 L357.277 843.539 L379.023 848.359 L383.018 848.792 L418.426 853.413 L433.076 854.046 L457.829 854.958 Z\n", " \" fill=\"#5d126d\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5302)\" d=\"\n", "M418.426 850.792 L457.829 852.723 L497.232 852.723 L536.635 852.723 L576.038 852.723 L615.441 852.723 L654.844 852.723 L694.247 851.327 L733.65 851.327 L773.053 851.327 \n", " L802.506 848.792 L812.456 847.879 L835.504 843.539 L851.859 838.521 L852.45 838.285 L863.02 833.031 L891.262 828.032 L894.021 827.777 L930.665 824.651 L970.068 823.074 \n", " L980.779 822.524 L1009.47 820.659 L1048.87 819.148 L1088.28 819.148 L1127.68 819.148 L1167.08 819.148 L1206.49 819.148 L1245.89 819.148 L1285.29 820.659 L1313.98 822.524 \n", " L1324.7 823.074 L1364.1 824.651 L1400.74 827.777 L1403.5 828.032 L1431.74 833.031 L1442.31 838.285 L1442.9 838.521 L1459.26 843.539 L1482.31 847.879 L1492.26 848.792 \n", " L1521.71 851.327 L1561.11 851.327 L1600.52 851.327 L1639.92 852.723 L1679.32 852.723 L1718.73 852.723 L1758.13 852.723 L1797.53 852.723 L1836.93 852.723 L1876.34 850.792 \n", " L1891.66 848.792 L1915.74 846.18 L1927.66 843.539 L1934.72 838.285 L1938.89 833.031 L1941.3 827.777 L1941.33 822.524 L1941.33 817.27 L1941.33 812.016 L1941.33 806.762 \n", " L1941.33 801.509 L1941.33 796.255 L1941.33 791.001 L1941.33 785.747 L1941.33 780.494 L1941.33 775.24 L1941.33 769.986 L1941.33 764.733 L1941.33 759.479 L1941.33 754.225 \n", " L1941.33 748.971 L1941.33 743.718 L1941.33 738.464 L1941.33 733.21 L1941.33 727.956 L1941.33 722.703 L1941.33 717.449 L1941.33 712.195 L1941.3 706.941 L1938.89 701.688 \n", " L1934.72 696.434 L1927.66 691.18 L1915.74 688.539 L1891.66 685.927 L1876.34 683.927 L1836.93 681.995 L1797.53 681.995 L1758.13 681.995 L1718.73 681.995 L1679.32 681.995 \n", " L1639.92 681.995 L1600.52 683.392 L1561.11 683.392 L1521.71 683.392 L1492.26 685.927 L1482.31 686.84 L1459.26 691.18 L1442.9 696.198 L1442.31 696.434 L1431.74 701.688 \n", " L1403.5 706.687 L1400.74 706.941 L1364.1 710.068 L1324.7 711.645 L1313.98 712.195 L1285.29 714.059 L1245.89 715.571 L1206.49 715.571 L1167.08 715.571 L1127.68 715.571 \n", " L1088.28 715.571 L1048.87 715.571 L1009.47 714.059 L980.779 712.195 L970.068 711.645 L930.665 710.068 L894.021 706.941 L891.262 706.687 L863.02 701.688 L852.45 696.434 \n", " L851.859 696.198 L835.504 691.18 L812.456 686.84 L802.506 685.927 L773.053 683.392 L733.65 683.392 L694.247 683.392 L654.844 681.995 L615.441 681.995 L576.038 681.995 \n", " L536.635 681.995 L497.232 681.995 L457.829 681.995 L418.426 683.927 L403.103 685.927 L379.023 688.539 L367.108 691.18 L360.045 696.434 L355.869 701.688 L353.463 706.941 \n", " L353.433 712.195 L353.433 717.449 L353.433 722.703 L353.433 727.956 L353.433 733.21 L353.433 738.464 L353.433 743.718 L353.433 748.971 L353.433 754.225 L353.433 759.479 \n", " L353.433 764.733 L353.433 769.986 L353.433 775.24 L353.433 780.494 L353.433 785.747 L353.433 791.001 L353.433 796.255 L353.433 801.509 L353.433 806.762 L353.433 812.016 \n", " L353.433 817.27 L353.433 822.524 L353.463 827.777 L355.869 833.031 L360.045 838.285 L367.108 843.539 L379.023 846.18 L403.103 848.792 L418.426 850.792 Z\n", " \" fill=\"#781c6d\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5302)\" d=\"\n", "M457.829 850.489 L497.232 850.489 L536.635 850.489 L576.038 850.489 L615.441 850.489 L654.844 850.489 L694.247 848.813 L733.65 848.813 L773.053 848.813 L773.292 848.792 \n", " L812.456 845.199 L821.271 843.539 L841.515 838.285 L851.859 834.154 L854.142 833.031 L885.106 827.777 L891.262 826.627 L930.665 823.199 L946.575 822.524 L970.068 821.317 \n", " L1009.47 818.437 L1036.06 817.27 L1048.87 816.727 L1088.28 816.727 L1127.68 816.727 L1167.08 816.727 L1206.49 816.727 L1245.89 816.727 L1258.7 817.27 L1285.29 818.437 \n", " L1324.7 821.317 L1348.19 822.524 L1364.1 823.199 L1403.5 826.627 L1409.66 827.777 L1440.62 833.031 L1442.9 834.154 L1453.25 838.285 L1473.49 843.539 L1482.31 845.199 \n", " L1521.47 848.792 L1521.71 848.813 L1561.11 848.813 L1600.52 848.813 L1639.92 850.489 L1679.32 850.489 L1718.73 850.489 L1758.13 850.489 L1797.53 850.489 L1836.93 850.489 \n", " L1866.96 848.792 L1876.34 848.341 L1915.74 844 L1917.82 843.539 L1927.41 838.285 L1933.08 833.031 L1936.35 827.777 L1936.39 822.524 L1936.39 817.27 L1936.39 812.016 \n", " L1936.39 806.762 L1936.39 801.509 L1936.39 796.255 L1936.39 791.001 L1936.39 785.747 L1936.39 780.494 L1936.39 775.24 L1936.39 769.986 L1936.39 764.733 L1936.39 759.479 \n", " L1936.39 754.225 L1936.39 748.971 L1936.39 743.718 L1936.39 738.464 L1936.39 733.21 L1936.39 727.956 L1936.39 722.703 L1936.39 717.449 L1936.39 712.195 L1936.35 706.941 \n", " L1933.08 701.688 L1927.41 696.434 L1917.82 691.18 L1915.74 690.718 L1876.34 686.378 L1866.96 685.927 L1836.93 684.23 L1797.53 684.23 L1758.13 684.23 L1718.73 684.23 \n", " L1679.32 684.23 L1639.92 684.23 L1600.52 685.906 L1561.11 685.906 L1521.71 685.906 L1521.47 685.927 L1482.31 689.52 L1473.49 691.18 L1453.25 696.434 L1442.9 700.565 \n", " L1440.62 701.688 L1409.66 706.941 L1403.5 708.091 L1364.1 711.52 L1348.19 712.195 L1324.7 713.402 L1285.29 716.282 L1258.7 717.449 L1245.89 717.992 L1206.49 717.992 \n", " L1167.08 717.992 L1127.68 717.992 L1088.28 717.992 L1048.87 717.992 L1036.06 717.449 L1009.47 716.282 L970.068 713.402 L946.575 712.195 L930.665 711.52 L891.262 708.091 \n", " L885.106 706.941 L854.142 701.688 L851.859 700.565 L841.515 696.434 L821.271 691.18 L812.456 689.52 L773.292 685.927 L773.053 685.906 L733.65 685.906 L694.247 685.906 \n", " L654.844 684.23 L615.441 684.23 L576.038 684.23 L536.635 684.23 L497.232 684.23 L457.829 684.23 L427.802 685.927 L418.426 686.378 L379.023 690.718 L376.94 691.18 \n", " L367.35 696.434 L361.681 701.688 L358.415 706.941 L358.374 712.195 L358.374 717.449 L358.374 722.703 L358.374 727.956 L358.374 733.21 L358.374 738.464 L358.374 743.718 \n", " L358.374 748.971 L358.374 754.225 L358.374 759.479 L358.374 764.733 L358.374 769.986 L358.374 775.24 L358.374 780.494 L358.374 785.747 L358.374 791.001 L358.374 796.255 \n", " L358.374 801.509 L358.374 806.762 L358.374 812.016 L358.374 817.27 L358.374 822.524 L358.415 827.777 L361.681 833.031 L367.35 838.285 L376.94 843.539 L379.023 844 \n", " L418.426 848.341 L427.802 848.792 L457.829 850.489 Z\n", " \" fill=\"#942666\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5302)\" d=\"\n", "M418.426 846.437 L457.829 848.254 L497.232 848.254 L536.635 848.254 L576.038 848.254 L615.441 848.254 L654.844 848.254 L694.247 846.72 L733.65 846.72 L773.053 846.72 \n", " L804.573 843.539 L812.456 842.557 L830.58 838.285 L845.264 833.031 L851.859 832.117 L877.759 827.777 L891.262 825.255 L922.32 822.524 L930.665 821.747 L970.068 819.561 \n", " L998.955 817.27 L1009.47 816.227 L1048.87 814.582 L1088.28 814.582 L1127.68 814.582 L1167.08 814.582 L1206.49 814.582 L1245.89 814.582 L1285.29 816.227 L1295.81 817.27 \n", " L1324.7 819.561 L1364.1 821.747 L1372.44 822.524 L1403.5 825.255 L1417 827.777 L1442.9 832.117 L1449.5 833.031 L1464.18 838.285 L1482.31 842.557 L1490.19 843.539 \n", " L1521.71 846.72 L1561.11 846.72 L1600.52 846.72 L1639.92 848.254 L1679.32 848.254 L1718.73 848.254 L1758.13 848.254 L1797.53 848.254 L1836.93 848.254 L1876.34 846.437 \n", " L1902.3 843.539 L1915.74 840.551 L1920.11 838.285 L1927.27 833.031 L1931.4 827.777 L1931.45 822.524 L1931.45 817.27 L1931.45 812.016 L1931.45 806.762 L1931.45 801.509 \n", " L1931.45 796.255 L1931.45 791.001 L1931.45 785.747 L1931.45 780.494 L1931.45 775.24 L1931.45 769.986 L1931.45 764.733 L1931.45 759.479 L1931.45 754.225 L1931.45 748.971 \n", " L1931.45 743.718 L1931.45 738.464 L1931.45 733.21 L1931.45 727.956 L1931.45 722.703 L1931.45 717.449 L1931.45 712.195 L1931.4 706.941 L1927.27 701.688 L1920.11 696.434 \n", " L1915.74 694.167 L1902.3 691.18 L1876.34 688.282 L1836.93 686.465 L1797.53 686.465 L1758.13 686.465 L1718.73 686.465 L1679.32 686.465 L1639.92 686.465 L1600.52 687.999 \n", " L1561.11 687.999 L1521.71 687.999 L1490.19 691.18 L1482.31 692.162 L1464.18 696.434 L1449.5 701.688 L1442.9 702.602 L1417 706.941 L1403.5 709.464 L1372.44 712.195 \n", " L1364.1 712.972 L1324.7 715.158 L1295.81 717.449 L1285.29 718.492 L1245.89 720.137 L1206.49 720.137 L1167.08 720.137 L1127.68 720.137 L1088.28 720.137 L1048.87 720.137 \n", " L1009.47 718.492 L998.955 717.449 L970.068 715.158 L930.665 712.972 L922.32 712.195 L891.262 709.464 L877.759 706.941 L851.859 702.602 L845.264 701.688 L830.58 696.434 \n", " L812.456 692.162 L804.573 691.18 L773.053 687.999 L733.65 687.999 L694.247 687.999 L654.844 686.465 L615.441 686.465 L576.038 686.465 L536.635 686.465 L497.232 686.465 \n", " L457.829 686.465 L418.426 688.282 L392.463 691.18 L379.023 694.167 L374.655 696.434 L367.492 701.688 L363.366 706.941 L363.314 712.195 L363.314 717.449 L363.314 722.703 \n", " L363.314 727.956 L363.314 733.21 L363.314 738.464 L363.314 743.718 L363.314 748.971 L363.314 754.225 L363.314 759.479 L363.314 764.733 L363.314 769.986 L363.314 775.24 \n", " L363.314 780.494 L363.314 785.747 L363.314 791.001 L363.314 796.255 L363.314 801.509 L363.314 806.762 L363.314 812.016 L363.314 817.27 L363.314 822.524 L363.366 827.777 \n", " L367.492 833.031 L374.655 838.285 L379.023 840.551 L392.463 843.539 L418.426 846.437 Z\n", " \" fill=\"#ad305b\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5302)\" d=\"\n", "M418.426 844.533 L457.829 846.02 L497.232 846.02 L536.635 846.02 L576.038 846.02 L615.441 846.02 L654.844 846.02 L694.247 844.63 L733.65 844.63 L773.053 844.63 \n", " L783.87 843.539 L812.456 839.979 L819.645 838.285 L836.386 833.031 L851.859 830.886 L870.413 827.777 L891.262 823.883 L906.717 822.524 L930.665 820.295 L970.068 817.804 \n", " L976.806 817.27 L1009.47 814.031 L1048.87 812.436 L1088.28 812.436 L1127.68 812.436 L1167.08 812.436 L1206.49 812.436 L1245.89 812.436 L1285.29 814.031 L1317.96 817.27 \n", " L1324.7 817.804 L1364.1 820.295 L1388.05 822.524 L1403.5 823.883 L1424.35 827.777 L1442.9 830.886 L1458.38 833.031 L1475.12 838.285 L1482.31 839.979 L1510.89 843.539 \n", " L1521.71 844.63 L1561.11 844.63 L1600.52 844.63 L1639.92 846.02 L1679.32 846.02 L1718.73 846.02 L1758.13 846.02 L1797.53 846.02 L1836.93 846.02 L1876.34 844.533 \n", " L1885.25 843.539 L1911.26 838.285 L1915.74 836.761 L1921.46 833.031 L1926.45 827.777 L1926.51 822.524 L1926.51 817.27 L1926.51 812.016 L1926.51 806.762 L1926.51 801.509 \n", " L1926.51 796.255 L1926.51 791.001 L1926.51 785.747 L1926.51 780.494 L1926.51 775.24 L1926.51 769.986 L1926.51 764.733 L1926.51 759.479 L1926.51 754.225 L1926.51 748.971 \n", " L1926.51 743.718 L1926.51 738.464 L1926.51 733.21 L1926.51 727.956 L1926.51 722.703 L1926.51 717.449 L1926.51 712.195 L1926.45 706.941 L1921.46 701.688 L1915.74 697.958 \n", " L1911.26 696.434 L1885.25 691.18 L1876.34 690.186 L1836.93 688.699 L1797.53 688.699 L1758.13 688.699 L1718.73 688.699 L1679.32 688.699 L1639.92 688.699 L1600.52 690.089 \n", " L1561.11 690.089 L1521.71 690.089 L1510.89 691.18 L1482.31 694.739 L1475.12 696.434 L1458.38 701.688 L1442.9 703.833 L1424.35 706.941 L1403.5 710.836 L1388.05 712.195 \n", " L1364.1 714.424 L1324.7 716.915 L1317.96 717.449 L1285.29 720.688 L1245.89 722.282 L1206.49 722.282 L1167.08 722.282 L1127.68 722.282 L1088.28 722.282 L1048.87 722.282 \n", " L1009.47 720.688 L976.806 717.449 L970.068 716.915 L930.665 714.424 L906.717 712.195 L891.262 710.836 L870.413 706.941 L851.859 703.833 L836.386 701.688 L819.645 696.434 \n", " L812.456 694.739 L783.87 691.18 L773.053 690.089 L733.65 690.089 L694.247 690.089 L654.844 688.699 L615.441 688.699 L576.038 688.699 L536.635 688.699 L497.232 688.699 \n", " L457.829 688.699 L418.426 690.186 L409.517 691.18 L383.502 696.434 L379.023 697.958 L373.304 701.688 L368.317 706.941 L368.255 712.195 L368.255 717.449 L368.255 722.703 \n", " L368.255 727.956 L368.255 733.21 L368.255 738.464 L368.255 743.718 L368.255 748.971 L368.255 754.225 L368.255 759.479 L368.255 764.733 L368.255 769.986 L368.255 775.24 \n", " L368.255 780.494 L368.255 785.747 L368.255 791.001 L368.255 796.255 L368.255 801.509 L368.255 806.762 L368.255 812.016 L368.255 817.27 L368.255 822.524 L368.317 827.777 \n", " L373.304 833.031 L379.023 836.761 L383.502 838.285 L409.517 843.539 L418.426 844.533 Z\n", " \" fill=\"#c73e4c\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5302)\" d=\"\n", "M457.829 843.785 L497.232 843.785 L536.635 843.785 L576.038 843.785 L615.441 843.785 L654.844 843.785 L662.232 843.539 L694.247 842.578 L733.65 842.578 L773.053 842.578 \n", " L807.007 838.285 L812.456 837.402 L827.509 833.031 L851.859 829.655 L863.066 827.777 L891.186 822.524 L891.262 822.508 L930.665 818.843 L954.656 817.27 L970.068 815.654 \n", " L1007.49 812.016 L1009.47 811.835 L1048.87 810.399 L1088.28 810.399 L1127.68 810.399 L1167.08 810.399 L1206.49 810.399 L1245.89 810.399 L1285.29 811.835 L1287.27 812.016 \n", " L1324.7 815.654 L1340.11 817.27 L1364.1 818.843 L1403.5 822.508 L1403.58 822.524 L1431.7 827.777 L1442.9 829.655 L1467.26 833.031 L1482.31 837.402 L1487.76 838.285 \n", " L1521.71 842.578 L1561.11 842.578 L1600.52 842.578 L1632.53 843.539 L1639.92 843.785 L1679.32 843.785 L1718.73 843.785 L1758.13 843.785 L1797.53 843.785 L1836.93 843.785 \n", " L1844.32 843.539 L1876.34 842.578 L1900.12 838.285 L1915.61 833.031 L1915.74 832.96 L1921.5 827.777 L1921.57 822.524 L1921.57 817.27 L1921.57 812.016 L1921.57 806.762 \n", " L1921.57 801.509 L1921.57 796.255 L1921.57 791.001 L1921.57 785.747 L1921.57 780.494 L1921.57 775.24 L1921.57 769.986 L1921.57 764.733 L1921.57 759.479 L1921.57 754.225 \n", " L1921.57 748.971 L1921.57 743.718 L1921.57 738.464 L1921.57 733.21 L1921.57 727.956 L1921.57 722.703 L1921.57 717.449 L1921.57 712.195 L1921.5 706.941 L1915.74 701.759 \n", " L1915.61 701.688 L1900.12 696.434 L1876.34 692.141 L1844.32 691.18 L1836.93 690.934 L1797.53 690.934 L1758.13 690.934 L1718.73 690.934 L1679.32 690.934 L1639.92 690.934 \n", " L1632.53 691.18 L1600.52 692.141 L1561.11 692.141 L1521.71 692.141 L1487.76 696.434 L1482.31 697.317 L1467.26 701.688 L1442.9 705.064 L1431.7 706.941 L1403.58 712.195 \n", " L1403.5 712.21 L1364.1 715.876 L1340.11 717.449 L1324.7 719.065 L1287.27 722.703 L1285.29 722.883 L1245.89 724.32 L1206.49 724.32 L1167.08 724.32 L1127.68 724.32 \n", " L1088.28 724.32 L1048.87 724.32 L1009.47 722.883 L1007.49 722.703 L970.068 719.065 L954.656 717.449 L930.665 715.876 L891.262 712.21 L891.186 712.195 L863.066 706.941 \n", " L851.859 705.064 L827.509 701.688 L812.456 697.317 L807.007 696.434 L773.053 692.141 L733.65 692.141 L694.247 692.141 L662.232 691.18 L654.844 690.934 L615.441 690.934 \n", " L576.038 690.934 L536.635 690.934 L497.232 690.934 L457.829 690.934 L450.441 691.18 L418.426 692.141 L394.643 696.434 L379.155 701.688 L379.023 701.759 L373.268 706.941 \n", " L373.195 712.195 L373.195 717.449 L373.195 722.703 L373.195 727.956 L373.195 733.21 L373.195 738.464 L373.195 743.718 L373.195 748.971 L373.195 754.225 L373.195 759.479 \n", " L373.195 764.733 L373.195 769.986 L373.195 775.24 L373.195 780.494 L373.195 785.747 L373.195 791.001 L373.195 796.255 L373.195 801.509 L373.195 806.762 L373.195 812.016 \n", " L373.195 817.27 L373.195 822.524 L373.268 827.777 L379.023 832.96 L379.155 833.031 L394.643 838.285 L418.426 842.578 L450.441 843.539 L457.829 843.785 Z\n", " \" fill=\"#db503a\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5302)\" d=\"\n", "M418.426 840.567 L457.829 841.55 L497.232 841.55 L536.635 841.55 L576.038 841.55 L615.441 841.55 L654.844 841.55 L694.247 840.567 L733.65 840.567 L773.053 840.567 \n", " L791.101 838.285 L812.456 834.824 L818.631 833.031 L851.859 828.424 L855.719 827.777 L883.191 822.524 L891.262 820.915 L930.665 817.391 L932.506 817.27 L970.068 813.331 \n", " L983.596 812.016 L1009.47 809.651 L1048.87 808.388 L1088.28 808.388 L1127.68 808.388 L1167.08 808.388 L1206.49 808.388 L1245.89 808.388 L1285.29 809.651 L1311.17 812.016 \n", " L1324.7 813.331 L1362.26 817.27 L1364.1 817.391 L1403.5 820.915 L1411.57 822.524 L1439.04 827.777 L1442.9 828.424 L1476.13 833.031 L1482.31 834.824 L1503.66 838.285 \n", " L1521.71 840.567 L1561.11 840.567 L1600.52 840.567 L1639.92 841.55 L1679.32 841.55 L1718.73 841.55 L1758.13 841.55 L1797.53 841.55 L1836.93 841.55 L1876.34 840.567 \n", " L1888.98 838.285 L1907.34 833.031 L1915.74 828.501 L1916.54 827.777 L1916.63 822.524 L1916.63 817.27 L1916.63 812.016 L1916.63 806.762 L1916.63 801.509 L1916.63 796.255 \n", " L1916.63 791.001 L1916.63 785.747 L1916.63 780.494 L1916.63 775.24 L1916.63 769.986 L1916.63 764.733 L1916.63 759.479 L1916.63 754.225 L1916.63 748.971 L1916.63 743.718 \n", " L1916.63 738.464 L1916.63 733.21 L1916.63 727.956 L1916.63 722.703 L1916.63 717.449 L1916.63 712.195 L1916.54 706.941 L1915.74 706.218 L1907.34 701.688 L1888.98 696.434 \n", " L1876.34 694.152 L1836.93 693.169 L1797.53 693.169 L1758.13 693.169 L1718.73 693.169 L1679.32 693.169 L1639.92 693.169 L1600.52 694.152 L1561.11 694.152 L1521.71 694.152 \n", " L1503.66 696.434 L1482.31 699.895 L1476.13 701.688 L1442.9 706.295 L1439.04 706.941 L1411.57 712.195 L1403.5 713.804 L1364.1 717.328 L1362.26 717.449 L1324.7 721.388 \n", " L1311.17 722.703 L1285.29 725.068 L1245.89 726.331 L1206.49 726.331 L1167.08 726.331 L1127.68 726.331 L1088.28 726.331 L1048.87 726.331 L1009.47 725.068 L983.596 722.703 \n", " L970.068 721.388 L932.506 717.449 L930.665 717.328 L891.262 713.804 L883.191 712.195 L855.719 706.941 L851.859 706.295 L818.631 701.688 L812.456 699.895 L791.101 696.434 \n", " L773.053 694.152 L733.65 694.152 L694.247 694.152 L654.844 693.169 L615.441 693.169 L576.038 693.169 L536.635 693.169 L497.232 693.169 L457.829 693.169 L418.426 694.152 \n", " L405.784 696.434 L387.428 701.688 L379.023 706.218 L378.22 706.941 L378.136 712.195 L378.136 717.449 L378.136 722.703 L378.136 727.956 L378.136 733.21 L378.136 738.464 \n", " L378.136 743.718 L378.136 748.971 L378.136 754.225 L378.136 759.479 L378.136 764.733 L378.136 769.986 L378.136 775.24 L378.136 780.494 L378.136 785.747 L378.136 791.001 \n", " L378.136 796.255 L378.136 801.509 L378.136 806.762 L378.136 812.016 L378.136 817.27 L378.136 822.524 L378.22 827.777 L379.023 828.501 L387.428 833.031 L405.784 838.285 \n", " L418.426 840.567 Z\n", " \" fill=\"#ec6925\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5302)\" d=\"\n", "M418.426 838.556 L457.829 839.316 L497.232 839.316 L536.635 839.316 L576.038 839.316 L615.441 839.316 L654.844 839.316 L694.247 838.556 L733.65 838.556 L773.053 838.556 \n", " L775.196 838.285 L808.525 833.031 L812.456 832.454 L845.505 827.777 L851.859 827.043 L875.196 822.524 L891.262 819.322 L914.276 817.27 L930.665 815.01 L959.699 812.016 \n", " L970.068 810.835 L1009.47 807.466 L1034.16 806.762 L1048.87 806.377 L1088.28 806.377 L1127.68 806.377 L1167.08 806.377 L1206.49 806.377 L1245.89 806.377 L1260.6 806.762 \n", " L1285.29 807.466 L1324.7 810.835 L1335.07 812.016 L1364.1 815.01 L1380.49 817.27 L1403.5 819.322 L1419.57 822.524 L1442.9 827.043 L1449.26 827.777 L1482.31 832.454 \n", " L1486.24 833.031 L1519.57 838.285 L1521.71 838.556 L1561.11 838.556 L1600.52 838.556 L1639.92 839.316 L1679.32 839.316 L1718.73 839.316 L1758.13 839.316 L1797.53 839.316 \n", " L1836.93 839.316 L1876.34 838.556 L1877.84 838.285 L1899.06 833.031 L1910.05 827.777 L1910.19 822.524 L1910.19 817.27 L1910.19 812.016 L1910.19 806.762 L1910.19 801.509 \n", " L1910.19 796.255 L1910.19 791.001 L1910.19 785.747 L1910.19 780.494 L1910.19 775.24 L1910.19 769.986 L1910.19 764.733 L1910.19 759.479 L1910.19 754.225 L1910.19 748.971 \n", " L1910.19 743.718 L1910.19 738.464 L1910.19 733.21 L1910.19 727.956 L1910.19 722.703 L1910.19 717.449 L1910.19 712.195 L1910.05 706.941 L1899.06 701.688 L1877.84 696.434 \n", " L1876.34 696.163 L1836.93 695.403 L1797.53 695.403 L1758.13 695.403 L1718.73 695.403 L1679.32 695.403 L1639.92 695.403 L1600.52 696.163 L1561.11 696.163 L1521.71 696.163 \n", " L1519.57 696.434 L1486.24 701.688 L1482.31 702.265 L1449.26 706.941 L1442.9 707.676 L1419.57 712.195 L1403.5 715.397 L1380.49 717.449 L1364.1 719.709 L1335.07 722.703 \n", " L1324.7 723.884 L1285.29 727.253 L1260.6 727.956 L1245.89 728.342 L1206.49 728.342 L1167.08 728.342 L1127.68 728.342 L1088.28 728.342 L1048.87 728.342 L1034.16 727.956 \n", " L1009.47 727.253 L970.068 723.884 L959.699 722.703 L930.665 719.709 L914.276 717.449 L891.262 715.397 L875.196 712.195 L851.859 707.676 L845.505 706.941 L812.456 702.265 \n", " L808.525 701.688 L775.196 696.434 L773.053 696.163 L733.65 696.163 L694.247 696.163 L654.844 695.403 L615.441 695.403 L576.038 695.403 L536.635 695.403 L497.232 695.403 \n", " L457.829 695.403 L418.426 696.163 L416.926 696.434 L395.701 701.688 L384.709 706.941 L384.577 712.195 L384.577 717.449 L384.577 722.703 L384.577 727.956 L384.577 733.21 \n", " L384.577 738.464 L384.577 743.718 L384.577 748.971 L384.577 754.225 L384.577 759.479 L384.577 764.733 L384.577 769.986 L384.577 775.24 L384.577 780.494 L384.577 785.747 \n", " L384.577 791.001 L384.577 796.255 L384.577 801.509 L384.577 806.762 L384.577 812.016 L384.577 817.27 L384.577 822.524 L384.709 827.777 L395.701 833.031 L416.926 838.285 \n", " L418.426 838.556 Z\n", " \" fill=\"#f7850e\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5302)\" d=\"\n", "M418.426 836.545 L457.829 837.081 L497.232 837.081 L536.635 837.081 L576.038 837.081 L615.441 837.081 L654.844 837.081 L694.247 836.545 L733.65 836.545 L773.053 836.545 \n", " L795.612 833.031 L812.456 830.56 L832.116 827.777 L851.859 825.494 L867.201 822.524 L891.262 817.728 L896.402 817.27 L930.665 812.546 L935.801 812.016 L970.068 808.114 \n", " L986.727 806.762 L1009.47 805.281 L1048.87 804.365 L1088.28 804.365 L1127.68 804.365 L1167.08 804.365 L1206.49 804.365 L1245.89 804.365 L1285.29 805.281 L1308.04 806.762 \n", " L1324.7 808.114 L1358.96 812.016 L1364.1 812.546 L1398.36 817.27 L1403.5 817.728 L1427.56 822.524 L1442.9 825.494 L1462.65 827.777 L1482.31 830.56 L1499.15 833.031 \n", " L1521.71 836.545 L1561.11 836.545 L1600.52 836.545 L1639.92 837.081 L1679.32 837.081 L1718.73 837.081 L1758.13 837.081 L1797.53 837.081 L1836.93 837.081 L1876.34 836.545 \n", " L1890.79 833.031 L1903.27 827.777 L1903.42 822.524 L1903.42 817.27 L1903.42 812.016 L1903.42 806.762 L1903.42 801.509 L1903.42 796.255 L1903.42 791.001 L1903.42 785.747 \n", " L1903.42 780.494 L1903.42 775.24 L1903.42 769.986 L1903.42 764.733 L1903.42 759.479 L1903.42 754.225 L1903.42 748.971 L1903.42 743.718 L1903.42 738.464 L1903.42 733.21 \n", " L1903.42 727.956 L1903.42 722.703 L1903.42 717.449 L1903.42 712.195 L1903.27 706.941 L1890.79 701.688 L1876.34 698.174 L1836.93 697.638 L1797.53 697.638 L1758.13 697.638 \n", " L1718.73 697.638 L1679.32 697.638 L1639.92 697.638 L1600.52 698.174 L1561.11 698.174 L1521.71 698.174 L1499.15 701.688 L1482.31 704.159 L1462.65 706.941 L1442.9 709.224 \n", " L1427.56 712.195 L1403.5 716.991 L1398.36 717.449 L1364.1 722.173 L1358.96 722.703 L1324.7 726.605 L1308.04 727.956 L1285.29 729.438 L1245.89 730.353 L1206.49 730.353 \n", " L1167.08 730.353 L1127.68 730.353 L1088.28 730.353 L1048.87 730.353 L1009.47 729.438 L986.727 727.956 L970.068 726.605 L935.801 722.703 L930.665 722.173 L896.402 717.449 \n", " L891.262 716.991 L867.201 712.195 L851.859 709.224 L832.116 706.941 L812.456 704.159 L795.612 701.688 L773.053 698.174 L733.65 698.174 L694.247 698.174 L654.844 697.638 \n", " L615.441 697.638 L576.038 697.638 L536.635 697.638 L497.232 697.638 L457.829 697.638 L418.426 698.174 L403.974 701.688 L391.497 706.941 L391.347 712.195 L391.347 717.449 \n", " L391.347 722.703 L391.347 727.956 L391.347 733.21 L391.347 738.464 L391.347 743.718 L391.347 748.971 L391.347 754.225 L391.347 759.479 L391.347 764.733 L391.347 769.986 \n", " L391.347 775.24 L391.347 780.494 L391.347 785.747 L391.347 791.001 L391.347 796.255 L391.347 801.509 L391.347 806.762 L391.347 812.016 L391.347 817.27 L391.347 822.524 \n", " L391.497 827.777 L403.974 833.031 L418.426 836.545 Z\n", " \" fill=\"#fba40a\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5302)\" d=\"\n", "M418.426 834.533 L457.829 834.846 L497.232 834.846 L536.635 834.846 L576.038 834.846 L615.441 834.846 L654.844 834.846 L694.247 834.533 L733.65 834.533 L773.053 834.533 \n", " L782.699 833.031 L812.456 828.665 L818.728 827.777 L851.859 823.946 L859.206 822.524 L881.716 817.27 L891.262 814.38 L908.048 812.016 L930.665 809.184 L953.18 806.762 \n", " L970.068 805.392 L1009.47 803.097 L1048.87 802.354 L1088.28 802.354 L1127.68 802.354 L1167.08 802.354 L1206.49 802.354 L1245.89 802.354 L1285.29 803.097 L1324.7 805.392 \n", " L1341.58 806.762 L1364.1 809.184 L1386.72 812.016 L1403.5 814.38 L1413.05 817.27 L1435.56 822.524 L1442.9 823.946 L1476.04 827.777 L1482.31 828.665 L1512.07 833.031 \n", " L1521.71 834.533 L1561.11 834.533 L1600.52 834.533 L1639.92 834.846 L1679.32 834.846 L1718.73 834.846 L1758.13 834.846 L1797.53 834.846 L1836.93 834.846 L1876.34 834.533 \n", " L1882.52 833.031 L1896.48 827.777 L1896.65 822.524 L1896.65 817.27 L1896.65 812.016 L1896.65 806.762 L1896.65 801.509 L1896.65 796.255 L1896.65 791.001 L1896.65 785.747 \n", " L1896.65 780.494 L1896.65 775.24 L1896.65 769.986 L1896.65 764.733 L1896.65 759.479 L1896.65 754.225 L1896.65 748.971 L1896.65 743.718 L1896.65 738.464 L1896.65 733.21 \n", " L1896.65 727.956 L1896.65 722.703 L1896.65 717.449 L1896.65 712.195 L1896.48 706.941 L1882.52 701.688 L1876.34 700.185 L1836.93 699.873 L1797.53 699.873 L1758.13 699.873 \n", " L1718.73 699.873 L1679.32 699.873 L1639.92 699.873 L1600.52 700.185 L1561.11 700.185 L1521.71 700.185 L1512.07 701.688 L1482.31 706.054 L1476.04 706.941 L1442.9 710.773 \n", " L1435.56 712.195 L1413.05 717.449 L1403.5 720.339 L1386.72 722.703 L1364.1 725.535 L1341.58 727.956 L1324.7 729.326 L1285.29 731.622 L1245.89 732.365 L1206.49 732.365 \n", " L1167.08 732.365 L1127.68 732.365 L1088.28 732.365 L1048.87 732.365 L1009.47 731.622 L970.068 729.326 L953.18 727.956 L930.665 725.535 L908.048 722.703 L891.262 720.339 \n", " L881.716 717.449 L859.206 712.195 L851.859 710.773 L818.728 706.941 L812.456 706.054 L782.699 701.688 L773.053 700.185 L733.65 700.185 L694.247 700.185 L654.844 699.873 \n", " L615.441 699.873 L576.038 699.873 L536.635 699.873 L497.232 699.873 L457.829 699.873 L418.426 700.185 L412.247 701.688 L398.285 706.941 L398.117 712.195 L398.117 717.449 \n", " L398.117 722.703 L398.117 727.956 L398.117 733.21 L398.117 738.464 L398.117 743.718 L398.117 748.971 L398.117 754.225 L398.117 759.479 L398.117 764.733 L398.117 769.986 \n", " L398.117 775.24 L398.117 780.494 L398.117 785.747 L398.117 791.001 L398.117 796.255 L398.117 801.509 L398.117 806.762 L398.117 812.016 L398.117 817.27 L398.117 822.524 \n", " L398.285 827.777 L412.247 833.031 L418.426 834.533 Z\n", " \" fill=\"#f9c52d\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5302)\" d=\"\n", "M418.426 832.432 L457.829 831.772 L497.232 831.772 L536.635 831.772 L576.038 831.772 L615.441 831.772 L654.844 831.772 L694.247 831.759 L733.65 831.759 L773.053 831.759 \n", " L796.629 827.777 L812.456 826.34 L849.719 822.524 L851.859 822.198 L868.318 817.27 L872.981 812.016 L891.262 809.862 L916.722 806.762 L930.665 805.576 L970.068 802.671 \n", " L994.099 801.509 L1009.47 800.643 L1048.87 799.748 L1088.28 799.471 L1127.68 799.092 L1167.08 799.092 L1206.49 799.471 L1245.89 799.748 L1285.29 800.643 L1300.67 801.509 \n", " L1324.7 802.671 L1364.1 805.576 L1378.04 806.762 L1403.5 809.862 L1421.78 812.016 L1426.45 817.27 L1442.9 822.198 L1445.05 822.524 L1482.31 826.34 L1498.13 827.777 \n", " L1521.71 831.759 L1561.11 831.759 L1600.52 831.759 L1639.92 831.772 L1679.32 831.772 L1718.73 831.772 L1758.13 831.772 L1797.53 831.772 L1836.93 831.772 L1876.34 832.432 \n", " L1889.69 827.777 L1889.88 822.524 L1889.88 817.27 L1889.88 812.016 L1889.88 806.762 L1889.88 801.509 L1889.88 796.255 L1889.88 791.001 L1889.88 785.747 L1889.88 780.494 \n", " L1889.88 775.24 L1889.88 769.986 L1889.88 764.733 L1889.88 759.479 L1889.88 754.225 L1889.88 748.971 L1889.88 743.718 L1889.88 738.464 L1889.88 733.21 L1889.88 727.956 \n", " L1889.88 722.703 L1889.88 717.449 L1889.88 712.195 L1889.69 706.941 L1876.34 702.286 L1836.93 702.946 L1797.53 702.946 L1758.13 702.946 L1718.73 702.946 L1679.32 702.946 \n", " L1639.92 702.946 L1600.52 702.96 L1561.11 702.96 L1521.71 702.96 L1498.13 706.941 L1482.31 708.379 L1445.05 712.195 L1442.9 712.52 L1426.45 717.449 L1421.78 722.703 \n", " L1403.5 724.857 L1378.04 727.956 L1364.1 729.143 L1324.7 732.048 L1300.67 733.21 L1285.29 734.076 L1245.89 734.971 L1206.49 735.247 L1167.08 735.627 L1127.68 735.627 \n", " L1088.28 735.247 L1048.87 734.971 L1009.47 734.076 L994.099 733.21 L970.068 732.048 L930.665 729.143 L916.722 727.956 L891.262 724.857 L872.981 722.703 L868.318 717.449 \n", " L851.859 712.52 L849.719 712.195 L812.456 708.379 L796.629 706.941 L773.053 702.96 L733.65 702.96 L694.247 702.96 L654.844 702.946 L615.441 702.946 L576.038 702.946 \n", " L536.635 702.946 L497.232 702.946 L457.829 702.946 L418.426 702.286 L405.072 706.941 L404.887 712.195 L404.887 717.449 L404.887 722.703 L404.887 727.956 L404.887 733.21 \n", " L404.887 738.464 L404.887 743.718 L404.887 748.971 L404.887 754.225 L404.887 759.479 L404.887 764.733 L404.887 769.986 L404.887 775.24 L404.887 780.494 L404.887 785.747 \n", " L404.887 791.001 L404.887 796.255 L404.887 801.509 L404.887 806.762 L404.887 812.016 L404.887 817.27 L404.887 822.524 L405.072 827.777 L418.426 832.432 Z\n", " \" fill=\"#f2e55f\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5302)\" d=\"\n", "M418.426 830.066 L446.219 827.777 L452.904 822.524 L457.829 819.65 L497.232 819.65 L536.635 819.65 L576.038 819.65 L615.441 819.65 L654.844 819.65 L667.158 822.524 \n", " L694.247 825.684 L733.65 825.684 L773.053 825.684 L812.456 823.636 L823.318 822.524 L851.859 818.186 L854.919 817.27 L851.859 815.662 L829.174 812.016 L851.859 807.759 \n", " L861.034 806.762 L891.262 804.7 L930.665 801.968 L937.832 801.509 L970.068 798.983 L1009.47 797.473 L1048.87 796.71 L1074.02 796.255 L1088.28 793.994 L1111.35 791.001 \n", " L1127.68 789.259 L1167.08 789.259 L1183.42 791.001 L1206.49 793.994 L1220.74 796.255 L1245.89 796.71 L1285.29 797.473 L1324.7 798.983 L1356.93 801.509 L1364.1 801.968 \n", " L1403.5 804.7 L1433.73 806.762 L1442.9 807.759 L1465.59 812.016 L1442.9 815.662 L1439.84 817.27 L1442.9 818.186 L1471.45 822.524 L1482.31 823.636 L1521.71 825.684 \n", " L1561.11 825.684 L1600.52 825.684 L1627.61 822.524 L1639.92 819.65 L1679.32 819.65 L1718.73 819.65 L1758.13 819.65 L1797.53 819.65 L1836.93 819.65 L1841.86 822.524 \n", " L1848.54 827.777 L1876.34 830.066 L1882.9 827.777 L1883.11 822.524 L1883.11 817.27 L1883.11 812.016 L1883.11 806.762 L1883.11 801.509 L1883.11 796.255 L1883.11 791.001 \n", " L1883.11 785.747 L1883.11 780.494 L1883.11 775.24 L1883.11 769.986 L1883.11 764.733 L1883.11 759.479 L1883.11 754.225 L1883.11 748.971 L1883.11 743.718 L1883.11 738.464 \n", " L1883.11 733.21 L1883.11 727.956 L1883.11 722.703 L1883.11 717.449 L1883.11 712.195 L1882.9 706.941 L1876.34 704.653 L1848.54 706.941 L1841.86 712.195 L1836.93 715.068 \n", " L1797.53 715.068 L1758.13 715.068 L1718.73 715.068 L1679.32 715.068 L1639.92 715.068 L1627.61 712.195 L1600.52 709.035 L1561.11 709.035 L1521.71 709.035 L1482.31 711.083 \n", " L1471.45 712.195 L1442.9 716.533 L1439.84 717.449 L1442.9 719.057 L1465.59 722.703 L1442.9 726.96 L1433.73 727.956 L1403.5 730.019 L1364.1 732.751 L1356.93 733.21 \n", " L1324.7 735.736 L1285.29 737.246 L1245.89 738.009 L1220.74 738.464 L1206.49 740.725 L1183.42 743.718 L1167.08 745.46 L1127.68 745.46 L1111.35 743.718 L1088.28 740.725 \n", " L1074.02 738.464 L1048.87 738.009 L1009.47 737.246 L970.068 735.736 L937.832 733.21 L930.665 732.751 L891.262 730.019 L861.034 727.956 L851.859 726.96 L829.174 722.703 \n", " L851.859 719.057 L854.919 717.449 L851.859 716.533 L823.318 712.195 L812.456 711.083 L773.053 709.035 L733.65 709.035 L694.247 709.035 L667.158 712.195 L654.844 715.068 \n", " L615.441 715.068 L576.038 715.068 L536.635 715.068 L497.232 715.068 L457.829 715.068 L452.904 712.195 L446.219 706.941 L418.426 704.653 L411.86 706.941 L411.656 712.195 \n", " L411.656 717.449 L411.656 722.703 L411.656 727.956 L411.656 733.21 L411.656 738.464 L411.656 743.718 L411.656 748.971 L411.656 754.225 L411.656 759.479 L411.656 764.733 \n", " L411.656 769.986 L411.656 775.24 L411.656 780.494 L411.656 785.747 L411.656 791.001 L411.656 796.255 L411.656 801.509 L411.656 806.762 L411.656 812.016 L411.656 817.27 \n", " L411.656 822.524 L411.86 827.777 L418.426 830.066 Z\n", " \" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,896.076 182.008,896.076 221.411,896.076 260.814,896.076 300.217,896.076 339.62,896.076 379.023,896.076 418.426,896.076 457.829,896.076 497.232,896.076 \n", " 536.635,896.076 576.038,896.076 615.441,896.076 654.844,896.076 694.247,896.076 733.65,896.076 773.053,896.076 812.456,896.076 851.859,896.076 891.262,896.076 \n", " 930.665,896.076 970.068,896.076 1009.47,896.076 1048.87,896.076 1088.28,896.076 1127.68,896.076 1167.08,896.076 1206.49,896.076 1245.89,896.076 1285.29,896.076 \n", " 1324.7,896.076 1364.1,896.076 1403.5,896.076 1442.9,896.076 1482.31,896.076 1521.71,896.076 1561.11,896.076 1600.52,896.076 1639.92,896.076 1679.32,896.076 \n", " 1718.73,896.076 1758.13,896.076 1797.53,896.076 1836.93,896.076 1876.34,896.076 1915.74,896.076 1955.14,896.076 1994.55,896.076 2033.95,896.076 2073.35,896.076 \n", " 2112.76,896.076 2112.76,890.822 2112.76,885.568 2112.76,880.315 2112.76,875.061 2112.76,869.807 2112.76,864.554 \n", " 2112.76,859.3 2112.76,854.046 2112.76,848.792 2112.76,843.539 2112.76,838.285 2112.76,833.031 2112.76,827.777 2112.76,822.524 2112.76,817.27 2112.76,812.016 \n", " 2112.76,806.762 2112.76,801.509 2112.76,796.255 2112.76,791.001 2112.76,785.747 2112.76,780.494 2112.76,775.24 2112.76,769.986 2112.76,764.733 2112.76,759.479 \n", " 2112.76,754.225 2112.76,748.971 2112.76,743.718 2112.76,738.464 2112.76,733.21 2112.76,727.956 2112.76,722.703 2112.76,717.449 2112.76,712.195 2112.76,706.941 \n", " 2112.76,701.688 2112.76,696.434 2112.76,691.18 2112.76,685.927 2112.76,680.673 2112.76,675.419 2112.76,670.165 2112.76,664.912 2112.76,659.658 2112.76,654.404 \n", " 2112.76,649.15 2112.76,643.897 2112.76,638.643 2073.35,638.643 2033.95,638.643 1994.55,638.643 1955.14,638.643 \n", " 1915.74,638.643 1876.34,638.643 1836.93,638.643 1797.53,638.643 1758.13,638.643 1718.73,638.643 1679.32,638.643 1639.92,638.643 1600.52,638.643 1561.11,638.643 \n", " 1521.71,638.643 1482.31,638.643 1442.9,638.643 1403.5,638.643 1364.1,638.643 1324.7,638.643 1285.29,638.643 1245.89,638.643 1206.49,638.643 1167.08,638.643 \n", " 1127.68,638.643 1088.28,638.643 1048.87,638.643 1009.47,638.643 970.068,638.643 930.665,638.643 891.262,638.643 851.859,638.643 812.456,638.643 773.053,638.643 \n", " 733.65,638.643 694.247,638.643 654.844,638.643 615.441,638.643 576.038,638.643 536.635,638.643 497.232,638.643 457.829,638.643 418.426,638.643 379.023,638.643 \n", " 339.62,638.643 300.217,638.643 260.814,638.643 221.411,638.643 182.008,638.643 182.008,643.897 182.008,649.15 \n", " 182.008,654.404 182.008,659.658 182.008,664.912 182.008,670.165 182.008,675.419 182.008,680.673 182.008,685.927 182.008,691.18 182.008,696.434 182.008,701.688 \n", " 182.008,706.941 182.008,712.195 182.008,717.449 182.008,722.703 182.008,727.956 182.008,733.21 182.008,738.464 182.008,743.718 182.008,748.971 182.008,754.225 \n", " 182.008,759.479 182.008,764.733 182.008,769.986 182.008,775.24 182.008,780.494 182.008,785.747 182.008,791.001 182.008,796.255 182.008,801.509 182.008,806.762 \n", " 182.008,812.016 182.008,817.27 182.008,822.524 182.008,827.777 182.008,833.031 182.008,838.285 182.008,843.539 182.008,848.792 182.008,854.046 182.008,859.3 \n", " 182.008,864.554 182.008,869.807 182.008,875.061 182.008,880.315 182.008,885.568 182.008,890.822 182.008,896.076 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 379.023,860.012 418.426,861.558 457.829,862 497.232,862 536.635,862 576.038,862 615.441,862 654.844,862 694.247,861.68 733.65,861.68 \n", " 773.053,861.68 812.456,860.849 840.046,859.3 851.859,858.297 875.242,854.046 885.954,848.792 891.262,844.79 894.562,843.539 904.608,838.285 910.533,833.031 \n", " 930.665,831.368 970.068,830.929 1009.47,830.233 1048.87,829.762 1088.28,829.728 1127.68,829.695 1167.08,829.695 1206.49,829.728 1245.89,829.762 1285.29,830.233 \n", " 1324.7,830.929 1364.1,831.368 1384.23,833.031 1390.16,838.285 1400.2,843.539 1403.5,844.79 1408.81,848.792 1419.52,854.046 1442.9,858.297 1454.72,859.3 \n", " 1482.31,860.849 1521.71,861.68 1561.11,861.68 1600.52,861.68 1639.92,862 1679.32,862 1718.73,862 1758.13,862 1797.53,862 1836.93,862 \n", " 1876.34,861.558 1915.74,860.012 1926.09,859.3 1955.14,855.684 1961.7,854.046 1973.12,848.792 1976.67,843.539 1976.67,838.285 1976.67,833.031 1976.67,827.777 \n", " 1976.67,822.524 1976.67,817.27 1976.67,812.016 1976.67,806.762 1976.67,801.509 1976.67,796.255 1976.67,791.001 1976.67,785.747 1976.67,780.494 1976.67,775.24 \n", " 1976.67,769.986 1976.67,764.733 1976.67,759.479 1976.67,754.225 1976.67,748.971 1976.67,743.718 1976.67,738.464 1976.67,733.21 1976.67,727.956 1976.67,722.703 \n", " 1976.67,717.449 1976.67,712.195 1976.67,706.941 1976.67,701.688 1976.67,696.434 1976.67,691.18 1973.12,685.927 1961.7,680.673 1955.14,679.034 1926.09,675.419 \n", " 1915.74,674.707 1876.34,673.161 1836.93,672.719 1797.53,672.719 1758.13,672.719 1718.73,672.719 1679.32,672.719 1639.92,672.719 1600.52,673.038 1561.11,673.038 \n", " 1521.71,673.038 1482.31,673.87 1454.72,675.419 1442.9,676.421 1419.52,680.673 1408.81,685.927 1403.5,689.928 1400.2,691.18 1390.16,696.434 1384.23,701.688 \n", " 1364.1,703.35 1324.7,703.789 1285.29,704.485 1245.89,704.956 1206.49,704.991 1167.08,705.024 1127.68,705.024 1088.28,704.991 1048.87,704.956 1009.47,704.485 \n", " 970.068,703.789 930.665,703.35 910.533,701.688 904.608,696.434 894.562,691.18 891.262,689.928 885.954,685.927 875.242,680.673 851.859,676.421 840.046,675.419 \n", " 812.456,673.87 773.053,673.038 733.65,673.038 694.247,673.038 654.844,672.719 615.441,672.719 576.038,672.719 536.635,672.719 497.232,672.719 457.829,672.719 \n", " 418.426,673.161 379.023,674.707 368.672,675.419 339.62,679.034 333.067,680.673 321.641,685.927 318.094,691.18 318.094,696.434 318.094,701.688 318.094,706.941 \n", " 318.094,712.195 318.094,717.449 318.094,722.703 318.094,727.956 318.094,733.21 318.094,738.464 318.094,743.718 318.094,748.971 318.094,754.225 318.094,759.479 \n", " 318.094,764.733 318.094,769.986 318.094,775.24 318.094,780.494 318.094,785.747 318.094,791.001 318.094,796.255 318.094,801.509 318.094,806.762 318.094,812.016 \n", " 318.094,817.27 318.094,822.524 318.094,827.777 318.094,833.031 318.094,838.285 318.094,843.539 321.641,848.792 333.067,854.046 339.62,855.684 368.672,859.3 \n", " 379.023,860.012 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 457.829,859.446 497.232,859.446 536.635,859.446 576.038,859.446 615.441,859.446 654.844,859.446 664.695,859.3 694.247,858.869 733.65,858.869 773.053,858.869 \n", " 812.456,857.413 844.446,854.046 851.859,852.698 865.869,848.792 878.205,843.539 885.256,838.285 889.653,833.031 891.262,832.746 930.665,829.424 970.068,828.545 \n", " 994.242,827.777 1009.47,827.326 1048.87,826.69 1088.28,826.69 1127.68,826.69 1167.08,826.69 1206.49,826.69 1245.89,826.69 1285.29,827.326 1300.52,827.777 \n", " 1324.7,828.545 1364.1,829.424 1403.5,832.746 1405.11,833.031 1409.51,838.285 1416.56,843.539 1428.89,848.792 1442.9,852.698 1450.32,854.046 1482.31,857.413 \n", " 1521.71,858.869 1561.11,858.869 1600.52,858.869 1630.07,859.3 1639.92,859.446 1679.32,859.446 1718.73,859.446 1758.13,859.446 1797.53,859.446 1836.93,859.446 \n", " 1844.36,859.3 1876.34,858.655 1915.74,855.949 1930.49,854.046 1951.91,848.792 1955.14,846.477 1958.79,843.539 1958.79,838.285 1958.79,833.031 1958.79,827.777 \n", " 1958.79,822.524 1958.79,817.27 1958.79,812.016 1958.79,806.762 1958.79,801.509 1958.79,796.255 1958.79,791.001 1958.79,785.747 1958.79,780.494 1958.79,775.24 \n", " 1958.79,769.986 1958.79,764.733 1958.79,759.479 1958.79,754.225 1958.79,748.971 1958.79,743.718 1958.79,738.464 1958.79,733.21 1958.79,727.956 1958.79,722.703 \n", " 1958.79,717.449 1958.79,712.195 1958.79,706.941 1958.79,701.688 1958.79,696.434 1958.79,691.18 1955.14,688.242 1951.91,685.927 1930.49,680.673 1915.74,678.769 \n", " 1876.34,676.064 1844.36,675.419 1836.93,675.273 1797.53,675.273 1758.13,675.273 1718.73,675.273 1679.32,675.273 1639.92,675.273 1630.07,675.419 1600.52,675.85 \n", " 1561.11,675.85 1521.71,675.85 1482.31,677.305 1450.32,680.673 1442.9,682.021 1428.89,685.927 1416.56,691.18 1409.51,696.434 1405.11,701.688 1403.5,701.973 \n", " 1364.1,705.294 1324.7,706.174 1300.52,706.941 1285.29,707.392 1245.89,708.029 1206.49,708.029 1167.08,708.029 1127.68,708.029 1088.28,708.029 1048.87,708.029 \n", " 1009.47,707.392 994.242,706.941 970.068,706.174 930.665,705.294 891.262,701.973 889.653,701.688 885.256,696.434 878.205,691.18 865.869,685.927 851.859,682.021 \n", " 844.446,680.673 812.456,677.305 773.053,675.85 733.65,675.85 694.247,675.85 664.695,675.419 654.844,675.273 615.441,675.273 576.038,675.273 536.635,675.273 \n", " 497.232,675.273 457.829,675.273 450.403,675.419 418.426,676.064 379.023,678.769 364.273,680.673 342.849,685.927 339.62,688.242 335.972,691.18 335.972,696.434 \n", " 335.972,701.688 335.972,706.941 335.972,712.195 335.972,717.449 335.972,722.703 335.972,727.956 335.972,733.21 335.972,738.464 335.972,743.718 335.972,748.971 \n", " 335.972,754.225 335.972,759.479 335.972,764.733 335.972,769.986 335.972,775.24 335.972,780.494 335.972,785.747 335.972,791.001 335.972,796.255 335.972,801.509 \n", " 335.972,806.762 335.972,812.016 335.972,817.27 335.972,822.524 335.972,827.777 335.972,833.031 335.972,838.285 335.972,843.539 339.62,846.477 342.849,848.792 \n", " 364.273,854.046 379.023,855.949 418.426,858.655 450.403,859.3 457.829,859.446 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 418.426,856.034 457.829,857.193 497.232,857.193 536.635,857.193 576.038,857.193 615.441,857.193 654.844,857.193 694.247,856.355 733.65,856.355 773.053,856.355 \n", " 812.456,854.172 813.649,854.046 845.785,848.792 851.859,847.415 863.972,843.539 874.32,838.285 880.775,833.031 891.262,831.175 928.064,827.777 930.665,827.555 \n", " 970.068,826.587 1009.47,825.104 1048.87,824.176 1088.28,824.176 1127.68,824.176 1167.08,824.176 1206.49,824.176 1245.89,824.176 1285.29,825.104 1324.7,826.587 \n", " 1364.1,827.555 1366.7,827.777 1403.5,831.175 1413.99,833.031 1420.44,838.285 1430.79,843.539 1442.9,847.415 1448.98,848.792 1481.11,854.046 1482.31,854.172 \n", " 1521.71,856.355 1561.11,856.355 1600.52,856.355 1639.92,857.193 1679.32,857.193 1718.73,857.193 1758.13,857.193 1797.53,857.193 1836.93,857.193 1876.34,856.034 \n", " 1899.69,854.046 1915.74,851.976 1931.83,848.792 1947.32,843.539 1949.33,838.285 1950.52,833.031 1951.2,827.777 1951.21,822.524 1951.21,817.27 1951.21,812.016 \n", " 1951.21,806.762 1951.21,801.509 1951.21,796.255 1951.21,791.001 1951.21,785.747 1951.21,780.494 1951.21,775.24 1951.21,769.986 1951.21,764.733 1951.21,759.479 \n", " 1951.21,754.225 1951.21,748.971 1951.21,743.718 1951.21,738.464 1951.21,733.21 1951.21,727.956 1951.21,722.703 1951.21,717.449 1951.21,712.195 1951.2,706.941 \n", " 1950.52,701.688 1949.33,696.434 1947.32,691.18 1931.83,685.927 1915.74,682.743 1899.69,680.673 1876.34,678.685 1836.93,677.526 1797.53,677.526 1758.13,677.526 \n", " 1718.73,677.526 1679.32,677.526 1639.92,677.526 1600.52,678.364 1561.11,678.364 1521.71,678.364 1482.31,680.547 1481.11,680.673 1448.98,685.927 1442.9,687.304 \n", " 1430.79,691.18 1420.44,696.434 1413.99,701.688 1403.5,703.544 1366.7,706.941 1364.1,707.163 1324.7,708.132 1285.29,709.615 1245.89,710.543 1206.49,710.543 \n", " 1167.08,710.543 1127.68,710.543 1088.28,710.543 1048.87,710.543 1009.47,709.615 970.068,708.132 930.665,707.163 928.064,706.941 891.262,703.544 880.775,701.688 \n", " 874.32,696.434 863.972,691.18 851.859,687.304 845.785,685.927 813.649,680.673 812.456,680.547 773.053,678.364 733.65,678.364 694.247,678.364 654.844,677.526 \n", " 615.441,677.526 576.038,677.526 536.635,677.526 497.232,677.526 457.829,677.526 418.426,678.685 395.069,680.673 379.023,682.743 362.934,685.927 347.445,691.18 \n", " 345.434,696.434 344.246,701.688 343.561,706.941 343.552,712.195 343.552,717.449 343.552,722.703 343.552,727.956 343.552,733.21 343.552,738.464 343.552,743.718 \n", " 343.552,748.971 343.552,754.225 343.552,759.479 343.552,764.733 343.552,769.986 343.552,775.24 343.552,780.494 343.552,785.747 343.552,791.001 343.552,796.255 \n", " 343.552,801.509 343.552,806.762 343.552,812.016 343.552,817.27 343.552,822.524 343.561,827.777 344.246,833.031 345.434,838.285 347.445,843.539 362.934,848.792 \n", " 379.023,851.976 395.069,854.046 418.426,856.034 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 457.829,854.958 497.232,854.958 536.635,854.958 576.038,854.958 615.441,854.958 654.844,854.958 687.68,854.046 694.247,853.841 733.65,853.841 773.053,853.841 \n", " 812.456,850.93 825.7,848.792 849.738,843.539 851.859,842.888 863.385,838.285 871.897,833.031 891.262,829.603 911.043,827.777 930.665,826.103 970.068,824.83 \n", " 1009.47,822.882 1022.07,822.524 1048.87,821.662 1088.28,821.662 1127.68,821.662 1167.08,821.662 1206.49,821.662 1245.89,821.662 1272.69,822.524 1285.29,822.882 \n", " 1324.7,824.83 1364.1,826.103 1383.72,827.777 1403.5,829.603 1422.87,833.031 1431.38,838.285 1442.9,842.888 1445.03,843.539 1469.06,848.792 1482.31,850.93 \n", " 1521.71,853.841 1561.11,853.841 1600.52,853.841 1607.08,854.046 1639.92,854.958 1679.32,854.958 1718.73,854.958 1758.13,854.958 1797.53,854.958 1836.93,854.958 \n", " 1861.69,854.046 1876.34,853.413 1911.75,848.792 1915.74,848.359 1937.49,843.539 1942.02,838.285 1944.71,833.031 1946.25,827.777 1946.27,822.524 1946.27,817.27 \n", " 1946.27,812.016 1946.27,806.762 1946.27,801.509 1946.27,796.255 1946.27,791.001 1946.27,785.747 1946.27,780.494 1946.27,775.24 1946.27,769.986 1946.27,764.733 \n", " 1946.27,759.479 1946.27,754.225 1946.27,748.971 1946.27,743.718 1946.27,738.464 1946.27,733.21 1946.27,727.956 1946.27,722.703 1946.27,717.449 1946.27,712.195 \n", " 1946.25,706.941 1944.71,701.688 1942.02,696.434 1937.49,691.18 1915.74,686.36 1911.75,685.927 1876.34,681.306 1861.69,680.673 1836.93,679.761 1797.53,679.761 \n", " 1758.13,679.761 1718.73,679.761 1679.32,679.761 1639.92,679.761 1607.08,680.673 1600.52,680.878 1561.11,680.878 1521.71,680.878 1482.31,683.789 1469.06,685.927 \n", " 1445.03,691.18 1442.9,691.831 1431.38,696.434 1422.87,701.688 1403.5,705.115 1383.72,706.941 1364.1,708.615 1324.7,709.889 1285.29,711.837 1272.69,712.195 \n", " 1245.89,713.057 1206.49,713.057 1167.08,713.057 1127.68,713.057 1088.28,713.057 1048.87,713.057 1022.07,712.195 1009.47,711.837 970.068,709.889 930.665,708.615 \n", " 911.043,706.941 891.262,705.115 871.897,701.688 863.385,696.434 851.859,691.831 849.738,691.18 825.7,685.927 812.456,683.789 773.053,680.878 733.65,680.878 \n", " 694.247,680.878 687.68,680.673 654.844,679.761 615.441,679.761 576.038,679.761 536.635,679.761 497.232,679.761 457.829,679.761 433.076,680.673 418.426,681.306 \n", " 383.018,685.927 379.023,686.36 357.277,691.18 352.739,696.434 350.057,701.688 348.512,706.941 348.493,712.195 348.493,717.449 348.493,722.703 348.493,727.956 \n", " 348.493,733.21 348.493,738.464 348.493,743.718 348.493,748.971 348.493,754.225 348.493,759.479 348.493,764.733 348.493,769.986 348.493,775.24 348.493,780.494 \n", " 348.493,785.747 348.493,791.001 348.493,796.255 348.493,801.509 348.493,806.762 348.493,812.016 348.493,817.27 348.493,822.524 348.512,827.777 350.057,833.031 \n", " 352.739,838.285 357.277,843.539 379.023,848.359 383.018,848.792 418.426,853.413 433.076,854.046 457.829,854.958 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 418.426,850.792 457.829,852.723 497.232,852.723 536.635,852.723 576.038,852.723 615.441,852.723 654.844,852.723 694.247,851.327 733.65,851.327 773.053,851.327 \n", " 802.506,848.792 812.456,847.879 835.504,843.539 851.859,838.521 852.45,838.285 863.02,833.031 891.262,828.032 894.021,827.777 930.665,824.651 970.068,823.074 \n", " 980.779,822.524 1009.47,820.659 1048.87,819.148 1088.28,819.148 1127.68,819.148 1167.08,819.148 1206.49,819.148 1245.89,819.148 1285.29,820.659 1313.98,822.524 \n", " 1324.7,823.074 1364.1,824.651 1400.74,827.777 1403.5,828.032 1431.74,833.031 1442.31,838.285 1442.9,838.521 1459.26,843.539 1482.31,847.879 1492.26,848.792 \n", " 1521.71,851.327 1561.11,851.327 1600.52,851.327 1639.92,852.723 1679.32,852.723 1718.73,852.723 1758.13,852.723 1797.53,852.723 1836.93,852.723 1876.34,850.792 \n", " 1891.66,848.792 1915.74,846.18 1927.66,843.539 1934.72,838.285 1938.89,833.031 1941.3,827.777 1941.33,822.524 1941.33,817.27 1941.33,812.016 1941.33,806.762 \n", " 1941.33,801.509 1941.33,796.255 1941.33,791.001 1941.33,785.747 1941.33,780.494 1941.33,775.24 1941.33,769.986 1941.33,764.733 1941.33,759.479 1941.33,754.225 \n", " 1941.33,748.971 1941.33,743.718 1941.33,738.464 1941.33,733.21 1941.33,727.956 1941.33,722.703 1941.33,717.449 1941.33,712.195 1941.3,706.941 1938.89,701.688 \n", " 1934.72,696.434 1927.66,691.18 1915.74,688.539 1891.66,685.927 1876.34,683.927 1836.93,681.995 1797.53,681.995 1758.13,681.995 1718.73,681.995 1679.32,681.995 \n", " 1639.92,681.995 1600.52,683.392 1561.11,683.392 1521.71,683.392 1492.26,685.927 1482.31,686.84 1459.26,691.18 1442.9,696.198 1442.31,696.434 1431.74,701.688 \n", " 1403.5,706.687 1400.74,706.941 1364.1,710.068 1324.7,711.645 1313.98,712.195 1285.29,714.059 1245.89,715.571 1206.49,715.571 1167.08,715.571 1127.68,715.571 \n", " 1088.28,715.571 1048.87,715.571 1009.47,714.059 980.779,712.195 970.068,711.645 930.665,710.068 894.021,706.941 891.262,706.687 863.02,701.688 852.45,696.434 \n", " 851.859,696.198 835.504,691.18 812.456,686.84 802.506,685.927 773.053,683.392 733.65,683.392 694.247,683.392 654.844,681.995 615.441,681.995 576.038,681.995 \n", " 536.635,681.995 497.232,681.995 457.829,681.995 418.426,683.927 403.103,685.927 379.023,688.539 367.108,691.18 360.045,696.434 355.869,701.688 353.463,706.941 \n", " 353.433,712.195 353.433,717.449 353.433,722.703 353.433,727.956 353.433,733.21 353.433,738.464 353.433,743.718 353.433,748.971 353.433,754.225 353.433,759.479 \n", " 353.433,764.733 353.433,769.986 353.433,775.24 353.433,780.494 353.433,785.747 353.433,791.001 353.433,796.255 353.433,801.509 353.433,806.762 353.433,812.016 \n", " 353.433,817.27 353.433,822.524 353.463,827.777 355.869,833.031 360.045,838.285 367.108,843.539 379.023,846.18 403.103,848.792 418.426,850.792 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 457.829,850.489 497.232,850.489 536.635,850.489 576.038,850.489 615.441,850.489 654.844,850.489 694.247,848.813 733.65,848.813 773.053,848.813 773.292,848.792 \n", " 812.456,845.199 821.271,843.539 841.515,838.285 851.859,834.154 854.142,833.031 885.106,827.777 891.262,826.627 930.665,823.199 946.575,822.524 970.068,821.317 \n", " 1009.47,818.437 1036.06,817.27 1048.87,816.727 1088.28,816.727 1127.68,816.727 1167.08,816.727 1206.49,816.727 1245.89,816.727 1258.7,817.27 1285.29,818.437 \n", " 1324.7,821.317 1348.19,822.524 1364.1,823.199 1403.5,826.627 1409.66,827.777 1440.62,833.031 1442.9,834.154 1453.25,838.285 1473.49,843.539 1482.31,845.199 \n", " 1521.47,848.792 1521.71,848.813 1561.11,848.813 1600.52,848.813 1639.92,850.489 1679.32,850.489 1718.73,850.489 1758.13,850.489 1797.53,850.489 1836.93,850.489 \n", " 1866.96,848.792 1876.34,848.341 1915.74,844 1917.82,843.539 1927.41,838.285 1933.08,833.031 1936.35,827.777 1936.39,822.524 1936.39,817.27 1936.39,812.016 \n", " 1936.39,806.762 1936.39,801.509 1936.39,796.255 1936.39,791.001 1936.39,785.747 1936.39,780.494 1936.39,775.24 1936.39,769.986 1936.39,764.733 1936.39,759.479 \n", " 1936.39,754.225 1936.39,748.971 1936.39,743.718 1936.39,738.464 1936.39,733.21 1936.39,727.956 1936.39,722.703 1936.39,717.449 1936.39,712.195 1936.35,706.941 \n", " 1933.08,701.688 1927.41,696.434 1917.82,691.18 1915.74,690.718 1876.34,686.378 1866.96,685.927 1836.93,684.23 1797.53,684.23 1758.13,684.23 1718.73,684.23 \n", " 1679.32,684.23 1639.92,684.23 1600.52,685.906 1561.11,685.906 1521.71,685.906 1521.47,685.927 1482.31,689.52 1473.49,691.18 1453.25,696.434 1442.9,700.565 \n", " 1440.62,701.688 1409.66,706.941 1403.5,708.091 1364.1,711.52 1348.19,712.195 1324.7,713.402 1285.29,716.282 1258.7,717.449 1245.89,717.992 1206.49,717.992 \n", " 1167.08,717.992 1127.68,717.992 1088.28,717.992 1048.87,717.992 1036.06,717.449 1009.47,716.282 970.068,713.402 946.575,712.195 930.665,711.52 891.262,708.091 \n", " 885.106,706.941 854.142,701.688 851.859,700.565 841.515,696.434 821.271,691.18 812.456,689.52 773.292,685.927 773.053,685.906 733.65,685.906 694.247,685.906 \n", " 654.844,684.23 615.441,684.23 576.038,684.23 536.635,684.23 497.232,684.23 457.829,684.23 427.802,685.927 418.426,686.378 379.023,690.718 376.94,691.18 \n", " 367.35,696.434 361.681,701.688 358.415,706.941 358.374,712.195 358.374,717.449 358.374,722.703 358.374,727.956 358.374,733.21 358.374,738.464 358.374,743.718 \n", " 358.374,748.971 358.374,754.225 358.374,759.479 358.374,764.733 358.374,769.986 358.374,775.24 358.374,780.494 358.374,785.747 358.374,791.001 358.374,796.255 \n", " 358.374,801.509 358.374,806.762 358.374,812.016 358.374,817.27 358.374,822.524 358.415,827.777 361.681,833.031 367.35,838.285 376.94,843.539 379.023,844 \n", " 418.426,848.341 427.802,848.792 457.829,850.489 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 418.426,846.437 457.829,848.254 497.232,848.254 536.635,848.254 576.038,848.254 615.441,848.254 654.844,848.254 694.247,846.72 733.65,846.72 773.053,846.72 \n", " 804.573,843.539 812.456,842.557 830.58,838.285 845.264,833.031 851.859,832.117 877.759,827.777 891.262,825.255 922.32,822.524 930.665,821.747 970.068,819.561 \n", " 998.955,817.27 1009.47,816.227 1048.87,814.582 1088.28,814.582 1127.68,814.582 1167.08,814.582 1206.49,814.582 1245.89,814.582 1285.29,816.227 1295.81,817.27 \n", " 1324.7,819.561 1364.1,821.747 1372.44,822.524 1403.5,825.255 1417,827.777 1442.9,832.117 1449.5,833.031 1464.18,838.285 1482.31,842.557 1490.19,843.539 \n", " 1521.71,846.72 1561.11,846.72 1600.52,846.72 1639.92,848.254 1679.32,848.254 1718.73,848.254 1758.13,848.254 1797.53,848.254 1836.93,848.254 1876.34,846.437 \n", " 1902.3,843.539 1915.74,840.551 1920.11,838.285 1927.27,833.031 1931.4,827.777 1931.45,822.524 1931.45,817.27 1931.45,812.016 1931.45,806.762 1931.45,801.509 \n", " 1931.45,796.255 1931.45,791.001 1931.45,785.747 1931.45,780.494 1931.45,775.24 1931.45,769.986 1931.45,764.733 1931.45,759.479 1931.45,754.225 1931.45,748.971 \n", " 1931.45,743.718 1931.45,738.464 1931.45,733.21 1931.45,727.956 1931.45,722.703 1931.45,717.449 1931.45,712.195 1931.4,706.941 1927.27,701.688 1920.11,696.434 \n", " 1915.74,694.167 1902.3,691.18 1876.34,688.282 1836.93,686.465 1797.53,686.465 1758.13,686.465 1718.73,686.465 1679.32,686.465 1639.92,686.465 1600.52,687.999 \n", " 1561.11,687.999 1521.71,687.999 1490.19,691.18 1482.31,692.162 1464.18,696.434 1449.5,701.688 1442.9,702.602 1417,706.941 1403.5,709.464 1372.44,712.195 \n", " 1364.1,712.972 1324.7,715.158 1295.81,717.449 1285.29,718.492 1245.89,720.137 1206.49,720.137 1167.08,720.137 1127.68,720.137 1088.28,720.137 1048.87,720.137 \n", " 1009.47,718.492 998.955,717.449 970.068,715.158 930.665,712.972 922.32,712.195 891.262,709.464 877.759,706.941 851.859,702.602 845.264,701.688 830.58,696.434 \n", " 812.456,692.162 804.573,691.18 773.053,687.999 733.65,687.999 694.247,687.999 654.844,686.465 615.441,686.465 576.038,686.465 536.635,686.465 497.232,686.465 \n", " 457.829,686.465 418.426,688.282 392.463,691.18 379.023,694.167 374.655,696.434 367.492,701.688 363.366,706.941 363.314,712.195 363.314,717.449 363.314,722.703 \n", " 363.314,727.956 363.314,733.21 363.314,738.464 363.314,743.718 363.314,748.971 363.314,754.225 363.314,759.479 363.314,764.733 363.314,769.986 363.314,775.24 \n", " 363.314,780.494 363.314,785.747 363.314,791.001 363.314,796.255 363.314,801.509 363.314,806.762 363.314,812.016 363.314,817.27 363.314,822.524 363.366,827.777 \n", " 367.492,833.031 374.655,838.285 379.023,840.551 392.463,843.539 418.426,846.437 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 418.426,844.533 457.829,846.02 497.232,846.02 536.635,846.02 576.038,846.02 615.441,846.02 654.844,846.02 694.247,844.63 733.65,844.63 773.053,844.63 \n", " 783.87,843.539 812.456,839.979 819.645,838.285 836.386,833.031 851.859,830.886 870.413,827.777 891.262,823.883 906.717,822.524 930.665,820.295 970.068,817.804 \n", " 976.806,817.27 1009.47,814.031 1048.87,812.436 1088.28,812.436 1127.68,812.436 1167.08,812.436 1206.49,812.436 1245.89,812.436 1285.29,814.031 1317.96,817.27 \n", " 1324.7,817.804 1364.1,820.295 1388.05,822.524 1403.5,823.883 1424.35,827.777 1442.9,830.886 1458.38,833.031 1475.12,838.285 1482.31,839.979 1510.89,843.539 \n", " 1521.71,844.63 1561.11,844.63 1600.52,844.63 1639.92,846.02 1679.32,846.02 1718.73,846.02 1758.13,846.02 1797.53,846.02 1836.93,846.02 1876.34,844.533 \n", " 1885.25,843.539 1911.26,838.285 1915.74,836.761 1921.46,833.031 1926.45,827.777 1926.51,822.524 1926.51,817.27 1926.51,812.016 1926.51,806.762 1926.51,801.509 \n", " 1926.51,796.255 1926.51,791.001 1926.51,785.747 1926.51,780.494 1926.51,775.24 1926.51,769.986 1926.51,764.733 1926.51,759.479 1926.51,754.225 1926.51,748.971 \n", " 1926.51,743.718 1926.51,738.464 1926.51,733.21 1926.51,727.956 1926.51,722.703 1926.51,717.449 1926.51,712.195 1926.45,706.941 1921.46,701.688 1915.74,697.958 \n", " 1911.26,696.434 1885.25,691.18 1876.34,690.186 1836.93,688.699 1797.53,688.699 1758.13,688.699 1718.73,688.699 1679.32,688.699 1639.92,688.699 1600.52,690.089 \n", " 1561.11,690.089 1521.71,690.089 1510.89,691.18 1482.31,694.739 1475.12,696.434 1458.38,701.688 1442.9,703.833 1424.35,706.941 1403.5,710.836 1388.05,712.195 \n", " 1364.1,714.424 1324.7,716.915 1317.96,717.449 1285.29,720.688 1245.89,722.282 1206.49,722.282 1167.08,722.282 1127.68,722.282 1088.28,722.282 1048.87,722.282 \n", " 1009.47,720.688 976.806,717.449 970.068,716.915 930.665,714.424 906.717,712.195 891.262,710.836 870.413,706.941 851.859,703.833 836.386,701.688 819.645,696.434 \n", " 812.456,694.739 783.87,691.18 773.053,690.089 733.65,690.089 694.247,690.089 654.844,688.699 615.441,688.699 576.038,688.699 536.635,688.699 497.232,688.699 \n", " 457.829,688.699 418.426,690.186 409.517,691.18 383.502,696.434 379.023,697.958 373.304,701.688 368.317,706.941 368.255,712.195 368.255,717.449 368.255,722.703 \n", " 368.255,727.956 368.255,733.21 368.255,738.464 368.255,743.718 368.255,748.971 368.255,754.225 368.255,759.479 368.255,764.733 368.255,769.986 368.255,775.24 \n", " 368.255,780.494 368.255,785.747 368.255,791.001 368.255,796.255 368.255,801.509 368.255,806.762 368.255,812.016 368.255,817.27 368.255,822.524 368.317,827.777 \n", " 373.304,833.031 379.023,836.761 383.502,838.285 409.517,843.539 418.426,844.533 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 457.829,843.785 497.232,843.785 536.635,843.785 576.038,843.785 615.441,843.785 654.844,843.785 662.232,843.539 694.247,842.578 733.65,842.578 773.053,842.578 \n", " 807.007,838.285 812.456,837.402 827.509,833.031 851.859,829.655 863.066,827.777 891.186,822.524 891.262,822.508 930.665,818.843 954.656,817.27 970.068,815.654 \n", " 1007.49,812.016 1009.47,811.835 1048.87,810.399 1088.28,810.399 1127.68,810.399 1167.08,810.399 1206.49,810.399 1245.89,810.399 1285.29,811.835 1287.27,812.016 \n", " 1324.7,815.654 1340.11,817.27 1364.1,818.843 1403.5,822.508 1403.58,822.524 1431.7,827.777 1442.9,829.655 1467.26,833.031 1482.31,837.402 1487.76,838.285 \n", " 1521.71,842.578 1561.11,842.578 1600.52,842.578 1632.53,843.539 1639.92,843.785 1679.32,843.785 1718.73,843.785 1758.13,843.785 1797.53,843.785 1836.93,843.785 \n", " 1844.32,843.539 1876.34,842.578 1900.12,838.285 1915.61,833.031 1915.74,832.96 1921.5,827.777 1921.57,822.524 1921.57,817.27 1921.57,812.016 1921.57,806.762 \n", " 1921.57,801.509 1921.57,796.255 1921.57,791.001 1921.57,785.747 1921.57,780.494 1921.57,775.24 1921.57,769.986 1921.57,764.733 1921.57,759.479 1921.57,754.225 \n", " 1921.57,748.971 1921.57,743.718 1921.57,738.464 1921.57,733.21 1921.57,727.956 1921.57,722.703 1921.57,717.449 1921.57,712.195 1921.5,706.941 1915.74,701.759 \n", " 1915.61,701.688 1900.12,696.434 1876.34,692.141 1844.32,691.18 1836.93,690.934 1797.53,690.934 1758.13,690.934 1718.73,690.934 1679.32,690.934 1639.92,690.934 \n", " 1632.53,691.18 1600.52,692.141 1561.11,692.141 1521.71,692.141 1487.76,696.434 1482.31,697.317 1467.26,701.688 1442.9,705.064 1431.7,706.941 1403.58,712.195 \n", " 1403.5,712.21 1364.1,715.876 1340.11,717.449 1324.7,719.065 1287.27,722.703 1285.29,722.883 1245.89,724.32 1206.49,724.32 1167.08,724.32 1127.68,724.32 \n", " 1088.28,724.32 1048.87,724.32 1009.47,722.883 1007.49,722.703 970.068,719.065 954.656,717.449 930.665,715.876 891.262,712.21 891.186,712.195 863.066,706.941 \n", " 851.859,705.064 827.509,701.688 812.456,697.317 807.007,696.434 773.053,692.141 733.65,692.141 694.247,692.141 662.232,691.18 654.844,690.934 615.441,690.934 \n", " 576.038,690.934 536.635,690.934 497.232,690.934 457.829,690.934 450.441,691.18 418.426,692.141 394.643,696.434 379.155,701.688 379.023,701.759 373.268,706.941 \n", " 373.195,712.195 373.195,717.449 373.195,722.703 373.195,727.956 373.195,733.21 373.195,738.464 373.195,743.718 373.195,748.971 373.195,754.225 373.195,759.479 \n", " 373.195,764.733 373.195,769.986 373.195,775.24 373.195,780.494 373.195,785.747 373.195,791.001 373.195,796.255 373.195,801.509 373.195,806.762 373.195,812.016 \n", " 373.195,817.27 373.195,822.524 373.268,827.777 379.023,832.96 379.155,833.031 394.643,838.285 418.426,842.578 450.441,843.539 457.829,843.785 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 418.426,840.567 457.829,841.55 497.232,841.55 536.635,841.55 576.038,841.55 615.441,841.55 654.844,841.55 694.247,840.567 733.65,840.567 773.053,840.567 \n", " 791.101,838.285 812.456,834.824 818.631,833.031 851.859,828.424 855.719,827.777 883.191,822.524 891.262,820.915 930.665,817.391 932.506,817.27 970.068,813.331 \n", " 983.596,812.016 1009.47,809.651 1048.87,808.388 1088.28,808.388 1127.68,808.388 1167.08,808.388 1206.49,808.388 1245.89,808.388 1285.29,809.651 1311.17,812.016 \n", " 1324.7,813.331 1362.26,817.27 1364.1,817.391 1403.5,820.915 1411.57,822.524 1439.04,827.777 1442.9,828.424 1476.13,833.031 1482.31,834.824 1503.66,838.285 \n", " 1521.71,840.567 1561.11,840.567 1600.52,840.567 1639.92,841.55 1679.32,841.55 1718.73,841.55 1758.13,841.55 1797.53,841.55 1836.93,841.55 1876.34,840.567 \n", " 1888.98,838.285 1907.34,833.031 1915.74,828.501 1916.54,827.777 1916.63,822.524 1916.63,817.27 1916.63,812.016 1916.63,806.762 1916.63,801.509 1916.63,796.255 \n", " 1916.63,791.001 1916.63,785.747 1916.63,780.494 1916.63,775.24 1916.63,769.986 1916.63,764.733 1916.63,759.479 1916.63,754.225 1916.63,748.971 1916.63,743.718 \n", " 1916.63,738.464 1916.63,733.21 1916.63,727.956 1916.63,722.703 1916.63,717.449 1916.63,712.195 1916.54,706.941 1915.74,706.218 1907.34,701.688 1888.98,696.434 \n", " 1876.34,694.152 1836.93,693.169 1797.53,693.169 1758.13,693.169 1718.73,693.169 1679.32,693.169 1639.92,693.169 1600.52,694.152 1561.11,694.152 1521.71,694.152 \n", " 1503.66,696.434 1482.31,699.895 1476.13,701.688 1442.9,706.295 1439.04,706.941 1411.57,712.195 1403.5,713.804 1364.1,717.328 1362.26,717.449 1324.7,721.388 \n", " 1311.17,722.703 1285.29,725.068 1245.89,726.331 1206.49,726.331 1167.08,726.331 1127.68,726.331 1088.28,726.331 1048.87,726.331 1009.47,725.068 983.596,722.703 \n", " 970.068,721.388 932.506,717.449 930.665,717.328 891.262,713.804 883.191,712.195 855.719,706.941 851.859,706.295 818.631,701.688 812.456,699.895 791.101,696.434 \n", " 773.053,694.152 733.65,694.152 694.247,694.152 654.844,693.169 615.441,693.169 576.038,693.169 536.635,693.169 497.232,693.169 457.829,693.169 418.426,694.152 \n", " 405.784,696.434 387.428,701.688 379.023,706.218 378.22,706.941 378.136,712.195 378.136,717.449 378.136,722.703 378.136,727.956 378.136,733.21 378.136,738.464 \n", " 378.136,743.718 378.136,748.971 378.136,754.225 378.136,759.479 378.136,764.733 378.136,769.986 378.136,775.24 378.136,780.494 378.136,785.747 378.136,791.001 \n", " 378.136,796.255 378.136,801.509 378.136,806.762 378.136,812.016 378.136,817.27 378.136,822.524 378.22,827.777 379.023,828.501 387.428,833.031 405.784,838.285 \n", " 418.426,840.567 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 418.426,838.556 457.829,839.316 497.232,839.316 536.635,839.316 576.038,839.316 615.441,839.316 654.844,839.316 694.247,838.556 733.65,838.556 773.053,838.556 \n", " 775.196,838.285 808.525,833.031 812.456,832.454 845.505,827.777 851.859,827.043 875.196,822.524 891.262,819.322 914.276,817.27 930.665,815.01 959.699,812.016 \n", " 970.068,810.835 1009.47,807.466 1034.16,806.762 1048.87,806.377 1088.28,806.377 1127.68,806.377 1167.08,806.377 1206.49,806.377 1245.89,806.377 1260.6,806.762 \n", " 1285.29,807.466 1324.7,810.835 1335.07,812.016 1364.1,815.01 1380.49,817.27 1403.5,819.322 1419.57,822.524 1442.9,827.043 1449.26,827.777 1482.31,832.454 \n", " 1486.24,833.031 1519.57,838.285 1521.71,838.556 1561.11,838.556 1600.52,838.556 1639.92,839.316 1679.32,839.316 1718.73,839.316 1758.13,839.316 1797.53,839.316 \n", " 1836.93,839.316 1876.34,838.556 1877.84,838.285 1899.06,833.031 1910.05,827.777 1910.19,822.524 1910.19,817.27 1910.19,812.016 1910.19,806.762 1910.19,801.509 \n", " 1910.19,796.255 1910.19,791.001 1910.19,785.747 1910.19,780.494 1910.19,775.24 1910.19,769.986 1910.19,764.733 1910.19,759.479 1910.19,754.225 1910.19,748.971 \n", " 1910.19,743.718 1910.19,738.464 1910.19,733.21 1910.19,727.956 1910.19,722.703 1910.19,717.449 1910.19,712.195 1910.05,706.941 1899.06,701.688 1877.84,696.434 \n", " 1876.34,696.163 1836.93,695.403 1797.53,695.403 1758.13,695.403 1718.73,695.403 1679.32,695.403 1639.92,695.403 1600.52,696.163 1561.11,696.163 1521.71,696.163 \n", " 1519.57,696.434 1486.24,701.688 1482.31,702.265 1449.26,706.941 1442.9,707.676 1419.57,712.195 1403.5,715.397 1380.49,717.449 1364.1,719.709 1335.07,722.703 \n", " 1324.7,723.884 1285.29,727.253 1260.6,727.956 1245.89,728.342 1206.49,728.342 1167.08,728.342 1127.68,728.342 1088.28,728.342 1048.87,728.342 1034.16,727.956 \n", " 1009.47,727.253 970.068,723.884 959.699,722.703 930.665,719.709 914.276,717.449 891.262,715.397 875.196,712.195 851.859,707.676 845.505,706.941 812.456,702.265 \n", " 808.525,701.688 775.196,696.434 773.053,696.163 733.65,696.163 694.247,696.163 654.844,695.403 615.441,695.403 576.038,695.403 536.635,695.403 497.232,695.403 \n", " 457.829,695.403 418.426,696.163 416.926,696.434 395.701,701.688 384.709,706.941 384.577,712.195 384.577,717.449 384.577,722.703 384.577,727.956 384.577,733.21 \n", " 384.577,738.464 384.577,743.718 384.577,748.971 384.577,754.225 384.577,759.479 384.577,764.733 384.577,769.986 384.577,775.24 384.577,780.494 384.577,785.747 \n", " 384.577,791.001 384.577,796.255 384.577,801.509 384.577,806.762 384.577,812.016 384.577,817.27 384.577,822.524 384.709,827.777 395.701,833.031 416.926,838.285 \n", " 418.426,838.556 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 418.426,836.545 457.829,837.081 497.232,837.081 536.635,837.081 576.038,837.081 615.441,837.081 654.844,837.081 694.247,836.545 733.65,836.545 773.053,836.545 \n", " 795.612,833.031 812.456,830.56 832.116,827.777 851.859,825.494 867.201,822.524 891.262,817.728 896.402,817.27 930.665,812.546 935.801,812.016 970.068,808.114 \n", " 986.727,806.762 1009.47,805.281 1048.87,804.365 1088.28,804.365 1127.68,804.365 1167.08,804.365 1206.49,804.365 1245.89,804.365 1285.29,805.281 1308.04,806.762 \n", " 1324.7,808.114 1358.96,812.016 1364.1,812.546 1398.36,817.27 1403.5,817.728 1427.56,822.524 1442.9,825.494 1462.65,827.777 1482.31,830.56 1499.15,833.031 \n", " 1521.71,836.545 1561.11,836.545 1600.52,836.545 1639.92,837.081 1679.32,837.081 1718.73,837.081 1758.13,837.081 1797.53,837.081 1836.93,837.081 1876.34,836.545 \n", " 1890.79,833.031 1903.27,827.777 1903.42,822.524 1903.42,817.27 1903.42,812.016 1903.42,806.762 1903.42,801.509 1903.42,796.255 1903.42,791.001 1903.42,785.747 \n", " 1903.42,780.494 1903.42,775.24 1903.42,769.986 1903.42,764.733 1903.42,759.479 1903.42,754.225 1903.42,748.971 1903.42,743.718 1903.42,738.464 1903.42,733.21 \n", " 1903.42,727.956 1903.42,722.703 1903.42,717.449 1903.42,712.195 1903.27,706.941 1890.79,701.688 1876.34,698.174 1836.93,697.638 1797.53,697.638 1758.13,697.638 \n", " 1718.73,697.638 1679.32,697.638 1639.92,697.638 1600.52,698.174 1561.11,698.174 1521.71,698.174 1499.15,701.688 1482.31,704.159 1462.65,706.941 1442.9,709.224 \n", " 1427.56,712.195 1403.5,716.991 1398.36,717.449 1364.1,722.173 1358.96,722.703 1324.7,726.605 1308.04,727.956 1285.29,729.438 1245.89,730.353 1206.49,730.353 \n", " 1167.08,730.353 1127.68,730.353 1088.28,730.353 1048.87,730.353 1009.47,729.438 986.727,727.956 970.068,726.605 935.801,722.703 930.665,722.173 896.402,717.449 \n", " 891.262,716.991 867.201,712.195 851.859,709.224 832.116,706.941 812.456,704.159 795.612,701.688 773.053,698.174 733.65,698.174 694.247,698.174 654.844,697.638 \n", " 615.441,697.638 576.038,697.638 536.635,697.638 497.232,697.638 457.829,697.638 418.426,698.174 403.974,701.688 391.497,706.941 391.347,712.195 391.347,717.449 \n", " 391.347,722.703 391.347,727.956 391.347,733.21 391.347,738.464 391.347,743.718 391.347,748.971 391.347,754.225 391.347,759.479 391.347,764.733 391.347,769.986 \n", " 391.347,775.24 391.347,780.494 391.347,785.747 391.347,791.001 391.347,796.255 391.347,801.509 391.347,806.762 391.347,812.016 391.347,817.27 391.347,822.524 \n", " 391.497,827.777 403.974,833.031 418.426,836.545 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 418.426,834.533 457.829,834.846 497.232,834.846 536.635,834.846 576.038,834.846 615.441,834.846 654.844,834.846 694.247,834.533 733.65,834.533 773.053,834.533 \n", " 782.699,833.031 812.456,828.665 818.728,827.777 851.859,823.946 859.206,822.524 881.716,817.27 891.262,814.38 908.048,812.016 930.665,809.184 953.18,806.762 \n", " 970.068,805.392 1009.47,803.097 1048.87,802.354 1088.28,802.354 1127.68,802.354 1167.08,802.354 1206.49,802.354 1245.89,802.354 1285.29,803.097 1324.7,805.392 \n", " 1341.58,806.762 1364.1,809.184 1386.72,812.016 1403.5,814.38 1413.05,817.27 1435.56,822.524 1442.9,823.946 1476.04,827.777 1482.31,828.665 1512.07,833.031 \n", " 1521.71,834.533 1561.11,834.533 1600.52,834.533 1639.92,834.846 1679.32,834.846 1718.73,834.846 1758.13,834.846 1797.53,834.846 1836.93,834.846 1876.34,834.533 \n", " 1882.52,833.031 1896.48,827.777 1896.65,822.524 1896.65,817.27 1896.65,812.016 1896.65,806.762 1896.65,801.509 1896.65,796.255 1896.65,791.001 1896.65,785.747 \n", " 1896.65,780.494 1896.65,775.24 1896.65,769.986 1896.65,764.733 1896.65,759.479 1896.65,754.225 1896.65,748.971 1896.65,743.718 1896.65,738.464 1896.65,733.21 \n", " 1896.65,727.956 1896.65,722.703 1896.65,717.449 1896.65,712.195 1896.48,706.941 1882.52,701.688 1876.34,700.185 1836.93,699.873 1797.53,699.873 1758.13,699.873 \n", " 1718.73,699.873 1679.32,699.873 1639.92,699.873 1600.52,700.185 1561.11,700.185 1521.71,700.185 1512.07,701.688 1482.31,706.054 1476.04,706.941 1442.9,710.773 \n", " 1435.56,712.195 1413.05,717.449 1403.5,720.339 1386.72,722.703 1364.1,725.535 1341.58,727.956 1324.7,729.326 1285.29,731.622 1245.89,732.365 1206.49,732.365 \n", " 1167.08,732.365 1127.68,732.365 1088.28,732.365 1048.87,732.365 1009.47,731.622 970.068,729.326 953.18,727.956 930.665,725.535 908.048,722.703 891.262,720.339 \n", " 881.716,717.449 859.206,712.195 851.859,710.773 818.728,706.941 812.456,706.054 782.699,701.688 773.053,700.185 733.65,700.185 694.247,700.185 654.844,699.873 \n", " 615.441,699.873 576.038,699.873 536.635,699.873 497.232,699.873 457.829,699.873 418.426,700.185 412.247,701.688 398.285,706.941 398.117,712.195 398.117,717.449 \n", " 398.117,722.703 398.117,727.956 398.117,733.21 398.117,738.464 398.117,743.718 398.117,748.971 398.117,754.225 398.117,759.479 398.117,764.733 398.117,769.986 \n", " 398.117,775.24 398.117,780.494 398.117,785.747 398.117,791.001 398.117,796.255 398.117,801.509 398.117,806.762 398.117,812.016 398.117,817.27 398.117,822.524 \n", " 398.285,827.777 412.247,833.031 418.426,834.533 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 418.426,832.432 457.829,831.772 497.232,831.772 536.635,831.772 576.038,831.772 615.441,831.772 654.844,831.772 694.247,831.759 733.65,831.759 773.053,831.759 \n", " 796.629,827.777 812.456,826.34 849.719,822.524 851.859,822.198 868.318,817.27 872.981,812.016 891.262,809.862 916.722,806.762 930.665,805.576 970.068,802.671 \n", " 994.099,801.509 1009.47,800.643 1048.87,799.748 1088.28,799.471 1127.68,799.092 1167.08,799.092 1206.49,799.471 1245.89,799.748 1285.29,800.643 1300.67,801.509 \n", " 1324.7,802.671 1364.1,805.576 1378.04,806.762 1403.5,809.862 1421.78,812.016 1426.45,817.27 1442.9,822.198 1445.05,822.524 1482.31,826.34 1498.13,827.777 \n", " 1521.71,831.759 1561.11,831.759 1600.52,831.759 1639.92,831.772 1679.32,831.772 1718.73,831.772 1758.13,831.772 1797.53,831.772 1836.93,831.772 1876.34,832.432 \n", " 1889.69,827.777 1889.88,822.524 1889.88,817.27 1889.88,812.016 1889.88,806.762 1889.88,801.509 1889.88,796.255 1889.88,791.001 1889.88,785.747 1889.88,780.494 \n", " 1889.88,775.24 1889.88,769.986 1889.88,764.733 1889.88,759.479 1889.88,754.225 1889.88,748.971 1889.88,743.718 1889.88,738.464 1889.88,733.21 1889.88,727.956 \n", " 1889.88,722.703 1889.88,717.449 1889.88,712.195 1889.69,706.941 1876.34,702.286 1836.93,702.946 1797.53,702.946 1758.13,702.946 1718.73,702.946 1679.32,702.946 \n", " 1639.92,702.946 1600.52,702.96 1561.11,702.96 1521.71,702.96 1498.13,706.941 1482.31,708.379 1445.05,712.195 1442.9,712.52 1426.45,717.449 1421.78,722.703 \n", " 1403.5,724.857 1378.04,727.956 1364.1,729.143 1324.7,732.048 1300.67,733.21 1285.29,734.076 1245.89,734.971 1206.49,735.247 1167.08,735.627 1127.68,735.627 \n", " 1088.28,735.247 1048.87,734.971 1009.47,734.076 994.099,733.21 970.068,732.048 930.665,729.143 916.722,727.956 891.262,724.857 872.981,722.703 868.318,717.449 \n", " 851.859,712.52 849.719,712.195 812.456,708.379 796.629,706.941 773.053,702.96 733.65,702.96 694.247,702.96 654.844,702.946 615.441,702.946 576.038,702.946 \n", " 536.635,702.946 497.232,702.946 457.829,702.946 418.426,702.286 405.072,706.941 404.887,712.195 404.887,717.449 404.887,722.703 404.887,727.956 404.887,733.21 \n", " 404.887,738.464 404.887,743.718 404.887,748.971 404.887,754.225 404.887,759.479 404.887,764.733 404.887,769.986 404.887,775.24 404.887,780.494 404.887,785.747 \n", " 404.887,791.001 404.887,796.255 404.887,801.509 404.887,806.762 404.887,812.016 404.887,817.27 404.887,822.524 405.072,827.777 418.426,832.432 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 418.426,830.066 446.219,827.777 452.904,822.524 457.829,819.65 497.232,819.65 536.635,819.65 576.038,819.65 615.441,819.65 654.844,819.65 667.158,822.524 \n", " 694.247,825.684 733.65,825.684 773.053,825.684 812.456,823.636 823.318,822.524 851.859,818.186 854.919,817.27 851.859,815.662 829.174,812.016 851.859,807.759 \n", " 861.034,806.762 891.262,804.7 930.665,801.968 937.832,801.509 970.068,798.983 1009.47,797.473 1048.87,796.71 1074.02,796.255 1088.28,793.994 1111.35,791.001 \n", " 1127.68,789.259 1167.08,789.259 1183.42,791.001 1206.49,793.994 1220.74,796.255 1245.89,796.71 1285.29,797.473 1324.7,798.983 1356.93,801.509 1364.1,801.968 \n", " 1403.5,804.7 1433.73,806.762 1442.9,807.759 1465.59,812.016 1442.9,815.662 1439.84,817.27 1442.9,818.186 1471.45,822.524 1482.31,823.636 1521.71,825.684 \n", " 1561.11,825.684 1600.52,825.684 1627.61,822.524 1639.92,819.65 1679.32,819.65 1718.73,819.65 1758.13,819.65 1797.53,819.65 1836.93,819.65 1841.86,822.524 \n", " 1848.54,827.777 1876.34,830.066 1882.9,827.777 1883.11,822.524 1883.11,817.27 1883.11,812.016 1883.11,806.762 1883.11,801.509 1883.11,796.255 1883.11,791.001 \n", " 1883.11,785.747 1883.11,780.494 1883.11,775.24 1883.11,769.986 1883.11,764.733 1883.11,759.479 1883.11,754.225 1883.11,748.971 1883.11,743.718 1883.11,738.464 \n", " 1883.11,733.21 1883.11,727.956 1883.11,722.703 1883.11,717.449 1883.11,712.195 1882.9,706.941 1876.34,704.653 1848.54,706.941 1841.86,712.195 1836.93,715.068 \n", " 1797.53,715.068 1758.13,715.068 1718.73,715.068 1679.32,715.068 1639.92,715.068 1627.61,712.195 1600.52,709.035 1561.11,709.035 1521.71,709.035 1482.31,711.083 \n", " 1471.45,712.195 1442.9,716.533 1439.84,717.449 1442.9,719.057 1465.59,722.703 1442.9,726.96 1433.73,727.956 1403.5,730.019 1364.1,732.751 1356.93,733.21 \n", " 1324.7,735.736 1285.29,737.246 1245.89,738.009 1220.74,738.464 1206.49,740.725 1183.42,743.718 1167.08,745.46 1127.68,745.46 1111.35,743.718 1088.28,740.725 \n", " 1074.02,738.464 1048.87,738.009 1009.47,737.246 970.068,735.736 937.832,733.21 930.665,732.751 891.262,730.019 861.034,727.956 851.859,726.96 829.174,722.703 \n", " 851.859,719.057 854.919,717.449 851.859,716.533 823.318,712.195 812.456,711.083 773.053,709.035 733.65,709.035 694.247,709.035 667.158,712.195 654.844,715.068 \n", " 615.441,715.068 576.038,715.068 536.635,715.068 497.232,715.068 457.829,715.068 452.904,712.195 446.219,706.941 418.426,704.653 411.86,706.941 411.656,712.195 \n", " 411.656,717.449 411.656,722.703 411.656,727.956 411.656,733.21 411.656,738.464 411.656,743.718 411.656,748.971 411.656,754.225 411.656,759.479 411.656,764.733 \n", " 411.656,769.986 411.656,775.24 411.656,780.494 411.656,785.747 411.656,791.001 411.656,796.255 411.656,801.509 411.656,806.762 411.656,812.016 411.656,817.27 \n", " 411.656,822.524 411.86,827.777 418.426,830.066 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,670.822 2112.76,670.822 2112.76,638.643 1871.41,638.643 1871.41,670.822 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1630.07,670.822 1871.41,670.822 1871.41,638.643 1630.07,638.643 1630.07,670.822 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1992.08,686.912 2112.76,686.912 2112.76,670.822 1992.08,670.822 1992.08,686.912 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,686.912 1992.08,686.912 1992.08,670.822 1871.41,670.822 1871.41,686.912 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1992.08,703.001 2112.76,703.001 2112.76,686.912 1992.08,686.912 1992.08,703.001 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,694.956 1992.08,694.956 1992.08,686.912 1931.75,686.912 1931.75,694.956 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,690.934 1931.75,690.934 1931.75,686.912 1901.58,686.912 1901.58,690.934 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,690.934 1901.58,690.934 1901.58,686.912 1871.41,686.912 1871.41,690.934 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,694.956 1931.75,694.956 1931.75,690.934 1901.58,690.934 1901.58,694.956 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,694.956 1901.58,694.956 1901.58,690.934 1871.41,690.934 1871.41,694.956 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,703.001 1992.08,703.001 1992.08,694.956 1931.75,694.956 1931.75,703.001 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,698.979 1931.75,698.979 1931.75,694.956 1901.58,694.956 1901.58,698.979 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,698.979 1901.58,698.979 1901.58,694.956 1871.41,694.956 1871.41,698.979 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,703.001 1931.75,703.001 1931.75,698.979 1901.58,698.979 1901.58,703.001 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,703.001 1901.58,703.001 1901.58,698.979 1871.41,698.979 1871.41,703.001 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1630.07,703.001 1871.41,703.001 1871.41,670.822 1630.07,670.822 1630.07,703.001 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,670.822 1630.07,670.822 1630.07,638.643 1388.73,638.643 1388.73,670.822 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,670.822 1388.73,670.822 1388.73,638.643 1147.38,638.643 1147.38,670.822 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1509.4,686.912 1630.07,686.912 1630.07,670.822 1509.4,670.822 1509.4,686.912 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,686.912 1509.4,686.912 1509.4,670.822 1388.73,670.822 1388.73,686.912 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1509.4,703.001 1630.07,703.001 1630.07,686.912 1509.4,686.912 1509.4,703.001 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,703.001 1509.4,703.001 1509.4,686.912 1388.73,686.912 1388.73,703.001 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,703.001 1388.73,703.001 1388.73,670.822 1147.38,670.822 1147.38,703.001 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1992.08,719.091 2112.76,719.091 2112.76,703.001 1992.08,703.001 1992.08,719.091 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,711.046 1992.08,711.046 1992.08,703.001 1931.75,703.001 1931.75,711.046 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,707.024 1931.75,707.024 1931.75,703.001 1901.58,703.001 1901.58,707.024 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,707.024 1901.58,707.024 1901.58,703.001 1871.41,703.001 1871.41,707.024 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,711.046 1931.75,711.046 1931.75,707.024 1901.58,707.024 1901.58,711.046 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,711.046 1901.58,711.046 1901.58,707.024 1871.41,707.024 1871.41,711.046 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,719.091 1992.08,719.091 1992.08,711.046 1931.75,711.046 1931.75,719.091 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,715.068 1931.75,715.068 1931.75,711.046 1901.58,711.046 1901.58,715.068 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,715.068 1901.58,715.068 1901.58,711.046 1871.41,711.046 1871.41,715.068 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,719.091 1931.75,719.091 1931.75,715.068 1901.58,715.068 1901.58,719.091 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,719.091 1901.58,719.091 1901.58,715.068 1871.41,715.068 1871.41,719.091 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1992.08,735.18 2112.76,735.18 2112.76,719.091 1992.08,719.091 1992.08,735.18 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,727.135 1992.08,727.135 1992.08,719.091 1931.75,719.091 1931.75,727.135 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,723.113 1931.75,723.113 1931.75,719.091 1901.58,719.091 1901.58,723.113 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,723.113 1901.58,723.113 1901.58,719.091 1871.41,719.091 1871.41,723.113 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,727.135 1931.75,727.135 1931.75,723.113 1901.58,723.113 1901.58,727.135 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,727.135 1901.58,727.135 1901.58,723.113 1871.41,723.113 1871.41,727.135 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,735.18 1992.08,735.18 1992.08,727.135 1931.75,727.135 1931.75,735.18 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,731.158 1931.75,731.158 1931.75,727.135 1901.58,727.135 1901.58,731.158 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,731.158 1901.58,731.158 1901.58,727.135 1871.41,727.135 1871.41,731.158 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,735.18 1931.75,735.18 1931.75,731.158 1901.58,731.158 1901.58,735.18 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,735.18 1901.58,735.18 1901.58,731.158 1871.41,731.158 1871.41,735.18 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1630.07,735.18 1871.41,735.18 1871.41,703.001 1630.07,703.001 1630.07,735.18 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1992.08,751.27 2112.76,751.27 2112.76,735.18 1992.08,735.18 1992.08,751.27 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,743.225 1992.08,743.225 1992.08,735.18 1931.75,735.18 1931.75,743.225 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,739.203 1931.75,739.203 1931.75,735.18 1901.58,735.18 1901.58,739.203 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,739.203 1901.58,739.203 1901.58,735.18 1871.41,735.18 1871.41,739.203 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,743.225 1931.75,743.225 1931.75,739.203 1901.58,739.203 1901.58,743.225 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,743.225 1901.58,743.225 1901.58,739.203 1871.41,739.203 1871.41,743.225 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,751.27 1992.08,751.27 1992.08,743.225 1931.75,743.225 1931.75,751.27 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,747.247 1931.75,747.247 1931.75,743.225 1901.58,743.225 1901.58,747.247 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,747.247 1901.58,747.247 1901.58,743.225 1871.41,743.225 1871.41,747.247 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,751.27 1931.75,751.27 1931.75,747.247 1901.58,747.247 1901.58,751.27 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,751.27 1901.58,751.27 1901.58,747.247 1871.41,747.247 1871.41,751.27 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1992.08,767.359 2112.76,767.359 2112.76,751.27 1992.08,751.27 1992.08,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,759.315 1992.08,759.315 1992.08,751.27 1931.75,751.27 1931.75,759.315 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,755.292 1931.75,755.292 1931.75,751.27 1901.58,751.27 1901.58,755.292 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,755.292 1901.58,755.292 1901.58,751.27 1871.41,751.27 1871.41,755.292 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,759.315 1931.75,759.315 1931.75,755.292 1901.58,755.292 1901.58,759.315 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,759.315 1901.58,759.315 1901.58,755.292 1871.41,755.292 1871.41,759.315 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,767.359 1992.08,767.359 1992.08,759.315 1931.75,759.315 1931.75,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,763.337 1931.75,763.337 1931.75,759.315 1901.58,759.315 1901.58,763.337 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,763.337 1901.58,763.337 1901.58,759.315 1871.41,759.315 1871.41,763.337 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,767.359 1931.75,767.359 1931.75,763.337 1901.58,763.337 1901.58,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,767.359 1901.58,767.359 1901.58,763.337 1871.41,763.337 1871.41,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1630.07,767.359 1871.41,767.359 1871.41,735.18 1630.07,735.18 1630.07,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1509.4,719.091 1630.07,719.091 1630.07,703.001 1509.4,703.001 1509.4,719.091 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.06,711.046 1509.4,711.046 1509.4,703.001 1449.06,703.001 1449.06,711.046 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,711.046 1449.06,711.046 1449.06,703.001 1388.73,703.001 1388.73,711.046 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.06,719.091 1509.4,719.091 1509.4,711.046 1449.06,711.046 1449.06,719.091 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,719.091 1449.06,719.091 1449.06,711.046 1388.73,711.046 1388.73,719.091 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1509.4,735.18 1630.07,735.18 1630.07,719.091 1509.4,719.091 1509.4,735.18 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,735.18 1509.4,735.18 1509.4,719.091 1388.73,719.091 1388.73,735.18 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1268.05,719.091 1388.73,719.091 1388.73,703.001 1268.05,703.001 1268.05,719.091 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,719.091 1268.05,719.091 1268.05,703.001 1147.38,703.001 1147.38,719.091 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1268.05,735.18 1388.73,735.18 1388.73,719.091 1268.05,719.091 1268.05,735.18 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,735.18 1268.05,735.18 1268.05,719.091 1147.38,719.091 1147.38,735.18 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,767.359 1630.07,767.359 1630.07,735.18 1388.73,735.18 1388.73,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,767.359 1388.73,767.359 1388.73,735.18 1147.38,735.18 1147.38,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 906.039,670.822 1147.38,670.822 1147.38,638.643 906.039,638.643 906.039,670.822 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 664.695,670.822 906.039,670.822 906.039,638.643 664.695,638.643 664.695,670.822 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 906.039,703.001 1147.38,703.001 1147.38,670.822 906.039,670.822 906.039,703.001 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 785.367,686.912 906.039,686.912 906.039,670.822 785.367,670.822 785.367,686.912 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 664.695,686.912 785.367,686.912 785.367,670.822 664.695,670.822 664.695,686.912 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 785.367,703.001 906.039,703.001 906.039,686.912 785.367,686.912 785.367,703.001 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 664.695,703.001 785.367,703.001 785.367,686.912 664.695,686.912 664.695,703.001 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 423.352,670.822 664.695,670.822 664.695,638.643 423.352,638.643 423.352,670.822 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,670.822 423.352,670.822 423.352,638.643 182.008,638.643 182.008,670.822 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 423.352,703.001 664.695,703.001 664.695,670.822 423.352,670.822 423.352,703.001 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,686.912 423.352,686.912 423.352,670.822 302.68,670.822 302.68,686.912 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,686.912 302.68,686.912 302.68,670.822 182.008,670.822 182.008,686.912 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,690.934 423.352,690.934 423.352,686.912 393.184,686.912 393.184,690.934 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,690.934 393.184,690.934 393.184,686.912 363.016,686.912 363.016,690.934 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,694.956 423.352,694.956 423.352,690.934 393.184,690.934 393.184,694.956 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,694.956 393.184,694.956 393.184,690.934 363.016,690.934 363.016,694.956 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,694.956 363.016,694.956 363.016,686.912 302.68,686.912 302.68,694.956 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,698.979 423.352,698.979 423.352,694.956 393.184,694.956 393.184,698.979 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,698.979 393.184,698.979 393.184,694.956 363.016,694.956 363.016,698.979 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,703.001 423.352,703.001 423.352,698.979 393.184,698.979 393.184,703.001 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,703.001 393.184,703.001 393.184,698.979 363.016,698.979 363.016,703.001 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,703.001 363.016,703.001 363.016,694.956 302.68,694.956 302.68,703.001 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,703.001 302.68,703.001 302.68,686.912 182.008,686.912 182.008,703.001 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1026.71,719.091 1147.38,719.091 1147.38,703.001 1026.71,703.001 1026.71,719.091 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 906.039,719.091 1026.71,719.091 1026.71,703.001 906.039,703.001 906.039,719.091 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1026.71,735.18 1147.38,735.18 1147.38,719.091 1026.71,719.091 1026.71,735.18 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 906.039,735.18 1026.71,735.18 1026.71,719.091 906.039,719.091 906.039,735.18 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 845.703,711.046 906.039,711.046 906.039,703.001 845.703,703.001 845.703,711.046 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 785.367,711.046 845.703,711.046 845.703,703.001 785.367,703.001 785.367,711.046 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 845.703,719.091 906.039,719.091 906.039,711.046 845.703,711.046 845.703,719.091 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 785.367,719.091 845.703,719.091 845.703,711.046 785.367,711.046 785.367,719.091 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 664.695,719.091 785.367,719.091 785.367,703.001 664.695,703.001 664.695,719.091 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 785.367,735.18 906.039,735.18 906.039,719.091 785.367,719.091 785.367,735.18 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 664.695,735.18 785.367,735.18 785.367,719.091 664.695,719.091 664.695,735.18 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 906.039,767.359 1147.38,767.359 1147.38,735.18 906.039,735.18 906.039,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 664.695,767.359 906.039,767.359 906.039,735.18 664.695,735.18 664.695,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 423.352,735.18 664.695,735.18 664.695,703.001 423.352,703.001 423.352,735.18 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,707.024 423.352,707.024 423.352,703.001 393.184,703.001 393.184,707.024 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,707.024 393.184,707.024 393.184,703.001 363.016,703.001 363.016,707.024 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,711.046 423.352,711.046 423.352,707.024 393.184,707.024 393.184,711.046 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,711.046 393.184,711.046 393.184,707.024 363.016,707.024 363.016,711.046 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,711.046 363.016,711.046 363.016,703.001 302.68,703.001 302.68,711.046 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,715.068 423.352,715.068 423.352,711.046 393.184,711.046 393.184,715.068 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,715.068 393.184,715.068 393.184,711.046 363.016,711.046 363.016,715.068 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,719.091 423.352,719.091 423.352,715.068 393.184,715.068 393.184,719.091 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,719.091 393.184,719.091 393.184,715.068 363.016,715.068 363.016,719.091 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,719.091 363.016,719.091 363.016,711.046 302.68,711.046 302.68,719.091 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,719.091 302.68,719.091 302.68,703.001 182.008,703.001 182.008,719.091 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,723.113 423.352,723.113 423.352,719.091 393.184,719.091 393.184,723.113 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,723.113 393.184,723.113 393.184,719.091 363.016,719.091 363.016,723.113 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,727.135 423.352,727.135 423.352,723.113 393.184,723.113 393.184,727.135 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,727.135 393.184,727.135 393.184,723.113 363.016,723.113 363.016,727.135 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,727.135 363.016,727.135 363.016,719.091 302.68,719.091 302.68,727.135 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,731.158 423.352,731.158 423.352,727.135 393.184,727.135 393.184,731.158 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,731.158 393.184,731.158 393.184,727.135 363.016,727.135 363.016,731.158 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,735.18 423.352,735.18 423.352,731.158 393.184,731.158 393.184,735.18 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,735.18 393.184,735.18 393.184,731.158 363.016,731.158 363.016,735.18 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,735.18 363.016,735.18 363.016,727.135 302.68,727.135 302.68,735.18 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,735.18 302.68,735.18 302.68,719.091 182.008,719.091 182.008,735.18 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 423.352,767.359 664.695,767.359 664.695,735.18 423.352,735.18 423.352,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,739.203 423.352,739.203 423.352,735.18 393.184,735.18 393.184,739.203 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,739.203 393.184,739.203 393.184,735.18 363.016,735.18 363.016,739.203 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,743.225 423.352,743.225 423.352,739.203 393.184,739.203 393.184,743.225 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,743.225 393.184,743.225 393.184,739.203 363.016,739.203 363.016,743.225 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,743.225 363.016,743.225 363.016,735.18 302.68,735.18 302.68,743.225 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,747.247 423.352,747.247 423.352,743.225 393.184,743.225 393.184,747.247 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,747.247 393.184,747.247 393.184,743.225 363.016,743.225 363.016,747.247 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,751.27 423.352,751.27 423.352,747.247 393.184,747.247 393.184,751.27 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,751.27 393.184,751.27 393.184,747.247 363.016,747.247 363.016,751.27 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,751.27 363.016,751.27 363.016,743.225 302.68,743.225 302.68,751.27 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,751.27 302.68,751.27 302.68,735.18 182.008,735.18 182.008,751.27 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,755.292 423.352,755.292 423.352,751.27 393.184,751.27 393.184,755.292 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,755.292 393.184,755.292 393.184,751.27 363.016,751.27 363.016,755.292 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,759.315 423.352,759.315 423.352,755.292 393.184,755.292 393.184,759.315 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,759.315 393.184,759.315 393.184,755.292 363.016,755.292 363.016,759.315 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,759.315 363.016,759.315 363.016,751.27 302.68,751.27 302.68,759.315 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,763.337 423.352,763.337 423.352,759.315 393.184,759.315 393.184,763.337 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,763.337 393.184,763.337 393.184,759.315 363.016,759.315 363.016,763.337 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,767.359 423.352,767.359 423.352,763.337 393.184,763.337 393.184,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,767.359 393.184,767.359 393.184,763.337 363.016,763.337 363.016,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,767.359 363.016,767.359 363.016,759.315 302.68,759.315 302.68,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,767.359 302.68,767.359 302.68,751.27 182.008,751.27 182.008,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1992.08,783.449 2112.76,783.449 2112.76,767.359 1992.08,767.359 1992.08,783.449 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,775.404 1992.08,775.404 1992.08,767.359 1931.75,767.359 1931.75,775.404 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,771.382 1931.75,771.382 1931.75,767.359 1901.58,767.359 1901.58,771.382 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,771.382 1901.58,771.382 1901.58,767.359 1871.41,767.359 1871.41,771.382 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,775.404 1931.75,775.404 1931.75,771.382 1901.58,771.382 1901.58,775.404 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,775.404 1901.58,775.404 1901.58,771.382 1871.41,771.382 1871.41,775.404 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,783.449 1992.08,783.449 1992.08,775.404 1931.75,775.404 1931.75,783.449 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,779.427 1931.75,779.427 1931.75,775.404 1901.58,775.404 1901.58,779.427 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,779.427 1901.58,779.427 1901.58,775.404 1871.41,775.404 1871.41,779.427 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,783.449 1931.75,783.449 1931.75,779.427 1901.58,779.427 1901.58,783.449 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,783.449 1901.58,783.449 1901.58,779.427 1871.41,779.427 1871.41,783.449 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1992.08,799.539 2112.76,799.539 2112.76,783.449 1992.08,783.449 1992.08,799.539 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,791.494 1992.08,791.494 1992.08,783.449 1931.75,783.449 1931.75,791.494 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,787.471 1931.75,787.471 1931.75,783.449 1901.58,783.449 1901.58,787.471 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,787.471 1901.58,787.471 1901.58,783.449 1871.41,783.449 1871.41,787.471 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,791.494 1931.75,791.494 1931.75,787.471 1901.58,787.471 1901.58,791.494 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,791.494 1901.58,791.494 1901.58,787.471 1871.41,787.471 1871.41,791.494 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,799.539 1992.08,799.539 1992.08,791.494 1931.75,791.494 1931.75,799.539 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,795.516 1931.75,795.516 1931.75,791.494 1901.58,791.494 1901.58,795.516 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,795.516 1901.58,795.516 1901.58,791.494 1871.41,791.494 1871.41,795.516 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,799.539 1931.75,799.539 1931.75,795.516 1901.58,795.516 1901.58,799.539 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,799.539 1901.58,799.539 1901.58,795.516 1871.41,795.516 1871.41,799.539 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1630.07,799.539 1871.41,799.539 1871.41,767.359 1630.07,767.359 1630.07,799.539 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1992.08,815.628 2112.76,815.628 2112.76,799.539 1992.08,799.539 1992.08,815.628 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,807.583 1992.08,807.583 1992.08,799.539 1931.75,799.539 1931.75,807.583 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,803.561 1931.75,803.561 1931.75,799.539 1901.58,799.539 1901.58,803.561 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,803.561 1901.58,803.561 1901.58,799.539 1871.41,799.539 1871.41,803.561 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,807.583 1931.75,807.583 1931.75,803.561 1901.58,803.561 1901.58,807.583 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,807.583 1901.58,807.583 1901.58,803.561 1871.41,803.561 1871.41,807.583 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,815.628 1992.08,815.628 1992.08,807.583 1931.75,807.583 1931.75,815.628 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,811.606 1931.75,811.606 1931.75,807.583 1901.58,807.583 1901.58,811.606 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,811.606 1901.58,811.606 1901.58,807.583 1871.41,807.583 1871.41,811.606 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,815.628 1931.75,815.628 1931.75,811.606 1901.58,811.606 1901.58,815.628 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,815.628 1901.58,815.628 1901.58,811.606 1871.41,811.606 1871.41,815.628 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1992.08,831.718 2112.76,831.718 2112.76,815.628 1992.08,815.628 1992.08,831.718 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,823.673 1992.08,823.673 1992.08,815.628 1931.75,815.628 1931.75,823.673 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,819.65 1931.75,819.65 1931.75,815.628 1901.58,815.628 1901.58,819.65 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,819.65 1901.58,819.65 1901.58,815.628 1871.41,815.628 1871.41,819.65 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,823.673 1931.75,823.673 1931.75,819.65 1901.58,819.65 1901.58,823.673 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,823.673 1901.58,823.673 1901.58,819.65 1871.41,819.65 1871.41,823.673 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,831.718 1992.08,831.718 1992.08,823.673 1931.75,823.673 1931.75,831.718 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,827.695 1931.75,827.695 1931.75,823.673 1901.58,823.673 1901.58,827.695 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,827.695 1901.58,827.695 1901.58,823.673 1871.41,823.673 1871.41,827.695 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,831.718 1931.75,831.718 1931.75,827.695 1901.58,827.695 1901.58,831.718 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,831.718 1901.58,831.718 1901.58,827.695 1871.41,827.695 1871.41,831.718 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1630.07,831.718 1871.41,831.718 1871.41,799.539 1630.07,799.539 1630.07,831.718 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,799.539 1630.07,799.539 1630.07,767.359 1388.73,767.359 1388.73,799.539 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,799.539 1388.73,799.539 1388.73,767.359 1147.38,767.359 1147.38,799.539 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1509.4,815.628 1630.07,815.628 1630.07,799.539 1509.4,799.539 1509.4,815.628 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,815.628 1509.4,815.628 1509.4,799.539 1388.73,799.539 1388.73,815.628 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1509.4,831.718 1630.07,831.718 1630.07,815.628 1509.4,815.628 1509.4,831.718 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.06,823.673 1509.4,823.673 1509.4,815.628 1449.06,815.628 1449.06,823.673 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,823.673 1449.06,823.673 1449.06,815.628 1388.73,815.628 1388.73,823.673 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1449.06,831.718 1509.4,831.718 1509.4,823.673 1449.06,823.673 1449.06,831.718 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,831.718 1449.06,831.718 1449.06,823.673 1388.73,823.673 1388.73,831.718 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1268.05,815.628 1388.73,815.628 1388.73,799.539 1268.05,799.539 1268.05,815.628 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,815.628 1268.05,815.628 1268.05,799.539 1147.38,799.539 1147.38,815.628 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1268.05,831.718 1388.73,831.718 1388.73,815.628 1268.05,815.628 1268.05,831.718 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,831.718 1268.05,831.718 1268.05,815.628 1147.38,815.628 1147.38,831.718 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1992.08,847.807 2112.76,847.807 2112.76,831.718 1992.08,831.718 1992.08,847.807 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,839.762 1992.08,839.762 1992.08,831.718 1931.75,831.718 1931.75,839.762 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,835.74 1931.75,835.74 1931.75,831.718 1901.58,831.718 1901.58,835.74 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,835.74 1901.58,835.74 1901.58,831.718 1871.41,831.718 1871.41,835.74 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,839.762 1931.75,839.762 1931.75,835.74 1901.58,835.74 1901.58,839.762 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,839.762 1901.58,839.762 1901.58,835.74 1871.41,835.74 1871.41,839.762 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1931.75,847.807 1992.08,847.807 1992.08,839.762 1931.75,839.762 1931.75,847.807 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,843.785 1931.75,843.785 1931.75,839.762 1901.58,839.762 1901.58,843.785 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,843.785 1901.58,843.785 1901.58,839.762 1871.41,839.762 1871.41,843.785 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1901.58,847.807 1931.75,847.807 1931.75,843.785 1901.58,843.785 1901.58,847.807 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,847.807 1901.58,847.807 1901.58,843.785 1871.41,843.785 1871.41,847.807 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1992.08,863.897 2112.76,863.897 2112.76,847.807 1992.08,847.807 1992.08,863.897 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,863.897 1992.08,863.897 1992.08,847.807 1871.41,847.807 1871.41,863.897 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1630.07,863.897 1871.41,863.897 1871.41,831.718 1630.07,831.718 1630.07,863.897 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1871.41,896.076 2112.76,896.076 2112.76,863.897 1871.41,863.897 1871.41,896.076 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1630.07,896.076 1871.41,896.076 1871.41,863.897 1630.07,863.897 1630.07,896.076 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1509.4,847.807 1630.07,847.807 1630.07,831.718 1509.4,831.718 1509.4,847.807 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,847.807 1509.4,847.807 1509.4,831.718 1388.73,831.718 1388.73,847.807 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1509.4,863.897 1630.07,863.897 1630.07,847.807 1509.4,847.807 1509.4,863.897 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,863.897 1509.4,863.897 1509.4,847.807 1388.73,847.807 1388.73,863.897 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,863.897 1388.73,863.897 1388.73,831.718 1147.38,831.718 1147.38,863.897 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1388.73,896.076 1630.07,896.076 1630.07,863.897 1388.73,863.897 1388.73,896.076 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,896.076 1388.73,896.076 1388.73,863.897 1147.38,863.897 1147.38,896.076 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 906.039,799.539 1147.38,799.539 1147.38,767.359 906.039,767.359 906.039,799.539 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 664.695,799.539 906.039,799.539 906.039,767.359 664.695,767.359 664.695,799.539 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1026.71,815.628 1147.38,815.628 1147.38,799.539 1026.71,799.539 1026.71,815.628 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 906.039,815.628 1026.71,815.628 1026.71,799.539 906.039,799.539 906.039,815.628 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1026.71,831.718 1147.38,831.718 1147.38,815.628 1026.71,815.628 1026.71,831.718 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 906.039,831.718 1026.71,831.718 1026.71,815.628 906.039,815.628 906.039,831.718 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 785.367,815.628 906.039,815.628 906.039,799.539 785.367,799.539 785.367,815.628 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 664.695,815.628 785.367,815.628 785.367,799.539 664.695,799.539 664.695,815.628 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 845.703,823.673 906.039,823.673 906.039,815.628 845.703,815.628 845.703,823.673 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 785.367,823.673 845.703,823.673 845.703,815.628 785.367,815.628 785.367,823.673 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 845.703,831.718 906.039,831.718 906.039,823.673 845.703,823.673 845.703,831.718 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 785.367,831.718 845.703,831.718 845.703,823.673 785.367,823.673 785.367,831.718 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 664.695,831.718 785.367,831.718 785.367,815.628 664.695,815.628 664.695,831.718 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 423.352,799.539 664.695,799.539 664.695,767.359 423.352,767.359 423.352,799.539 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,771.382 423.352,771.382 423.352,767.359 393.184,767.359 393.184,771.382 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,771.382 393.184,771.382 393.184,767.359 363.016,767.359 363.016,771.382 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,775.404 423.352,775.404 423.352,771.382 393.184,771.382 393.184,775.404 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,775.404 393.184,775.404 393.184,771.382 363.016,771.382 363.016,775.404 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,775.404 363.016,775.404 363.016,767.359 302.68,767.359 302.68,775.404 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,779.427 423.352,779.427 423.352,775.404 393.184,775.404 393.184,779.427 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,779.427 393.184,779.427 393.184,775.404 363.016,775.404 363.016,779.427 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,783.449 423.352,783.449 423.352,779.427 393.184,779.427 393.184,783.449 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,783.449 393.184,783.449 393.184,779.427 363.016,779.427 363.016,783.449 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,783.449 363.016,783.449 363.016,775.404 302.68,775.404 302.68,783.449 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,783.449 302.68,783.449 302.68,767.359 182.008,767.359 182.008,783.449 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,787.471 423.352,787.471 423.352,783.449 393.184,783.449 393.184,787.471 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,787.471 393.184,787.471 393.184,783.449 363.016,783.449 363.016,787.471 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,791.494 423.352,791.494 423.352,787.471 393.184,787.471 393.184,791.494 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,791.494 393.184,791.494 393.184,787.471 363.016,787.471 363.016,791.494 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,791.494 363.016,791.494 363.016,783.449 302.68,783.449 302.68,791.494 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,795.516 423.352,795.516 423.352,791.494 393.184,791.494 393.184,795.516 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,795.516 393.184,795.516 393.184,791.494 363.016,791.494 363.016,795.516 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,799.539 423.352,799.539 423.352,795.516 393.184,795.516 393.184,799.539 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,799.539 393.184,799.539 393.184,795.516 363.016,795.516 363.016,799.539 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,799.539 363.016,799.539 363.016,791.494 302.68,791.494 302.68,799.539 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,799.539 302.68,799.539 302.68,783.449 182.008,783.449 182.008,799.539 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 423.352,831.718 664.695,831.718 664.695,799.539 423.352,799.539 423.352,831.718 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,803.561 423.352,803.561 423.352,799.539 393.184,799.539 393.184,803.561 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,803.561 393.184,803.561 393.184,799.539 363.016,799.539 363.016,803.561 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,807.583 423.352,807.583 423.352,803.561 393.184,803.561 393.184,807.583 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,807.583 393.184,807.583 393.184,803.561 363.016,803.561 363.016,807.583 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,807.583 363.016,807.583 363.016,799.539 302.68,799.539 302.68,807.583 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,811.606 423.352,811.606 423.352,807.583 393.184,807.583 393.184,811.606 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,811.606 393.184,811.606 393.184,807.583 363.016,807.583 363.016,811.606 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,815.628 423.352,815.628 423.352,811.606 393.184,811.606 393.184,815.628 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,815.628 393.184,815.628 393.184,811.606 363.016,811.606 363.016,815.628 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,815.628 363.016,815.628 363.016,807.583 302.68,807.583 302.68,815.628 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,815.628 302.68,815.628 302.68,799.539 182.008,799.539 182.008,815.628 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,819.65 423.352,819.65 423.352,815.628 393.184,815.628 393.184,819.65 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,819.65 393.184,819.65 393.184,815.628 363.016,815.628 363.016,819.65 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,823.673 423.352,823.673 423.352,819.65 393.184,819.65 393.184,823.673 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,823.673 393.184,823.673 393.184,819.65 363.016,819.65 363.016,823.673 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,823.673 363.016,823.673 363.016,815.628 302.68,815.628 302.68,823.673 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,827.695 423.352,827.695 423.352,823.673 393.184,823.673 393.184,827.695 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,827.695 393.184,827.695 393.184,823.673 363.016,823.673 363.016,827.695 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,831.718 423.352,831.718 423.352,827.695 393.184,827.695 393.184,831.718 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,831.718 393.184,831.718 393.184,827.695 363.016,827.695 363.016,831.718 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,831.718 363.016,831.718 363.016,823.673 302.68,823.673 302.68,831.718 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,831.718 302.68,831.718 302.68,815.628 182.008,815.628 182.008,831.718 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 906.039,863.897 1147.38,863.897 1147.38,831.718 906.039,831.718 906.039,863.897 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 785.367,847.807 906.039,847.807 906.039,831.718 785.367,831.718 785.367,847.807 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 664.695,847.807 785.367,847.807 785.367,831.718 664.695,831.718 664.695,847.807 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 785.367,863.897 906.039,863.897 906.039,847.807 785.367,847.807 785.367,863.897 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 664.695,863.897 785.367,863.897 785.367,847.807 664.695,847.807 664.695,863.897 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 906.039,896.076 1147.38,896.076 1147.38,863.897 906.039,863.897 906.039,896.076 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 664.695,896.076 906.039,896.076 906.039,863.897 664.695,863.897 664.695,896.076 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 423.352,863.897 664.695,863.897 664.695,831.718 423.352,831.718 423.352,863.897 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,835.74 423.352,835.74 423.352,831.718 393.184,831.718 393.184,835.74 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,835.74 393.184,835.74 393.184,831.718 363.016,831.718 363.016,835.74 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,839.762 423.352,839.762 423.352,835.74 393.184,835.74 393.184,839.762 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,839.762 393.184,839.762 393.184,835.74 363.016,835.74 363.016,839.762 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,839.762 363.016,839.762 363.016,831.718 302.68,831.718 302.68,839.762 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,843.785 423.352,843.785 423.352,839.762 393.184,839.762 393.184,843.785 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,843.785 393.184,843.785 393.184,839.762 363.016,839.762 363.016,843.785 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 393.184,847.807 423.352,847.807 423.352,843.785 393.184,843.785 393.184,847.807 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 363.016,847.807 393.184,847.807 393.184,843.785 363.016,843.785 363.016,847.807 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,847.807 363.016,847.807 363.016,839.762 302.68,839.762 302.68,847.807 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,847.807 302.68,847.807 302.68,831.718 182.008,831.718 182.008,847.807 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 302.68,863.897 423.352,863.897 423.352,847.807 302.68,847.807 302.68,863.897 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,863.897 302.68,863.897 302.68,847.807 182.008,847.807 182.008,863.897 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 423.352,896.076 664.695,896.076 664.695,863.897 423.352,863.897 423.352,896.076 \n", " \"/>\n", "<polyline clip-path=\"url(#clip5302)\" style=\"stroke:#ffffff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,896.076 423.352,896.076 423.352,863.897 182.008,863.897 182.008,896.076 \n", " \"/>\n", "<defs>\n", " <clipPath id=\"clip5303\">\n", " <rect x=\"2160\" y=\"638\" width=\"73\" height=\"258\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip5303)\" d=\"\n", "M2160.76 896.076 L2232.76 896.076 L2232.76 879.986 L2160.76 879.986 Z\n", " \" fill=\"#000003\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5303)\" d=\"\n", "M2160.76 879.986 L2232.76 879.986 L2232.76 863.897 L2160.76 863.897 Z\n", " \" fill=\"#0c0727\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5303)\" d=\"\n", "M2160.76 863.897 L2232.76 863.897 L2232.76 847.807 L2160.76 847.807 Z\n", " \" fill=\"#240b4e\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5303)\" d=\"\n", "M2160.76 847.807 L2232.76 847.807 L2232.76 831.718 L2160.76 831.718 Z\n", " \" fill=\"#420a67\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5303)\" d=\"\n", "M2160.76 831.718 L2232.76 831.718 L2232.76 815.628 L2160.76 815.628 Z\n", " \" fill=\"#5d126d\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5303)\" d=\"\n", "M2160.76 815.628 L2232.76 815.628 L2232.76 799.539 L2160.76 799.539 Z\n", " \" fill=\"#781c6d\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5303)\" d=\"\n", "M2160.76 799.539 L2232.76 799.539 L2232.76 783.449 L2160.76 783.449 Z\n", " \" fill=\"#942666\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5303)\" d=\"\n", "M2160.76 783.449 L2232.76 783.449 L2232.76 767.359 L2160.76 767.359 Z\n", " \" fill=\"#ad305b\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5303)\" d=\"\n", "M2160.76 767.359 L2232.76 767.359 L2232.76 751.27 L2160.76 751.27 Z\n", " \" fill=\"#c73e4c\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5303)\" d=\"\n", "M2160.76 751.27 L2232.76 751.27 L2232.76 735.18 L2160.76 735.18 Z\n", " \" fill=\"#db503a\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5303)\" d=\"\n", "M2160.76 735.18 L2232.76 735.18 L2232.76 719.091 L2160.76 719.091 Z\n", " \" fill=\"#ec6925\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5303)\" d=\"\n", "M2160.76 719.091 L2232.76 719.091 L2232.76 703.001 L2160.76 703.001 Z\n", " \" fill=\"#f7850e\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5303)\" d=\"\n", "M2160.76 703.001 L2232.76 703.001 L2232.76 686.912 L2160.76 686.912 Z\n", " \" fill=\"#fba40a\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5303)\" d=\"\n", "M2160.76 686.912 L2232.76 686.912 L2232.76 670.822 L2160.76 670.822 Z\n", " \" fill=\"#f9c52d\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5303)\" d=\"\n", "M2160.76 670.822 L2232.76 670.822 L2232.76 654.732 L2160.76 654.732 Z\n", " \" fill=\"#f2e55f\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<path clip-path=\"url(#clip5303)\" d=\"\n", "M2160.76 654.732 L2232.76 654.732 L2232.76 638.643 L2160.76 638.643 Z\n", " \" fill=\"#fcfea4\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<g clip-path=\"url(#clip5300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 909.727)\" x=\"2268.76\" y=\"909.727\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip5300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 883.984)\" x=\"2268.76\" y=\"883.984\">0.005</text>\n", "</g>\n", "<g clip-path=\"url(#clip5300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 858.241)\" x=\"2268.76\" y=\"858.241\">0.010</text>\n", "</g>\n", "<g clip-path=\"url(#clip5300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 832.497)\" x=\"2268.76\" y=\"832.497\">0.015</text>\n", "</g>\n", "<g clip-path=\"url(#clip5300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 806.754)\" x=\"2268.76\" y=\"806.754\">0.020</text>\n", "</g>\n", "<g clip-path=\"url(#clip5300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 781.011)\" x=\"2268.76\" y=\"781.011\">0.025</text>\n", "</g>\n", "<g clip-path=\"url(#clip5300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 755.267)\" x=\"2268.76\" y=\"755.267\">0.030</text>\n", "</g>\n", "<g clip-path=\"url(#clip5300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 729.524)\" x=\"2268.76\" y=\"729.524\">0.035</text>\n", "</g>\n", "<g clip-path=\"url(#clip5300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 703.781)\" x=\"2268.76\" y=\"703.781\">0.040</text>\n", "</g>\n", "<g clip-path=\"url(#clip5300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 678.037)\" x=\"2268.76\" y=\"678.037\">0.045</text>\n", "</g>\n", "<g clip-path=\"url(#clip5300)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 652.294)\" x=\"2268.76\" y=\"652.294\">0.050</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip5300)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2232.76,896.076 2232.76,896.076 2256.76,896.076 2232.76,896.076 2232.76,870.333 2256.76,870.333 2232.76,870.333 2232.76,844.589 2256.76,844.589 2232.76,844.589 \n", " 2232.76,818.846 2256.76,818.846 2232.76,818.846 2232.76,793.103 2256.76,793.103 2232.76,793.103 2232.76,767.359 2256.76,767.359 2232.76,767.359 2232.76,741.616 \n", " 2256.76,741.616 2232.76,741.616 2232.76,715.873 2256.76,715.873 2232.76,715.873 2232.76,690.129 2256.76,690.129 2232.76,690.129 2232.76,664.386 2256.76,664.386 \n", " 2232.76,664.386 2232.76,638.643 2256.76,638.643 2232.76,638.643 \n", " \"/>\n", "</svg>\n" ] }, "execution_count": 131, "metadata": {}, "output_type": "execute_result" } ], "source": [ "plt = plot(xlim=(-rx, rx), ylim=(-ry, ry), aspect_ratio=:equal)# legend=nothing)\n", "\n", "x = range(-rx, stop=rx, length=50)\n", "y = range(-ry, stop=ry, length=50)\n", "contour!(plt, x, y, (x, y) -> AdaptivelySampledDistanceFields.evaluate(adf, SVector(x, y)), fill=true)\n", "\n", "for leaf in allleaves(adf)\n", " v = hcat(collect(vertices(leaf.boundary))...)\n", " plot!(plt, v[1,[1,2,4,3,1]], v[2,[1,2,4,3,1]], color=:white,label=\"\")\n", "end\n", "\n", "\n", "plt" ] }, { "cell_type": "code", "execution_count": 94, "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=\"clip8100\">\n", " <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip8100)\" 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=\"clip8101\">\n", " <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip8100)\" d=\"\n", "M182.008 1407.86 L2112.76 1407.86 L2112.76 126.861 L182.008 126.861 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip8102\">\n", " <rect x=\"182\" y=\"126\" width=\"1932\" height=\"1282\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip8102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 201.316,1407.86 201.316,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 674.349,1407.86 674.349,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1147.38,1407.86 1147.38,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1620.42,1407.86 1620.42,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2093.45,1407.86 2093.45,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,1240.39 2112.76,1240.39 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,1003.88 2112.76,1003.88 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,767.359 2112.76,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,530.843 2112.76,530.843 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8102)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,294.326 2112.76,294.326 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1407.86 2112.76,1407.86 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1407.86 182.008,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 201.316,1407.86 201.316,1392.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 674.349,1407.86 674.349,1392.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,1407.86 1147.38,1392.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1620.42,1407.86 1620.42,1392.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2093.45,1407.86 2093.45,1392.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1240.39 205.177,1240.39 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1003.88 205.177,1003.88 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,767.359 205.177,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,530.843 205.177,530.843 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,294.326 205.177,294.326 \n", " \"/>\n", "<g clip-path=\"url(#clip8100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 201.316, 1461.86)\" x=\"201.316\" y=\"1461.86\">-2</text>\n", "</g>\n", "<g clip-path=\"url(#clip8100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 674.349, 1461.86)\" x=\"674.349\" y=\"1461.86\">-1</text>\n", "</g>\n", "<g clip-path=\"url(#clip8100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1147.38, 1461.86)\" x=\"1147.38\" y=\"1461.86\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip8100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1620.42, 1461.86)\" x=\"1620.42\" y=\"1461.86\">1</text>\n", "</g>\n", "<g clip-path=\"url(#clip8100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 2093.45, 1461.86)\" x=\"2093.45\" y=\"1461.86\">2</text>\n", "</g>\n", "<g clip-path=\"url(#clip8100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 1257.89)\" x=\"158.008\" y=\"1257.89\">-1.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip8100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 1021.38)\" x=\"158.008\" y=\"1021.38\">-0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip8100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 784.859)\" x=\"158.008\" y=\"784.859\">0.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip8100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 548.343)\" x=\"158.008\" y=\"548.343\">0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip8100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 311.826)\" x=\"158.008\" y=\"311.826\">1.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip8102)\">\n", "<image width=\"1931\" height=\"483\" xlink:href=\"data:image/png;base64,\n", "iVBORw0KGgoAAAANSUhEUgAAB4sAAAHjCAYAAAA68vn/AAAgAElEQVR4nOzbOXMleXbe4dzuAqCq\n", "q5szJENSSGMpaGjx+f0N+VoMGjIkSqEhxZ7uqsJ6781MGnLzX6HqAOaci/M8n+AXAHJ9E33XTWuX\n", "1L/48LfRCU3/cf0P0Qmb/t2nKTqh6d//+BCd0PQ3v/vH6IRN07hEJwDApmXpoxOafn26i07Y9Pnl\n", "GJ3Q9HDOew+5dDn/1qY+7WNUdxjn6IRNv7t5jE64Sj8/3UYnbHqZx+iEpsua87wxdHnPG3e7S3RC\n", "06fDc3TCph9v8r7jGIa8f2sA1HaZh+iETX/3819FJzT9119zvuPouq77b59z3kP+5/6/RCc0/Z/7\n", "/xSdsCnnkQkAAAAAAADAmzIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAAAKAg\n", "YzEAAAAAAABAQcZiAAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACpqiAyCHPjpg083+JTqhLeeP\n", "DIA/k2XJeyF4Pu+jEza9XPLeel+WvN+QLmt0wbZpSBrWdd1xukQnbDpO5+iEq5T195nZmPQaNeTM\n", "6rqu645j3r+zrOeOm0Pe5/Uh8TUKgD+DxJeBr0+30QnAhrxvhQAAAAAAAAB4M8ZiAAAAAAAAgIKM\n", "xQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAA\n", "AKAgYzEAAAAAAABAQVN0AGTQ92t0wqbj8Tk6AQA2zfMYndB03J2iEza9XPLeel/WvN+QLmsfnbBp\n", "6pfohKbjeI5O2HRIemxmdzztoxO25XyE6rqu6y5DznPakPS5s+u67jjlPG90Xd7r+mGfs6vrum4c\n", "5+gEANh0/3wTnQBsyPkEBQAAAAAAAMCbMhYDAAAAAAAAFGQsBgAAAAAAACjIWAwAAAAAAABQkLEY\n", "AAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAAAACAgozFAAAAAAAAAAVN0QFA2/74Ep3Q1PdrdAIAgZZ5\n", "jE5oOr4cohM2vVx20QlN85r3G9Jl7aMTNo39Ep3QdNydoxM2HZJ2ZZf195lZ1nPakPgZKvPf2XF/\n", "ik7YdLx5jk5oGsY5OgGAQGvSZyggr5xPUAAAAAAAAAC8KWMxAAAAAAAAQEHGYgAAAAAAAICCjMUA\n", "AAAAAAAABRmLAQAAAAAAAAoyFgMAAAAAAAAUZCwGAAAAAAAAKMhYDAAAAAAAAFCQsRgAAAAAAACg\n", "oCk6AGibdpfohKZxytnW92t0AkAJyzxGJzQdHm+iEzbdnHfRCU3Lkvcb0mXtoxM2jcMSndB03J2i\n", "EzYd9jm7srs55fy55Twy/5856TltSPyscpP0vNF1ec8dh5vn6ISmYZyjEwBKWJM+q8wXsw/wfXI+\n", "QQEAAAAAAADwpozFAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFGQsBgAAAAAAACjIWAwAAAAA\n", "AABQkLEYAAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAAAACAgqboAKBtGJbohKbDh8foBAACLZe8t5GH\n", "h5fohE3n8y46oWle835Duix9dMKmaUx8n7Y7RSds2u9zdmV3TPpz63Meml3Xdd1lznlOG4Y1OqEp\n", "699Z13Xd4Zjzur6/fY5OaBqmS3QCAIGev3yITgCuTM4nKAAAAAAAAADelLEYAAAAAAAAoCBjMQAA\n", "AAAAAEBBxmIAAAAAAACAgozFAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFGQsBgAAAAAAACho\n", "ig4ArtPu7jk6AYBAy3mMTmg6HHNeo86nXXRC07L20QlNy5rz+9ZxmKMTmva7c3TCpt0+Z1d2h/0p\n", "OmFT36/RCU3zkvMaNfRLdELT4fASndCU9bq+u32KTmgadnmvUQC8vecvH6ITgCuT880LAAAAAAAA\n", "AG/KWAwAAAAAAABQkLEYAAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAAAACAgozFAAAAAAAAAAUZiwEA\n", "AAAAAAAKMhYDAAAAAAAAFGQsBgAAAAAAAChoig4ArtN09xSdsK1fowsAXlEfHdC0nMfohKb91+fo\n", "hE2H0y46oWldE/+tLTm/b52mS3RC0/Em6TGQ9f6R32R8OkYnNF0uOV91DMMSndB0OOY8b3Rd1+1v\n", "c7ZNH/Ke04bdHJ3wDZ7ZgXck8XMUwPfI+eYFAAAAAAAAgDdlLAYAAAAAAAAoyFgMAAAAAAAAUJCx\n", "GAAAAAAAAKAgYzEAAAAAAABAQcZiAAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAA\n", "ABQ0RQcA16nfX6ITNmXtAnhv+vMYndC0v3uKTth0Oe2iE9rWPrqgaVlyft867fLecxxucx4D+6Rd\n", "6a3RAdfncs75qmMYluiEpsPtc3RCU9br+niX92fW7+boBIAS1lPOew6A75XzzQsAAAAAAAAAb8pY\n", "DAAAAAAAAFCQsRgAAAAAAACgIGMxAAAAAAAAQEHGYgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAA\n", "AAoyFgMAAAAAAAAUNEUHAFdqWKMLNg0flugEgBLWS97z7fT1KTph0+G0i05oW/vogqZ1ydk27i7R\n", "CU37u5zHwO5Dzi7en+mc81VHn/QZquu67pD0vNF1XTclPXcMH8/RCU19zkMA4N2Zf817bQf4Hv6z\n", "GAAAAAAAAKAgYzEAAAAAAABAQcZiAAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAA\n", "ABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAAAKCgKToA4DX1d4m/gRkStwF8p/4yRyc0TR+e\n", "ohM2LSe33r/FOue8fg77S3RC0+4u5zGQ9djkN+qjA9qynm/7cYlOaNp9eIxOaMp67hg+Jj4IpjG6\n", "AOD1LHmvn92v0QEAryPnmxcAAAAAAAAA3pSxGAAAAAAAAKAgYzEAAAAAAABAQcZiAAAAAAAAgIKM\n", "xQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUNAUHQDwqn74\n", "GF3Q1vfRBQCv53KJLmgaPt5HJ2zaXR6jE67TkvP71n6X9xiY7p6iEzYNd6fohKs0dWt0wrY+aVfX\n", "des56auOYYkuaNr9kPcaNXxMeu74+CG6oG1KegwA/BZr3nuO7n/nvX4CfI+cb14AAAAAAAAAeFPG\n", "YgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAoyFgMAAAAAAAAUZCwGAAAAAAAAKMhYDAAAAAAA\n", "AFCQsRgAAAAAAACgoCk6AOA1rbd30QlN624XnQDwavrLJTqhabh/iE7YdnmKLrhK69JHJ2zqpzk6\n", "oWm8PUUnbOo/rNEJV6nvX6ITtg15f5/rZYxO2NQn/pmNH/Neo4ZPOa8D6w+fohOa1snrPuD96M/n\n", "6IRveIwOAHgV/rMYAAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAAAACAgozFAAAAAAAAAAUZiwEAAAAA\n", "AAAKMhYDAAAAAAAAFGQsBgAAAAAAACjIWAwAAAAAAABQkLEYAAAAAAAAoKApOgCgiuWH30UnALye\n", "yym6oGl6uI9O2NRfPkcnNI39U3RC0zr30Qmb+t0andDU30YXbOvv9tEJ12nIeb4dp5fohKb1nPS8\n", "MSY+b/wQXfANn3LGzT/8FJ3QNjnfAu/H+PMfoxMA3j3/WQwAAAAAAABQkLEYAAAAAAAAoCBjMQAA\n", "AAAAAEBBxmIAAAAAAACAgozFAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFGQsBgAAAAAAACjI\n", "WAwAAAAAAABQ0BQdAFDF/OF30QkAr6afz9EJTcvTQ3TCpmGZoxOa+uE+OqFpndfohE39ro9OaLu5\n", "iS7YtN7m7Mqun56iEzb1+5xdXdd16znpeWOMLviGTx+iC5qWH/8iOmHT8vH30QlN67iLTgB4NePP\n", "f4xOAHj3/GcxAAAAAAAAQEHGYgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAoyFgMAAAAAAAAU\n", "ZCwGAAAAAAAAKMhYDAAAAAAAAFCQsRgAAAAAAACgoCk6AKCK5e730QltvW+HgO80n6ILmvrzc3TC\n", "tnWNLmgahrzXgX5eohO2TWN0QdN6vI1O2LTe5OxKb7ePLtjUH3bRCU39ZY5O2DbmPdcun/4iOqFp\n", "/umvoxM2zR/+Mjqhbcx53gASW5PecwPwZ5H3SQUAAAAAAACAN2MsBgAAAAAAACjIWAwAAAAAAABQ\n", "kLEYAAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAAAACAgozFAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAA\n", "AAAAFDRFBwBUse4/RSe07T5EF2zrx+iC67Scogt4LcM+uuAbluiApkuf9HvIPjrgG8bE59t5ji7Y\n", "tO7yHp/L7Q/RCdumXXTBdfpwji7YNDx+iU5o6s9J74USn2vnH/8yOqHp8tMfohM2rR//TXTCNyS9\n", "F+o6zyrvSepnlcTWnPe23fk+ugCAQInvHgEAAAAAAAB4K8ZiAAAAAAAAgIKMxQAAAAAAAAAFGYsB\n", "AAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAAAKAgYzEAAAAAAABA\n", "QVN0AEAZ4z66oOlw+6+jEzat6xKdcJXm+T46gVcyjh+iE5r6vo9OaDoNh+iETZd1jk5oWsdddEJT\n", "P1+iEzatU97r+nL8FJ2wae19q/xb9Envh9bjXXRCU385RSdsWse8r2Dmj38dndD26d9GF2w6HH4f\n", "ndC0rmt0QpNnlfcj87NKZn3S+6GX+/8enQBAoJxXJwAAAAAAAADelLEYAAAAAAAAoCBjMQAAAAAA\n", "AEBBxmIAAAAAAACAgozFAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFGQsBgAAAAAAAChoig4A\n", "IN443UUnbFqXOTrhKg3DITqBV9L3Y3RCUz/kbTv0++iETc8/rtEJTfN4jE5oW07RBduGnH9nXdd1\n", "6/6H6AReUdYzx3pI/HfmvPHd1o9/iE5oOh7/ZXTCpmFM/PtM/BzlWeX9yPysklnm5ygA6vKfxQAA\n", "AAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAAAKAg\n", "YzEAAAAAAABAQcZiAAAAAAAAgIKMxQAAAAAAAAAFTdEBANDSD2N0wlXqOz83ahvGfXTCpsPhr6IT\n", "ms79LjqhaV0v0Qmb+j7vd7fDcIhOoID1+PvohKZ1XaITNvV93lcw+/1P0QlNWa/rmWV+jvKsAgCQ\n", "T943HAAAAAAAAAC8GWMxAAAAAAAAQEHGYgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAoyFgMA\n", "AAAAAAAUZCwGAAAAAAAAKMhYDAAAAAAAAFCQsRgAAAAAAACgoCk6AAAAKhinu+iEpsxtAAAAALwd\n", "/1kMAAAAAAAAUJCxGAAAAAAAAKAgYzEAAAAAAABAQcZiAAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAA\n", "AAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAAAKAgYzEAAAAAAABAQcZi\n", "AAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAA\n", "UJCxGAAAAAAAAKAgYzEAAAAAAABAQcZiAAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAA\n", "AAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAAAKAgYzEAAAAAAABAQcZiAAAAAAAAgIKM\n", "xQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAA\n", "AKAgYzEAAAAAAABAQcZiAAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYA\n", "AAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAAAKAgYzEAAAAAAABAQcZiAAAAAAAAgIKMxQAAAAAAAAAF\n", "GYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAAAKAgYzEAAAAA\n", "AABAQcZiAAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgM\n", "AAAAAAAAUJCxGAAAAAAAAKAgYzEAAAAAAABAQcZiAAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAA\n", "CjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAAAKAgYzEAAAAAAABAQcZiAAAA\n", "AAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCx\n", "GAAAAAAAAKAgYzEAAAAAAABAQcZiAAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAA\n", "ABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAAAKAgYzEAAAAAAABAQcZiAAAAAAAAgIKMxQAA\n", "AAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAAAKAg\n", "YzEAAAAAAABAQcZiAAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABQ0RQcAAEAF\n", "8+UhOqHpfPolOqFpXS/RCZv6Pu93t/1wiE6ggHV5iU5oWtclOmFT3+d9BbPb/xSd0DROd9EJAADw\n", "ruV9wwEAAAAAAADAmzEWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAAAKAgYzEA\n", "AAAAAABAQcZiAAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACpqiAwCgZV3m6ISrtK5+bu9F34/R\n", "CU39kLdtmU/RCZteXv4xOqGp//o/ohPalpy/z3XYRyc0LfsfohMooD99iU5oc974bi8f/xCd0HTs\n", "/1V0wqZhzPv7zPwc5Vnl/cj8rJJZ5ucoAOryn8UAAAAAAAAABRmLAQAAAAAAAAoyFgMAAAAAAAAU\n", "ZCwGAAAAAAAAKMhYDAAAAAAAAFCQsRgAAAAAAACgIGMxAAAAAAAAQEHGYgAAAAAAAICCjMUAAAAA\n", "AAAABU3RAQDEmy8P0Qmb1nWJTrhK83wfncArGccP0QlN/dJHJzSdXv4pOmFT/+vfRSc0jV//ITqh\n", "qZ8v0Qmb1mkfndC0HD9FJ2xae98q/xZ90vuh4flzdEJTfzlFJ2xax7yvYOb5OTqh6eXHnPcc+8Pv\n", "oxOa1nWNTmjyrPJ+ZH5Wyaxf3A8BkI+rEwAAAAAAAEBBxmIAAAAAAACAgozFAAAAAAAAAAUZiwEA\n", "AAAAAAAKMhYDAAAAAAAAFGQsBgAAAAAAACjIWAwAAAAAAABQkLEYAAAAAAAAoKApOgCgjPkUXdD0\n", "8vj30Qnb+jG64Dotef/W+D7zcB+d8A1LdEBT//V/Ridsmn79X9EJTeOv/zc6oW2eows2rbt9dEJT\n", "f/sQnbBt2kUXXKfLObpg0/D4JTqhqT8nvRca897b9nPOv7Ou67pL0meCl48v0QnfkPh/QzyrvBu5\n", "n1USW3Pe22Z+ZwXA20t89wgAAAAAAADAWzEWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCx\n", "GAAAAAAAAKAgYzEAAAAAAABAQcZiAAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACpqiAwCq6E+f\n", "oxPazl+jC4BrM5+iC5qmX/4+OmHT+Kc/Ric0DZ//FJ3QNi/RBdumMbqgaXjIeV1fb26jE65S//QY\n", "nbCpf87Z1XVd113m6IJtY+Lv9eekP7Ou67o1OmDbZU16feq6rhv30QXAtcl8TgPgzSV+UgEAAAAA\n", "AADgrRiLAQAAAAAAAAoyFgMAAAAAAAAUZCwGAAAAAAAAKMhYDAAAAAAAAFCQsRgAAAAAAACgIGMx\n", "AAAAAAAAQEHGYgAAAAAAAICCjMUAAAAAAAAABU3RAQBVDA//FJ0A8Gr6+Ryd0DT+8g/RCZuGXxJf\n", "Bz7fRxc0rXN0wbZ+10cnNPU3SY/P8ym64Cr1j0/RCdueknZ1Xbee1+iETf0YXdA2LEt0Qluf83y7\n", "7o7RCU3ruItOAADgivjPYgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAoyFgMAAAAAAAAUZCwG\n", "AAAAAAAAKMhYDAAAAAAAAFCQsRgAAAAAAACgIGMxAAAAAAAAQEFTdABAFeP9z9EJAK/ncoouaBp+\n", "/VN0wqb1l/vohKb1S3RB2zr30Qmb+t0andDUnx6jEzb1l0t0wlVaH3Keb9ecf2Zd13Xdek563hgT\n", "nzeWvNeoYRijEzYNN3fRCW3TProAAIAr4j+LAQAAAAAAAAoyFgMAAAAAAAAUZCwGAAAAAAAAKMhY\n", "DAAAAAAAAFCQsRgAAAAAAACgIGMxAAAAAAAAQEHGYgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAA\n", "AAqaogMAqhi+/BydAPBq+sslOqHt85fogk3r5+iCtvnrTXRC07r00Qmb+mmOTmgaL6fohG1L0q7k\n", "1vucx8D8uI9OaFovY3TCpn5YoxOaxvUpOqGpn3Je18e7X6ITmtbJ6z4AAP7/+c9iAAAAAAAAgIKM\n", "xQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAA\n", "AKAgYzEAAAAAAABAQcZiAAAAAAAAgIKm6ACA19Q/PkQnNPV9H50A8Houl+iCpuXzGp2waf56E53Q\n", "dP5yG53QtuT8vrXf5T0GuiXnPcewnqITrtLysI9O2HR5yHtOW89JX3UMS3TBdZqeogs2DR8+Ryc0\n", "9VPSYwDgt1hzPt8BvCc537wAAAAAAAAA8KaMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRk\n", "LAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAAAKAgYzEAAAAAAABAQVN0AMCr+vI1uqBt8H0O8I5c\n", "5uiCpuXrPjph0/nLbXRC0/k+b9s657x+DvtLdELb2kcXbJq6nF3ZXe5vohM2nR9ydnVd1y2nnK86\n", "+nGJTrhK/ZTznmP4+hCd0DaN0QUAr2fJfP10vgXeh5xvXgAAAAAAAAB4U8ZiAAAAAAAAgIKMxQAA\n", "AAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAAAKAg\n", "YzEAAAAAAABAQVN0AMBrWh+W6IRvyNwG8H3WS3RB2+X+Jjph0/n+Njqh6SVx27r00QmbxlPig2CN\n", "DuA1nZOe004PObu6ruvmc85XHf3g4Pwthn3O8+3w9RSd0NRPOX9mAO/PGB0A8Cr8ZzEAAAAAAABA\n", "QcZiAAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAA\n", "AAAAUJCxGAAAAAAAAKAgYzEAAAAAAABAQVN0AHCllj66YNNy7xsYgD+H9TxGJzRd7m+iEza9POTs\n", "6rque3k8Ric0LUvOa/u0u0QnUMQp6bnj5TFnV9d13eWc81XHMCzRCW39Gl3QNO7P0Qmbpq+P0QlN\n", "/W6OTgCoIen7UYDvlfPNCwAAAAAAAABvylgMAAAAAAAAUJCxGAAAAAAAAKAgYzEAAAAAAABAQcZi\n", "AAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABQ0RQcA12k95Tx9rOcxOgHgFfXR\n", "AU1L4vPt6eEmOmHTy+MxOqHp+Tlv27Lk/L51ulyiE65P3lNaai+POc9pz095zxuXS85nlWFYohPa\n", "+jW6oGnan6MTNu0e8h4Dw26OTviGvH9rAN9tdYMLvA8537wAAAAAAAAA8KaMxQAAAAAAAAAFGYsB\n", "AAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAAAKAgYzEAAAAAAABA\n", "QcZiAAAAAAAAgIKm6ADgOl0ebqITAAi0nMfohKbT4zE6YdPLc86uruu655dDdELTsub8vnW85H2U\n", "mue8xyff7+H+Ljph0+m8i05ompecx8DQL9EJTX2/Ric07R7P0QmbDvd5n4mH3RydAADAFcn55gUA\n", "AAAAAACAN2UsBgAAAAAAACjIWAwAAAAAAABQkLEYAAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAAAACA\n", "gozFAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFDRFBwDX6fxwjE4AINByyXsb+fKc8xr18nKI\n", "Tmh6OuVtW5Y+OmHTNC7RCU3rmvNntj+dohOu0stpH52w6eWcs6vruu4y5/wufhjW6ISmoc/btns+\n", "RydsOj7eRCc0DdMlOgEAgCuS8wkKAAAAAAAAgDdlLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAA\n", "AKAgYzEAAAAAAABAQcZiAAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACpqiA4C2Zcn7PcfL/W10\n", "wqa+X6MTAEpY5jE6oenl+RCdsOn5tI9OaMrctqx9dMKmcV6iE5rWpLdDh8R/Z5llPT6fzzm7uq7r\n", "5qTPUUPiZ5Wxz3tO2yW9rp8ej9EJTcM4RycAlLAmfVbJ/E4ZyMlZAwAAAAAAAKAgYzEAAAAAAABA\n", "QcZiAAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAA\n", "AAAAUJCxGAAAAAAAAKCgKToAaLuc8x6i86GZn0oAAAMGSURBVGWMTgAg0DLnvQ68nPbRCZuezjm7\n", "uq7rni676ISmZe2jEzaN/RKd0LRGBzQckx6b2WU9dzyf85435jXnd/FDn/Xo7LphyHtO25/O0Qmb\n", "Xp6O0QlNwzhHJwAQaE36DAXklfMJCgAAAAAAAIA3ZSwGAAAAAAAAKMhYDAAAAAAAAFCQsRgAAAAA\n", "AACgIGMxAAAAAAAAQEHGYgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAoyFgMAAAAAAAAUNEUH\n", "AG2n50N0AgBsmucxOqHp+bSPTtj0fN5FJzQ9XfK2LWsfnbBp6pfohKvzkvgYyCzrueM58Xnjsub8\n", "Ln7o1+iEpjHxOe2Q9br+dIxOaBrHOToBAIArkvMJCgAAAAAAAIA3ZSwGAAAAAAAAKMhYDAAAAAAA\n", "AFCQsRgAAAAAAACgIGMxAAAAAAAAQEHGYgAAAAAAAICC/rlde0uOFAaCANjD4p29/2UtvDx8Afi0\n", "VRGdeYIKQrSQCmUxAAAAAAAAQEPKYgAAAAAAAICG1tkBIMF1vWZHuDXGv9kRnmU+MgB+yXnmbgTj\n", "/9/ZEW6N/WN2hEdjzz0WnNfsBPfWJfi/29DXcwt9N9ONI3N2jCN3buyhe9SSGauqqtbXOTvCo3fo\n", "7Ni+MnNVVS1L6OYJwO8I3gZS7+Ghu+AbDgAAAAAAAAB+irIYAAAAAAAAoCFlMQAAAAAAAEBDymIA\n", "AAAAAACAhpTFAAAAAAAAAA0piwEAAAAAAAAaUhYDAAAAAAAANKQsBgAAAAAAAGhIWQwAAAAAAADQ\n", "0Do7AGS4Zge49fn1nh0BAG6d52t2hEdj/5gd4dY4cj+9tyP3H9KzMtfacWV+PyZLfTfTjT1zdmzH\n", "n9kRHu1X5txYQs+dVVXrkrnOqqreobPjc8s9ry9L7loDoDt7FCTKvRUCAAAAAAAA4McoiwEAAAAA\n", "AAAaUhYDAAAAAAAANKQsBgAAAAAAAGhIWQwAAAAAAADQkLIYAAAAAAAAoCFlMQAAAAAAAEBDymIA\n", "AAAAAACAhr4B4uwXdYoKb+gAAAAASUVORK5CYII=\n", "\" transform=\"translate(182, 526)\"/>\n", "</g>\n", "<defs>\n", " <clipPath id=\"clip8103\">\n", " <rect x=\"2160\" y=\"126\" width=\"73\" height=\"1282\"/>\n", " </clipPath>\n", "</defs>\n", "<g clip-path=\"url(#clip8103)\">\n", "<image width=\"72\" height=\"1281\" xlink:href=\"data:image/png;base64,\n", "iVBORw0KGgoAAAANSUhEUgAAAEgAAAUBCAYAAAAvgsdEAAALHElEQVR4nO3dwa0kNxAFwR6h/LdC\n", "XkpLygJVHrsPERZ8JB4IgjM7+/v3/H0f/tdfb/8BXydQECgIFAQKc+6/b/8Nn2ZBQaAgUBAozHVI\n", "rywoCBQECgKFucchvbGgIFAQKAgU3KSDBQWBgkBBoOCQDhYUBAoCBYGCQzpYUBAoCBQECt6kgwUF\n", "gYJAQaDgJh0sKAgUBAoCBYd0sKAgUBAoCBTm8dyxsqAgUBAoCBQc0sGCgkBBoCBQmMdzx8qCgkBB\n", "oCBQcJMOFhQECgIFgYJDOlhQECgIFAQK85x/3v4bPs2CgkBBoCBQ8CYdLCgIFAQKAgXPHcGCgkBB\n", "oCBQcEgHCwoCBYGCQGF+98/bf8OnWVAQKAgUBArzHIf0xoKCQEGgIFCYn0N6ZUFBoCBQECi4SQcL\n", "CgIFgYJAYR5v0isLCgIFgYJAwXNHsKAgUBAoCBQ8dwQLCgIFgYJAwU06WFAQKAgUBApu0sGCgkBB\n", "oCBQmN85b/8Nn2ZBQaAgUBAouEkHCwoCBYGCQMEhHSwoCBQECgIFHxwGCwoCBYGCQGEeb9IrCwoC\n", "BYGCQMFNOlhQECgIFAQK3qSDBQWBgkBBoOCQDhYUBAoCBYGC70kHCwoCBYGCQMEHh8GCgkBBoCBQ\n", "8NwRLCgIFAQKAgU36WBBQaAgUBAoOKSDBQWBgkBBoOCDw2BBQaAgUBAoeJMOFhQECgIFgYLnjmBB\n", "QaAgUBAoOKSDBQWBgkBBoOCQDhYUBAoCBYHCPOe+/Td8mgUFgYJAQaAwz3WT3lhQECgIFAQKnjuC\n", "BQWBgkBBoOC5I1hQECgIFAQKbtLBgoJAQaAgUHBIBwsKAgWBgkDBc0ewoCBQECgIFNykgwUFgYJA\n", "QaAwjzN6ZUFBoCBQECg4pIMFBYGCQEGgMP4ty86CgkBBoCBQcJMOFhQECgIFgYJDOlhQECgIFAQK\n", "DulgQUGgIFAQKMzja9IrCwoCBYGCQGHu+b39N3yaBQWBgkBBoOC5I1hQECgIFAQK87hJrywoCBQE\n", "CgKFudchvbGgIFAQKAgU3KSDBQWBgkBBoOCQDhYUBAoCBYGC545gQUGgIFAQKLhJBwsKAgWBgkBh\n", "nqPRRp0gUBAoCBQ8dwQLCgIFgYJAwXNHsKAgUBAoCBT8s/BgQUGgIFAQKMxzNdqoEwQKAgWBgpt0\n", "sKAgUBAoCBQc0sGCgkBBoCBQ8BW8oE4QKAgUBAq+ghcsKAgUBAoCBV/BCxYUBAoCBYHCXM8dK3WC\n", "QEGgIFDw3BEsKAgUBAoCBc8dwYKCQEGgIFDw3BHUCQIFgYJAwXNHsKAgUBAoCBT8Y5ZgQUGgIFAQ\n", "KMz12x0rdYJAQaAgUPDBYbCgIFAQKAgUPHcECwoCBYGCQMEHh8GCgkBBoCBQ8BW8oE4QKAgUBApu\n", "0sGCgkBBoCBQ8CYdLCgIFAQKAgU36WBBQaAgUBAoeJMO6gSBgkBBoOAmHSwoCBQECgIFb9LBgoJA\n", "QaAgUHCTDhYUBAoCBYGCN+mgThAoCBQECm7SwYKCQEGgIFBwSAcLCgIFgYJAwSEdLCgIFAQKAgXf\n", "7ggWFAQKAgWBwhw/+r9SJwgUBAoCBc8dwYKCQEGgIFDw3BEsKAgUBAoCBTfpYEFBoCBQECg4pIMF\n", "BYGCQEGg4JAOFhQECgIFgYJDOlhQECgIFAQKcxzSKwsKAgWBgkDBTTpYUBAoCBQECg7pYEFBoCBQ\n", "ECg4pIMFBYGCQEGg4JAOFhQECgIFgYJDOlhQECgIFAQKvt0RLCgIFAQKAgU36WBBQaAgUBAoOKSD\n", "BQWBgkBBoOD3pIM6QaAgUBAouEkHCwoCBYGCQMEHh8GCgkBBoCBQcJMOFhQECgIFgYKbdLCgIFAQ\n", "KAgU3KSDBQWBgkBBoOCQDhYUBAoCBYGC545gQUGgIFAQKMx9HNIbCwoCBYGCQMFNOlhQECgIFAQK\n", "3qSDBQWBgkBBoDDnvv0nfJsFBYGCQEGg4CYdLCgIFAQKAgVv0sGCgkBBoCBQmOPbHSsLCgIFgYJA\n", "wXNHsKAgUBAoCBQ8dwQLCgIFgYJAwU06WFAQKAgUBApz3v4LPs6CgkBBoCBQcJMOFhQECgIFgYI3\n", "6WBBQaAgUBAo+IGlYEFBoCBQECi4SQcLCgIFgYJAwW93BAsKAgWBgkDBc0ewoCBQECgIFHy7I1hQ\n", "ECgIFAQKvicdLCgIFAQKAgU36WBBQaAgUBAouEkHCwoCBYGCQMFNOlhQECgIFAQKvicdLCgIFAQK\n", "AoXxNemdBQWBgkBBoOAmHSwoCBQECgIFN+lgQUGgIFAQKLhJBwsKAgWBgkDBTTpYUBAoCBQECm7S\n", "wYKCQEGgIFDwK3jBgoJAQaAgUPAreMGCgkBBoCBQcJMOFhQECgIFgcIcN+mVBQWBgkBBoDDXTXpl\n", "QUGgIFAQKPh2R7CgIFAQKAgUfE86WFAQKAgUBAo+OAwWFAQKAgWBgg8OgwUFgYJAQaDgg8NgQUGg\n", "IFAQKPjvs4IFBYGCQEGg4NsdwYKCQEGgIFDw3BEsKAgUBAoCBc8dwYKCQEGgIFBwkw4WFAQKAgWB\n", "gq/gBQsKAgWBgkDBP2YJFhQECgIFgYJ/Fh4sKAgUBAoCBTfpYEFBoCBQECg4pIMFBYGCQEGg4L/P\n", "ChYUBAoCBYGCm3SwoCBQECgIFHxwGCwoCBQECgIFN+lgQUGgIFAQKDikgwUFgYJAQaDguSNYUBAo\n", "CBQECm7SwYKCQEGgIFDwK3jBgoJAQaAgUPAreMGCgkBBoCBQ8NwRLCgIFAQKAgUfHAYLCgIFgYJA\n", "wU06WFAQKAgUBApzH6f0xoKCQEGgIFBwkw4WFAQKAgWBgjfpYEFBoCBQECi4SQcLCgIFgYJAwU06\n", "WFAQKAgUBApu0sGCgkBBoCBQ8C8OgwUFgYJAQaAwx1fwVhYUBAoCBYGCm3SwoCBQECgIFNykgwUF\n", "gYJAQaDgp0qDBQWBgkBBoDDXe8fKgoJAQaAgUHCTDhYUBAoCBYGC70kHCwoCBYGCQMGv4AULCgIF\n", "gYJAwU06WFAQKAgUBAq+ghcsKAgUBAoCBc8dwYKCQEGgIFBwkw4WFAQKAgWBgkM6WFAQKAgUBApz\n", "/GOWlQUFgYJAQaDgTTpYUBAoCBQECp47ggUFgYJAQaDgkA4WFAQKAgWBgkM6WFAQKAgUBApzHz+x\n", "tLGgIFAQKAgU3KSDBQWBgkBBoDDn5ya9saAgUBAoCBTmeO5YWVAQKAgUBAoO6WBBQaAgUBAo+OAw\n", "WFAQKAgUBApzfj443FhQECgIFAQKnjuCBQWBgkBBoOCQDhYUBAoCBYGCN+lgQUGgIFAQKMx5/rz9\n", "N3yaBQWBgkBBoOC5I1hQECgIFAQKc92kVxYUBAoCBYGCm3SwoCBQECgIFBzSwYKCQEGgIFDw3BEs\n", "KAgUBAoCBTfpYEFBoCBQECi4SQcLCgIFgYJAwT9mCRYUBAoCBYHCnOuQ3lhQECgIFAQKbtLBgoJA\n", "QaAgUJjrJr2yoCBQECgIFNykgwUFgYJAQaDg2x3BgoJAQaAgUPDBYbCgIFAQKAgUPHcECwoCBYGC\n", "QMEHh8GCgkBBoCBQ8CYdLCgIFAQKAgU36WBBQaAgUBAoeJMOFhQECgIFgYKbdLCgIFAQKAgUvEkH\n", "CwoCBYGCQMFNOlhQECgIFAQK3qSDBQWBgkBBoDD3eu7YWFAQKAgUBApu0sGCgkBBoCBQmOfet/+G\n", "T7OgIFAQKAgU5nGTXllQECgIFAQKvt0RLCgIFAQKAgU36WBBQaAgUBAo+OAwWFAQKAgUBArzeO5Y\n", "WVAQKAgUBApu0sGCgkBBoCBQ8CYdLCgIFAQKAoX/ADo+7xHJfnuOAAAAAElFTkSuQmCC\n", "\" transform=\"translate(2161, 127)\"/>\n", "</g>\n", "<g clip-path=\"url(#clip8100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 1305.05)\" x=\"2268.76\" y=\"1305.05\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip8100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 1305.05)\" x=\"2296.87\" y=\"1305.05\">0.7</text>\n", "</g>\n", "<g clip-path=\"url(#clip8100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 1138.69)\" x=\"2268.76\" y=\"1138.69\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip8100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 1138.69)\" x=\"2296.87\" y=\"1138.69\">0.6</text>\n", "</g>\n", "<g clip-path=\"url(#clip8100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 972.328)\" x=\"2268.76\" y=\"972.328\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip8100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 972.328)\" x=\"2296.87\" y=\"972.328\">0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip8100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 805.965)\" x=\"2268.76\" y=\"805.965\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip8100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 805.965)\" x=\"2296.87\" y=\"805.965\">0.4</text>\n", "</g>\n", "<g clip-path=\"url(#clip8100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 639.602)\" x=\"2268.76\" y=\"639.602\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip8100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 639.602)\" x=\"2296.87\" y=\"639.602\">0.3</text>\n", "</g>\n", "<g clip-path=\"url(#clip8100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 473.239)\" x=\"2268.76\" y=\"473.239\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip8100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 473.239)\" x=\"2296.87\" y=\"473.239\">0.2</text>\n", "</g>\n", "<g clip-path=\"url(#clip8100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 306.875)\" x=\"2268.76\" y=\"306.875\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip8100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 306.875)\" x=\"2296.87\" y=\"306.875\">0.1</text>\n", "</g>\n", "<g clip-path=\"url(#clip8100)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 140.512)\" x=\"2268.76\" y=\"140.512\">0</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip8100)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2232.76,1407.86 2232.76,1291.4 2256.76,1291.4 2232.76,1291.4 2232.76,1125.04 2256.76,1125.04 2232.76,1125.04 2232.76,958.677 2256.76,958.677 2232.76,958.677 \n", " 2232.76,792.314 2256.76,792.314 2232.76,792.314 2232.76,625.951 2256.76,625.951 2232.76,625.951 2232.76,459.587 2256.76,459.587 2232.76,459.587 2232.76,293.224 \n", " 2256.76,293.224 2232.76,293.224 2232.76,126.861 2256.76,126.861 2232.76,126.861 \n", " \"/>\n", "</svg>\n" ] }, "execution_count": 94, "metadata": {}, "output_type": "execute_result" } ], "source": [ "heatmap( x, y, (x, y) -> AdaptivelySampledDistanceFields.evaluate(adf, SVector(x, y)), aspect_ratio=:equal)\n" ] }, { "cell_type": "code", "execution_count": 95, "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=\"clip8500\">\n", " <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip8500)\" 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=\"clip8501\">\n", " <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip8500)\" d=\"\n", "M182.008 1407.86 L2112.76 1407.86 L2112.76 126.861 L182.008 126.861 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip8502\">\n", " <rect x=\"182\" y=\"126\" width=\"1932\" height=\"1282\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip8502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 201.316,1407.86 201.316,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 674.349,1407.86 674.349,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1147.38,1407.86 1147.38,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1620.42,1407.86 1620.42,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2093.45,1407.86 2093.45,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,1240.39 2112.76,1240.39 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,1003.88 2112.76,1003.88 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,767.359 2112.76,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,530.843 2112.76,530.843 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8502)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,294.326 2112.76,294.326 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1407.86 2112.76,1407.86 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1407.86 182.008,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 201.316,1407.86 201.316,1392.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 674.349,1407.86 674.349,1392.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,1407.86 1147.38,1392.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1620.42,1407.86 1620.42,1392.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2093.45,1407.86 2093.45,1392.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1240.39 205.177,1240.39 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1003.88 205.177,1003.88 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,767.359 205.177,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,530.843 205.177,530.843 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,294.326 205.177,294.326 \n", " \"/>\n", "<g clip-path=\"url(#clip8500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 201.316, 1461.86)\" x=\"201.316\" y=\"1461.86\">-2</text>\n", "</g>\n", "<g clip-path=\"url(#clip8500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 674.349, 1461.86)\" x=\"674.349\" y=\"1461.86\">-1</text>\n", "</g>\n", "<g clip-path=\"url(#clip8500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1147.38, 1461.86)\" x=\"1147.38\" y=\"1461.86\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip8500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1620.42, 1461.86)\" x=\"1620.42\" y=\"1461.86\">1</text>\n", "</g>\n", "<g clip-path=\"url(#clip8500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 2093.45, 1461.86)\" x=\"2093.45\" y=\"1461.86\">2</text>\n", "</g>\n", "<g clip-path=\"url(#clip8500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 1257.89)\" x=\"158.008\" y=\"1257.89\">-1.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip8500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 1021.38)\" x=\"158.008\" y=\"1021.38\">-0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip8500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 784.859)\" x=\"158.008\" y=\"784.859\">0.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip8500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 548.343)\" x=\"158.008\" y=\"548.343\">0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip8500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 311.826)\" x=\"158.008\" y=\"311.826\">1.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip8502)\">\n", "<image width=\"1931\" height=\"483\" xlink:href=\"data:image/png;base64,\n", "iVBORw0KGgoAAAANSUhEUgAAB4sAAAHjCAYAAAA68vn/AAAgAElEQVR4nOzby5IjaXKe4TjhkJnd\n", "1jMjUdKCOxq5Je//KsgtadJKixFNGk6pKjNxigguuJz425hlyHZH+fNcwWuohAOoD+i7blq7pP7r\n", "8z9EJzT9bff30Qmb/u7pJTqh6W9/nqMTmv7m52/RCZumIe3TEwDS+nLZRyds+vNlF53Q9D4P0QlN\n", "89pHJ2wa+7zv057GJTph0y/7a3TCQ/qS9Ha4Gx/nbnyf3yW9Hb/sL9EJAPBwbkvO92n/8+tP0QlN\n", "//J1jE5o+uf31+iETf/S/VN0QtP/ffvH6IRNeT/dAQAAAAAAAPBpjMUAAAAAAAAABRmLAQAAAAAA\n", "AAoyFgMAAAAAAAAUZCwGAAAAAAAAKMhYDAAAAAAAAFCQsRgAAAAAAACgIGMxAAAAAAAAQEHGYgAA\n", "AAAAAICCpugAoO1pukYnAMDDeb/lfIt7GJfohKZl7aMTmuZ1jU7YNOZ9yNL+re2HnF3ZZf33dDc+\n", "zt34Pllvh8/rAPBxXy/76ARgg18WAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAA\n", "AKAgYzEAAAAAAABAQcZiAAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABQ0RQcA\n", "bcfdNToBAB7O/rqPTth0mMfohKZl7KMTmuY1Z9vYr9EJTYdhiU7YdBjn6ISHlPV2uBsf5258n33S\n", "2+HzOgB83NdLzs/rUJ1fFgMAAAAAAAAUZCwGAAAAAAAAKMhYDAAAAAAAAFCQsRgAAAAAAACgIGMx\n", "AAAAAAAAQEHGYgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAqaogOAtqfdJToBADYtax+d0HQY\n", "b9EJmw7jGJ3QtEYH/Io56d/a2Od91A7jHJ2wKetzM7ustyPvM8Dd+B5Z70bX5b0dh+kandA0JP5b\n", "A6C6l+gAYINfFgMAAAAAAAAUZCwGAAAAAAAAKMhYDAAAAAAAAFCQsRgAAAAAAACgIGMxAAAAAAAA\n", "QEHGYgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAoyFgMAAAAAAAAUNEUHAG278Rad0DQOS3QC\n", "AIHmJe93Do9TztfP85z3rfcaHfArsv6tjX3e90KHcY5O2JT1uZld1tuxJj4c85r0biT+DJX1bnRd\n", "3ttxmK7RCU2Z/9YA+HxZP0MBebkaAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFGQsBgAAAAAA\n", "ACjIWAwAAAAAAABQkLEYAAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAAAACAgozFAAAAAAAAAAVN0QHA\n", "YzrsL9EJAASalzE6oel4vkYnbDrf8r71XtfogralX6ITNg193gftON6iEzYdppzPzeyOSW9H6rux\n", "uhsflfVudF3XHZPejsM+Z1fXdd04zNEJAAR6Ox2jE4AH45fFAAAAAAAAAAUZiwEAAAAAAAAKMhYD\n", "AAAAAAAAFGQsBgAAAAAAACjIWAwAAAAAAABQkLEYAAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAAAACA\n", "gqboAOAx7feX6AQAAs3zGJ3QdNhdoxM2Pc3een+Pee2jEzaN/Rqd0HRM+hzI2pXdxe34MHfj454S\n", "Pz+zvq7vd3k/E4/jHJ0AQKC30zE6AXgwflkMAAAAAAAAUJCxGAAAAAAAAKAgYzEAAAAAAABAQcZi\n", "AAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAA\n", "UNAUHQA8psPxHJ0AQKDbLe/byOPpEp2w6Zr4MctsXnJ+v3UYluiEpqfpGp2w6bjL+dzMzu34uCXp\n", "3RgT341j0rvRdXlvx/6Qs6vrum6abtEJAET6/9EBwKPJ+QkKAAAAAAAAgE9lLAYAAAAAAAAoyFgM\n", "AAAAAAAAUJCxGAAAAAAAAKAgYzEAAAAAAABAQcZiAAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAA\n", "CjIWAwAAAAAAABQ0RQcAj2naXaMTNg3jEp0AUMJ4u0UnNB3ej9EJm67zGJ3wK9bogKZ5zfn91rHP\n", "+5gd95fohE2HpF3ZXWcf2z9qXvvohE1jn/ezSta70XV5b8fheIpOaBqnOToBoIRlzvlZBeCjXDMA\n", "AAAAAACAgozFAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFGQsBgAAAAAAACjIWAwAAAAAAABQ\n", "kLEYAAAAAAAAoCBjMQAAAAAAAEBBU3QAwD3tns7RCQAljLcxOqHp8JbzteA2533M+uiAXzEvOb/f\n", "Og5LdELTYX+JTth0OOR8bmaX9Xb03Rqd0ORufFzWu9F1eW/HPvFnz2GaoxMASjh/e4pOALiLnJ+g\n", "AAAAAAAAAPhUxmIAAAAAAACAgozFAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFGQsBgAAAAAA\n", "ACjIWAwAAAAAAABQkLEYAAAAAAAAoCBjMQAAAAAAAEBBU3QAwD1NT6foBIAS1nmMTmg6vOV8Lbjd\n", "8r717vvogrZlyRk39Gt0QtN+f4lO2HR4OkcnPKSstyPnM/M/LGvOumFIfDd2Oe9G13XdIelnvN1z\n", "zq6u67p+nKMTAEo4f3uKTgC4C78sBgAAAAAAACjIWAwAAAAAAABQkLEYAAAAAAAAoCBjMQAAAAAA\n", "AEBBxmIAAAAAAACAgozFAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFGQsBgAAAAAAAChoig4A\n", "uKfp+RSdAFDCuuT9zuH+7RidsGm+5X3r3Q9rdELTMuf8WxuGJTqh6XA8Ryds2j95n/Y95tsYnbCp\n", "7xPfjaSvUcOY+G4cct6Nruu6fdLPeNPLe3RCU5/4NQoAgHxyfoICAAAAAAAA4FMZiwEAAAAAAAAK\n", "MhYDAAAAAAAAFGQsBgAAAAAAACjIWAwAAAAAAABQkLEYAAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAA\n", "AACAgqboAIB7Gg7X6ISmflyiEwBK2L8+RSdsWm5533r3/Rqd0LQsOb/fOgx5X9f3x3N0wqbd8yk6\n", "4SEttzE6YZO78XGp78ZTzrvRdV23T3o7pp/eoxMASljnnK/rAD8SlxYAAAAAAACgIGMxAAAAAAAA\n", "QEHGYgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAoyFgMAAAAAAAAUZCwGAAAAAAAAKMhYDAAA\n", "AAAAAFCQsRgAAAAAAACgoCk6AKCK4ekSnQBQwu6nt+iETcttjE5o6oclOqFpmXN+v3UY8z5mu+M5\n", "OmHT7vkUnfCQ1qTPgT7xc8Dd+Lisd6Pr8r6u+3wH8NuYvx2jEwB+eDk/QQEAAAAAAADwqYzFAAAA\n", "AAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFGQsBgAAAAAAACjIWAwAAAAAAABQkLEYAAAAAAAAoCBj\n", "MQAAAAAAAEBBxmIAAAAAAACAgqboAIAqhpclOgGghPH0Hp2waXcboxOa+jHva9Q65/x+a+bHbHo6\n", "RSdsGp9zdmW3W6MLtmV+DrgbH5f1bnRd140/5Xxd9/kO4Lcxf4suAPjx5fwEBQAAAAAAAMCnMhYD\n", "AAAAAAAAFGQsBgAAAAAAACjIWAwAAAAAAABQkLEYAAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAAAACA\n", "gozFAAAAAAAAAAVN0QEAVfQvvp8D8FsYL+fohG1z3teBYVqiE5qWW87HrR/zPmbT8yk6YVN/uEUn\n", "PKTdkPNvLfNzYE16bzPf2vEp593ouq4bf875uu7zHQAAPwrvbAEAAAAAAAAKMhYDAAAAAAAAFGQs\n", "BgAAAAAAACjIWAwAAAAAAABQkLEYAAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAAAACAgozFAAAAAAAA\n", "AAUZiwEAAAAAAAAKmqIDAMo47KML2qYxugDgboblNTph23yKLmjqpyU6oWmdk36/dcz7mI1Pl+iE\n", "bdMaXfCY9rfogm2J70aX9G70ie/GkPVudF03/BJd0PDyFF0AcD+3OboAgEA5P0EBAAAAAAAA8KmM\n", "xQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAA\n", "AKAgYzEAAAAAAABAQcZiAAAAAAAAgIKm6AAA4q0vP0UnANxNP+T8PmQ/f41OaBqmc3RC2xwd0DBG\n", "B7T1L9EF3NcaHbBpdDc+zt34Pr/8HF2waX16jk4AuJv+y5foBAAC5fyfNAAAAAAAAAA+lbEYAAAA\n", "AAAAoCBjMQAAAAAAAEBBxmIAAAAAAACAgozFAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFGQs\n", "BgAAAAAAAChoig4AIN7608/RCQB3sx6O0QmbhmWJTmjqd2/RCU3rbY1O2NRPfXRC234fXUAB/e4S\n", "ndDkbnyHl+fogqbld3+ITti220UXANxN/+VLdAIAgfyyGAAAAAAAAKAgYzEAAAAAAABAQcZiAAAA\n", "AAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCx\n", "GAAAAAAAAKCgKToAgHjzy++iEwB+fMsSXdA07HbRCU397RadsG3K+1Fq7fvoBAron5+iE5rcjY9b\n", "Xn6OTmiaf/dX0QkAP7yh+9/RCQAE8stiAAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAA\n", "AAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAAAKAgYzEAAAAAAABAQcZiAAAAAAAAgIKm\n", "6AAA4q3Hl+iETeu4j04AuKM1OqBtf4guaLtdoguADYkvWl5T3ve280+/RCc0LS+/j04AuJt+9t4W\n", "gHz8shgAAAAAAACgIGMxAAAAAAAAQEHGYgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAoyFgMA\n", "AAAAAAAUZCwGAAAAAAAAKMhYDAAAAAAAAFDQFB0AAC3L8x+iEwDuZt0doxOa1v1TdELT8PolOgHg\n", "LpaXX6ITmpbn30cnNK275+gEgLsZv/4xOgEA/oJfFgMAAAAAAAAUZCwGAAAAAAAAKMhYDAAAAAAA\n", "AFCQsRgAAAAAAACgIGMxAAAAAAAAQEHGYgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAoyFgMA\n", "AAAAAAAUNEUHAEDL+vzfoxMA7maNDvgV6/6n6IS2vo8uALiL+Ze/jk5oWp/+KjoBoIavf4wuAIC/\n", "4JfFAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFGQsBgAAAAAAACjIWAwAAAAAAABQkLEYAAAA\n", "AAAAoCBjMQAAAAAAAEBBxmIAAAAAAACAgozFAAAAAAAAAAVN0QEA0DId/0d0AkAJt8vX6ISm5fn3\n", "0QkAd7GOx+iEJu+7AX4r/xQdAAB/wS+LAQAAAAAAAAoyFgMAAAAAAAAUZCwGAAAAAAAAKMhYDAAA\n", "AAAAAFCQsRgAAAAAAACgIGMxAAAAAAAAQEHGYgAAAAAAAICCjMUAAAAAAAAABU3RAQDQMu1+iU5o\n", "GsZDdALA3dy+/a/ohKbl+b9FJwD88PZHtxb4cSzzOTqh6RYdAAAb/LIYAAAAAAAAoCBjMQAAAAAA\n", "AEBBxmIAAAAAAACAgozFAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFGQsBgAAAAAAACjIWAwA\n", "AAAAAABQkLEYAAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAAAACAgozFAAAAAAAAAAUZiwEAAAAAAAAK\n", "MhYDAAAAAAAAFGQsBgAAAAAAACjIWAwAAAAAAABQkLEYAAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAA\n", "AACAgqboAABouV2/RCe0XaMDAO5omaMLmobT/4tOALiL5fhfohOaLqd/jU4AAACC+GUxAAAAAAAA\n", "QEHGYgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAoyFgMAAAAAAAAUZCwGAAAAAAAAKMhYDAAA\n", "AAAAAFCQsRgAAAAAAACgoCk6AABabqc/RicAlNDPp+iEpuHt36ITAO5i3b1EJzR53w3w2/Cf8QBk\n", "5JfFAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFGQsBgAAAAAAACjIWAwAAAAAAABQkLEYAAAA\n", "AAAAoCBjMQAAAAAAAEBBxmIAAAAAAACAgozFAAAAAAAAAAVN0QEA0NK//Z/oBIC76a9v0QlNw9u/\n", "RSc0Da9fohMA7mNdowualsu36ISmdfccnQAAAD80vywGAAAAAAAAKMhYDAAAAAAAAFCQsRgAAAAA\n", "AACgIGMxAAAAAAAAQEHGYgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAoyFgMAAAAAAAAUZCwG\n", "AAAAAAAAKGiKDgCAluHtT9EJAHczvOa9aeO3L9EJbbdLdAHAXQzn9+iEpvmSt215+UN0AgAA/ND8\n", "shgAAAAAAACgIGMxAAAAAAAAQEHGYgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAoyFgMAAAAA\n", "AAAUZCwGAAAAAAAAKMhYDAAAAAAAAFDQFB0AQLz+9BqdsKnvcnYBfI/xT/8andA0vH6NTmi73aIL\n", "tk15P0qtfR+dQAH9ukYntLkbH3c5Rxf8CjcNAAA+k18WAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAA\n", "AAAAUJCxGAAAAAAAAKAgYzEAAAAAAABAQcZiAAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACjIW\n", "AwAAAAAAABQ0RQcAEG98/XN0AsD9XK/RBZuGP/8pOqHt9S26oGm9rdEJm/qpj05o6vf76AQquFyi\n", "C5rcjY8bkr52dl3XdUPS3znsdtEFAABwF0nfcQMAAAAAAADwmYzFAAAAAAAAAAUZiwEAAAAAAAAK\n", "MhYDAAAAAAAAFGQsBgAAAAAAACjIWAwAAAAAAABQkLEYAAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAA\n", "AACAgqboAADi9d++RicA3E3//hadsGn982t0QtOaN63r5uiAbeu4Ric09S/n6AQKcDc+LvXduOb9\n", "Bx2GnL9zWJ+eoxMAAOAucr7jBgAAAAAAAOBTGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAo\n", "yFgMAAAAAAAAUJCxGAAAAAAAAKAgYzEAAAAAAABAQcZiAAAAAAAAgIKm6AAA4vWv36ITAO7n62t0\n", "wab1Sx+d0LS876MTmtY56fdbxyW6oGm8XaITtk1rdMFjuuW8HXPiu9ElvRt94rsxZL0bXdf149fo\n", "hE39kvffEwAAPiLnJygAAAAAAAAAPpWxGAAAAAAAAKAgYzEAAAAAAABAQcZiAAAAAAAAgIKMxQAA\n", "AAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUNAUHQBQxvkSXdB2\n", "jg4AuJ/lS3TBtvnrMTqhaX7P27bccn6/tR+X6IS2rI/Z4Rad8JDWc86P7be3vHdjnXM+B4Yp790Y\n", "k96Nruu6bnyPLtg0DDm7AH48ed9zAPwoEn8aAAAAAAAAAOCzGIsBAAAAAAAACjIWAwAAAAAAABRk\n", "LAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAAAKAgYzEAAAAAAABAQcZiAAAAAAAAgIKMxQAAAAAA\n", "AAAFTdEBAFWsr0t0AkAJ89dDdMKm69fn6ISm2/sxOqFpnXN+v7Uf876uZ33MpuUUnfCQbq85n5/u\n", "xsdlvhvTLedj1nVd1yV93Pr9OToBAADuIvGnAQAAAAAAAAA+i7EYAAAAAAAAoCBjMQAAAAAAAEBB\n", "xmIAAAAAAACAgozFAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFGQsBgAAAAAAAChoig4AqGJ5\n", "9f0cgN/C/O0pOmHT9dtzdELT9XSITmha5pyvn8O4RCc0rUkfs76PLnhMWW+Hu/Fx7sb3GaY5OmHT\n", "cLxGJwAAwF3k/TQAAAAAAAAAwKcxFgMAAAAAAAAUZCwGAAAAAAAAKMhYDAAAAAAAAFCQsRgAAAAA\n", "AACgIGMxAAAAAAAAQEHGYgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAqaogMAqlje99EJACVc\n", "vz1HJ2y6vD1FJzRd3g/RCU3LkvP7rcOwRCc0rXPOx6wf8z5mmV1ec96Oy8nd+KjUdyPpY9Z1XTdM\n", "c3TCpvHlFJ0AAAB3kffTAAAAAAAAAACfxlgMAAAAAAAAUJCxGAAAAAAAAKAgYzEAAAAAAABAQcZi\n", "AAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoaIoOALin5byL\n", "TgAoYV3yfufw8naMTth0TtrVdV13Ph+iE5qWOeff2jAs0QlN69pHJ2wapjk64SGd33PejvMp8d1I\n", "+ho1jO7G9ximW3TCpunbU3RCU5/4NQoAgHxyfoICAAAAAAAA4FMZiwEAAAAAAAAKMhYDAAAAAAAA\n", "FGQsBgAAAAAAACjIWAwAAAAAAABQkLEYAAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAAAACAgqboAIB7\n", "ur0doxMASljnMTqh6ZL0teD0nrOr67ruct1HJzQtSx+dsGno1+iEpnXN+ZiN0xyd8JCy3o7LJfHd\n", "SPocGIbEdyPpre26rhunW3TCpv3rU3RCUz+6twAA/Of5ZTEAAAAAAABAQcZiAAAAAAAAgIKMxQAA\n", "AAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAAAKAg\n", "YzEAAAAAAABAQVN0AMA93d6P0QkAJSy3MTqh6Zz0teB82UcnNGVum5ec328dhyU6oWmNDmiY3m/R\n", "CQ8p6/Mza1fXuRvfY816OLqum5K+rh/ecnZ1XdcN0xydAADAA8n5CQoAAAAAAACAT2UsBgAAAAAA\n", "ACjIWAwAAAAAAABQkLEYAAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAAAACAgozFAAAAAAAAAAUZiwEA\n", "AAAAAAAKMhYDAAAAAAAAFDRFBwDc0/X9EJ0AUMJ8G6MTms7nnK8Fp8s+OqEpc9u85vx+69iv0QlN\n", "a9dHJ2yaxjk64SGdLm7aR81rzufA2C/RCU15L1re23FJ/NlznHI+ZgAA5JTzf14AAAAAAAAA+FTG\n", "YgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAoyFgMAAAAAAAAUZCwGAAAAAAAAKMhYDAAAAAAA\n", "AFCQsRgAAAAAAACgoCk6AHhMt+suOmHbNToAoIbbLe/byPNlH52w6XQ5RCc0nW5JX9e7rpuXnN9v\n", "HYYlOuHh7MZbdMJDOiW9ae+J78aS9G6Mqe9GHx3QtBvn6IRN59MxOqFpmtxbAAD+83J+ggIAAAAA\n", "AADgUxmLAQAAAAAAAAoyFgMAAAAAAAAUZCwGAAAAAAAAKMhYDAAAAAAAAFCQsRgAAAAAAACgIGMx\n", "AAAAAAAAQEHGYgAAAAAAAICCjMUAAAAAAAAABU3RAcBjOp8O0QkABJrnMTqh6XTdRydsOt120QlN\n", "79e8bfPaRydsGvs1OuHh7JI+N7N7T3o7Tu7Gh7kb3yfr7Xg65+zquq6bb3nfpwEAkI9fFgMAAAAA\n", "AAAUZCwGAAAAAAAAKMhYDAAAAAAAAFCQsRgAAAAAAACgIGMxAAAAAAAAQEHGYgAAAAAAAICCjMUA\n", "AAAAAAAABRmLAQAAAAAAAAoyFgMAAAAAAAAUNEUHAI/pctlHJwAQaF7G6ISm83UXnbDpPWlX13Xd\n", "+y3vx4Jl7aMTNg39Gp3wcPbjLTrhIZ2S3g534+Pcje+T9XZcrnk/E4/zHJ0AAMAD8ctiAAAAAAAA\n", "gIKMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAA\n", "AAAAAKAgYzEAAAAAAABAQVN0APCYzpd9dAIAgeYl73cOT7dddMKm05z3rfd5GaMTmrL+rY39Ep3Q\n", "1PfRBdsOSZ+b2WW9Hec58d1Yk96NIfHdmKML2rLejvMlZ1fXdd045H1+AgCQT85PUAAAAAAAAAB8\n", "KmMxAAAAAAAAQEHGYgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAoyFgMAAAAAAAAUZCwGAAAA\n", "AAAAKMhYDAAAAAAAAFCQsRgAAAAAAACgoCk6AGi7znmfotc5ugCASMvaRyc0nW45Xz/P8xid0JS5\n", "bU76tzb2Obu6ruv6pO/Tsj43s8v6/DwvObu6LvHdSNrVdV2Xtyzv7TjfdtEJTUO/RicAAPBA/LIY\n", "AAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAAAACAgozFAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAA\n", "FGQsBgAAAAAAACjIWAwAAAAAAABQkLEYAAAAAAAAoKApOgBoe7/uoxMA4OGc55xvcc/zGJ3QdErc\n", "Nq99dMKmsV+jE5pyPmJ5n5vZZb0d7sbHuRvfJ+vtON920QkAAHAXflkMAAAAAAAAUJCxGAAAAAAA\n", "AKAgYzEAAAAAAABAQcZiAAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYA\n", "AAAAAAAoaIoOANpO1110AgA8nMs8RidsOi95v6d5nvO2zWt0wbax76MTmoY+54N2TvrczC7r7XA3\n", "Ps7d+D5ZX9d9XgcA4EeR99MdAAAAAAAAAJ/GWAwAAAAAAABQkLEYAAAAAAAAoCBjMQAAAAAAAEBB\n", "xmIAAAAAAACAgozFAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFGQsBgAAAAAAAChoig4A2t5v\n", "u+gEAHg4lyXn9yHPc86uruu689JHJzTNa2msaMkAAACPSURBVM62sV+jE5qGpH9r/96eHZwAAAIx\n", "EHzYf8O+rEFBCJeZCnyFk90r813pUrfDbtyzG29St8N/HQCAKTIvbgAAAAAAAAC+EosBAAAAAAAA\n", "ConFAAAAAAAAAIXEYgAAAAAAAIBCYjEAAAAAAABAIbEYAAAAAAAAoJBYDAAAAAAAAFBILAYAAAAA\n", "AAAodADEEu3x8JLP+gAAAABJRU5ErkJggg==\n", "\" transform=\"translate(182, 526)\"/>\n", "</g>\n", "<defs>\n", " <clipPath id=\"clip8503\">\n", " <rect x=\"2160\" y=\"126\" width=\"73\" height=\"1282\"/>\n", " </clipPath>\n", "</defs>\n", "<g clip-path=\"url(#clip8503)\">\n", "<image width=\"72\" height=\"1281\" xlink:href=\"data:image/png;base64,\n", "iVBORw0KGgoAAAANSUhEUgAAAEgAAAUBCAYAAAAvgsdEAAALHElEQVR4nO3dwa0kNxAFwR6h/LdC\n", "XkpLygJVHrsPERZ8JB4IgjM7+/v3/H0f/tdfb/8BXydQECgIFAQKc+6/b/8Nn2ZBQaAgUBAozHVI\n", "rywoCBQECgKFucchvbGgIFAQKAgU3KSDBQWBgkBBoOCQDhYUBAoCBYGCQzpYUBAoCBQECt6kgwUF\n", "gYJAQaDgJh0sKAgUBAoCBYd0sKAgUBAoCBTm8dyxsqAgUBAoCBQc0sGCgkBBoCBQmMdzx8qCgkBB\n", "oCBQcJMOFhQECgIFgYJDOlhQECgIFAQK85x/3v4bPs2CgkBBoCBQ8CYdLCgIFAQKAgXPHcGCgkBB\n", "oCBQcEgHCwoCBYGCQGF+98/bf8OnWVAQKAgUBArzHIf0xoKCQEGgIFCYn0N6ZUFBoCBQECi4SQcL\n", "CgIFgYJAYR5v0isLCgIFgYJAwXNHsKAgUBAoCBQ8dwQLCgIFgYJAwU06WFAQKAgUBApu0sGCgkBB\n", "oCBQmN85b/8Nn2ZBQaAgUBAouEkHCwoCBYGCQMEhHSwoCBQECgIFHxwGCwoCBYGCQGEeb9IrCwoC\n", "BYGCQMFNOlhQECgIFAQK3qSDBQWBgkBBoOCQDhYUBAoCBYGC70kHCwoCBYGCQMEHh8GCgkBBoCBQ\n", "8NwRLCgIFAQKAgU36WBBQaAgUBAoOKSDBQWBgkBBoOCDw2BBQaAgUBAoeJMOFhQECgIFgYLnjmBB\n", "QaAgUBAoOKSDBQWBgkBBoOCQDhYUBAoCBYHCPOe+/Td8mgUFgYJAQaAwz3WT3lhQECgIFAQKnjuC\n", "BQWBgkBBoOC5I1hQECgIFAQKbtLBgoJAQaAgUHBIBwsKAgWBgkDBc0ewoCBQECgIFNykgwUFgYJA\n", "QaAwjzN6ZUFBoCBQECg4pIMFBYGCQEGgMP4ty86CgkBBoCBQcJMOFhQECgIFgYJDOlhQECgIFAQK\n", "DulgQUGgIFAQKMzja9IrCwoCBYGCQGHu+b39N3yaBQWBgkBBoOC5I1hQECgIFAQK87hJrywoCBQE\n", "CgKFudchvbGgIFAQKAgU3KSDBQWBgkBBoOCQDhYUBAoCBYGC545gQUGgIFAQKLhJBwsKAgWBgkBh\n", "nqPRRp0gUBAoCBQ8dwQLCgIFgYJAwXNHsKAgUBAoCBT8s/BgQUGgIFAQKMxzNdqoEwQKAgWBgpt0\n", "sKAgUBAoCBQc0sGCgkBBoCBQ8BW8oE4QKAgUBAq+ghcsKAgUBAoCBV/BCxYUBAoCBYHCXM8dK3WC\n", "QEGgIFDw3BEsKAgUBAoCBc8dwYKCQEGgIFDw3BHUCQIFgYJAwXNHsKAgUBAoCBT8Y5ZgQUGgIFAQ\n", "KMz12x0rdYJAQaAgUPDBYbCgIFAQKAgUPHcECwoCBYGCQMEHh8GCgkBBoCBQ8BW8oE4QKAgUBApu\n", "0sGCgkBBoCBQ8CYdLCgIFAQKAgU36WBBQaAgUBAoeJMO6gSBgkBBoOAmHSwoCBQECgIFb9LBgoJA\n", "QaAgUHCTDhYUBAoCBYGCN+mgThAoCBQECm7SwYKCQEGgIFBwSAcLCgIFgYJAwSEdLCgIFAQKAgXf\n", "7ggWFAQKAgWBwhw/+r9SJwgUBAoCBc8dwYKCQEGgIFDw3BEsKAgUBAoCBTfpYEFBoCBQECg4pIMF\n", "BYGCQEGg4JAOFhQECgIFgYJDOlhQECgIFAQKcxzSKwsKAgWBgkDBTTpYUBAoCBQECg7pYEFBoCBQ\n", "ECg4pIMFBYGCQEGg4JAOFhQECgIFgYJDOlhQECgIFAQKvt0RLCgIFAQKAgU36WBBQaAgUBAoOKSD\n", "BQWBgkBBoOD3pIM6QaAgUBAouEkHCwoCBYGCQMEHh8GCgkBBoCBQcJMOFhQECgIFgYKbdLCgIFAQ\n", "KAgU3KSDBQWBgkBBoOCQDhYUBAoCBYGC545gQUGgIFAQKMx9HNIbCwoCBYGCQMFNOlhQECgIFAQK\n", "3qSDBQWBgkBBoDDnvv0nfJsFBYGCQEGg4CYdLCgIFAQKAgVv0sGCgkBBoCBQmOPbHSsLCgIFgYJA\n", "wXNHsKAgUBAoCBQ8dwQLCgIFgYJAwU06WFAQKAgUBApz3v4LPs6CgkBBoCBQcJMOFhQECgIFgYI3\n", "6WBBQaAgUBAo+IGlYEFBoCBQECi4SQcLCgIFgYJAwW93BAsKAgWBgkDBc0ewoCBQECgIFHy7I1hQ\n", "ECgIFAQKvicdLCgIFAQKAgU36WBBQaAgUBAouEkHCwoCBYGCQMFNOlhQECgIFAQKvicdLCgIFAQK\n", "AoXxNemdBQWBgkBBoOAmHSwoCBQECgIFN+lgQUGgIFAQKLhJBwsKAgWBgkDBTTpYUBAoCBQECm7S\n", "wYKCQEGgIFDwK3jBgoJAQaAgUPAreMGCgkBBoCBQcJMOFhQECgIFgcIcN+mVBQWBgkBBoDDXTXpl\n", "QUGgIFAQKPh2R7CgIFAQKAgUfE86WFAQKAgUBAo+OAwWFAQKAgWBgg8OgwUFgYJAQaDgg8NgQUGg\n", "IFAQKPjvs4IFBYGCQEGg4NsdwYKCQEGgIFDw3BEsKAgUBAoCBc8dwYKCQEGgIFBwkw4WFAQKAgWB\n", "gq/gBQsKAgWBgkDBP2YJFhQECgIFgYJ/Fh4sKAgUBAoCBTfpYEFBoCBQECg4pIMFBYGCQEGg4L/P\n", "ChYUBAoCBYGCm3SwoCBQECgIFHxwGCwoCBQECgIFN+lgQUGgIFAQKDikgwUFgYJAQaDguSNYUBAo\n", "CBQECm7SwYKCQEGgIFDwK3jBgoJAQaAgUPAreMGCgkBBoCBQ8NwRLCgIFAQKAgUfHAYLCgIFgYJA\n", "wU06WFAQKAgUBApzH6f0xoKCQEGgIFBwkw4WFAQKAgWBgjfpYEFBoCBQECi4SQcLCgIFgYJAwU06\n", "WFAQKAgUBApu0sGCgkBBoCBQ8C8OgwUFgYJAQaAwx1fwVhYUBAoCBYGCm3SwoCBQECgIFNykgwUF\n", "gYJAQaDgp0qDBQWBgkBBoDDXe8fKgoJAQaAgUHCTDhYUBAoCBYGC70kHCwoCBYGCQMGv4AULCgIF\n", "gYJAwU06WFAQKAgUBAq+ghcsKAgUBAoCBc8dwYKCQEGgIFBwkw4WFAQKAgWBgkM6WFAQKAgUBApz\n", "/GOWlQUFgYJAQaDgTTpYUBAoCBQECp47ggUFgYJAQaDgkA4WFAQKAgWBgkM6WFAQKAgUBApzHz+x\n", "tLGgIFAQKAgU3KSDBQWBgkBBoDDn5ya9saAgUBAoCBTmeO5YWVAQKAgUBAoO6WBBQaAgUBAo+OAw\n", "WFAQKAgUBApzfj443FhQECgIFAQKnjuCBQWBgkBBoOCQDhYUBAoCBYGCN+lgQUGgIFAQKMx5/rz9\n", "N3yaBQWBgkBBoOC5I1hQECgIFAQKc92kVxYUBAoCBYGCm3SwoCBQECgIFBzSwYKCQEGgIFDw3BEs\n", "KAgUBAoCBTfpYEFBoCBQECi4SQcLCgIFgYJAwT9mCRYUBAoCBYHCnOuQ3lhQECgIFAQKbtLBgoJA\n", "QaAgUJjrJr2yoCBQECgIFNykgwUFgYJAQaDg2x3BgoJAQaAgUPDBYbCgIFAQKAgUPHcECwoCBYGC\n", "QMEHh8GCgkBBoCBQ8CYdLCgIFAQKAgU36WBBQaAgUBAoeJMOFhQECgIFgYKbdLCgIFAQKAgUvEkH\n", "CwoCBYGCQMFNOlhQECgIFAQK3qSDBQWBgkBBoDD3eu7YWFAQKAgUBApu0sGCgkBBoCBQmOfet/+G\n", "T7OgIFAQKAgU5nGTXllQECgIFAQKvt0RLCgIFAQKAgU36WBBQaAgUBAo+OAwWFAQKAgUBArzeO5Y\n", "WVAQKAgUBApu0sGCgkBBoCBQ8CYdLCgIFAQKAoX/ADo+7xHJfnuOAAAAAElFTkSuQmCC\n", "\" transform=\"translate(2161, 127)\"/>\n", "</g>\n", "<g clip-path=\"url(#clip8500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 1322.4)\" x=\"2268.76\" y=\"1322.4\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip8500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 1322.4)\" x=\"2296.87\" y=\"1322.4\">0.7</text>\n", "</g>\n", "<g clip-path=\"url(#clip8500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 1180.83)\" x=\"2268.76\" y=\"1180.83\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip8500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 1180.83)\" x=\"2296.87\" y=\"1180.83\">0.6</text>\n", "</g>\n", "<g clip-path=\"url(#clip8500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 1039.25)\" x=\"2268.76\" y=\"1039.25\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip8500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 1039.25)\" x=\"2296.87\" y=\"1039.25\">0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip8500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 897.668)\" x=\"2268.76\" y=\"897.668\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip8500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 897.668)\" x=\"2296.87\" y=\"897.668\">0.4</text>\n", "</g>\n", "<g clip-path=\"url(#clip8500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 756.09)\" x=\"2268.76\" y=\"756.09\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip8500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 756.09)\" x=\"2296.87\" y=\"756.09\">0.3</text>\n", "</g>\n", "<g clip-path=\"url(#clip8500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 614.511)\" x=\"2268.76\" y=\"614.511\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip8500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 614.511)\" x=\"2296.87\" y=\"614.511\">0.2</text>\n", "</g>\n", "<g clip-path=\"url(#clip8500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 472.933)\" x=\"2268.76\" y=\"472.933\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip8500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 472.933)\" x=\"2296.87\" y=\"472.933\">0.1</text>\n", "</g>\n", "<g clip-path=\"url(#clip8500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 331.354)\" x=\"2268.76\" y=\"331.354\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip8500)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 189.776)\" x=\"2268.76\" y=\"189.776\">0.1</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip8500)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2232.76,1407.86 2232.76,1308.75 2256.76,1308.75 2232.76,1308.75 2232.76,1167.17 2256.76,1167.17 2232.76,1167.17 2232.76,1025.6 2256.76,1025.6 2232.76,1025.6 \n", " 2232.76,884.017 2256.76,884.017 2232.76,884.017 2232.76,742.439 2256.76,742.439 2232.76,742.439 2232.76,600.86 2256.76,600.86 2232.76,600.86 2232.76,459.282 \n", " 2256.76,459.282 2232.76,459.282 2232.76,317.703 2256.76,317.703 2232.76,317.703 2232.76,176.124 2256.76,176.124 2232.76,176.124 2232.76,126.861 \n", " \"/>\n", "</svg>\n" ] }, "execution_count": 95, "metadata": {}, "output_type": "execute_result" } ], "source": [ "heatmap(x,y,frepCouponScale, aspect_ratio=:equal)" ] }, { "cell_type": "code", "execution_count": 96, "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=\"clip8900\">\n", " <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip8900)\" 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=\"clip8901\">\n", " <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n", " </clipPath>\n", "</defs>\n", "<path clip-path=\"url(#clip8900)\" d=\"\n", "M182.008 1407.86 L2112.76 1407.86 L2112.76 126.861 L182.008 126.861 Z\n", " \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n", "<defs>\n", " <clipPath id=\"clip8902\">\n", " <rect x=\"182\" y=\"126\" width=\"1932\" height=\"1282\"/>\n", " </clipPath>\n", "</defs>\n", "<polyline clip-path=\"url(#clip8902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 201.316,1407.86 201.316,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 674.349,1407.86 674.349,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1147.38,1407.86 1147.38,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 1620.42,1407.86 1620.42,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 2093.45,1407.86 2093.45,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,1240.39 2112.76,1240.39 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,1003.88 2112.76,1003.88 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,767.359 2112.76,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,530.843 2112.76,530.843 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8902)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n", " 182.008,294.326 2112.76,294.326 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1407.86 2112.76,1407.86 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1407.86 182.008,126.861 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 201.316,1407.86 201.316,1392.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 674.349,1407.86 674.349,1392.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1147.38,1407.86 1147.38,1392.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 1620.42,1407.86 1620.42,1392.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2093.45,1407.86 2093.45,1392.49 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1240.39 205.177,1240.39 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,1003.88 205.177,1003.88 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,767.359 205.177,767.359 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,530.843 205.177,530.843 \n", " \"/>\n", "<polyline clip-path=\"url(#clip8900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 182.008,294.326 205.177,294.326 \n", " \"/>\n", "<g clip-path=\"url(#clip8900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 201.316, 1461.86)\" x=\"201.316\" y=\"1461.86\">-2</text>\n", "</g>\n", "<g clip-path=\"url(#clip8900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 674.349, 1461.86)\" x=\"674.349\" y=\"1461.86\">-1</text>\n", "</g>\n", "<g clip-path=\"url(#clip8900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1147.38, 1461.86)\" x=\"1147.38\" y=\"1461.86\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip8900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 1620.42, 1461.86)\" x=\"1620.42\" y=\"1461.86\">1</text>\n", "</g>\n", "<g clip-path=\"url(#clip8900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:middle;\" transform=\"rotate(0, 2093.45, 1461.86)\" x=\"2093.45\" y=\"1461.86\">2</text>\n", "</g>\n", "<g clip-path=\"url(#clip8900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 1257.89)\" x=\"158.008\" y=\"1257.89\">-1.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip8900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 1021.38)\" x=\"158.008\" y=\"1021.38\">-0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip8900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 784.859)\" x=\"158.008\" y=\"784.859\">0.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip8900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 548.343)\" x=\"158.008\" y=\"548.343\">0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip8900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:end;\" transform=\"rotate(0, 158.008, 311.826)\" x=\"158.008\" y=\"311.826\">1.0</text>\n", "</g>\n", "<g clip-path=\"url(#clip8902)\">\n", "<image width=\"1931\" height=\"483\" xlink:href=\"data:image/png;base64,\n", "iVBORw0KGgoAAAANSUhEUgAAB4sAAAHjCAYAAAA68vn/AAAgAElEQVR4nOzby5IjaXKe4TjhkJnd\n", "1jMjUdKCOxq5Je//KsgtadJKixFNGk6pKjNxigguuJz425hlyHZH+fNcwWuohAOoD+i7blq7pP7r\n", "8z9EJzT9bff30Qmb/u7pJTqh6W9/nqMTmv7m52/RCZumIe3TEwDS+nLZRyds+vNlF53Q9D4P0QlN\n", "89pHJ2wa+7zv057GJTph0y/7a3TCQ/qS9Ha4Gx/nbnyf3yW9Hb/sL9EJAPBwbkvO92n/8+tP0QlN\n", "//J1jE5o+uf31+iETf/S/VN0QtP/ffvH6IRNeT/dAQAAAAAAAPBpjMUAAAAAAAAABRmLAQAAAAAA\n", "AAoyFgMAAAAAAAAUZCwGAAAAAAAAKMhYDAAAAAAAAFCQsRgAAAAAAACgIGMxAAAAAAAAQEHGYgAA\n", "AAAAAICCpugAoO1pukYnAMDDeb/lfIt7GJfohKZl7aMTmuZ1jU7YNOZ9yNL+re2HnF3ZZf33dDc+\n", "zt34Pllvh8/rAPBxXy/76ARgg18WAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAA\n", "AKAgYzEAAAAAAABAQcZiAAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABQ0RQcA\n", "bcfdNToBAB7O/rqPTth0mMfohKZl7KMTmuY1Z9vYr9EJTYdhiU7YdBjn6ISHlPV2uBsf5258n33S\n", "2+HzOgB83NdLzs/rUJ1fFgMAAAAAAAAUZCwGAAAAAAAAKMhYDAAAAAAAAFCQsRgAAAAAAACgIGMx\n", "AAAAAAAAQEHGYgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAqaogOAtqfdJToBADYtax+d0HQY\n", "b9EJmw7jGJ3QtEYH/Io56d/a2Od91A7jHJ2wKetzM7ustyPvM8Dd+B5Z70bX5b0dh+kandA0JP5b\n", "A6C6l+gAYINfFgMAAAAAAAAUZCwGAAAAAAAAKMhYDAAAAAAAAFCQsRgAAAAAAACgIGMxAAAAAAAA\n", "QEHGYgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAoyFgMAAAAAAAAUNEUHAG278Rad0DQOS3QC\n", "AIHmJe93Do9TztfP85z3rfcaHfArsv6tjX3e90KHcY5O2JT1uZld1tuxJj4c85r0biT+DJX1bnRd\n", "3ttxmK7RCU2Z/9YA+HxZP0MBebkaAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFGQsBgAAAAAA\n", "ACjIWAwAAAAAAABQkLEYAAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAAAACAgozFAAAAAAAAAAVN0QHA\n", "YzrsL9EJAASalzE6oel4vkYnbDrf8r71XtfogralX6ITNg193gftON6iEzYdppzPzeyOSW9H6rux\n", "uhsflfVudF3XHZPejsM+Z1fXdd04zNEJAAR6Ox2jE4AH45fFAAAAAAAAAAUZiwEAAAAAAAAKMhYD\n", "AAAAAAAAFGQsBgAAAAAAACjIWAwAAAAAAABQkLEYAAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAAAACA\n", "gqboAOAx7feX6AQAAs3zGJ3QdNhdoxM2Pc3een+Pee2jEzaN/Rqd0HRM+hzI2pXdxe34MHfj454S\n", "Pz+zvq7vd3k/E4/jHJ0AQKC30zE6AXgwflkMAAAAAAAAUJCxGAAAAAAAAKAgYzEAAAAAAABAQcZi\n", "AAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAA\n", "UNAUHQA8psPxHJ0AQKDbLe/byOPpEp2w6Zr4MctsXnJ+v3UYluiEpqfpGp2w6bjL+dzMzu34uCXp\n", "3RgT341j0rvRdXlvx/6Qs6vrum6abtEJAET6/9EBwKPJ+QkKAAAAAAAAgE9lLAYAAAAAAAAoyFgM\n", "AAAAAAAAUJCxGAAAAAAAAKAgYzEAAAAAAABAQcZiAAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAA\n", "CjIWAwAAAAAAABQ0RQcAj2naXaMTNg3jEp0AUMJ4u0UnNB3ej9EJm67zGJ3wK9bogKZ5zfn91rHP\n", "+5gd95fohE2HpF3ZXWcf2z9qXvvohE1jn/ezSta70XV5b8fheIpOaBqnOToBoIRlzvlZBeCjXDMA\n", "AAAAAACAgozFAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFGQsBgAAAAAAACjIWAwAAAAAAABQ\n", "kLEYAAAAAAAAoCBjMQAAAAAAAEBBU3QAwD3tns7RCQAljLcxOqHp8JbzteA2533M+uiAXzEvOb/f\n", "Og5LdELTYX+JTth0OOR8bmaX9Xb03Rqd0ORufFzWu9F1eW/HPvFnz2GaoxMASjh/e4pOALiLnJ+g\n", "AAAAAAAAAPhUxmIAAAAAAACAgozFAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFGQsBgAAAAAA\n", "ACjIWAwAAAAAAABQkLEYAAAAAAAAoCBjMQAAAAAAAEBBU3QAwD1NT6foBIAS1nmMTmg6vOV8Lbjd\n", "8r717vvogrZlyRk39Gt0QtN+f4lO2HR4OkcnPKSstyPnM/M/LGvOumFIfDd2Oe9G13XdIelnvN1z\n", "zq6u67p+nKMTAEo4f3uKTgC4C78sBgAAAAAAACjIWAwAAAAAAABQkLEYAAAAAAAAoCBjMQAAAAAA\n", "AEBBxmIAAAAAAACAgozFAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFGQsBgAAAAAAAChoig4A\n", "uKfp+RSdAFDCuuT9zuH+7RidsGm+5X3r3Q9rdELTMuf8WxuGJTqh6XA8Ryds2j95n/Y95tsYnbCp\n", "7xPfjaSvUcOY+G4cct6Nruu6fdLPeNPLe3RCU5/4NQoAgHxyfoICAAAAAAAA4FMZiwEAAAAAAAAK\n", "MhYDAAAAAAAAFGQsBgAAAAAAACjIWAwAAAAAAABQkLEYAAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAA\n", "AACAgqboAIB7Gg7X6ISmflyiEwBK2L8+RSdsWm5533r3/Rqd0LQsOb/fOgx5X9f3x3N0wqbd8yk6\n", "4SEttzE6YZO78XGp78ZTzrvRdV23T3o7pp/eoxMASljnnK/rAD8SlxYAAAAAAACgIGMxAAAAAAAA\n", "QEHGYgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAoyFgMAAAAAAAAUZCwGAAAAAAAAKMhYDAAA\n", "AAAAAFCQsRgAAAAAAACgoCk6AKCK4ekSnQBQwu6nt+iETcttjE5o6oclOqFpmXN+v3UY8z5mu+M5\n", "OmHT7vkUnfCQ1qTPgT7xc8Dd+Lisd6Pr8r6u+3wH8NuYvx2jEwB+eDk/QQEAAAAAAADwqYzFAAAA\n", "AAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFGQsBgAAAAAAACjIWAwAAAAAAABQkLEYAAAAAAAAoCBj\n", "MQAAAAAAAEBBxmIAAAAAAACAgqboAIAqhpclOgGghPH0Hp2waXcboxOa+jHva9Q65/x+a+bHbHo6\n", "RSdsGp9zdmW3W6MLtmV+DrgbH5f1bnRd140/5Xxd9/kO4Lcxf4suAPjx5fwEBQAAAAAAAMCnMhYD\n", "AAAAAAAAFGQsBgAAAAAAACjIWAwAAAAAAABQkLEYAAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAAAACA\n", "gozFAAAAAAAAAAVN0QEAVfQvvp8D8FsYL+fohG1z3teBYVqiE5qWW87HrR/zPmbT8yk6YVN/uEUn\n", "PKTdkPNvLfNzYE16bzPf2vEp593ouq4bf875uu7zHQAAPwrvbAEAAAAAAAAKMhYDAAAAAAAAFGQs\n", "BgAAAAAAACjIWAwAAAAAAABQkLEYAAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAAAACAgozFAAAAAAAA\n", "AAUZiwEAAAAAAAAKmqIDAMo47KML2qYxugDgboblNTph23yKLmjqpyU6oWmdk36/dcz7mI1Pl+iE\n", "bdMaXfCY9rfogm2J70aX9G70ie/GkPVudF03/BJd0PDyFF0AcD+3OboAgEA5P0EBAAAAAAAA8KmM\n", "xQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAA\n", "AKAgYzEAAAAAAABAQcZiAAAAAAAAgIKm6AAA4q0vP0UnANxNP+T8PmQ/f41OaBqmc3RC2xwd0DBG\n", "B7T1L9EF3NcaHbBpdDc+zt34Pr/8HF2waX16jk4AuJv+y5foBAAC5fyfNAAAAAAAAAA+lbEYAAAA\n", "AAAAoCBjMQAAAAAAAEBBxmIAAAAAAACAgozFAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFGQs\n", "BgAAAAAAAChoig4AIN7608/RCQB3sx6O0QmbhmWJTmjqd2/RCU3rbY1O2NRPfXRC234fXUAB/e4S\n", "ndDkbnyHl+fogqbld3+ITti220UXANxN/+VLdAIAgfyyGAAAAAAAAKAgYzEAAAAAAABAQcZiAAAA\n", "AAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCx\n", "GAAAAAAAAKCgKToAgHjzy++iEwB+fMsSXdA07HbRCU397RadsG3K+1Fq7fvoBAron5+iE5rcjY9b\n", "Xn6OTmiaf/dX0QkAP7yh+9/RCQAE8stiAAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAA\n", "AAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAAAKAgYzEAAAAAAABAQcZiAAAAAAAAgIKm\n", "6AAA4q3Hl+iETeu4j04AuKM1OqBtf4guaLtdoguADYkvWl5T3ve280+/RCc0LS+/j04AuJt+9t4W\n", "gHz8shgAAAAAAACgIGMxAAAAAAAAQEHGYgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAoyFgMA\n", "AAAAAAAUZCwGAAAAAAAAKMhYDAAAAAAAAFDQFB0AAC3L8x+iEwDuZt0doxOa1v1TdELT8PolOgHg\n", "LpaXX6ITmpbn30cnNK275+gEgLsZv/4xOgEA/oJfFgMAAAAAAAAUZCwGAAAAAAAAKMhYDAAAAAAA\n", "AFCQsRgAAAAAAACgIGMxAAAAAAAAQEHGYgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAoyFgMA\n", "AAAAAAAUNEUHAEDL+vzfoxMA7maNDvgV6/6n6IS2vo8uALiL+Ze/jk5oWp/+KjoBoIavf4wuAIC/\n", "4JfFAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFGQsBgAAAAAAACjIWAwAAAAAAABQkLEYAAAA\n", "AAAAoCBjMQAAAAAAAEBBxmIAAAAAAACAgozFAAAAAAAAAAVN0QEA0DId/0d0AkAJt8vX6ISm5fn3\n", "0QkAd7GOx+iEJu+7AX4r/xQdAAB/wS+LAQAAAAAAAAoyFgMAAAAAAAAUZCwGAAAAAAAAKMhYDAAA\n", "AAAAAFCQsRgAAAAAAACgIGMxAAAAAAAAQEHGYgAAAAAAAICCjMUAAAAAAAAABU3RAQDQMu1+iU5o\n", "GsZDdALA3dy+/a/ohKbl+b9FJwD88PZHtxb4cSzzOTqh6RYdAAAb/LIYAAAAAAAAoCBjMQAAAAAA\n", "AEBBxmIAAAAAAACAgozFAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFGQsBgAAAAAAACjIWAwA\n", "AAAAAABQkLEYAAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAAAACAgozFAAAAAAAAAAUZiwEAAAAAAAAK\n", "MhYDAAAAAAAAFGQsBgAAAAAAACjIWAwAAAAAAABQkLEYAAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAA\n", "AACAgqboAABouV2/RCe0XaMDAO5omaMLmobT/4tOALiL5fhfohOaLqd/jU4AAACC+GUxAAAAAAAA\n", "QEHGYgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAoyFgMAAAAAAAAUZCwGAAAAAAAAKMhYDAAA\n", "AAAAAFCQsRgAAAAAAACgoCk6AABabqc/RicAlNDPp+iEpuHt36ITAO5i3b1EJzR53w3w2/Cf8QBk\n", "5JfFAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFGQsBgAAAAAAACjIWAwAAAAAAABQkLEYAAAA\n", "AAAAoCBjMQAAAAAAAEBBxmIAAAAAAACAgozFAAAAAAAAAAVN0QEA0NK//Z/oBIC76a9v0QlNw9u/\n", "RSc0Da9fohMA7mNdowualsu36ISmdfccnQAAAD80vywGAAAAAAAAKMhYDAAAAAAAAFCQsRgAAAAA\n", "AACgIGMxAAAAAAAAQEHGYgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAoyFgMAAAAAAAAUZCwG\n", "AAAAAAAAKGiKDgCAluHtT9EJAHczvOa9aeO3L9EJbbdLdAHAXQzn9+iEpvmSt215+UN0AgAA/ND8\n", "shgAAAAAAACgIGMxAAAAAAAAQEHGYgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAoyFgMAAAAA\n", "AAAUZCwGAAAAAAAAKMhYDAAAAAAAAFDQFB0AQLz+9BqdsKnvcnYBfI/xT/8andA0vH6NTmi73aIL\n", "tk15P0qtfR+dQAH9ukYntLkbH3c5Rxf8CjcNAAA+k18WAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAA\n", "AAAAUJCxGAAAAAAAAKAgYzEAAAAAAABAQcZiAAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACjIW\n", "AwAAAAAAABQ0RQcAEG98/XN0AsD9XK/RBZuGP/8pOqHt9S26oGm9rdEJm/qpj05o6vf76AQquFyi\n", "C5rcjY8bkr52dl3XdUPS3znsdtEFAABwF0nfcQMAAAAAAADwmYzFAAAAAAAAAAUZiwEAAAAAAAAK\n", "MhYDAAAAAAAAFGQsBgAAAAAAACjIWAwAAAAAAABQkLEYAAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAA\n", "AACAgqboAADi9d++RicA3E3//hadsGn982t0QtOaN63r5uiAbeu4Ric09S/n6AQKcDc+LvXduOb9\n", "Bx2GnL9zWJ+eoxMAAOAucr7jBgAAAAAAAOBTGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAo\n", "yFgMAAAAAAAAUJCxGAAAAAAAAKAgYzEAAAAAAABAQcZiAAAAAAAAgIKm6AAA4vWv36ITAO7n62t0\n", "wab1Sx+d0LS876MTmtY56fdbxyW6oGm8XaITtk1rdMFjuuW8HXPiu9ElvRt94rsxZL0bXdf149fo\n", "hE39kvffEwAAPiLnJygAAAAAAAAAPpWxGAAAAAAAAKAgYzEAAAAAAABAQcZiAAAAAAAAgIKMxQAA\n", "AAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUNAUHQBQxvkSXdB2\n", "jg4AuJ/lS3TBtvnrMTqhaX7P27bccn6/tR+X6IS2rI/Z4Rad8JDWc86P7be3vHdjnXM+B4Yp790Y\n", "k96Nruu6bnyPLtg0DDm7AH48ed9zAPwoEn8aAAAAAAAAAOCzGIsBAAAAAAAACjIWAwAAAAAAABRk\n", "LAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAAAKAgYzEAAAAAAABAQcZiAAAAAAAAgIKMxQAAAAAA\n", "AAAFTdEBAFWsr0t0AkAJ89dDdMKm69fn6ISm2/sxOqFpnXN+v7Uf876uZ33MpuUUnfCQbq85n5/u\n", "xsdlvhvTLedj1nVd1yV93Pr9OToBAADuIvGnAQAAAAAAAAA+i7EYAAAAAAAAoCBjMQAAAAAAAEBB\n", "xmIAAAAAAACAgozFAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFGQsBgAAAAAAAChoig4AqGJ5\n", "9f0cgN/C/O0pOmHT9dtzdELT9XSITmha5pyvn8O4RCc0rUkfs76PLnhMWW+Hu/Fx7sb3GaY5OmHT\n", "cLxGJwAAwF3k/TQAAAAAAAAAwKcxFgMAAAAAAAAUZCwGAAAAAAAAKMhYDAAAAAAAAFCQsRgAAAAA\n", "AACgIGMxAAAAAAAAQEHGYgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAqaogMAqlje99EJACVc\n", "vz1HJ2y6vD1FJzRd3g/RCU3LkvP7rcOwRCc0rXPOx6wf8z5mmV1ec96Oy8nd+KjUdyPpY9Z1XTdM\n", "c3TCpvHlFJ0AAAB3kffTAAAAAAAAAACfxlgMAAAAAAAAUJCxGAAAAAAAAKAgYzEAAAAAAABAQcZi\n", "AAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoaIoOALin5byL\n", "TgAoYV3yfufw8naMTth0TtrVdV13Ph+iE5qWOeff2jAs0QlN69pHJ2wapjk64SGd33PejvMp8d1I\n", "+ho1jO7G9ximW3TCpunbU3RCU5/4NQoAgHxyfoICAAAAAAAA4FMZiwEAAAAAAAAKMhYDAAAAAAAA\n", "FGQsBgAAAAAAACjIWAwAAAAAAABQkLEYAAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAAAACAgqboAIB7\n", "ur0doxMASljnMTqh6ZL0teD0nrOr67ruct1HJzQtSx+dsGno1+iEpnXN+ZiN0xyd8JCy3o7LJfHd\n", "SPocGIbEdyPpre26rhunW3TCpv3rU3RCUz+6twAA/Of5ZTEAAAAAAABAQcZiAAAAAAAAgIKMxQAA\n", "AAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAAAAAAAKAg\n", "YzEAAAAAAABAQVN0AMA93d6P0QkAJSy3MTqh6Zz0teB82UcnNGVum5ec328dhyU6oWmNDmiY3m/R\n", "CQ8p6/Mza1fXuRvfY816OLqum5K+rh/ecnZ1XdcN0xydAADAA8n5CQoAAAAAAACAT2UsBgAAAAAA\n", "ACjIWAwAAAAAAABQkLEYAAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAAAACAgozFAAAAAAAAAAUZiwEA\n", "AAAAAAAKMhYDAAAAAAAAFDRFBwDc0/X9EJ0AUMJ8G6MTms7nnK8Fp8s+OqEpc9u85vx+69iv0QlN\n", "a9dHJ2yaxjk64SGdLm7aR81rzufA2C/RCU15L1re23FJ/NlznHI+ZgAA5JTzf14AAAAAAAAA+FTG\n", "YgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAoyFgMAAAAAAAAUZCwGAAAAAAAAKMhYDAAAAAAA\n", "AFCQsRgAAAAAAACgoCk6AHhMt+suOmHbNToAoIbbLe/byPNlH52w6XQ5RCc0nW5JX9e7rpuXnN9v\n", "HYYlOuHh7MZbdMJDOiW9ae+J78aS9G6Mqe9GHx3QtBvn6IRN59MxOqFpmtxbAAD+83J+ggIAAAAA\n", "AADgUxmLAQAAAAAAAAoyFgMAAAAAAAAUZCwGAAAAAAAAKMhYDAAAAAAAAFCQsRgAAAAAAACgIGMx\n", "AAAAAAAAQEHGYgAAAAAAAICCjMUAAAAAAAAABU3RAcBjOp8O0QkABJrnMTqh6XTdRydsOt120QlN\n", "79e8bfPaRydsGvs1OuHh7JI+N7N7T3o7Tu7Gh7kb3yfr7Xg65+zquq6bb3nfpwEAkI9fFgMAAAAA\n", "AAAUZCwGAAAAAAAAKMhYDAAAAAAAAFCQsRgAAAAAAACgIGMxAAAAAAAAQEHGYgAAAAAAAICCjMUA\n", "AAAAAAAABRmLAQAAAAAAAAoyFgMAAAAAAAAUNEUHAI/pctlHJwAQaF7G6ISm83UXnbDpPWlX13Xd\n", "+y3vx4Jl7aMTNg39Gp3wcPbjLTrhIZ2S3g534+Pcje+T9XZcrnk/E4/zHJ0AAMAD8ctiAAAAAAAA\n", "gIKMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYAAAAAAAAoyFgMAAAAAAAAUJCxGAAA\n", "AAAAAKAgYzEAAAAAAABAQVN0APCYzpd9dAIAgeYl73cOT7dddMKm05z3rfd5GaMTmrL+rY39Ep3Q\n", "1PfRBdsOSZ+b2WW9Hec58d1Yk96NIfHdmKML2rLejvMlZ1fXdd045H1+AgCQT85PUAAAAAAAAAB8\n", "KmMxAAAAAAAAQEHGYgAAAAAAAICCjMUAAAAAAAAABRmLAQAAAAAAAAoyFgMAAAAAAAAUZCwGAAAA\n", "AAAAKMhYDAAAAAAAAFCQsRgAAAAAAACgoCk6AGi7znmfotc5ugCASMvaRyc0nW45Xz/P8xid0JS5\n", "bU76tzb2Obu6ruv6pO/Tsj43s8v6/DwvObu6LvHdSNrVdV2Xtyzv7TjfdtEJTUO/RicAAPBA/LIY\n", "AAAAAAAAoCBjMQAAAAAAAEBBxmIAAAAAAACAgozFAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAA\n", "FGQsBgAAAAAAACjIWAwAAAAAAABQkLEYAAAAAAAAoKApOgBoe7/uoxMA4OGc55xvcc/zGJ3QdErc\n", "Nq99dMKmsV+jE5pyPmJ5n5vZZb0d7sbHuRvfJ+vtON920QkAAHAXflkMAAAAAAAAUJCxGAAAAAAA\n", "AKAgYzEAAAAAAABAQcZiAAAAAAAAgIKMxQAAAAAAAAAFGYsBAAAAAAAACjIWAwAAAAAAABRkLAYA\n", "AAAAAAAoaIoOANpO1110AgA8nMs8RidsOi95v6d5nvO2zWt0wbax76MTmoY+54N2TvrczC7r7XA3\n", "Ps7d+D5ZX9d9XgcA4EeR99MdAAAAAAAAAJ/GWAwAAAAAAABQkLEYAAAAAAAAoCBjMQAAAAAAAEBB\n", "xmIAAAAAAACAgozFAAAAAAAAAAUZiwEAAAAAAAAKMhYDAAAAAAAAFGQsBgAAAAAAAChoig4A2t5v\n", "u+gEAHg4lyXn9yHPc86uruu689JHJzTNa2msaMkAAACPSURBVM62sV+jE5qGpH9r/96eHZwAAAIx\n", "EHzYf8O+rEFBCJeZCnyFk90r813pUrfDbtyzG29St8N/HQCAKTIvbgAAAAAAAAC+EosBAAAAAAAA\n", "ConFAAAAAAAAAIXEYgAAAAAAAIBCYjEAAAAAAABAIbEYAAAAAAAAoJBYDAAAAAAAAFBILAYAAAAA\n", "AAAodADEEu3x8JLP+gAAAABJRU5ErkJggg==\n", "\" transform=\"translate(182, 526)\"/>\n", "</g>\n", "<defs>\n", " <clipPath id=\"clip8903\">\n", " <rect x=\"2160\" y=\"126\" width=\"73\" height=\"1282\"/>\n", " </clipPath>\n", "</defs>\n", "<g clip-path=\"url(#clip8903)\">\n", "<image width=\"72\" height=\"1281\" xlink:href=\"data:image/png;base64,\n", "iVBORw0KGgoAAAANSUhEUgAAAEgAAAUBCAYAAAAvgsdEAAALHElEQVR4nO3dwa0kNxAFwR6h/LdC\n", "XkpLygJVHrsPERZ8JB4IgjM7+/v3/H0f/tdfb/8BXydQECgIFAQKc+6/b/8Nn2ZBQaAgUBAozHVI\n", "rywoCBQECgKFucchvbGgIFAQKAgU3KSDBQWBgkBBoOCQDhYUBAoCBYGCQzpYUBAoCBQECt6kgwUF\n", "gYJAQaDgJh0sKAgUBAoCBYd0sKAgUBAoCBTm8dyxsqAgUBAoCBQc0sGCgkBBoCBQmMdzx8qCgkBB\n", "oCBQcJMOFhQECgIFgYJDOlhQECgIFAQK85x/3v4bPs2CgkBBoCBQ8CYdLCgIFAQKAgXPHcGCgkBB\n", "oCBQcEgHCwoCBYGCQGF+98/bf8OnWVAQKAgUBArzHIf0xoKCQEGgIFCYn0N6ZUFBoCBQECi4SQcL\n", "CgIFgYJAYR5v0isLCgIFgYJAwXNHsKAgUBAoCBQ8dwQLCgIFgYJAwU06WFAQKAgUBApu0sGCgkBB\n", "oCBQmN85b/8Nn2ZBQaAgUBAouEkHCwoCBYGCQMEhHSwoCBQECgIFHxwGCwoCBYGCQGEeb9IrCwoC\n", "BYGCQMFNOlhQECgIFAQK3qSDBQWBgkBBoOCQDhYUBAoCBYGC70kHCwoCBYGCQMEHh8GCgkBBoCBQ\n", "8NwRLCgIFAQKAgU36WBBQaAgUBAoOKSDBQWBgkBBoOCDw2BBQaAgUBAoeJMOFhQECgIFgYLnjmBB\n", "QaAgUBAoOKSDBQWBgkBBoOCQDhYUBAoCBYHCPOe+/Td8mgUFgYJAQaAwz3WT3lhQECgIFAQKnjuC\n", "BQWBgkBBoOC5I1hQECgIFAQKbtLBgoJAQaAgUHBIBwsKAgWBgkDBc0ewoCBQECgIFNykgwUFgYJA\n", "QaAwjzN6ZUFBoCBQECg4pIMFBYGCQEGgMP4ty86CgkBBoCBQcJMOFhQECgIFgYJDOlhQECgIFAQK\n", "DulgQUGgIFAQKMzja9IrCwoCBYGCQGHu+b39N3yaBQWBgkBBoOC5I1hQECgIFAQK87hJrywoCBQE\n", "CgKFudchvbGgIFAQKAgU3KSDBQWBgkBBoOCQDhYUBAoCBYGC545gQUGgIFAQKLhJBwsKAgWBgkBh\n", "nqPRRp0gUBAoCBQ8dwQLCgIFgYJAwXNHsKAgUBAoCBT8s/BgQUGgIFAQKMxzNdqoEwQKAgWBgpt0\n", "sKAgUBAoCBQc0sGCgkBBoCBQ8BW8oE4QKAgUBAq+ghcsKAgUBAoCBV/BCxYUBAoCBYHCXM8dK3WC\n", "QEGgIFDw3BEsKAgUBAoCBc8dwYKCQEGgIFDw3BHUCQIFgYJAwXNHsKAgUBAoCBT8Y5ZgQUGgIFAQ\n", "KMz12x0rdYJAQaAgUPDBYbCgIFAQKAgUPHcECwoCBYGCQMEHh8GCgkBBoCBQ8BW8oE4QKAgUBApu\n", "0sGCgkBBoCBQ8CYdLCgIFAQKAgU36WBBQaAgUBAoeJMO6gSBgkBBoOAmHSwoCBQECgIFb9LBgoJA\n", "QaAgUHCTDhYUBAoCBYGCN+mgThAoCBQECm7SwYKCQEGgIFBwSAcLCgIFgYJAwSEdLCgIFAQKAgXf\n", "7ggWFAQKAgWBwhw/+r9SJwgUBAoCBc8dwYKCQEGgIFDw3BEsKAgUBAoCBTfpYEFBoCBQECg4pIMF\n", "BYGCQEGg4JAOFhQECgIFgYJDOlhQECgIFAQKcxzSKwsKAgWBgkDBTTpYUBAoCBQECg7pYEFBoCBQ\n", "ECg4pIMFBYGCQEGg4JAOFhQECgIFgYJDOlhQECgIFAQKvt0RLCgIFAQKAgU36WBBQaAgUBAoOKSD\n", "BQWBgkBBoOD3pIM6QaAgUBAouEkHCwoCBYGCQMEHh8GCgkBBoCBQcJMOFhQECgIFgYKbdLCgIFAQ\n", "KAgU3KSDBQWBgkBBoOCQDhYUBAoCBYGC545gQUGgIFAQKMx9HNIbCwoCBYGCQMFNOlhQECgIFAQK\n", "3qSDBQWBgkBBoDDnvv0nfJsFBYGCQEGg4CYdLCgIFAQKAgVv0sGCgkBBoCBQmOPbHSsLCgIFgYJA\n", "wXNHsKAgUBAoCBQ8dwQLCgIFgYJAwU06WFAQKAgUBApz3v4LPs6CgkBBoCBQcJMOFhQECgIFgYI3\n", "6WBBQaAgUBAo+IGlYEFBoCBQECi4SQcLCgIFgYJAwW93BAsKAgWBgkDBc0ewoCBQECgIFHy7I1hQ\n", "ECgIFAQKvicdLCgIFAQKAgU36WBBQaAgUBAouEkHCwoCBYGCQMFNOlhQECgIFAQKvicdLCgIFAQK\n", "AoXxNemdBQWBgkBBoOAmHSwoCBQECgIFN+lgQUGgIFAQKLhJBwsKAgWBgkDBTTpYUBAoCBQECm7S\n", "wYKCQEGgIFDwK3jBgoJAQaAgUPAreMGCgkBBoCBQcJMOFhQECgIFgcIcN+mVBQWBgkBBoDDXTXpl\n", "QUGgIFAQKPh2R7CgIFAQKAgUfE86WFAQKAgUBAo+OAwWFAQKAgWBgg8OgwUFgYJAQaDgg8NgQUGg\n", "IFAQKPjvs4IFBYGCQEGg4NsdwYKCQEGgIFDw3BEsKAgUBAoCBc8dwYKCQEGgIFBwkw4WFAQKAgWB\n", "gq/gBQsKAgWBgkDBP2YJFhQECgIFgYJ/Fh4sKAgUBAoCBTfpYEFBoCBQECg4pIMFBYGCQEGg4L/P\n", "ChYUBAoCBYGCm3SwoCBQECgIFHxwGCwoCBQECgIFN+lgQUGgIFAQKDikgwUFgYJAQaDguSNYUBAo\n", "CBQECm7SwYKCQEGgIFDwK3jBgoJAQaAgUPAreMGCgkBBoCBQ8NwRLCgIFAQKAgUfHAYLCgIFgYJA\n", "wU06WFAQKAgUBApzH6f0xoKCQEGgIFBwkw4WFAQKAgWBgjfpYEFBoCBQECi4SQcLCgIFgYJAwU06\n", "WFAQKAgUBApu0sGCgkBBoCBQ8C8OgwUFgYJAQaAwx1fwVhYUBAoCBYGCm3SwoCBQECgIFNykgwUF\n", "gYJAQaDgp0qDBQWBgkBBoDDXe8fKgoJAQaAgUHCTDhYUBAoCBYGC70kHCwoCBYGCQMGv4AULCgIF\n", "gYJAwU06WFAQKAgUBAq+ghcsKAgUBAoCBc8dwYKCQEGgIFBwkw4WFAQKAgWBgkM6WFAQKAgUBApz\n", "/GOWlQUFgYJAQaDgTTpYUBAoCBQECp47ggUFgYJAQaDgkA4WFAQKAgWBgkM6WFAQKAgUBApzHz+x\n", "tLGgIFAQKAgU3KSDBQWBgkBBoDDn5ya9saAgUBAoCBTmeO5YWVAQKAgUBAoO6WBBQaAgUBAo+OAw\n", "WFAQKAgUBApzfj443FhQECgIFAQKnjuCBQWBgkBBoOCQDhYUBAoCBYGCN+lgQUGgIFAQKMx5/rz9\n", "N3yaBQWBgkBBoOC5I1hQECgIFAQKc92kVxYUBAoCBYGCm3SwoCBQECgIFBzSwYKCQEGgIFDw3BEs\n", "KAgUBAoCBTfpYEFBoCBQECi4SQcLCgIFgYJAwT9mCRYUBAoCBYHCnOuQ3lhQECgIFAQKbtLBgoJA\n", "QaAgUJjrJr2yoCBQECgIFNykgwUFgYJAQaDg2x3BgoJAQaAgUPDBYbCgIFAQKAgUPHcECwoCBYGC\n", "QMEHh8GCgkBBoCBQ8CYdLCgIFAQKAgU36WBBQaAgUBAoeJMOFhQECgIFgYKbdLCgIFAQKAgUvEkH\n", "CwoCBYGCQMFNOlhQECgIFAQK3qSDBQWBgkBBoDD3eu7YWFAQKAgUBApu0sGCgkBBoCBQmOfet/+G\n", "T7OgIFAQKAgU5nGTXllQECgIFAQKvt0RLCgIFAQKAgU36WBBQaAgUBAo+OAwWFAQKAgUBArzeO5Y\n", "WVAQKAgUBApu0sGCgkBBoCBQ8CYdLCgIFAQKAoX/ADo+7xHJfnuOAAAAAElFTkSuQmCC\n", "\" transform=\"translate(2161, 127)\"/>\n", "</g>\n", "<g clip-path=\"url(#clip8900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 1322.4)\" x=\"2268.76\" y=\"1322.4\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip8900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 1322.4)\" x=\"2296.87\" y=\"1322.4\">0.7</text>\n", "</g>\n", "<g clip-path=\"url(#clip8900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 1180.83)\" x=\"2268.76\" y=\"1180.83\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip8900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 1180.83)\" x=\"2296.87\" y=\"1180.83\">0.6</text>\n", "</g>\n", "<g clip-path=\"url(#clip8900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 1039.25)\" x=\"2268.76\" y=\"1039.25\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip8900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 1039.25)\" x=\"2296.87\" y=\"1039.25\">0.5</text>\n", "</g>\n", "<g clip-path=\"url(#clip8900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 897.668)\" x=\"2268.76\" y=\"897.668\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip8900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 897.668)\" x=\"2296.87\" y=\"897.668\">0.4</text>\n", "</g>\n", "<g clip-path=\"url(#clip8900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 756.09)\" x=\"2268.76\" y=\"756.09\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip8900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 756.09)\" x=\"2296.87\" y=\"756.09\">0.3</text>\n", "</g>\n", "<g clip-path=\"url(#clip8900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 614.511)\" x=\"2268.76\" y=\"614.511\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip8900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 614.511)\" x=\"2296.87\" y=\"614.511\">0.2</text>\n", "</g>\n", "<g clip-path=\"url(#clip8900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 472.933)\" x=\"2268.76\" y=\"472.933\">-</text>\n", "</g>\n", "<g clip-path=\"url(#clip8900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2296.87, 472.933)\" x=\"2296.87\" y=\"472.933\">0.1</text>\n", "</g>\n", "<g clip-path=\"url(#clip8900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 331.354)\" x=\"2268.76\" y=\"331.354\">0</text>\n", "</g>\n", "<g clip-path=\"url(#clip8900)\">\n", "<text style=\"fill:#000000; fill-opacity:1; font-family:Arial,Helvetica Neue,Helvetica,sans-serif; font-size:48px; text-anchor:start;\" transform=\"rotate(0, 2268.76, 189.776)\" x=\"2268.76\" y=\"189.776\">0.1</text>\n", "</g>\n", "<polyline clip-path=\"url(#clip8900)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n", " 2232.76,1407.86 2232.76,1308.75 2256.76,1308.75 2232.76,1308.75 2232.76,1167.17 2256.76,1167.17 2232.76,1167.17 2232.76,1025.6 2256.76,1025.6 2232.76,1025.6 \n", " 2232.76,884.017 2256.76,884.017 2232.76,884.017 2232.76,742.439 2256.76,742.439 2232.76,742.439 2232.76,600.86 2256.76,600.86 2232.76,600.86 2232.76,459.282 \n", " 2256.76,459.282 2232.76,459.282 2232.76,317.703 2256.76,317.703 2232.76,317.703 2232.76,176.124 2256.76,176.124 2232.76,176.124 2232.76,126.861 \n", " \"/>\n", "</svg>\n" ] }, "execution_count": 96, "metadata": {}, "output_type": "execute_result" } ], "source": [ "heatmap(x,y,frepCouponScale, aspect_ratio=:equal)" ] }, { "cell_type": "code", "execution_count": 76, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "2-element StaticArrays.SArray{Tuple{2},Int64,1,2} with indices SOneTo(2):\n", " 20\n", " 1" ] }, "execution_count": 76, "metadata": {}, "output_type": "execute_result" } ], "source": [ "v=SVector(20, 1)" ] }, { "cell_type": "code", "execution_count": 77, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "20" ] }, "execution_count": 77, "metadata": {}, "output_type": "execute_result" } ], "source": [ "v[1]" ] }, { "cell_type": "code", "execution_count": 78, "metadata": {}, "outputs": [ { "data": { "text/plain": [ "1" ] }, "execution_count": 78, "metadata": {}, "output_type": "execute_result" } ], "source": [ "v[2]" ] }, { "cell_type": "code", "execution_count": null, "metadata": {}, "outputs": [], "source": [] } ], "metadata": { "@webio": { "lastCommId": null, "lastKernelId": null }, "kernelspec": { "display_name": "Julia 1.2.0", "language": "julia", "name": "julia-1.2" }, "language_info": { "file_extension": ".jl", "mimetype": "application/julia", "name": "julia", "version": "1.2.0" } }, "nbformat": 4, "nbformat_minor": 4 }