HSG-MCS-HS21_Julia/Problemsets/Solutions/PS05_TradingStrategy_Solution.ipynb

1840 lines
183 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"cells": [
{
"cell_type": "code",
"execution_count": 1,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"printyellow (generic function with 1 method)"
]
},
"execution_count": 1,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"using Printf, Dates, Statistics, DelimitedFiles, StatsBase\n",
"\n",
"include(\"jlFiles/printmat.jl\")"
]
},
{
"cell_type": "code",
"execution_count": 2,
"metadata": {},
"outputs": [],
"source": [
"using Plots\n",
"\n",
"gr(size=(480,320))\n",
"default(fmt = :svg)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Load Data"
]
},
{
"cell_type": "code",
"execution_count": 3,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"(10340, 25)"
]
},
"execution_count": 3,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"x = readdlm(\"Data/25_Portfolios_5x5_Daily.CSV\",',',skipstart=1) #daily return data\n",
"ym = round.(Int,x[:,1]) #yearmonthday, like 20071231\n",
"\n",
"dN = Date.(string.(ym),\"yyyymmdd\") #covert to Julia date, eg. 2001-12-31\n",
"\n",
"\n",
"vv = Date(1980,1,1) .<= dN .<= Date(2020,12,31) #pick out the correct sample\n",
"ym = ym[vv]\n",
"R = x[vv,2:end] #returns\n",
"\n",
"(T,n) = size(R) #number of data points, number of assets"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Task 1: Two Simple Strategies\n",
"\n",
"`R_1`: go long each of asset 1-24 (each with the weight 1/24) and short asset 25\n",
"\n",
"`R_2`: go long asset 1 and short asset 25\n",
"\n",
"The returns of these portfolios are easy to calculate without having to explicitly construct the portfolio weights, but it still a good preparation for later to do the explicit calculations as follows:\n",
"\n",
"1. Construct the vector of portfolio weights `w`\n",
"2. The portfolio return in `t` is `w'*R[t,:]`.\n",
"\n",
"Also, do not be afraid of loops: they are quick.\n",
"\n",
"Show means and standard deviations of the two strategies. Annualize the mean by `*252` and the standard deviation by `*sqrt(252)`.\n",
"\n",
"Plot histograms with bins that are 0.25 wide. (Don't annualize anything in the histograms.)"
]
},
{
"cell_type": "code",
"execution_count": 4,
"metadata": {},
"outputs": [],
"source": [
"w1 = [ones(24)/24;-1] #static\n",
"w2 = [1;zeros(23);-1]\n",
"\n",
"(R_1,R_2) = (fill(NaN,T),fill(NaN,T))\n",
"for t = 1:T \n",
" R_1[t] = w1'*R[t,:]\n",
" R_2[t] = w2'*R[t,:]\n",
"end"
]
},
{
"cell_type": "code",
"execution_count": 5,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
" R_1 R_2\n",
"mean -0.348 -8.665\n",
"std 13.860 18.996\n",
"SR -0.025 -0.456\n",
"\n"
]
}
],
"source": [
"R_all = [R_1 R_2]\n",
"\n",
"μ = mean(R_all,dims=1)*252\n",
"σ = std(R_all,dims=1)*sqrt(252)\n",
"SR = μ./σ\n",
"\n",
"printmat([μ;σ;SR],colNames=[\"R_1\",\"R_2\"],rowNames=[\"mean\",\"std\",\"SR\"])"
]
},
{
"cell_type": "code",
"execution_count": 6,
"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=\"480\" height=\"320\" viewBox=\"0 0 1920 1280\">\n",
"<defs>\n",
" <clipPath id=\"clip700\">\n",
" <rect x=\"0\" y=\"0\" width=\"1920\" height=\"1280\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip700)\" d=\"\n",
"M0 1280 L1920 1280 L1920 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip701\">\n",
" <rect x=\"384\" y=\"0\" width=\"1345\" height=\"1280\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip700)\" d=\"\n",
"M151.798 1169.65 L1872.76 1169.65 L1872.76 123.472 L151.798 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip702\">\n",
" <rect x=\"151\" y=\"123\" width=\"1722\" height=\"1047\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 374.091,1169.65 374.091,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 693.184,1169.65 693.184,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1012.28,1169.65 1012.28,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1331.37,1169.65 1331.37,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1650.46,1169.65 1650.46,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,1169.65 1872.76,1169.65 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 374.091,1169.65 374.091,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 693.184,1169.65 693.184,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1012.28,1169.65 1012.28,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1331.37,1169.65 1331.37,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1650.46,1169.65 1650.46,1150.75 \n",
" \"/>\n",
"<path clip-path=\"url(#clip700)\" d=\"M328.154 1211.38 L357.83 1211.38 L357.83 1215.31 L328.154 1215.31 L328.154 1211.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M368.732 1224.27 L376.371 1224.27 L376.371 1197.91 L368.061 1199.57 L368.061 1195.31 L376.325 1193.65 L381.001 1193.65 L381.001 1224.27 L388.64 1224.27 L388.64 1228.21 L368.732 1228.21 L368.732 1224.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M408.084 1196.73 Q404.473 1196.73 402.644 1200.29 Q400.839 1203.83 400.839 1210.96 Q400.839 1218.07 402.644 1221.63 Q404.473 1225.18 408.084 1225.18 Q411.718 1225.18 413.524 1221.63 Q415.353 1218.07 415.353 1210.96 Q415.353 1203.83 413.524 1200.29 Q411.718 1196.73 408.084 1196.73 M408.084 1193.02 Q413.894 1193.02 416.95 1197.63 Q420.028 1202.21 420.028 1210.96 Q420.028 1219.69 416.95 1224.3 Q413.894 1228.88 408.084 1228.88 Q402.274 1228.88 399.195 1224.3 Q396.14 1219.69 396.14 1210.96 Q396.14 1202.21 399.195 1197.63 Q402.274 1193.02 408.084 1193.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M662.825 1211.38 L692.501 1211.38 L692.501 1215.31 L662.825 1215.31 L662.825 1211.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M702.64 1193.65 L720.996 1193.65 L720.996 1197.58 L706.922 1197.58 L706.922 1206.06 Q707.941 1205.71 708.959 1205.55 Q709.978 1205.36 710.997 1205.36 Q716.784 1205.36 720.163 1208.53 Q723.543 1211.7 723.543 1217.12 Q723.543 1222.7 720.071 1225.8 Q716.598 1228.88 710.279 1228.88 Q708.103 1228.88 705.835 1228.51 Q703.589 1228.14 701.182 1227.4 L701.182 1222.7 Q703.265 1223.83 705.487 1224.39 Q707.709 1224.94 710.186 1224.94 Q714.191 1224.94 716.529 1222.84 Q718.867 1220.73 718.867 1217.12 Q718.867 1213.51 716.529 1211.4 Q714.191 1209.3 710.186 1209.3 Q708.311 1209.3 706.436 1209.71 Q704.585 1210.13 702.64 1211.01 L702.64 1193.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M1012.28 1196.73 Q1008.67 1196.73 1006.84 1200.29 Q1005.03 1203.83 1005.03 1210.96 Q1005.03 1218.07 1006.84 1221.63 Q1008.67 1225.18 1012.28 1225.18 Q1015.91 1225.18 1017.72 1221.63 Q1019.55 1218.07 1019.55 1210.96 Q1019.55 1203.83 1017.72 1200.29 Q1015.91 1196.73 1012.28 1196.73 M1012.28 1193.02 Q1018.09 1193.02 1021.14 1197.63 Q1024.22 1202.21 1024.22 1210.96 Q1024.22 1219.69 1021.14 1224.3 Q1018.09 1228.88 1012.28 1228.88 Q1006.47 1228.88 1003.39 1224.3 Q1000.33 1219.69 1000.33 1210.96 Q1000.33 1202.21 1003.39 1197.63 Q1006.47 1193.02 1012.28 1193.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M1321.65 1193.65 L1340 1193.65 L1340 1197.58 L1325.93 1197.58 L1325.93 1206.06 Q1326.95 1205.71 1327.97 1205.55 Q1328.99 1205.36 1330 1205.36 Q1335.79 1205.36 1339.17 1208.53 Q1342.55 1211.7 1342.55 1217.12 Q1342.55 1222.7 1339.08 1225.8 Q1335.61 1228.88 1329.29 1228.88 Q1327.11 1228.88 1324.84 1228.51 Q1322.6 1228.14 1320.19 1227.4 L1320.19 1222.7 Q1322.27 1223.83 1324.5 1224.39 Q1326.72 1224.94 1329.19 1224.94 Q1333.2 1224.94 1335.54 1222.84 Q1337.87 1220.73 1337.87 1217.12 Q1337.87 1213.51 1335.54 1211.4 Q1333.2 1209.3 1329.19 1209.3 Q1327.32 1209.3 1325.44 1209.71 Q1323.59 1210.13 1321.65 1211.01 L1321.65 1193.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M1625.15 1224.27 L1632.79 1224.27 L1632.79 1197.91 L1624.48 1199.57 L1624.48 1195.31 L1632.74 1193.65 L1637.42 1193.65 L1637.42 1224.27 L1645.06 1224.27 L1645.06 1228.21 L1625.15 1228.21 L1625.15 1224.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M1664.5 1196.73 Q1660.89 1196.73 1659.06 1200.29 Q1657.26 1203.83 1657.26 1210.96 Q1657.26 1218.07 1659.06 1221.63 Q1660.89 1225.18 1664.5 1225.18 Q1668.14 1225.18 1669.94 1221.63 Q1671.77 1218.07 1671.77 1210.96 Q1671.77 1203.83 1669.94 1200.29 Q1668.14 1196.73 1664.5 1196.73 M1664.5 1193.02 Q1670.31 1193.02 1673.37 1197.63 Q1676.45 1202.21 1676.45 1210.96 Q1676.45 1219.69 1673.37 1224.3 Q1670.31 1228.88 1664.5 1228.88 Q1658.69 1228.88 1655.61 1224.3 Q1652.56 1219.69 1652.56 1210.96 Q1652.56 1202.21 1655.61 1197.63 Q1658.69 1193.02 1664.5 1193.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.798,1140.04 1872.76,1140.04 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.798,994.749 1872.76,994.749 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.798,849.46 1872.76,849.46 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.798,704.17 1872.76,704.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.798,558.88 1872.76,558.88 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.798,413.591 1872.76,413.591 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.798,268.301 1872.76,268.301 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,1169.65 151.798,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,1140.04 170.696,1140.04 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,994.749 170.696,994.749 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,849.46 170.696,849.46 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,704.17 170.696,704.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,558.88 170.696,558.88 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,413.591 170.696,413.591 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip700)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,268.301 170.696,268.301 \n",
" \"/>\n",
"<path clip-path=\"url(#clip700)\" d=\"M65.8226 1125.84 Q62.2115 1125.84 60.3828 1129.4 Q58.5773 1132.94 58.5773 1140.07 Q58.5773 1147.18 60.3828 1150.75 Q62.2115 1154.29 65.8226 1154.29 Q69.4569 1154.29 71.2624 1150.75 Q73.0911 1147.18 73.0911 1140.07 Q73.0911 1132.94 71.2624 1129.4 Q69.4569 1125.84 65.8226 1125.84 M65.8226 1122.13 Q71.6328 1122.13 74.6883 1126.74 Q77.767 1131.32 77.767 1140.07 Q77.767 1148.8 74.6883 1153.41 Q71.6328 1157.99 65.8226 1157.99 Q60.0125 1157.99 56.9338 1153.41 Q53.8782 1148.8 53.8782 1140.07 Q53.8782 1131.32 56.9338 1126.74 Q60.0125 1122.13 65.8226 1122.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M85.9845 1151.44 L90.8688 1151.44 L90.8688 1157.32 L85.9845 1157.32 L85.9845 1151.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M111.054 1125.84 Q107.443 1125.84 105.614 1129.4 Q103.809 1132.94 103.809 1140.07 Q103.809 1147.18 105.614 1150.75 Q107.443 1154.29 111.054 1154.29 Q114.688 1154.29 116.494 1150.75 Q118.322 1147.18 118.322 1140.07 Q118.322 1132.94 116.494 1129.4 Q114.688 1125.84 111.054 1125.84 M111.054 1122.13 Q116.864 1122.13 119.92 1126.74 Q122.998 1131.32 122.998 1140.07 Q122.998 1148.8 119.92 1153.41 Q116.864 1157.99 111.054 1157.99 Q105.244 1157.99 102.165 1153.41 Q99.1095 1148.8 99.1095 1140.07 Q99.1095 1131.32 102.165 1126.74 Q105.244 1122.13 111.054 1122.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M67.0495 980.548 Q63.4384 980.548 61.6097 984.113 Q59.8041 987.655 59.8041 994.784 Q59.8041 1001.89 61.6097 1005.46 Q63.4384 1009 67.0495 1009 Q70.6837 1009 72.4892 1005.46 Q74.3179 1001.89 74.3179 994.784 Q74.3179 987.655 72.4892 984.113 Q70.6837 980.548 67.0495 980.548 M67.0495 976.844 Q72.8596 976.844 75.9152 981.451 Q78.9938 986.034 78.9938 994.784 Q78.9938 1003.51 75.9152 1008.12 Q72.8596 1012.7 67.0495 1012.7 Q61.2393 1012.7 58.1606 1008.12 Q55.1051 1003.51 55.1051 994.784 Q55.1051 986.034 58.1606 981.451 Q61.2393 976.844 67.0495 976.844 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M87.2114 1006.15 L92.0956 1006.15 L92.0956 1012.03 L87.2114 1012.03 L87.2114 1006.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M103.091 1008.09 L110.73 1008.09 L110.73 981.729 L102.42 983.395 L102.42 979.136 L110.683 977.469 L115.359 977.469 L115.359 1008.09 L122.998 1008.09 L122.998 1012.03 L103.091 1012.03 L103.091 1008.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M67.4198 835.258 Q63.8087 835.258 61.98 838.823 Q60.1745 842.365 60.1745 849.494 Q60.1745 856.601 61.98 860.166 Q63.8087 863.707 67.4198 863.707 Q71.0541 863.707 72.8596 860.166 Q74.6883 856.601 74.6883 849.494 Q74.6883 842.365 72.8596 838.823 Q71.0541 835.258 67.4198 835.258 M67.4198 831.555 Q73.23 831.555 76.2855 836.161 Q79.3642 840.745 79.3642 849.494 Q79.3642 858.221 76.2855 862.828 Q73.23 867.411 67.4198 867.411 Q61.6097 867.411 58.531 862.828 Q55.4754 858.221 55.4754 849.494 Q55.4754 840.745 58.531 836.161 Q61.6097 831.555 67.4198 831.555 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M87.5818 860.86 L92.466 860.86 L92.466 866.74 L87.5818 866.74 L87.5818 860.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M106.679 862.805 L122.998 862.805 L122.998 866.74 L101.054 866.74 L101.054 862.805 Q103.716 860.05 108.299 855.42 Q112.906 850.768 114.086 849.425 Q116.332 846.902 117.211 845.166 Q118.114 843.407 118.114 841.717 Q118.114 838.962 116.17 837.226 Q114.248 835.49 111.146 835.49 Q108.947 835.49 106.494 836.254 Q104.063 837.018 101.285 838.569 L101.285 833.846 Q104.109 832.712 106.563 832.133 Q109.017 831.555 111.054 831.555 Q116.424 831.555 119.619 834.24 Q122.813 836.925 122.813 841.416 Q122.813 843.545 122.003 845.467 Q121.216 847.365 119.109 849.957 Q118.531 850.629 115.429 853.846 Q112.327 857.041 106.679 862.805 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M66.4708 689.969 Q62.8597 689.969 61.031 693.534 Q59.2254 697.075 59.2254 704.205 Q59.2254 711.311 61.031 714.876 Q62.8597 718.418 66.4708 718.418 Q70.105 718.418 71.9105 714.876 Q73.7392 711.311 73.7392 704.205 Q73.7392 697.075 71.9105 693.534 Q70.105 689.969 66.4708 689.969 M66.4708 686.265 Q72.2809 686.265 75.3365 690.871 Q78.4151 695.455 78.4151 704.205 Q78.4151 712.932 75.3365 717.538 Q72.2809 722.121 66.4708 722.121 Q60.6606 722.121 57.5819 717.538 Q54.5264 712.932 54.5264 704.205 Q54.5264 695.455 57.5819 690.871 Q60.6606 686.265 66.4708 686.265 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M86.6327 715.57 L91.5169 715.57 L91.5169 721.45 L86.6327 721.45 L86.6327 715.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M115.869 702.816 Q119.225 703.533 121.1 705.802 Q122.998 708.07 122.998 711.404 Q122.998 716.52 119.48 719.32 Q115.961 722.121 109.48 722.121 Q107.304 722.121 104.989 721.682 Q102.697 721.265 100.244 720.408 L100.244 715.895 Q102.188 717.029 104.503 717.607 Q106.818 718.186 109.341 718.186 Q113.739 718.186 116.031 716.45 Q118.345 714.714 118.345 711.404 Q118.345 708.348 116.193 706.635 Q114.063 704.899 110.244 704.899 L106.216 704.899 L106.216 701.057 L110.429 701.057 Q113.878 701.057 115.707 699.691 Q117.535 698.302 117.535 695.709 Q117.535 693.047 115.637 691.635 Q113.762 690.2 110.244 690.2 Q108.322 690.2 106.123 690.617 Q103.924 691.034 101.285 691.913 L101.285 687.747 Q103.947 687.006 106.262 686.635 Q108.6 686.265 110.66 686.265 Q115.984 686.265 119.086 688.696 Q122.188 691.103 122.188 695.223 Q122.188 698.094 120.545 700.084 Q118.901 702.052 115.869 702.816 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M65.3365 544.679 Q61.7254 544.679 59.8967 548.244 Q58.0912 551.785 58.0912 558.915 Q58.0912 566.022 59.8967 569.586 Q61.7254 573.128 65.3365 573.128 Q68.9707 573.128 70.7763 569.586 Q72.605 566.022 72.605 558.915 Q72.605 551.785 70.7763 548.244 Q68.9707 544.679 65.3365 544.679 M65.3365 540.975 Q71.1467 540.975 74.2022 545.582 Q77.2809 550.165 77.2809 558.915 Q77.2809 567.642 74.2022 572.248 Q71.1467 576.832 65.3365 576.832 Q59.5264 576.832 56.4477 572.248 Q53.3921 567.642 53.3921 558.915 Q53.3921 550.165 56.4477 545.582 Q59.5264 540.975 65.3365 540.975 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M85.4984 570.281 L90.3827 570.281 L90.3827 576.16 L85.4984 576.16 L85.4984 570.281 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M113.415 545.674 L101.609 564.123 L113.415 564.123 L113.415 545.674 M112.188 541.6 L118.068 541.6 L118.068 564.123 L122.998 564.123 L122.998 568.012 L118.068 568.012 L118.068 576.16 L113.415 576.16 L113.415 568.012 L97.8132 568.012 L97.8132 563.498 L112.188 541.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M66.818 399.389 Q63.2069 399.389 61.3782 402.954 Q59.5726 406.496 59.5726 413.625 Q59.5726 420.732 61.3782 424.297 Q63.2069 427.838 66.818 427.838 Q70.4522 427.838 72.2578 424.297 Q74.0865 420.732 74.0865 413.625 Q74.0865 406.496 72.2578 402.954 Q70.4522 399.389 66.818 399.389 M66.818 395.686 Q72.6281 395.686 75.6837 400.292 Q78.7624 404.875 78.7624 413.625 Q78.7624 422.352 75.6837 426.959 Q72.6281 431.542 66.818 431.542 Q61.0078 431.542 57.9291 426.959 Q54.8736 422.352 54.8736 413.625 Q54.8736 404.875 57.9291 400.292 Q61.0078 395.686 66.818 395.686 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M86.9799 424.991 L91.8641 424.991 L91.8641 430.871 L86.9799 430.871 L86.9799 424.991 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M102.096 396.311 L120.452 396.311 L120.452 400.246 L106.378 400.246 L106.378 408.718 Q107.396 408.371 108.415 408.209 Q109.433 408.024 110.452 408.024 Q116.239 408.024 119.619 411.195 Q122.998 414.366 122.998 419.783 Q122.998 425.361 119.526 428.463 Q116.054 431.542 109.734 431.542 Q107.559 431.542 105.29 431.172 Q103.045 430.801 100.637 430.06 L100.637 425.361 Q102.721 426.496 104.943 427.051 Q107.165 427.607 109.642 427.607 Q113.646 427.607 115.984 425.5 Q118.322 423.394 118.322 419.783 Q118.322 416.172 115.984 414.065 Q113.646 411.959 109.642 411.959 Q107.767 411.959 105.892 412.375 Q104.04 412.792 102.096 413.672 L102.096 396.311 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M65.6606 254.1 Q62.0495 254.1 60.2208 257.664 Q58.4152 261.206 58.4152 268.336 Q58.4152 275.442 60.2208 279.007 Q62.0495 282.549 65.6606 282.549 Q69.2948 282.549 71.1004 279.007 Q72.9291 275.442 72.9291 268.336 Q72.9291 261.206 71.1004 257.664 Q69.2948 254.1 65.6606 254.1 M65.6606 250.396 Q71.4707 250.396 74.5263 255.002 Q77.605 259.586 77.605 268.336 Q77.605 277.062 74.5263 281.669 Q71.4707 286.252 65.6606 286.252 Q59.8504 286.252 56.7717 281.669 Q53.7162 277.062 53.7162 268.336 Q53.7162 259.586 56.7717 255.002 Q59.8504 250.396 65.6606 250.396 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M85.8225 279.701 L90.7067 279.701 L90.7067 285.581 L85.8225 285.581 L85.8225 279.701 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M111.471 266.438 Q108.322 266.438 106.471 268.59 Q104.642 270.743 104.642 274.493 Q104.642 278.22 106.471 280.396 Q108.322 282.549 111.471 282.549 Q114.619 282.549 116.447 280.396 Q118.299 278.22 118.299 274.493 Q118.299 270.743 116.447 268.59 Q114.619 266.438 111.471 266.438 M120.753 251.785 L120.753 256.044 Q118.994 255.211 117.188 254.771 Q115.406 254.331 113.646 254.331 Q109.017 254.331 106.563 257.456 Q104.133 260.581 103.785 266.9 Q105.151 264.887 107.211 263.822 Q109.271 262.734 111.748 262.734 Q116.957 262.734 119.966 265.905 Q122.998 269.053 122.998 274.493 Q122.998 279.817 119.85 283.035 Q116.702 286.252 111.471 286.252 Q105.475 286.252 102.304 281.669 Q99.1326 277.062 99.1326 268.336 Q99.1326 260.141 103.021 255.28 Q106.91 250.396 113.461 250.396 Q115.22 250.396 117.003 250.743 Q118.808 251.09 120.753 251.785 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M838.007 28.5427 L838.007 35.5912 Q834.847 33.9709 831.445 33.1607 Q828.042 32.3505 824.396 32.3505 Q818.846 32.3505 816.051 34.0519 Q813.297 35.7533 813.297 39.156 Q813.297 41.7486 815.282 43.2475 Q817.267 44.7058 823.262 46.0426 L825.814 46.6097 Q833.754 48.3111 837.075 51.4303 Q840.438 54.509 840.438 60.0587 Q840.438 66.3781 835.415 70.0644 Q830.432 73.7508 821.682 73.7508 Q818.036 73.7508 814.066 73.0216 Q810.137 72.3329 805.762 70.9151 L805.762 63.2184 Q809.894 65.3654 813.904 66.4591 Q817.915 67.5124 821.844 67.5124 Q827.11 67.5124 829.946 65.73 Q832.782 63.9071 832.782 60.6258 Q832.782 57.5877 830.716 55.9673 Q828.69 54.3469 821.763 52.8481 L819.17 52.2405 Q812.243 50.7821 809.165 47.7845 Q806.086 44.7463 806.086 39.4801 Q806.086 33.0797 810.623 29.5959 Q815.16 26.1121 823.505 26.1121 Q827.637 26.1121 831.283 26.7198 Q834.928 27.3274 838.007 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M859.68 14.324 L859.68 27.2059 L875.032 27.2059 L875.032 32.9987 L859.68 32.9987 L859.68 57.6282 Q859.68 63.1779 861.178 64.7578 Q862.718 66.3376 867.376 66.3376 L875.032 66.3376 L875.032 72.576 L867.376 72.576 Q858.748 72.576 855.467 69.3758 Q852.185 66.1351 852.185 57.6282 L852.185 32.9987 L846.717 32.9987 L846.717 27.2059 L852.185 27.2059 L852.185 14.324 L859.68 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M911.126 34.1734 Q909.87 33.4443 908.371 33.1202 Q906.913 32.7556 905.131 32.7556 Q898.811 32.7556 895.408 36.8875 Q892.046 40.9789 892.046 48.6757 L892.046 72.576 L884.552 72.576 L884.552 27.2059 L892.046 27.2059 L892.046 34.2544 Q894.396 30.1225 898.163 28.1376 Q901.93 26.1121 907.318 26.1121 Q908.088 26.1121 909.02 26.2337 Q909.951 26.3147 911.085 26.5172 L911.126 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M939.563 49.7694 Q930.53 49.7694 927.046 51.8354 Q923.562 53.9013 923.562 58.8839 Q923.562 62.8538 926.155 65.2034 Q928.788 67.5124 933.284 67.5124 Q939.482 67.5124 943.209 63.1374 Q946.976 58.7219 946.976 51.4303 L946.976 49.7694 L939.563 49.7694 M954.43 46.6907 L954.43 72.576 L946.976 72.576 L946.976 65.6895 Q944.424 69.8214 940.617 71.8063 Q936.809 73.7508 931.299 73.7508 Q924.332 73.7508 920.2 69.8619 Q916.109 65.9325 916.109 59.3701 Q916.109 51.7138 921.213 47.825 Q926.357 43.9361 936.525 43.9361 L946.976 43.9361 L946.976 43.2069 Q946.976 38.0623 943.574 35.2672 Q940.211 32.4315 934.095 32.4315 Q930.206 32.4315 926.519 33.3632 Q922.833 34.295 919.43 36.1584 L919.43 29.2718 Q923.522 27.692 927.37 26.9223 Q931.218 26.1121 934.864 26.1121 Q944.708 26.1121 949.569 31.2163 Q954.43 36.3204 954.43 46.6907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M977.156 14.324 L977.156 27.2059 L992.509 27.2059 L992.509 32.9987 L977.156 32.9987 L977.156 57.6282 Q977.156 63.1779 978.655 64.7578 Q980.194 66.3376 984.852 66.3376 L992.509 66.3376 L992.509 72.576 L984.852 72.576 Q976.224 72.576 972.943 69.3758 Q969.662 66.1351 969.662 57.6282 L969.662 32.9987 L964.193 32.9987 L964.193 27.2059 L969.662 27.2059 L969.662 14.324 L977.156 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M1041.12 48.0275 L1041.12 51.6733 L1006.85 51.6733 Q1007.33 59.3701 1011.47 63.421 Q1015.64 67.4314 1023.05 67.4314 Q1027.35 67.4314 1031.36 66.3781 Q1035.41 65.3249 1039.38 63.2184 L1039.38 70.267 Q1035.37 71.9684 1031.15 72.8596 Q1026.94 73.7508 1022.61 73.7508 Q1011.75 73.7508 1005.39 67.4314 Q999.071 61.1119 999.071 50.3365 Q999.071 39.1965 1005.07 32.6746 Q1011.1 26.1121 1021.31 26.1121 Q1030.47 26.1121 1035.77 32.0264 Q1041.12 37.9003 1041.12 48.0275 M1033.67 45.84 Q1033.58 39.7232 1030.22 36.0774 Q1026.9 32.4315 1021.39 32.4315 Q1015.15 32.4315 1011.39 35.9558 Q1007.66 39.4801 1007.09 45.8805 L1033.67 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M1083.21 49.3643 Q1083.21 41.2625 1079.85 36.8065 Q1076.52 32.3505 1070.49 32.3505 Q1064.49 32.3505 1061.13 36.8065 Q1057.81 41.2625 1057.81 49.3643 Q1057.81 57.4256 1061.13 61.8816 Q1064.49 66.3376 1070.49 66.3376 Q1076.52 66.3376 1079.85 61.8816 Q1083.21 57.4256 1083.21 49.3643 M1090.66 66.9452 Q1090.66 78.5308 1085.52 84.1616 Q1080.37 89.8329 1069.76 89.8329 Q1065.83 89.8329 1062.35 89.2252 Q1058.86 88.6581 1055.58 87.4428 L1055.58 80.1917 Q1058.86 81.9741 1062.06 82.8248 Q1065.26 83.6755 1068.58 83.6755 Q1075.92 83.6755 1079.56 79.8271 Q1083.21 76.0193 1083.21 68.282 L1083.21 64.5957 Q1080.9 68.6061 1077.29 70.5911 Q1073.69 72.576 1068.67 72.576 Q1060.32 72.576 1055.22 66.2161 Q1050.11 59.8562 1050.11 49.3643 Q1050.11 38.832 1055.22 32.472 Q1060.32 26.1121 1068.67 26.1121 Q1073.69 26.1121 1077.29 28.0971 Q1080.9 30.082 1083.21 34.0924 L1083.21 27.2059 L1090.66 27.2059 L1090.66 66.9452 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M1124.89 76.7889 Q1121.73 84.8907 1118.73 87.3618 Q1115.74 89.8329 1110.71 89.8329 L1104.76 89.8329 L1104.76 83.5945 L1109.13 83.5945 Q1112.21 83.5945 1113.91 82.1361 Q1115.62 80.6778 1117.68 75.2496 L1119.02 71.8468 L1100.67 27.2059 L1108.57 27.2059 L1122.75 62.6918 L1136.92 27.2059 L1144.82 27.2059 L1124.89 76.7889 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip700)\" d=\"M1183.95 65.6895 L1197.32 65.6895 L1197.32 19.5497 L1182.78 22.4663 L1182.78 15.0127 L1197.24 12.096 L1205.42 12.096 L1205.42 65.6895 L1218.79 65.6895 L1218.79 72.576 L1183.95 72.576 L1183.95 65.6895 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip702)\" d=\"\n",
"M246.454 1140.04 L246.454 1140.04 L262.409 1140.04 L262.409 1140.04 L246.454 1140.04 L246.454 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 246.454,1140.04 246.454,1140.04 262.409,1140.04 246.454,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M262.409 1139.48 L262.409 1140.04 L278.363 1140.04 L278.363 1139.48 L262.409 1139.48 L262.409 1139.48 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 262.409,1139.48 262.409,1140.04 278.363,1140.04 278.363,1139.48 262.409,1139.48 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M278.363 1140.04 L278.363 1140.04 L294.318 1140.04 L294.318 1140.04 L278.363 1140.04 L278.363 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.363,1140.04 278.363,1140.04 294.318,1140.04 278.363,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M294.318 1140.04 L294.318 1140.04 L310.273 1140.04 L310.273 1140.04 L294.318 1140.04 L294.318 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 294.318,1140.04 294.318,1140.04 310.273,1140.04 294.318,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M310.273 1140.04 L310.273 1140.04 L326.227 1140.04 L326.227 1140.04 L310.273 1140.04 L310.273 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 310.273,1140.04 310.273,1140.04 326.227,1140.04 310.273,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M326.227 1140.04 L326.227 1140.04 L342.182 1140.04 L342.182 1140.04 L326.227 1140.04 L326.227 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 326.227,1140.04 326.227,1140.04 342.182,1140.04 326.227,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M342.182 1140.04 L342.182 1140.04 L358.137 1140.04 L358.137 1140.04 L342.182 1140.04 L342.182 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 342.182,1140.04 342.182,1140.04 358.137,1140.04 342.182,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M358.137 1140.04 L358.137 1140.04 L374.091 1140.04 L374.091 1140.04 L358.137 1140.04 L358.137 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 358.137,1140.04 358.137,1140.04 374.091,1140.04 358.137,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M374.091 1140.04 L374.091 1140.04 L390.046 1140.04 L390.046 1140.04 L374.091 1140.04 L374.091 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 374.091,1140.04 374.091,1140.04 390.046,1140.04 374.091,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M390.046 1140.04 L390.046 1140.04 L406 1140.04 L406 1140.04 L390.046 1140.04 L390.046 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 390.046,1140.04 390.046,1140.04 406,1140.04 390.046,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M406 1140.04 L406 1140.04 L421.955 1140.04 L421.955 1140.04 L406 1140.04 L406 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 406,1140.04 406,1140.04 421.955,1140.04 406,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M421.955 1140.04 L421.955 1140.04 L437.91 1140.04 L437.91 1140.04 L421.955 1140.04 L421.955 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 421.955,1140.04 421.955,1140.04 437.91,1140.04 421.955,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M437.91 1138.92 L437.91 1140.04 L453.864 1140.04 L453.864 1138.92 L437.91 1138.92 L437.91 1138.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 437.91,1138.92 437.91,1140.04 453.864,1140.04 453.864,1138.92 437.91,1138.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M453.864 1140.04 L453.864 1140.04 L469.819 1140.04 L469.819 1140.04 L453.864 1140.04 L453.864 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 453.864,1140.04 453.864,1140.04 469.819,1140.04 453.864,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M469.819 1140.04 L469.819 1140.04 L485.774 1140.04 L485.774 1140.04 L469.819 1140.04 L469.819 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 469.819,1140.04 469.819,1140.04 485.774,1140.04 469.819,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M485.774 1140.04 L485.774 1140.04 L501.728 1140.04 L501.728 1140.04 L485.774 1140.04 L485.774 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 485.774,1140.04 485.774,1140.04 501.728,1140.04 485.774,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M501.728 1140.04 L501.728 1140.04 L517.683 1140.04 L517.683 1140.04 L501.728 1140.04 L501.728 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 501.728,1140.04 501.728,1140.04 517.683,1140.04 501.728,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M517.683 1138.92 L517.683 1140.04 L533.638 1140.04 L533.638 1138.92 L517.683 1138.92 L517.683 1138.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 517.683,1138.92 517.683,1140.04 533.638,1140.04 533.638,1138.92 517.683,1138.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M533.638 1140.04 L533.638 1140.04 L549.592 1140.04 L549.592 1140.04 L533.638 1140.04 L533.638 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 533.638,1140.04 533.638,1140.04 549.592,1140.04 533.638,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M549.592 1140.04 L549.592 1140.04 L565.547 1140.04 L565.547 1140.04 L549.592 1140.04 L549.592 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 549.592,1140.04 549.592,1140.04 565.547,1140.04 549.592,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M565.547 1138.92 L565.547 1140.04 L581.502 1140.04 L581.502 1138.92 L565.547 1138.92 L565.547 1138.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 565.547,1138.92 565.547,1140.04 581.502,1140.04 581.502,1138.92 565.547,1138.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M581.502 1139.48 L581.502 1140.04 L597.456 1140.04 L597.456 1139.48 L581.502 1139.48 L581.502 1139.48 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 581.502,1139.48 581.502,1140.04 597.456,1140.04 597.456,1139.48 581.502,1139.48 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M597.456 1138.92 L597.456 1140.04 L613.411 1140.04 L613.411 1138.92 L597.456 1138.92 L597.456 1138.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 597.456,1138.92 597.456,1140.04 613.411,1140.04 613.411,1138.92 597.456,1138.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M613.411 1138.92 L613.411 1140.04 L629.366 1140.04 L629.366 1138.92 L613.411 1138.92 L613.411 1138.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 613.411,1138.92 613.411,1140.04 629.366,1140.04 629.366,1138.92 613.411,1138.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M629.366 1139.48 L629.366 1140.04 L645.32 1140.04 L645.32 1139.48 L629.366 1139.48 L629.366 1139.48 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 629.366,1139.48 629.366,1140.04 645.32,1140.04 645.32,1139.48 629.366,1139.48 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M645.32 1139.48 L645.32 1140.04 L661.275 1140.04 L661.275 1139.48 L645.32 1139.48 L645.32 1139.48 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 645.32,1139.48 645.32,1140.04 661.275,1140.04 661.275,1139.48 645.32,1139.48 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M661.275 1139.48 L661.275 1140.04 L677.229 1140.04 L677.229 1139.48 L661.275 1139.48 L661.275 1139.48 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 661.275,1139.48 661.275,1140.04 677.229,1140.04 677.229,1139.48 661.275,1139.48 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M677.229 1140.04 L677.229 1140.04 L693.184 1140.04 L693.184 1140.04 L677.229 1140.04 L677.229 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 677.229,1140.04 677.229,1140.04 693.184,1140.04 677.229,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M693.184 1138.35 L693.184 1140.04 L709.139 1140.04 L709.139 1138.35 L693.184 1138.35 L693.184 1138.35 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 693.184,1138.35 693.184,1140.04 709.139,1140.04 709.139,1138.35 693.184,1138.35 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M709.139 1138.92 L709.139 1140.04 L725.093 1140.04 L725.093 1138.92 L709.139 1138.92 L709.139 1138.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 709.139,1138.92 709.139,1140.04 725.093,1140.04 725.093,1138.92 709.139,1138.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M725.093 1138.92 L725.093 1140.04 L741.048 1140.04 L741.048 1138.92 L725.093 1138.92 L725.093 1138.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 725.093,1138.92 725.093,1140.04 741.048,1140.04 741.048,1138.92 725.093,1138.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M741.048 1136.1 L741.048 1140.04 L757.003 1140.04 L757.003 1136.1 L741.048 1136.1 L741.048 1136.1 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 741.048,1136.1 741.048,1140.04 757.003,1140.04 757.003,1136.1 741.048,1136.1 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M757.003 1135.54 L757.003 1140.04 L772.957 1140.04 L772.957 1135.54 L757.003 1135.54 L757.003 1135.54 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 757.003,1135.54 757.003,1140.04 772.957,1140.04 772.957,1135.54 757.003,1135.54 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M772.957 1134.98 L772.957 1140.04 L788.912 1140.04 L788.912 1134.98 L772.957 1134.98 L772.957 1134.98 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 772.957,1134.98 772.957,1140.04 788.912,1140.04 788.912,1134.98 772.957,1134.98 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M788.912 1135.54 L788.912 1140.04 L804.867 1140.04 L804.867 1135.54 L788.912 1135.54 L788.912 1135.54 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 788.912,1135.54 788.912,1140.04 804.867,1140.04 804.867,1135.54 788.912,1135.54 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M804.867 1134.42 L804.867 1140.04 L820.821 1140.04 L820.821 1134.42 L804.867 1134.42 L804.867 1134.42 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 804.867,1134.42 804.867,1140.04 820.821,1140.04 820.821,1134.42 804.867,1134.42 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M820.821 1128.8 L820.821 1140.04 L836.776 1140.04 L836.776 1128.8 L820.821 1128.8 L820.821 1128.8 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 820.821,1128.8 820.821,1140.04 836.776,1140.04 836.776,1128.8 820.821,1128.8 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M836.776 1129.36 L836.776 1140.04 L852.731 1140.04 L852.731 1129.36 L836.776 1129.36 L836.776 1129.36 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 836.776,1129.36 836.776,1140.04 852.731,1140.04 852.731,1129.36 836.776,1129.36 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M852.731 1120.37 L852.731 1140.04 L868.685 1140.04 L868.685 1120.37 L852.731 1120.37 L852.731 1120.37 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 852.731,1120.37 852.731,1140.04 868.685,1140.04 868.685,1120.37 852.731,1120.37 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M868.685 1115.87 L868.685 1140.04 L884.64 1140.04 L884.64 1115.87 L868.685 1115.87 L868.685 1115.87 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 868.685,1115.87 868.685,1140.04 884.64,1140.04 884.64,1115.87 868.685,1115.87 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M884.64 1100.13 L884.64 1140.04 L900.595 1140.04 L900.595 1100.13 L884.64 1100.13 L884.64 1100.13 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 884.64,1100.13 884.64,1140.04 900.595,1140.04 900.595,1100.13 884.64,1100.13 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M900.595 1082.71 L900.595 1140.04 L916.549 1140.04 L916.549 1082.71 L900.595 1082.71 L900.595 1082.71 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 900.595,1082.71 900.595,1140.04 916.549,1140.04 916.549,1082.71 900.595,1082.71 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M916.549 1052.92 L916.549 1140.04 L932.504 1140.04 L932.504 1052.92 L916.549 1052.92 L916.549 1052.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 916.549,1052.92 916.549,1140.04 932.504,1140.04 932.504,1052.92 916.549,1052.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M932.504 982.103 L932.504 1140.04 L948.458 1140.04 L948.458 982.103 L932.504 982.103 L932.504 982.103 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 932.504,982.103 932.504,1140.04 948.458,1140.04 948.458,982.103 932.504,982.103 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M948.458 877 L948.458 1140.04 L964.413 1140.04 L964.413 877 L948.458 877 L948.458 877 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 948.458,877 948.458,1140.04 964.413,1140.04 964.413,877 948.458,877 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M964.413 673.538 L964.413 1140.04 L980.368 1140.04 L980.368 673.538 L964.413 673.538 L964.413 673.538 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 964.413,673.538 964.413,1140.04 980.368,1140.04 980.368,673.538 964.413,673.538 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M980.368 426.799 L980.368 1140.04 L996.322 1140.04 L996.322 426.799 L980.368 426.799 L980.368 426.799 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 980.368,426.799 980.368,1140.04 996.322,1140.04 996.322,426.799 980.368,426.799 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M996.322 186.242 L996.322 1140.04 L1012.28 1140.04 L1012.28 186.242 L996.322 186.242 L996.322 186.242 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 996.322,186.242 996.322,1140.04 1012.28,1140.04 1012.28,186.242 996.322,186.242 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1012.28 153.081 L1012.28 1140.04 L1028.23 1140.04 L1028.23 153.081 L1012.28 153.081 L1012.28 153.081 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1012.28,153.081 1012.28,1140.04 1028.23,1140.04 1028.23,153.081 1012.28,153.081 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1028.23 350.922 L1028.23 1140.04 L1044.19 1140.04 L1044.19 350.922 L1028.23 350.922 L1028.23 350.922 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1028.23,350.922 1028.23,1140.04 1044.19,1140.04 1044.19,350.922 1028.23,350.922 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1044.19 647.684 L1044.19 1140.04 L1060.14 1140.04 L1060.14 647.684 L1044.19 647.684 L1044.19 647.684 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1044.19,647.684 1044.19,1140.04 1060.14,1140.04 1060.14,647.684 1044.19,647.684 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1060.14 864.073 L1060.14 1140.04 L1076.1 1140.04 L1076.1 864.073 L1060.14 864.073 L1060.14 864.073 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1060.14,864.073 1060.14,1140.04 1076.1,1140.04 1076.1,864.073 1060.14,864.073 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1076.1 978.731 L1076.1 1140.04 L1092.05 1140.04 L1092.05 978.731 L1076.1 978.731 L1076.1 978.731 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1076.1,978.731 1076.1,1140.04 1092.05,1140.04 1092.05,978.731 1076.1,978.731 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1092.05 1049.55 L1092.05 1140.04 L1108 1140.04 L1108 1049.55 L1092.05 1049.55 L1092.05 1049.55 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1092.05,1049.55 1092.05,1140.04 1108,1140.04 1108,1049.55 1092.05,1049.55 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1108 1084.4 L1108 1140.04 L1123.96 1140.04 L1123.96 1084.4 L1108 1084.4 L1108 1084.4 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1108,1084.4 1108,1140.04 1123.96,1140.04 1123.96,1084.4 1108,1084.4 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1123.96 1104.07 L1123.96 1140.04 L1139.91 1140.04 L1139.91 1104.07 L1123.96 1104.07 L1123.96 1104.07 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1123.96,1104.07 1123.96,1140.04 1139.91,1140.04 1139.91,1104.07 1123.96,1104.07 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1139.91 1114.75 L1139.91 1140.04 L1155.87 1140.04 L1155.87 1114.75 L1139.91 1114.75 L1139.91 1114.75 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1139.91,1114.75 1139.91,1140.04 1155.87,1140.04 1155.87,1114.75 1139.91,1114.75 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1155.87 1128.8 L1155.87 1140.04 L1171.82 1140.04 L1171.82 1128.8 L1155.87 1128.8 L1155.87 1128.8 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1155.87,1128.8 1155.87,1140.04 1171.82,1140.04 1171.82,1128.8 1155.87,1128.8 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1171.82 1124.86 L1171.82 1140.04 L1187.78 1140.04 L1187.78 1124.86 L1171.82 1124.86 L1171.82 1124.86 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1171.82,1124.86 1171.82,1140.04 1187.78,1140.04 1187.78,1124.86 1171.82,1124.86 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1187.78 1134.42 L1187.78 1140.04 L1203.73 1140.04 L1203.73 1134.42 L1187.78 1134.42 L1187.78 1134.42 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1187.78,1134.42 1187.78,1140.04 1203.73,1140.04 1203.73,1134.42 1187.78,1134.42 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1203.73 1137.79 L1203.73 1140.04 L1219.69 1140.04 L1219.69 1137.79 L1203.73 1137.79 L1203.73 1137.79 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1203.73,1137.79 1203.73,1140.04 1219.69,1140.04 1219.69,1137.79 1203.73,1137.79 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1219.69 1133.86 L1219.69 1140.04 L1235.64 1140.04 L1235.64 1133.86 L1219.69 1133.86 L1219.69 1133.86 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1219.69,1133.86 1219.69,1140.04 1235.64,1140.04 1235.64,1133.86 1219.69,1133.86 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1235.64 1137.79 L1235.64 1140.04 L1251.6 1140.04 L1251.6 1137.79 L1235.64 1137.79 L1235.64 1137.79 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1235.64,1137.79 1235.64,1140.04 1251.6,1140.04 1251.6,1137.79 1235.64,1137.79 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1251.6 1138.35 L1251.6 1140.04 L1267.55 1140.04 L1267.55 1138.35 L1251.6 1138.35 L1251.6 1138.35 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1251.6,1138.35 1251.6,1140.04 1267.55,1140.04 1267.55,1138.35 1251.6,1138.35 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1267.55 1137.23 L1267.55 1140.04 L1283.51 1140.04 L1283.51 1137.23 L1267.55 1137.23 L1267.55 1137.23 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1267.55,1137.23 1267.55,1140.04 1283.51,1140.04 1283.51,1137.23 1267.55,1137.23 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1283.51 1138.35 L1283.51 1140.04 L1299.46 1140.04 L1299.46 1138.35 L1283.51 1138.35 L1283.51 1138.35 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1283.51,1138.35 1283.51,1140.04 1299.46,1140.04 1299.46,1138.35 1283.51,1138.35 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1299.46 1138.92 L1299.46 1140.04 L1315.42 1140.04 L1315.42 1138.92 L1299.46 1138.92 L1299.46 1138.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1299.46,1138.92 1299.46,1140.04 1315.42,1140.04 1315.42,1138.92 1299.46,1138.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1315.42 1138.92 L1315.42 1140.04 L1331.37 1140.04 L1331.37 1138.92 L1315.42 1138.92 L1315.42 1138.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1315.42,1138.92 1315.42,1140.04 1331.37,1140.04 1331.37,1138.92 1315.42,1138.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1331.37 1138.92 L1331.37 1140.04 L1347.32 1140.04 L1347.32 1138.92 L1331.37 1138.92 L1331.37 1138.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1331.37,1138.92 1331.37,1140.04 1347.32,1140.04 1347.32,1138.92 1331.37,1138.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1347.32 1138.92 L1347.32 1140.04 L1363.28 1140.04 L1363.28 1138.92 L1347.32 1138.92 L1347.32 1138.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1347.32,1138.92 1347.32,1140.04 1363.28,1140.04 1363.28,1138.92 1347.32,1138.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1363.28 1138.35 L1363.28 1140.04 L1379.23 1140.04 L1379.23 1138.35 L1363.28 1138.35 L1363.28 1138.35 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1363.28,1138.35 1363.28,1140.04 1379.23,1140.04 1379.23,1138.35 1363.28,1138.35 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1379.23 1140.04 L1379.23 1140.04 L1395.19 1140.04 L1395.19 1140.04 L1379.23 1140.04 L1379.23 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1379.23,1140.04 1379.23,1140.04 1395.19,1140.04 1379.23,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1395.19 1140.04 L1395.19 1140.04 L1411.14 1140.04 L1411.14 1140.04 L1395.19 1140.04 L1395.19 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1395.19,1140.04 1395.19,1140.04 1411.14,1140.04 1395.19,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1411.14 1140.04 L1411.14 1140.04 L1427.1 1140.04 L1427.1 1140.04 L1411.14 1140.04 L1411.14 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1411.14,1140.04 1411.14,1140.04 1427.1,1140.04 1411.14,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1427.1 1138.92 L1427.1 1140.04 L1443.05 1140.04 L1443.05 1138.92 L1427.1 1138.92 L1427.1 1138.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1427.1,1138.92 1427.1,1140.04 1443.05,1140.04 1443.05,1138.92 1427.1,1138.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1443.05 1139.48 L1443.05 1140.04 L1459.01 1140.04 L1459.01 1139.48 L1443.05 1139.48 L1443.05 1139.48 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1443.05,1139.48 1443.05,1140.04 1459.01,1140.04 1459.01,1139.48 1443.05,1139.48 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1459.01 1140.04 L1459.01 1140.04 L1474.96 1140.04 L1474.96 1140.04 L1459.01 1140.04 L1459.01 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1459.01,1140.04 1459.01,1140.04 1474.96,1140.04 1459.01,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1474.96 1140.04 L1474.96 1140.04 L1490.92 1140.04 L1490.92 1140.04 L1474.96 1140.04 L1474.96 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1474.96,1140.04 1474.96,1140.04 1490.92,1140.04 1474.96,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1490.92 1140.04 L1490.92 1140.04 L1506.87 1140.04 L1506.87 1140.04 L1490.92 1140.04 L1490.92 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1490.92,1140.04 1490.92,1140.04 1506.87,1140.04 1490.92,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1506.87 1140.04 L1506.87 1140.04 L1522.83 1140.04 L1522.83 1140.04 L1506.87 1140.04 L1506.87 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1506.87,1140.04 1506.87,1140.04 1522.83,1140.04 1506.87,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1522.83 1140.04 L1522.83 1140.04 L1538.78 1140.04 L1538.78 1140.04 L1522.83 1140.04 L1522.83 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1522.83,1140.04 1522.83,1140.04 1538.78,1140.04 1522.83,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1538.78 1140.04 L1538.78 1140.04 L1554.74 1140.04 L1554.74 1140.04 L1538.78 1140.04 L1538.78 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1538.78,1140.04 1538.78,1140.04 1554.74,1140.04 1538.78,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1554.74 1139.48 L1554.74 1140.04 L1570.69 1140.04 L1570.69 1139.48 L1554.74 1139.48 L1554.74 1139.48 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1554.74,1139.48 1554.74,1140.04 1570.69,1140.04 1570.69,1139.48 1554.74,1139.48 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1570.69 1139.48 L1570.69 1140.04 L1586.64 1140.04 L1586.64 1139.48 L1570.69 1139.48 L1570.69 1139.48 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1570.69,1139.48 1570.69,1140.04 1586.64,1140.04 1586.64,1139.48 1570.69,1139.48 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1586.64 1140.04 L1586.64 1140.04 L1602.6 1140.04 L1602.6 1140.04 L1586.64 1140.04 L1586.64 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1586.64,1140.04 1586.64,1140.04 1602.6,1140.04 1586.64,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1602.6 1140.04 L1602.6 1140.04 L1618.55 1140.04 L1618.55 1140.04 L1602.6 1140.04 L1602.6 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1602.6,1140.04 1602.6,1140.04 1618.55,1140.04 1602.6,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1618.55 1140.04 L1618.55 1140.04 L1634.51 1140.04 L1634.51 1140.04 L1618.55 1140.04 L1618.55 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1618.55,1140.04 1618.55,1140.04 1634.51,1140.04 1618.55,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1634.51 1140.04 L1634.51 1140.04 L1650.46 1140.04 L1650.46 1140.04 L1634.51 1140.04 L1634.51 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1634.51,1140.04 1634.51,1140.04 1650.46,1140.04 1634.51,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1650.46 1140.04 L1650.46 1140.04 L1666.42 1140.04 L1666.42 1140.04 L1650.46 1140.04 L1650.46 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1650.46,1140.04 1650.46,1140.04 1666.42,1140.04 1650.46,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1666.42 1140.04 L1666.42 1140.04 L1682.37 1140.04 L1682.37 1140.04 L1666.42 1140.04 L1666.42 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1666.42,1140.04 1666.42,1140.04 1682.37,1140.04 1666.42,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1682.37 1140.04 L1682.37 1140.04 L1698.33 1140.04 L1698.33 1140.04 L1682.37 1140.04 L1682.37 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1682.37,1140.04 1682.37,1140.04 1698.33,1140.04 1682.37,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1698.33 1140.04 L1698.33 1140.04 L1714.28 1140.04 L1714.28 1140.04 L1698.33 1140.04 L1698.33 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1698.33,1140.04 1698.33,1140.04 1714.28,1140.04 1698.33,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1714.28 1140.04 L1714.28 1140.04 L1730.24 1140.04 L1730.24 1140.04 L1714.28 1140.04 L1714.28 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1714.28,1140.04 1714.28,1140.04 1730.24,1140.04 1714.28,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1730.24 1140.04 L1730.24 1140.04 L1746.19 1140.04 L1746.19 1140.04 L1730.24 1140.04 L1730.24 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1730.24,1140.04 1730.24,1140.04 1746.19,1140.04 1730.24,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1746.19 1140.04 L1746.19 1140.04 L1762.15 1140.04 L1762.15 1140.04 L1746.19 1140.04 L1746.19 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1746.19,1140.04 1746.19,1140.04 1762.15,1140.04 1746.19,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip702)\" d=\"\n",
"M1762.15 1140.04 L1762.15 1140.04 L1778.1 1140.04 L1778.1 1140.04 L1762.15 1140.04 L1762.15 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip702)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1762.15,1140.04 1762.15,1140.04 1778.1,1140.04 1762.15,1140.04 \n",
" \"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"254.431\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"270.386\" cy=\"1139.48\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"286.341\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"302.295\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"318.25\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"334.205\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"350.159\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"366.114\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"382.068\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"398.023\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"413.978\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"429.932\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"445.887\" cy=\"1138.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"461.842\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"477.796\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"493.751\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"509.706\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"525.66\" cy=\"1138.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"541.615\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"557.57\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"573.524\" cy=\"1138.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"589.479\" cy=\"1139.48\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"605.434\" cy=\"1138.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"621.388\" cy=\"1138.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"637.343\" cy=\"1139.48\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"653.297\" cy=\"1139.48\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"669.252\" cy=\"1139.48\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"685.207\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"701.161\" cy=\"1138.35\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"717.116\" cy=\"1138.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"733.071\" cy=\"1138.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"749.025\" cy=\"1136.1\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"764.98\" cy=\"1135.54\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"780.935\" cy=\"1134.98\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"796.889\" cy=\"1135.54\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"812.844\" cy=\"1134.42\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"828.799\" cy=\"1128.8\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"844.753\" cy=\"1129.36\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"860.708\" cy=\"1120.37\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"876.663\" cy=\"1115.87\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"892.617\" cy=\"1100.13\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"908.572\" cy=\"1082.71\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"924.527\" cy=\"1052.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"940.481\" cy=\"982.103\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"956.436\" cy=\"877\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"972.39\" cy=\"673.538\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"988.345\" cy=\"426.799\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1004.3\" cy=\"186.242\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1020.25\" cy=\"153.081\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1036.21\" cy=\"350.922\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1052.16\" cy=\"647.684\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1068.12\" cy=\"864.073\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1084.07\" cy=\"978.731\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1100.03\" cy=\"1049.55\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1115.98\" cy=\"1084.4\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1131.94\" cy=\"1104.07\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1147.89\" cy=\"1114.75\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1163.85\" cy=\"1128.8\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1179.8\" cy=\"1124.86\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1195.76\" cy=\"1134.42\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1211.71\" cy=\"1137.79\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1227.66\" cy=\"1133.86\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1243.62\" cy=\"1137.79\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1259.57\" cy=\"1138.35\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1275.53\" cy=\"1137.23\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1291.48\" cy=\"1138.35\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1307.44\" cy=\"1138.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1323.39\" cy=\"1138.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1339.35\" cy=\"1138.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1355.3\" cy=\"1138.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1371.26\" cy=\"1138.35\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1387.21\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1403.17\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1419.12\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1435.08\" cy=\"1138.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1451.03\" cy=\"1139.48\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1466.98\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1482.94\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1498.89\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1514.85\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1530.8\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1546.76\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1562.71\" cy=\"1139.48\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1578.67\" cy=\"1139.48\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1594.62\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1610.58\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1626.53\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1642.49\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1658.44\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1674.39\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1690.35\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1706.3\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1722.26\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1738.21\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1754.17\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip702)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1770.12\" cy=\"1140.04\" r=\"2\"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"plt = histogram( R_1,bins = -12:0.25:12,normalize=true,legend=false,title=\"strategy 1\" )\n",
"display(plt)"
]
},
{
"cell_type": "code",
"execution_count": 7,
"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=\"480\" height=\"320\" viewBox=\"0 0 1920 1280\">\n",
"<defs>\n",
" <clipPath id=\"clip740\">\n",
" <rect x=\"0\" y=\"0\" width=\"1920\" height=\"1280\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip740)\" d=\"\n",
"M0 1280 L1920 1280 L1920 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip741\">\n",
" <rect x=\"384\" y=\"0\" width=\"1345\" height=\"1280\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip740)\" d=\"\n",
"M151.798 1169.65 L1872.76 1169.65 L1872.76 123.472 L151.798 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip742\">\n",
" <rect x=\"151\" y=\"123\" width=\"1722\" height=\"1047\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 374.091,1169.65 374.091,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 693.184,1169.65 693.184,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1012.28,1169.65 1012.28,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1331.37,1169.65 1331.37,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1650.46,1169.65 1650.46,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,1169.65 1872.76,1169.65 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 374.091,1169.65 374.091,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 693.184,1169.65 693.184,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1012.28,1169.65 1012.28,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1331.37,1169.65 1331.37,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1650.46,1169.65 1650.46,1150.75 \n",
" \"/>\n",
"<path clip-path=\"url(#clip740)\" d=\"M328.154 1211.38 L357.83 1211.38 L357.83 1215.31 L328.154 1215.31 L328.154 1211.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M368.732 1224.27 L376.371 1224.27 L376.371 1197.91 L368.061 1199.57 L368.061 1195.31 L376.325 1193.65 L381.001 1193.65 L381.001 1224.27 L388.64 1224.27 L388.64 1228.21 L368.732 1228.21 L368.732 1224.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M408.084 1196.73 Q404.473 1196.73 402.644 1200.29 Q400.839 1203.83 400.839 1210.96 Q400.839 1218.07 402.644 1221.63 Q404.473 1225.18 408.084 1225.18 Q411.718 1225.18 413.524 1221.63 Q415.353 1218.07 415.353 1210.96 Q415.353 1203.83 413.524 1200.29 Q411.718 1196.73 408.084 1196.73 M408.084 1193.02 Q413.894 1193.02 416.95 1197.63 Q420.028 1202.21 420.028 1210.96 Q420.028 1219.69 416.95 1224.3 Q413.894 1228.88 408.084 1228.88 Q402.274 1228.88 399.195 1224.3 Q396.14 1219.69 396.14 1210.96 Q396.14 1202.21 399.195 1197.63 Q402.274 1193.02 408.084 1193.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M662.825 1211.38 L692.501 1211.38 L692.501 1215.31 L662.825 1215.31 L662.825 1211.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M702.64 1193.65 L720.996 1193.65 L720.996 1197.58 L706.922 1197.58 L706.922 1206.06 Q707.941 1205.71 708.959 1205.55 Q709.978 1205.36 710.997 1205.36 Q716.784 1205.36 720.163 1208.53 Q723.543 1211.7 723.543 1217.12 Q723.543 1222.7 720.071 1225.8 Q716.598 1228.88 710.279 1228.88 Q708.103 1228.88 705.835 1228.51 Q703.589 1228.14 701.182 1227.4 L701.182 1222.7 Q703.265 1223.83 705.487 1224.39 Q707.709 1224.94 710.186 1224.94 Q714.191 1224.94 716.529 1222.84 Q718.867 1220.73 718.867 1217.12 Q718.867 1213.51 716.529 1211.4 Q714.191 1209.3 710.186 1209.3 Q708.311 1209.3 706.436 1209.71 Q704.585 1210.13 702.64 1211.01 L702.64 1193.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M1012.28 1196.73 Q1008.67 1196.73 1006.84 1200.29 Q1005.03 1203.83 1005.03 1210.96 Q1005.03 1218.07 1006.84 1221.63 Q1008.67 1225.18 1012.28 1225.18 Q1015.91 1225.18 1017.72 1221.63 Q1019.55 1218.07 1019.55 1210.96 Q1019.55 1203.83 1017.72 1200.29 Q1015.91 1196.73 1012.28 1196.73 M1012.28 1193.02 Q1018.09 1193.02 1021.14 1197.63 Q1024.22 1202.21 1024.22 1210.96 Q1024.22 1219.69 1021.14 1224.3 Q1018.09 1228.88 1012.28 1228.88 Q1006.47 1228.88 1003.39 1224.3 Q1000.33 1219.69 1000.33 1210.96 Q1000.33 1202.21 1003.39 1197.63 Q1006.47 1193.02 1012.28 1193.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M1321.65 1193.65 L1340 1193.65 L1340 1197.58 L1325.93 1197.58 L1325.93 1206.06 Q1326.95 1205.71 1327.97 1205.55 Q1328.99 1205.36 1330 1205.36 Q1335.79 1205.36 1339.17 1208.53 Q1342.55 1211.7 1342.55 1217.12 Q1342.55 1222.7 1339.08 1225.8 Q1335.61 1228.88 1329.29 1228.88 Q1327.11 1228.88 1324.84 1228.51 Q1322.6 1228.14 1320.19 1227.4 L1320.19 1222.7 Q1322.27 1223.83 1324.5 1224.39 Q1326.72 1224.94 1329.19 1224.94 Q1333.2 1224.94 1335.54 1222.84 Q1337.87 1220.73 1337.87 1217.12 Q1337.87 1213.51 1335.54 1211.4 Q1333.2 1209.3 1329.19 1209.3 Q1327.32 1209.3 1325.44 1209.71 Q1323.59 1210.13 1321.65 1211.01 L1321.65 1193.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M1625.15 1224.27 L1632.79 1224.27 L1632.79 1197.91 L1624.48 1199.57 L1624.48 1195.31 L1632.74 1193.65 L1637.42 1193.65 L1637.42 1224.27 L1645.06 1224.27 L1645.06 1228.21 L1625.15 1228.21 L1625.15 1224.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M1664.5 1196.73 Q1660.89 1196.73 1659.06 1200.29 Q1657.26 1203.83 1657.26 1210.96 Q1657.26 1218.07 1659.06 1221.63 Q1660.89 1225.18 1664.5 1225.18 Q1668.14 1225.18 1669.94 1221.63 Q1671.77 1218.07 1671.77 1210.96 Q1671.77 1203.83 1669.94 1200.29 Q1668.14 1196.73 1664.5 1196.73 M1664.5 1193.02 Q1670.31 1193.02 1673.37 1197.63 Q1676.45 1202.21 1676.45 1210.96 Q1676.45 1219.69 1673.37 1224.3 Q1670.31 1228.88 1664.5 1228.88 Q1658.69 1228.88 1655.61 1224.3 Q1652.56 1219.69 1652.56 1210.96 Q1652.56 1202.21 1655.61 1197.63 Q1658.69 1193.02 1664.5 1193.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.798,1140.04 1872.76,1140.04 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.798,922.744 1872.76,922.744 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.798,705.45 1872.76,705.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.798,488.155 1872.76,488.155 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.798,270.86 1872.76,270.86 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,1169.65 151.798,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,1140.04 170.696,1140.04 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,922.744 170.696,922.744 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,705.45 170.696,705.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,488.155 170.696,488.155 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip740)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.798,270.86 170.696,270.86 \n",
" \"/>\n",
"<path clip-path=\"url(#clip740)\" d=\"M65.8226 1125.84 Q62.2115 1125.84 60.3828 1129.4 Q58.5773 1132.94 58.5773 1140.07 Q58.5773 1147.18 60.3828 1150.75 Q62.2115 1154.29 65.8226 1154.29 Q69.4569 1154.29 71.2624 1150.75 Q73.0911 1147.18 73.0911 1140.07 Q73.0911 1132.94 71.2624 1129.4 Q69.4569 1125.84 65.8226 1125.84 M65.8226 1122.13 Q71.6328 1122.13 74.6883 1126.74 Q77.767 1131.32 77.767 1140.07 Q77.767 1148.8 74.6883 1153.41 Q71.6328 1157.99 65.8226 1157.99 Q60.0125 1157.99 56.9338 1153.41 Q53.8782 1148.8 53.8782 1140.07 Q53.8782 1131.32 56.9338 1126.74 Q60.0125 1122.13 65.8226 1122.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M85.9845 1151.44 L90.8688 1151.44 L90.8688 1157.32 L85.9845 1157.32 L85.9845 1151.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M111.054 1125.84 Q107.443 1125.84 105.614 1129.4 Q103.809 1132.94 103.809 1140.07 Q103.809 1147.18 105.614 1150.75 Q107.443 1154.29 111.054 1154.29 Q114.688 1154.29 116.494 1150.75 Q118.322 1147.18 118.322 1140.07 Q118.322 1132.94 116.494 1129.4 Q114.688 1125.84 111.054 1125.84 M111.054 1122.13 Q116.864 1122.13 119.92 1126.74 Q122.998 1131.32 122.998 1140.07 Q122.998 1148.8 119.92 1153.41 Q116.864 1157.99 111.054 1157.99 Q105.244 1157.99 102.165 1153.41 Q99.1095 1148.8 99.1095 1140.07 Q99.1095 1131.32 102.165 1126.74 Q105.244 1122.13 111.054 1122.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M67.0495 908.543 Q63.4384 908.543 61.6097 912.108 Q59.8041 915.65 59.8041 922.779 Q59.8041 929.886 61.6097 933.45 Q63.4384 936.992 67.0495 936.992 Q70.6837 936.992 72.4892 933.45 Q74.3179 929.886 74.3179 922.779 Q74.3179 915.65 72.4892 912.108 Q70.6837 908.543 67.0495 908.543 M67.0495 904.839 Q72.8596 904.839 75.9152 909.446 Q78.9938 914.029 78.9938 922.779 Q78.9938 931.506 75.9152 936.112 Q72.8596 940.696 67.0495 940.696 Q61.2393 940.696 58.1606 936.112 Q55.1051 931.506 55.1051 922.779 Q55.1051 914.029 58.1606 909.446 Q61.2393 904.839 67.0495 904.839 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M87.2114 934.145 L92.0956 934.145 L92.0956 940.024 L87.2114 940.024 L87.2114 934.145 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M103.091 936.089 L110.73 936.089 L110.73 909.724 L102.42 911.39 L102.42 907.131 L110.683 905.464 L115.359 905.464 L115.359 936.089 L122.998 936.089 L122.998 940.024 L103.091 940.024 L103.091 936.089 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M67.4198 691.248 Q63.8087 691.248 61.98 694.813 Q60.1745 698.355 60.1745 705.484 Q60.1745 712.591 61.98 716.156 Q63.8087 719.697 67.4198 719.697 Q71.0541 719.697 72.8596 716.156 Q74.6883 712.591 74.6883 705.484 Q74.6883 698.355 72.8596 694.813 Q71.0541 691.248 67.4198 691.248 M67.4198 687.545 Q73.23 687.545 76.2855 692.151 Q79.3642 696.734 79.3642 705.484 Q79.3642 714.211 76.2855 718.818 Q73.23 723.401 67.4198 723.401 Q61.6097 723.401 58.531 718.818 Q55.4754 714.211 55.4754 705.484 Q55.4754 696.734 58.531 692.151 Q61.6097 687.545 67.4198 687.545 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M87.5818 716.85 L92.466 716.85 L92.466 722.73 L87.5818 722.73 L87.5818 716.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M106.679 718.794 L122.998 718.794 L122.998 722.73 L101.054 722.73 L101.054 718.794 Q103.716 716.04 108.299 711.41 Q112.906 706.757 114.086 705.415 Q116.332 702.892 117.211 701.156 Q118.114 699.396 118.114 697.707 Q118.114 694.952 116.17 693.216 Q114.248 691.48 111.146 691.48 Q108.947 691.48 106.494 692.244 Q104.063 693.008 101.285 694.558 L101.285 689.836 Q104.109 688.702 106.563 688.123 Q109.017 687.545 111.054 687.545 Q116.424 687.545 119.619 690.23 Q122.813 692.915 122.813 697.406 Q122.813 699.535 122.003 701.457 Q121.216 703.355 119.109 705.947 Q118.531 706.619 115.429 709.836 Q112.327 713.031 106.679 718.794 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M66.4708 473.954 Q62.8597 473.954 61.031 477.518 Q59.2254 481.06 59.2254 488.19 Q59.2254 495.296 61.031 498.861 Q62.8597 502.402 66.4708 502.402 Q70.105 502.402 71.9105 498.861 Q73.7392 495.296 73.7392 488.19 Q73.7392 481.06 71.9105 477.518 Q70.105 473.954 66.4708 473.954 M66.4708 470.25 Q72.2809 470.25 75.3365 474.856 Q78.4151 479.44 78.4151 488.19 Q78.4151 496.916 75.3365 501.523 Q72.2809 506.106 66.4708 506.106 Q60.6606 506.106 57.5819 501.523 Q54.5264 496.916 54.5264 488.19 Q54.5264 479.44 57.5819 474.856 Q60.6606 470.25 66.4708 470.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M86.6327 499.555 L91.5169 499.555 L91.5169 505.435 L86.6327 505.435 L86.6327 499.555 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M115.869 486.801 Q119.225 487.518 121.1 489.787 Q122.998 492.055 122.998 495.389 Q122.998 500.504 119.48 503.305 Q115.961 506.106 109.48 506.106 Q107.304 506.106 104.989 505.666 Q102.697 505.25 100.244 504.393 L100.244 499.879 Q102.188 501.014 104.503 501.592 Q106.818 502.171 109.341 502.171 Q113.739 502.171 116.031 500.435 Q118.345 498.699 118.345 495.389 Q118.345 492.333 116.193 490.62 Q114.063 488.884 110.244 488.884 L106.216 488.884 L106.216 485.041 L110.429 485.041 Q113.878 485.041 115.707 483.676 Q117.535 482.287 117.535 479.694 Q117.535 477.032 115.637 475.62 Q113.762 474.185 110.244 474.185 Q108.322 474.185 106.123 474.602 Q103.924 475.018 101.285 475.898 L101.285 471.731 Q103.947 470.991 106.262 470.62 Q108.6 470.25 110.66 470.25 Q115.984 470.25 119.086 472.68 Q122.188 475.088 122.188 479.208 Q122.188 482.079 120.545 484.069 Q118.901 486.037 115.869 486.801 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M65.3365 256.659 Q61.7254 256.659 59.8967 260.224 Q58.0912 263.765 58.0912 270.895 Q58.0912 278.001 59.8967 281.566 Q61.7254 285.108 65.3365 285.108 Q68.9707 285.108 70.7763 281.566 Q72.605 278.001 72.605 270.895 Q72.605 263.765 70.7763 260.224 Q68.9707 256.659 65.3365 256.659 M65.3365 252.955 Q71.1467 252.955 74.2022 257.562 Q77.2809 262.145 77.2809 270.895 Q77.2809 279.622 74.2022 284.228 Q71.1467 288.811 65.3365 288.811 Q59.5264 288.811 56.4477 284.228 Q53.3921 279.622 53.3921 270.895 Q53.3921 262.145 56.4477 257.562 Q59.5264 252.955 65.3365 252.955 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M85.4984 282.261 L90.3827 282.261 L90.3827 288.14 L85.4984 288.14 L85.4984 282.261 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M113.415 257.654 L101.609 276.103 L113.415 276.103 L113.415 257.654 M112.188 253.58 L118.068 253.58 L118.068 276.103 L122.998 276.103 L122.998 279.992 L118.068 279.992 L118.068 288.14 L113.415 288.14 L113.415 279.992 L97.8132 279.992 L97.8132 275.478 L112.188 253.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M838.331 28.5427 L838.331 35.5912 Q835.172 33.9709 831.769 33.1607 Q828.366 32.3505 824.72 32.3505 Q819.17 32.3505 816.375 34.0519 Q813.621 35.7533 813.621 39.156 Q813.621 41.7486 815.606 43.2475 Q817.591 44.7058 823.586 46.0426 L826.138 46.6097 Q834.078 48.3111 837.4 51.4303 Q840.762 54.509 840.762 60.0587 Q840.762 66.3781 835.739 70.0644 Q830.756 73.7508 822.006 73.7508 Q818.36 73.7508 814.39 73.0216 Q810.461 72.3329 806.086 70.9151 L806.086 63.2184 Q810.218 65.3654 814.228 66.4591 Q818.239 67.5124 822.168 67.5124 Q827.434 67.5124 830.27 65.73 Q833.106 63.9071 833.106 60.6258 Q833.106 57.5877 831.04 55.9673 Q829.014 54.3469 822.087 52.8481 L819.495 52.2405 Q812.567 50.7821 809.489 47.7845 Q806.41 44.7463 806.41 39.4801 Q806.41 33.0797 810.947 29.5959 Q815.484 26.1121 823.829 26.1121 Q827.961 26.1121 831.607 26.7198 Q835.253 27.3274 838.331 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M860.004 14.324 L860.004 27.2059 L875.357 27.2059 L875.357 32.9987 L860.004 32.9987 L860.004 57.6282 Q860.004 63.1779 861.502 64.7578 Q863.042 66.3376 867.7 66.3376 L875.357 66.3376 L875.357 72.576 L867.7 72.576 Q859.072 72.576 855.791 69.3758 Q852.509 66.1351 852.509 57.6282 L852.509 32.9987 L847.041 32.9987 L847.041 27.2059 L852.509 27.2059 L852.509 14.324 L860.004 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M911.45 34.1734 Q910.194 33.4443 908.695 33.1202 Q907.237 32.7556 905.455 32.7556 Q899.135 32.7556 895.733 36.8875 Q892.37 40.9789 892.37 48.6757 L892.37 72.576 L884.876 72.576 L884.876 27.2059 L892.37 27.2059 L892.37 34.2544 Q894.72 30.1225 898.487 28.1376 Q902.255 26.1121 907.642 26.1121 Q908.412 26.1121 909.344 26.2337 Q910.275 26.3147 911.41 26.5172 L911.45 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M939.887 49.7694 Q930.854 49.7694 927.37 51.8354 Q923.886 53.9013 923.886 58.8839 Q923.886 62.8538 926.479 65.2034 Q929.112 67.5124 933.609 67.5124 Q939.806 67.5124 943.533 63.1374 Q947.301 58.7219 947.301 51.4303 L947.301 49.7694 L939.887 49.7694 M954.754 46.6907 L954.754 72.576 L947.301 72.576 L947.301 65.6895 Q944.748 69.8214 940.941 71.8063 Q937.133 73.7508 931.624 73.7508 Q924.656 73.7508 920.524 69.8619 Q916.433 65.9325 916.433 59.3701 Q916.433 51.7138 921.537 47.825 Q926.681 43.9361 936.849 43.9361 L947.301 43.9361 L947.301 43.2069 Q947.301 38.0623 943.898 35.2672 Q940.536 32.4315 934.419 32.4315 Q930.53 32.4315 926.844 33.3632 Q923.157 34.295 919.754 36.1584 L919.754 29.2718 Q923.846 27.692 927.694 26.9223 Q931.543 26.1121 935.188 26.1121 Q945.032 26.1121 949.893 31.2163 Q954.754 36.3204 954.754 46.6907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M977.48 14.324 L977.48 27.2059 L992.833 27.2059 L992.833 32.9987 L977.48 32.9987 L977.48 57.6282 Q977.48 63.1779 978.979 64.7578 Q980.518 66.3376 985.177 66.3376 L992.833 66.3376 L992.833 72.576 L985.177 72.576 Q976.548 72.576 973.267 69.3758 Q969.986 66.1351 969.986 57.6282 L969.986 32.9987 L964.517 32.9987 L964.517 27.2059 L969.986 27.2059 L969.986 14.324 L977.48 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M1041.44 48.0275 L1041.44 51.6733 L1007.17 51.6733 Q1007.66 59.3701 1011.79 63.421 Q1015.96 67.4314 1023.38 67.4314 Q1027.67 67.4314 1031.68 66.3781 Q1035.73 65.3249 1039.7 63.2184 L1039.7 70.267 Q1035.69 71.9684 1031.48 72.8596 Q1027.27 73.7508 1022.93 73.7508 Q1012.07 73.7508 1005.71 67.4314 Q999.395 61.1119 999.395 50.3365 Q999.395 39.1965 1005.39 32.6746 Q1011.43 26.1121 1021.63 26.1121 Q1030.79 26.1121 1036.1 32.0264 Q1041.44 37.9003 1041.44 48.0275 M1033.99 45.84 Q1033.91 39.7232 1030.55 36.0774 Q1027.22 32.4315 1021.72 32.4315 Q1015.48 32.4315 1011.71 35.9558 Q1007.98 39.4801 1007.42 45.8805 L1033.99 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M1083.53 49.3643 Q1083.53 41.2625 1080.17 36.8065 Q1076.85 32.3505 1070.81 32.3505 Q1064.82 32.3505 1061.46 36.8065 Q1058.13 41.2625 1058.13 49.3643 Q1058.13 57.4256 1061.46 61.8816 Q1064.82 66.3376 1070.81 66.3376 Q1076.85 66.3376 1080.17 61.8816 Q1083.53 57.4256 1083.53 49.3643 M1090.99 66.9452 Q1090.99 78.5308 1085.84 84.1616 Q1080.7 89.8329 1070.08 89.8329 Q1066.15 89.8329 1062.67 89.2252 Q1059.19 88.6581 1055.91 87.4428 L1055.91 80.1917 Q1059.19 81.9741 1062.39 82.8248 Q1065.59 83.6755 1068.91 83.6755 Q1076.24 83.6755 1079.89 79.8271 Q1083.53 76.0193 1083.53 68.282 L1083.53 64.5957 Q1081.22 68.6061 1077.62 70.5911 Q1074.01 72.576 1068.99 72.576 Q1060.64 72.576 1055.54 66.2161 Q1050.44 59.8562 1050.44 49.3643 Q1050.44 38.832 1055.54 32.472 Q1060.64 26.1121 1068.99 26.1121 Q1074.01 26.1121 1077.62 28.0971 Q1081.22 30.082 1083.53 34.0924 L1083.53 27.2059 L1090.99 27.2059 L1090.99 66.9452 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M1125.22 76.7889 Q1122.06 84.8907 1119.06 87.3618 Q1116.06 89.8329 1111.04 89.8329 L1105.08 89.8329 L1105.08 83.5945 L1109.46 83.5945 Q1112.54 83.5945 1114.24 82.1361 Q1115.94 80.6778 1118.01 75.2496 L1119.34 71.8468 L1100.99 27.2059 L1108.89 27.2059 L1123.07 62.6918 L1137.25 27.2059 L1145.15 27.2059 L1125.22 76.7889 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip740)\" d=\"M1189.91 65.6895 L1218.47 65.6895 L1218.47 72.576 L1180.07 72.576 L1180.07 65.6895 Q1184.72 60.8689 1192.74 52.7671 Q1200.81 44.6248 1202.87 42.2752 Q1206.8 37.8598 1208.34 34.8216 Q1209.92 31.7429 1209.92 28.7857 Q1209.92 23.9651 1206.52 20.927 Q1203.16 17.8888 1197.73 17.8888 Q1193.88 17.8888 1189.59 19.2256 Q1185.33 20.5624 1180.47 23.2765 L1180.47 15.0127 Q1185.41 13.0277 1189.71 12.015 Q1194 11.0023 1197.57 11.0023 Q1206.96 11.0023 1212.55 15.7013 Q1218.14 20.4004 1218.14 28.2591 Q1218.14 31.9859 1216.73 35.3482 Q1215.35 38.6699 1211.66 43.2069 Q1210.65 44.3817 1205.22 50.0125 Q1199.79 55.6027 1189.91 65.6895 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip742)\" d=\"\n",
"M246.454 1140.04 L246.454 1140.04 L262.409 1140.04 L262.409 1140.04 L246.454 1140.04 L246.454 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 246.454,1140.04 246.454,1140.04 262.409,1140.04 246.454,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M262.409 1140.04 L262.409 1140.04 L278.363 1140.04 L278.363 1140.04 L262.409 1140.04 L262.409 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 262.409,1140.04 262.409,1140.04 278.363,1140.04 262.409,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M278.363 1140.04 L278.363 1140.04 L294.318 1140.04 L294.318 1140.04 L278.363 1140.04 L278.363 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 278.363,1140.04 278.363,1140.04 294.318,1140.04 278.363,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M294.318 1140.04 L294.318 1140.04 L310.273 1140.04 L310.273 1140.04 L294.318 1140.04 L294.318 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 294.318,1140.04 294.318,1140.04 310.273,1140.04 294.318,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M310.273 1140.04 L310.273 1140.04 L326.227 1140.04 L326.227 1140.04 L310.273 1140.04 L310.273 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 310.273,1140.04 310.273,1140.04 326.227,1140.04 310.273,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M326.227 1139.2 L326.227 1140.04 L342.182 1140.04 L342.182 1139.2 L326.227 1139.2 L326.227 1139.2 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 326.227,1139.2 326.227,1140.04 342.182,1140.04 342.182,1139.2 326.227,1139.2 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M342.182 1140.04 L342.182 1140.04 L358.137 1140.04 L358.137 1140.04 L342.182 1140.04 L342.182 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 342.182,1140.04 342.182,1140.04 358.137,1140.04 342.182,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M358.137 1140.04 L358.137 1140.04 L374.091 1140.04 L374.091 1140.04 L358.137 1140.04 L358.137 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 358.137,1140.04 358.137,1140.04 374.091,1140.04 358.137,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M374.091 1140.04 L374.091 1140.04 L390.046 1140.04 L390.046 1140.04 L374.091 1140.04 L374.091 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 374.091,1140.04 374.091,1140.04 390.046,1140.04 374.091,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M390.046 1140.04 L390.046 1140.04 L406 1140.04 L406 1140.04 L390.046 1140.04 L390.046 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 390.046,1140.04 390.046,1140.04 406,1140.04 390.046,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M406 1138.36 L406 1140.04 L421.955 1140.04 L421.955 1138.36 L406 1138.36 L406 1138.36 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 406,1138.36 406,1140.04 421.955,1140.04 421.955,1138.36 406,1138.36 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M421.955 1138.36 L421.955 1140.04 L437.91 1140.04 L437.91 1138.36 L421.955 1138.36 L421.955 1138.36 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 421.955,1138.36 421.955,1140.04 437.91,1140.04 437.91,1138.36 421.955,1138.36 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M437.91 1140.04 L437.91 1140.04 L453.864 1140.04 L453.864 1140.04 L437.91 1140.04 L437.91 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 437.91,1140.04 437.91,1140.04 453.864,1140.04 437.91,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M453.864 1140.04 L453.864 1140.04 L469.819 1140.04 L469.819 1140.04 L453.864 1140.04 L453.864 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 453.864,1140.04 453.864,1140.04 469.819,1140.04 453.864,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M469.819 1140.04 L469.819 1140.04 L485.774 1140.04 L485.774 1140.04 L469.819 1140.04 L469.819 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 469.819,1140.04 469.819,1140.04 485.774,1140.04 469.819,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M485.774 1140.04 L485.774 1140.04 L501.728 1140.04 L501.728 1140.04 L485.774 1140.04 L485.774 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 485.774,1140.04 485.774,1140.04 501.728,1140.04 485.774,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M501.728 1140.04 L501.728 1140.04 L517.683 1140.04 L517.683 1140.04 L501.728 1140.04 L501.728 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 501.728,1140.04 501.728,1140.04 517.683,1140.04 501.728,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M517.683 1139.2 L517.683 1140.04 L533.638 1140.04 L533.638 1139.2 L517.683 1139.2 L517.683 1139.2 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 517.683,1139.2 517.683,1140.04 533.638,1140.04 533.638,1139.2 517.683,1139.2 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M533.638 1139.2 L533.638 1140.04 L549.592 1140.04 L549.592 1139.2 L533.638 1139.2 L533.638 1139.2 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 533.638,1139.2 533.638,1140.04 549.592,1140.04 549.592,1139.2 533.638,1139.2 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M549.592 1136.68 L549.592 1140.04 L565.547 1140.04 L565.547 1136.68 L549.592 1136.68 L549.592 1136.68 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 549.592,1136.68 549.592,1140.04 565.547,1140.04 565.547,1136.68 549.592,1136.68 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M565.547 1138.36 L565.547 1140.04 L581.502 1140.04 L581.502 1138.36 L565.547 1138.36 L565.547 1138.36 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 565.547,1138.36 565.547,1140.04 581.502,1140.04 581.502,1138.36 565.547,1138.36 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M581.502 1138.36 L581.502 1140.04 L597.456 1140.04 L597.456 1138.36 L581.502 1138.36 L581.502 1138.36 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 581.502,1138.36 581.502,1140.04 597.456,1140.04 597.456,1138.36 581.502,1138.36 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M597.456 1138.36 L597.456 1140.04 L613.411 1140.04 L613.411 1138.36 L597.456 1138.36 L597.456 1138.36 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 597.456,1138.36 597.456,1140.04 613.411,1140.04 613.411,1138.36 597.456,1138.36 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M613.411 1136.68 L613.411 1140.04 L629.366 1140.04 L629.366 1136.68 L613.411 1136.68 L613.411 1136.68 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 613.411,1136.68 613.411,1140.04 629.366,1140.04 629.366,1136.68 613.411,1136.68 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M629.366 1140.04 L629.366 1140.04 L645.32 1140.04 L645.32 1140.04 L629.366 1140.04 L629.366 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 629.366,1140.04 629.366,1140.04 645.32,1140.04 629.366,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M645.32 1135.84 L645.32 1140.04 L661.275 1140.04 L661.275 1135.84 L645.32 1135.84 L645.32 1135.84 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 645.32,1135.84 645.32,1140.04 661.275,1140.04 661.275,1135.84 645.32,1135.84 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M661.275 1131.63 L661.275 1140.04 L677.229 1140.04 L677.229 1131.63 L661.275 1131.63 L661.275 1131.63 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 661.275,1131.63 661.275,1140.04 677.229,1140.04 677.229,1131.63 661.275,1131.63 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M677.229 1138.36 L677.229 1140.04 L693.184 1140.04 L693.184 1138.36 L677.229 1138.36 L677.229 1138.36 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 677.229,1138.36 677.229,1140.04 693.184,1140.04 693.184,1138.36 677.229,1138.36 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M693.184 1135.84 L693.184 1140.04 L709.139 1140.04 L709.139 1135.84 L693.184 1135.84 L693.184 1135.84 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 693.184,1135.84 693.184,1140.04 709.139,1140.04 709.139,1135.84 693.184,1135.84 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M709.139 1134.15 L709.139 1140.04 L725.093 1140.04 L725.093 1134.15 L709.139 1134.15 L709.139 1134.15 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 709.139,1134.15 709.139,1140.04 725.093,1140.04 725.093,1134.15 709.139,1134.15 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M725.093 1133.31 L725.093 1140.04 L741.048 1140.04 L741.048 1133.31 L725.093 1133.31 L725.093 1133.31 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 725.093,1133.31 725.093,1140.04 741.048,1140.04 741.048,1133.31 725.093,1133.31 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M741.048 1132.47 L741.048 1140.04 L757.003 1140.04 L757.003 1132.47 L741.048 1132.47 L741.048 1132.47 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 741.048,1132.47 741.048,1140.04 757.003,1140.04 757.003,1132.47 741.048,1132.47 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M757.003 1131.63 L757.003 1140.04 L772.957 1140.04 L772.957 1131.63 L757.003 1131.63 L757.003 1131.63 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 757.003,1131.63 757.003,1140.04 772.957,1140.04 772.957,1131.63 757.003,1131.63 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M772.957 1127.43 L772.957 1140.04 L788.912 1140.04 L788.912 1127.43 L772.957 1127.43 L772.957 1127.43 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 772.957,1127.43 772.957,1140.04 788.912,1140.04 788.912,1127.43 772.957,1127.43 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M788.912 1123.23 L788.912 1140.04 L804.867 1140.04 L804.867 1123.23 L788.912 1123.23 L788.912 1123.23 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 788.912,1123.23 788.912,1140.04 804.867,1140.04 804.867,1123.23 788.912,1123.23 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M804.867 1108.93 L804.867 1140.04 L820.821 1140.04 L820.821 1108.93 L804.867 1108.93 L804.867 1108.93 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 804.867,1108.93 804.867,1140.04 820.821,1140.04 820.821,1108.93 804.867,1108.93 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M820.821 1108.09 L820.821 1140.04 L836.776 1140.04 L836.776 1108.09 L820.821 1108.09 L820.821 1108.09 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 820.821,1108.09 820.821,1140.04 836.776,1140.04 836.776,1108.09 820.821,1108.09 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M836.776 1087.92 L836.776 1140.04 L852.731 1140.04 L852.731 1087.92 L836.776 1087.92 L836.776 1087.92 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 836.776,1087.92 836.776,1140.04 852.731,1140.04 852.731,1087.92 836.776,1087.92 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M852.731 1078.67 L852.731 1140.04 L868.685 1140.04 L868.685 1078.67 L852.731 1078.67 L852.731 1078.67 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 852.731,1078.67 852.731,1140.04 868.685,1140.04 868.685,1078.67 852.731,1078.67 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M868.685 1050.93 L868.685 1140.04 L884.64 1140.04 L884.64 1050.93 L868.685 1050.93 L868.685 1050.93 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 868.685,1050.93 868.685,1140.04 884.64,1140.04 884.64,1050.93 868.685,1050.93 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M884.64 1010.57 L884.64 1140.04 L900.595 1140.04 L900.595 1010.57 L884.64 1010.57 L884.64 1010.57 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 884.64,1010.57 884.64,1140.04 900.595,1140.04 900.595,1010.57 884.64,1010.57 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M900.595 977.788 L900.595 1140.04 L916.549 1140.04 L916.549 977.788 L900.595 977.788 L900.595 977.788 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 900.595,977.788 900.595,1140.04 916.549,1140.04 916.549,977.788 900.595,977.788 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M916.549 883.632 L916.549 1140.04 L932.504 1140.04 L932.504 883.632 L916.549 883.632 L916.549 883.632 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 916.549,883.632 916.549,1140.04 932.504,1140.04 932.504,883.632 916.549,883.632 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M932.504 780.228 L932.504 1140.04 L948.458 1140.04 L948.458 780.228 L932.504 780.228 L932.504 780.228 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 932.504,780.228 932.504,1140.04 948.458,1140.04 948.458,780.228 932.504,780.228 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M948.458 615.455 L948.458 1140.04 L964.413 1140.04 L964.413 615.455 L948.458 615.455 L948.458 615.455 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 948.458,615.455 948.458,1140.04 964.413,1140.04 964.413,615.455 948.458,615.455 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M964.413 455.726 L964.413 1140.04 L980.368 1140.04 L980.368 455.726 L964.413 455.726 L964.413 455.726 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 964.413,455.726 964.413,1140.04 980.368,1140.04 980.368,455.726 964.413,455.726 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M980.368 250.6 L980.368 1140.04 L996.322 1140.04 L996.322 250.6 L980.368 250.6 L980.368 250.6 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 980.368,250.6 980.368,1140.04 996.322,1140.04 996.322,250.6 980.368,250.6 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M996.322 158.125 L996.322 1140.04 L1012.28 1140.04 L1012.28 158.125 L996.322 158.125 L996.322 158.125 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 996.322,158.125 996.322,1140.04 1012.28,1140.04 1012.28,158.125 996.322,158.125 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1012.28 153.081 L1012.28 1140.04 L1028.23 1140.04 L1028.23 153.081 L1012.28 153.081 L1012.28 153.081 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1012.28,153.081 1012.28,1140.04 1028.23,1140.04 1028.23,153.081 1012.28,153.081 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1028.23 236.308 L1028.23 1140.04 L1044.19 1140.04 L1044.19 236.308 L1028.23 236.308 L1028.23 236.308 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1028.23,236.308 1028.23,1140.04 1044.19,1140.04 1044.19,236.308 1028.23,236.308 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1044.19 384.268 L1044.19 1140.04 L1060.14 1140.04 L1060.14 384.268 L1044.19 384.268 L1044.19 384.268 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1044.19,384.268 1044.19,1140.04 1060.14,1140.04 1060.14,384.268 1044.19,384.268 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1060.14 617.136 L1060.14 1140.04 L1076.1 1140.04 L1076.1 617.136 L1060.14 617.136 L1060.14 617.136 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1060.14,617.136 1060.14,1140.04 1076.1,1140.04 1076.1,617.136 1060.14,617.136 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1076.1 778.547 L1076.1 1140.04 L1092.05 1140.04 L1092.05 778.547 L1076.1 778.547 L1076.1 778.547 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1076.1,778.547 1076.1,1140.04 1092.05,1140.04 1092.05,778.547 1076.1,778.547 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1092.05 879.428 L1092.05 1140.04 L1108 1140.04 L1108 879.428 L1092.05 879.428 L1092.05 879.428 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1092.05,879.428 1092.05,1140.04 1108,1140.04 1108,879.428 1092.05,879.428 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1108 963.496 L1108 1140.04 L1123.96 1140.04 L1123.96 963.496 L1108 963.496 L1108 963.496 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1108,963.496 1108,1140.04 1123.96,1140.04 1123.96,963.496 1108,963.496 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1123.96 1043.36 L1123.96 1140.04 L1139.91 1140.04 L1139.91 1043.36 L1123.96 1043.36 L1123.96 1043.36 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1123.96,1043.36 1123.96,1140.04 1139.91,1140.04 1139.91,1043.36 1123.96,1043.36 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1139.91 1061.02 L1139.91 1140.04 L1155.87 1140.04 L1155.87 1061.02 L1139.91 1061.02 L1139.91 1061.02 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1139.91,1061.02 1139.91,1140.04 1155.87,1140.04 1155.87,1061.02 1139.91,1061.02 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1155.87 1094.64 L1155.87 1140.04 L1171.82 1140.04 L1171.82 1094.64 L1155.87 1094.64 L1155.87 1094.64 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1155.87,1094.64 1155.87,1140.04 1171.82,1140.04 1171.82,1094.64 1155.87,1094.64 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1171.82 1111.46 L1171.82 1140.04 L1187.78 1140.04 L1187.78 1111.46 L1171.82 1111.46 L1171.82 1111.46 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1171.82,1111.46 1171.82,1140.04 1187.78,1140.04 1187.78,1111.46 1171.82,1111.46 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1187.78 1112.3 L1187.78 1140.04 L1203.73 1140.04 L1203.73 1112.3 L1187.78 1112.3 L1187.78 1112.3 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1187.78,1112.3 1187.78,1140.04 1203.73,1140.04 1203.73,1112.3 1187.78,1112.3 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1203.73 1122.38 L1203.73 1140.04 L1219.69 1140.04 L1219.69 1122.38 L1203.73 1122.38 L1203.73 1122.38 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1203.73,1122.38 1203.73,1140.04 1219.69,1140.04 1219.69,1122.38 1203.73,1122.38 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1219.69 1125.75 L1219.69 1140.04 L1235.64 1140.04 L1235.64 1125.75 L1219.69 1125.75 L1219.69 1125.75 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1219.69,1125.75 1219.69,1140.04 1235.64,1140.04 1235.64,1125.75 1219.69,1125.75 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1235.64 1126.59 L1235.64 1140.04 L1251.6 1140.04 L1251.6 1126.59 L1235.64 1126.59 L1235.64 1126.59 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1235.64,1126.59 1235.64,1140.04 1251.6,1140.04 1251.6,1126.59 1235.64,1126.59 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1251.6 1127.43 L1251.6 1140.04 L1267.55 1140.04 L1267.55 1127.43 L1251.6 1127.43 L1251.6 1127.43 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1251.6,1127.43 1251.6,1140.04 1267.55,1140.04 1267.55,1127.43 1251.6,1127.43 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1267.55 1134.15 L1267.55 1140.04 L1283.51 1140.04 L1283.51 1134.15 L1267.55 1134.15 L1267.55 1134.15 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1267.55,1134.15 1267.55,1140.04 1283.51,1140.04 1283.51,1134.15 1267.55,1134.15 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1283.51 1136.68 L1283.51 1140.04 L1299.46 1140.04 L1299.46 1136.68 L1283.51 1136.68 L1283.51 1136.68 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1283.51,1136.68 1283.51,1140.04 1299.46,1140.04 1299.46,1136.68 1283.51,1136.68 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1299.46 1132.47 L1299.46 1140.04 L1315.42 1140.04 L1315.42 1132.47 L1299.46 1132.47 L1299.46 1132.47 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1299.46,1132.47 1299.46,1140.04 1315.42,1140.04 1315.42,1132.47 1299.46,1132.47 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1315.42 1138.36 L1315.42 1140.04 L1331.37 1140.04 L1331.37 1138.36 L1315.42 1138.36 L1315.42 1138.36 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1315.42,1138.36 1315.42,1140.04 1331.37,1140.04 1331.37,1138.36 1315.42,1138.36 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1331.37 1137.52 L1331.37 1140.04 L1347.32 1140.04 L1347.32 1137.52 L1331.37 1137.52 L1331.37 1137.52 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1331.37,1137.52 1331.37,1140.04 1347.32,1140.04 1347.32,1137.52 1331.37,1137.52 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1347.32 1133.31 L1347.32 1140.04 L1363.28 1140.04 L1363.28 1133.31 L1347.32 1133.31 L1347.32 1133.31 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1347.32,1133.31 1347.32,1140.04 1363.28,1140.04 1363.28,1133.31 1347.32,1133.31 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1363.28 1136.68 L1363.28 1140.04 L1379.23 1140.04 L1379.23 1136.68 L1363.28 1136.68 L1363.28 1136.68 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1363.28,1136.68 1363.28,1140.04 1379.23,1140.04 1379.23,1136.68 1363.28,1136.68 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1379.23 1138.36 L1379.23 1140.04 L1395.19 1140.04 L1395.19 1138.36 L1379.23 1138.36 L1379.23 1138.36 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1379.23,1138.36 1379.23,1140.04 1395.19,1140.04 1395.19,1138.36 1379.23,1138.36 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1395.19 1137.52 L1395.19 1140.04 L1411.14 1140.04 L1411.14 1137.52 L1395.19 1137.52 L1395.19 1137.52 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1395.19,1137.52 1395.19,1140.04 1411.14,1140.04 1411.14,1137.52 1395.19,1137.52 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1411.14 1139.2 L1411.14 1140.04 L1427.1 1140.04 L1427.1 1139.2 L1411.14 1139.2 L1411.14 1139.2 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1411.14,1139.2 1411.14,1140.04 1427.1,1140.04 1427.1,1139.2 1411.14,1139.2 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1427.1 1139.2 L1427.1 1140.04 L1443.05 1140.04 L1443.05 1139.2 L1427.1 1139.2 L1427.1 1139.2 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1427.1,1139.2 1427.1,1140.04 1443.05,1140.04 1443.05,1139.2 1427.1,1139.2 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1443.05 1140.04 L1443.05 1140.04 L1459.01 1140.04 L1459.01 1140.04 L1443.05 1140.04 L1443.05 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1443.05,1140.04 1443.05,1140.04 1459.01,1140.04 1443.05,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1459.01 1139.2 L1459.01 1140.04 L1474.96 1140.04 L1474.96 1139.2 L1459.01 1139.2 L1459.01 1139.2 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1459.01,1139.2 1459.01,1140.04 1474.96,1140.04 1474.96,1139.2 1459.01,1139.2 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1474.96 1140.04 L1474.96 1140.04 L1490.92 1140.04 L1490.92 1140.04 L1474.96 1140.04 L1474.96 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1474.96,1140.04 1474.96,1140.04 1490.92,1140.04 1474.96,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1490.92 1140.04 L1490.92 1140.04 L1506.87 1140.04 L1506.87 1140.04 L1490.92 1140.04 L1490.92 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1490.92,1140.04 1490.92,1140.04 1506.87,1140.04 1490.92,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1506.87 1140.04 L1506.87 1140.04 L1522.83 1140.04 L1522.83 1140.04 L1506.87 1140.04 L1506.87 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1506.87,1140.04 1506.87,1140.04 1522.83,1140.04 1506.87,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1522.83 1140.04 L1522.83 1140.04 L1538.78 1140.04 L1538.78 1140.04 L1522.83 1140.04 L1522.83 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1522.83,1140.04 1522.83,1140.04 1538.78,1140.04 1522.83,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1538.78 1140.04 L1538.78 1140.04 L1554.74 1140.04 L1554.74 1140.04 L1538.78 1140.04 L1538.78 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1538.78,1140.04 1538.78,1140.04 1554.74,1140.04 1538.78,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1554.74 1139.2 L1554.74 1140.04 L1570.69 1140.04 L1570.69 1139.2 L1554.74 1139.2 L1554.74 1139.2 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1554.74,1139.2 1554.74,1140.04 1570.69,1140.04 1570.69,1139.2 1554.74,1139.2 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1570.69 1140.04 L1570.69 1140.04 L1586.64 1140.04 L1586.64 1140.04 L1570.69 1140.04 L1570.69 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1570.69,1140.04 1570.69,1140.04 1586.64,1140.04 1570.69,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1586.64 1140.04 L1586.64 1140.04 L1602.6 1140.04 L1602.6 1140.04 L1586.64 1140.04 L1586.64 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1586.64,1140.04 1586.64,1140.04 1602.6,1140.04 1586.64,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1602.6 1140.04 L1602.6 1140.04 L1618.55 1140.04 L1618.55 1140.04 L1602.6 1140.04 L1602.6 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1602.6,1140.04 1602.6,1140.04 1618.55,1140.04 1602.6,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1618.55 1139.2 L1618.55 1140.04 L1634.51 1140.04 L1634.51 1139.2 L1618.55 1139.2 L1618.55 1139.2 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1618.55,1139.2 1618.55,1140.04 1634.51,1140.04 1634.51,1139.2 1618.55,1139.2 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1634.51 1140.04 L1634.51 1140.04 L1650.46 1140.04 L1650.46 1140.04 L1634.51 1140.04 L1634.51 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1634.51,1140.04 1634.51,1140.04 1650.46,1140.04 1634.51,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1650.46 1139.2 L1650.46 1140.04 L1666.42 1140.04 L1666.42 1139.2 L1650.46 1139.2 L1650.46 1139.2 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1650.46,1139.2 1650.46,1140.04 1666.42,1140.04 1666.42,1139.2 1650.46,1139.2 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1666.42 1140.04 L1666.42 1140.04 L1682.37 1140.04 L1682.37 1140.04 L1666.42 1140.04 L1666.42 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1666.42,1140.04 1666.42,1140.04 1682.37,1140.04 1666.42,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1682.37 1140.04 L1682.37 1140.04 L1698.33 1140.04 L1698.33 1140.04 L1682.37 1140.04 L1682.37 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1682.37,1140.04 1682.37,1140.04 1698.33,1140.04 1682.37,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1698.33 1140.04 L1698.33 1140.04 L1714.28 1140.04 L1714.28 1140.04 L1698.33 1140.04 L1698.33 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1698.33,1140.04 1698.33,1140.04 1714.28,1140.04 1698.33,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1714.28 1140.04 L1714.28 1140.04 L1730.24 1140.04 L1730.24 1140.04 L1714.28 1140.04 L1714.28 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1714.28,1140.04 1714.28,1140.04 1730.24,1140.04 1714.28,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1730.24 1140.04 L1730.24 1140.04 L1746.19 1140.04 L1746.19 1140.04 L1730.24 1140.04 L1730.24 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1730.24,1140.04 1730.24,1140.04 1746.19,1140.04 1730.24,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1746.19 1140.04 L1746.19 1140.04 L1762.15 1140.04 L1762.15 1140.04 L1746.19 1140.04 L1746.19 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1746.19,1140.04 1746.19,1140.04 1762.15,1140.04 1746.19,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip742)\" d=\"\n",
"M1762.15 1140.04 L1762.15 1140.04 L1778.1 1140.04 L1778.1 1140.04 L1762.15 1140.04 L1762.15 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip742)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1762.15,1140.04 1762.15,1140.04 1778.1,1140.04 1762.15,1140.04 \n",
" \"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"254.431\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"270.386\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"286.341\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"302.295\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"318.25\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"334.205\" cy=\"1139.2\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"350.159\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"366.114\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"382.068\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"398.023\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"413.978\" cy=\"1138.36\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"429.932\" cy=\"1138.36\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"445.887\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"461.842\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"477.796\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"493.751\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"509.706\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"525.66\" cy=\"1139.2\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"541.615\" cy=\"1139.2\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"557.57\" cy=\"1136.68\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"573.524\" cy=\"1138.36\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"589.479\" cy=\"1138.36\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"605.434\" cy=\"1138.36\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"621.388\" cy=\"1136.68\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"637.343\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"653.297\" cy=\"1135.84\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"669.252\" cy=\"1131.63\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"685.207\" cy=\"1138.36\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"701.161\" cy=\"1135.84\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"717.116\" cy=\"1134.15\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"733.071\" cy=\"1133.31\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"749.025\" cy=\"1132.47\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"764.98\" cy=\"1131.63\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"780.935\" cy=\"1127.43\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"796.889\" cy=\"1123.23\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"812.844\" cy=\"1108.93\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"828.799\" cy=\"1108.09\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"844.753\" cy=\"1087.92\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"860.708\" cy=\"1078.67\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"876.663\" cy=\"1050.93\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"892.617\" cy=\"1010.57\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"908.572\" cy=\"977.788\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"924.527\" cy=\"883.632\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"940.481\" cy=\"780.228\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"956.436\" cy=\"615.455\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"972.39\" cy=\"455.726\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"988.345\" cy=\"250.6\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1004.3\" cy=\"158.125\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1020.25\" cy=\"153.081\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1036.21\" cy=\"236.308\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1052.16\" cy=\"384.268\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1068.12\" cy=\"617.136\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1084.07\" cy=\"778.547\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1100.03\" cy=\"879.428\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1115.98\" cy=\"963.496\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1131.94\" cy=\"1043.36\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1147.89\" cy=\"1061.02\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1163.85\" cy=\"1094.64\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1179.8\" cy=\"1111.46\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1195.76\" cy=\"1112.3\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1211.71\" cy=\"1122.38\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1227.66\" cy=\"1125.75\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1243.62\" cy=\"1126.59\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1259.57\" cy=\"1127.43\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1275.53\" cy=\"1134.15\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1291.48\" cy=\"1136.68\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1307.44\" cy=\"1132.47\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1323.39\" cy=\"1138.36\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1339.35\" cy=\"1137.52\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1355.3\" cy=\"1133.31\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1371.26\" cy=\"1136.68\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1387.21\" cy=\"1138.36\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1403.17\" cy=\"1137.52\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1419.12\" cy=\"1139.2\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1435.08\" cy=\"1139.2\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1451.03\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1466.98\" cy=\"1139.2\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1482.94\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1498.89\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1514.85\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1530.8\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1546.76\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1562.71\" cy=\"1139.2\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1578.67\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1594.62\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1610.58\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1626.53\" cy=\"1139.2\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1642.49\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1658.44\" cy=\"1139.2\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1674.39\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1690.35\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1706.3\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1722.26\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1738.21\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1754.17\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip742)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1770.12\" cy=\"1140.04\" r=\"2\"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"plt = histogram( R_2,bins = -12:0.25:12,normalize=true,legend=false,title=\"strategy 2\" )\n",
"display(plt)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Task 2: Another Trading Strategy\n",
"\n",
"We now do simple volatility based trading strategy.\n",
"\n",
"1. Find the 3 least volatile assets over `t-22:t-1` and give each a portfolio weight `w[t,i]=1/3`. \n",
"\n",
"2. Find the 3 most volatile assets over `t-22:t-1` and give each a portfolio weight `w[t,i]=-1/3`. \n",
"\n",
"3. The portfolio return in `t` is `w[t,:]'*R[t,:]`.\n",
"\n",
"4. Compare the average and std (annualized) with the previous portfolios, over periods `23:T`\n",
"\n",
"Hint: `v = sortperm(x)` gives indices such that `v[1:2]` are the indices of the lowest 2 elements in x. Try `sortperm([12,11,13])` to see."
]
},
{
"cell_type": "code",
"execution_count": 8,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
" 2 \n",
" 1 \n",
"\n"
]
}
],
"source": [
"v = sortperm([12,11,13])\n",
"\n",
"printmat(v[1:2])"
]
},
{
"cell_type": "code",
"execution_count": 9,
"metadata": {},
"outputs": [],
"source": [
"σ_moving = fill(NaN,T,n)\n",
"for t = 22:T\n",
" σ_moving[t,:] = std(R[t-21:t,:],dims=1)\n",
"end "
]
},
{
"cell_type": "code",
"execution_count": 10,
"metadata": {},
"outputs": [],
"source": [
"m = 3 #number of long/short positions \n",
"\n",
"R_3 = fill(NaN,T)\n",
"for t = 23:T #loop over periods, save portfolio returns\n",
" #local s,w #local/global is needed in script\n",
" s = sortperm(σ_moving[t-1,:])\n",
" w = zeros(n)\n",
" w[s[1:m]] .= 1/m\n",
" w[s[end-m+1:end]] .= -1/m\n",
" R_3[t] = w'R[t,:]\n",
"end"
]
},
{
"cell_type": "code",
"execution_count": 11,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
" R_1 R_2 Vol sort\n",
"avg return -0.281 -8.739 3.628\n",
"std 13.867 19.002 14.867\n",
"SR -0.020 -0.460 0.244\n",
"\n"
]
}
],
"source": [
"R_all = [R_1[23:end] R_2[23:end] R_3[23:end]]\n",
"\n",
"μ = mean(R_all,dims=1)*252\n",
"σ = std(R_all,dims=1)*sqrt(252)\n",
"SR = μ./σ\n",
"\n",
"printmat([μ;σ;SR],colNames=[\"R_1\",\"R_2\",\"Vol sort\"],rowNames=[\"avg return\",\"std\",\"SR\"])"
]
},
{
"cell_type": "code",
"execution_count": null,
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"@webio": {
"lastCommId": null,
"lastKernelId": null
},
"anaconda-cloud": {},
"kernelspec": {
"display_name": "Julia 1.6.3",
"language": "julia",
"name": "julia-1.6"
},
"language_info": {
"file_extension": ".jl",
"mimetype": "application/julia",
"name": "julia",
"version": "1.6.3"
}
},
"nbformat": 4,
"nbformat_minor": 4
}