HSG-MCS-HS21_Julia/Exam2/Exam2.ipynb

1148 lines
287 KiB
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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": "markdown",
"metadata": {},
"source": [
"# Load Packages"
]
},
{
"cell_type": "code",
"execution_count": 90,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"TaskLocalRNG()"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"using Printf, Statistics, StatsBase, Random, Distributions\n",
"include(\"jlFiles/printmat.jl\")\n",
"Random.seed!(678) #set the random number generator to this starting point"
]
},
{
"cell_type": "code",
"execution_count": 91,
"metadata": {},
"outputs": [],
"source": [
"using Plots\n",
"\n",
"gr(size=(480,320))\n",
"default(fmt = :svg)"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Introduction\n",
"\n",
"This exam explores how autocorrelation ought to change how we test statistical hypotheses."
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Task 1\n",
"\n",
"Code a function for simulating $T$ observations from an AR(1) series\n",
"\n",
"$\n",
"y_t = (1-\\rho)\\mu + \\rho y_{t-1} + \\varepsilon_t \\sigma\n",
"$\n",
"where $\\varepsilon_t$ is N(0,1).\n",
"\n",
"That is, generate $y_1,y_2,...,y_T$ from this formula.\n",
"\n",
"To make also the starting value ($y_0$) random, simulate $T+100$ data points, but then discard the first 100 values of $y_t$.\n",
"\n",
"Generate a single \"sample\" using `(T,ρ,σ,μ) = (500,0,3,2)`. Calculate and report the average (mean) and the first 5 autocorrelations (hint: `autocor()`) of this sample. Redo a 2nd time, but with `ρ=0.75`."
]
},
{
"cell_type": "code",
"execution_count": 92,
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"SimAR1 (generic function with 1 method)"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"function SimAR1(T,ρ,σ,μ)\n",
" y = fill(NaN, T + 100)\n",
" e = rand(Normal(0, 1), T + 100)\n",
" y[1] = 1\n",
" for i = 2:T + 100\n",
" y[i] = (1-ρ)μ + ρ*y[i-1] + e[i]*σ\n",
" end\n",
" return y[101:end]\n",
"end"
]
},
{
"cell_type": "code",
"execution_count": 93,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"average from one sample with ρ=0 1.986\n",
"\n",
"autocorrelations with ρ=0\n",
"\n",
" 1 -0.016\n",
" 2 0.027\n",
" 3 0.004\n",
" 4 0.004\n",
" 5 0.008\n",
"\n"
]
}
],
"source": [
"y1 = SimAR1(500,0,3,2)\n",
"\n",
"printmat(\"average from one sample with ρ=0\", mean(y1))\n",
"\n",
"printmat(\"autocorrelations with ρ=0\")\n",
"printmat(1:5, autocor(y1)[2:6])"
]
},
{
"cell_type": "code",
"execution_count": 94,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"average from one sample with ρ=0.75 3.187\n",
"\n",
"autocorrelations with ρ=0.75\n",
"\n",
" 1 0.766\n",
" 2 0.580\n",
" 3 0.495\n",
" 4 0.441\n",
" 5 0.372\n",
"\n"
]
}
],
"source": [
"y2 = SimAR1(500,0.75,3,2)\n",
"\n",
"printmat(\"average from one sample with ρ=0.75\", mean(y2))\n",
"\n",
"printmat(\"autocorrelations with ρ=0.75\")\n",
"printmat(1:5, autocor(y2)[2:6])"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Task 2\n",
"\n",
"Do a Monte Carlo simulation. Use the parameters `(T,ρ,σ,μ) = (500,0,3,2)`.\n",
"\n",
"1. Generate a sample with $T$ observations and calculate the average. Repeat $M=10,000$ times and store the estimated averages in a vector of length $M$. (The rest of the question uses the symbol $\\mu_i$ to denote the average from sample $i$.)\n",
"\n",
"2. What is average $\\mu_i$ across the $M$ estimates? (That is, what is $\\frac{1}{M}\\sum\\nolimits_{i=1}^{M}\\mu_i$?) _Report_ the result.\n",
"\n",
"3. What is the standard deviation of $\\mu_i$ across the $M$ estimates? Compare with the theoretical standard deviation (see below). _Report_ the result.\n",
"\n",
"4. Does the distribution of $\\mu_i$ look normal? _Plot_ a histogram and compare with the theoretical pdf (see below).\n",
"\n",
"\n",
"## ...basic stats (the theoretical results)\n",
"\n",
"says that the sample average of an iid (\"independently and identically distributed\") data series is normally distributed with a mean equal to the true (population) mean $\\mu$ and a standard deviation equal to $s=\\sigma_y/\\sqrt{T}$ where $\\sigma_y$ is the standard deviation of $y$.\n",
"\n",
"To compare with our simulation results, you could estimate $\\sigma_y$ from a single simulation with very many observations (say 10'000)."
]
},
{
"cell_type": "code",
"execution_count": 95,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Average across the simulations: 2.001\n",
"\n",
"Std across the samples (with ρ=0) and in theory:\n",
"simulations theory\n",
" 0.134 0.133\n",
"\n"
]
}
],
"source": [
"M = 10_000\n",
"\n",
"(T,ρ1,σ,μ) = (500,0,3,2)\n",
"\n",
"μi1 = fill(NaN, M)\n",
"σi1 = fill(NaN, M)\n",
"\n",
"# Monte Carlo simulation\n",
"for i = 1:M\n",
" y = SimAR1(T, ρ1, σ, μ)\n",
" μi1[i] = mean(y)\n",
" σi1[i] = std(y)\n",
"end\n",
"\n",
"# Theoretical results\n",
"y1 = SimAR1(10_000,ρ1,σ,μ)\n",
"σy1 = std(y1)\n",
"s1 = σy1/sqrt(T)\n",
"\n",
"printmat(\"Average across the simulations:\", mean(μi1))\n",
"println(\"Std across the samples (with ρ=0) and in theory:\")\n",
"printmat([\"simulations\", std(μi1)], [\"theory\", s1])"
]
},
{
"cell_type": "code",
"execution_count": 96,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "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Dfn5+fn5+Xv37n355Zf/85//uNtcJpNJrVZ3795dmPKf//wHAGQyGWmREOQnlNAh4BjQLMvu3r2bfKd+8cUXwgeTfOhIQKempvbu3Xv9+vWnT59eu3ZtQkICAHz77bdN/B2J//u//xM+rUVFRV999VVISIhcLj906JAwT1lZ2W8eyM3NFV5COu5WrFjhtLo5c+YAwPz585strHUkFNADBw4c5oLERxMB/e2338IfmzCuGu2DNhgMZDRCdna2MNFisZBOAGHH+umnnwBg6NChQlcpz/O7du0iX85OAe0Yf00jcXzw4EGnKYMGDXLsqCWNCJqmL1y4IExct24dADz66KNNLL+kpEShUCgUCscjGDU1NaTJdvToUWEi6e0xGo2elE00EdDPPvssALz99ttO00kiZ2RkkIek4+L+++93mo0kckhICHlIeqVSUlJcV0SOKF6+fJnneY7jyM8L1yEBd911FwD88MMPnr87nufLy8sjIyMdG/j//e9/waW38cCBAwAwceJE8pBl2bS0NLlc7vhn5Xn+3//+NwA4Do8hjd+///3vzVbCsizpxhHCoqGhISwsjKZpobed53mj0ega0CTcV65c6bjAPXv2AMCECRPIw/fff9/D4HM0ZswYALh+/Tp5OH36dLVaPWXKlNDQUOFHxqBBg2QymTCKxnUUR9N90ElJSfX19cLEX375BQCmTJnSdGHHjx8HgDvvvNPx00oaB6NGjRKmrF27ttEmvJOZM2cKLyGHajZt2uS0RnIo5dlnn226sFaT0IkqeXl5F1xUVFQ0/SoS7qdOnbLb7S1a3b59+2pra0eNGuXYn6tSqUjv56ZNm8iUrVu3AsDs2bMdexgmTJhw6623NrrYV1991ZO133///QBA9idHs2fPdhwLTD6cd911F2nTOU68fv16E8vfunWr3W6fNm1at27dhIlRUVFPP/2047vzOrPZDACu40PJFKPR6Dgb6b5wnc1kMvE838RsAEC+XA0GAwBYLBaO4xqdk8wmrNdDCQkJQ4cOLSsrI18YAHDXXXclJydv27atqqpKmG3NmjUAMGPGDPLw+PHjV65cGT16NPkwC2bNmqVQKMi3miNPdhWZTEZyVthVsrKyGhoa7r33Xsde7+DgYPKXFej1+u3btycmJjp1ZI0bNy4tLS0rK4tsW7J9jh07Rjagh8aNGwcAmZmZAMDz/L59+zIyMiZPnmwwGEidtbW1Z86c6d+/f2xsrOeLdfT3v//dsa984sSJ0Nw+D7//RV588UXHT+tjjz2m0WgOHDgg/O1uv/32zz1AxmkQTe+xLd3BPCehg4QXLlzo3Lmz08SPP/74pZdeauJVY8aMSU1N3bRpU7du3SZPnjx69OiJEycKg2GbcOnSJQAYOHCg03TS3XzhwgXykPSWOuYj0adPn9zcXKeJFEX17t3bdV0nTpxYvHjxuXPniouLHTvgHD/tBDmiIiDtRMcje8LEyspK928OLl68CACkT8OR07vzOpVKBb/npqOGhgYAELr7m55NrVaTNqa72QCgvr5eWKBKpSK/kIxGI3mJ02zCGOpGcRy3evXq77///urVq5WVlY7f9NXV1aRDWSaTPfLIIwsXLly/fj1p4pnN5g0bNoSHhwtdpaR/pq6ujnQuOQoKCiosLHScEhIS0uiBuAMHDixZsiQ3N7ekpISEAiHsKk3skI4Pz549y3GcWq12LcZms9nt9tLS0h49ekydOvWNN9744osvdu7cOXny5DFjxowfP144HuvOuHHj3nzzzczMzCeffPLixYvl5eWzZ88mqb1nz57hw4fv3buXZVkypXXIkAlBcHBwWFhYs821/Px8AHA600qhUPTp06eysvLixYukXyUtLc1p+c0i+5VrEDvt2F4noYBunZCQkOzs7Hnz5m3atGn58uXLly+nafqhhx5asmRJ02cikY+967FXMoVsd/j9m5M0NBy5TgGA8PBw1yzYvn371KlTaZoeP3781KlTyQtzc3O/++47lmWdZnb6S5OccjqERVoHfJMXUXH37sg2Ed6d15EfNDU1NU7TyRTyLACQb9BWzwYAZAwAmUEmk0VERNTW1lZXVzt9N5PXNv2FPWvWrFWrViUkJEyePLlTp05ka//www/nzp1jGEaY7a9//evChQvXrFlDAnrTpk11dXWzZs0S/jqkpAsXLhQUFDitQi6Xh4SEMAwjHLNttGm5bt26Rx99VK1W33333Q899BBpnR0/fnzTpk1CJe52SGGjEbW1tQBQWlr69ddfu64oKirKarUCQGJi4okTJ958883t27eTZqNKpZo5c+aiRYsa/eFCDB48OCIiggxsJ+3ocePGde/ePTU1NTMzc/78+cJEd0toltM+DwAymazpfR4AysvL4fcWjCOnD7XBYGg2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",
"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=\"clip500\">\n <rect x=\"0\" y=\"0\" width=\"1920\" height=\"1280\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip500)\" d=\"\nM0 1280 L1920 1280 L1920 0 L0 0 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip501\">\n <rect x=\"384\" y=\"0\" width=\"1345\" height=\"1280\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip500)\" d=\"\nM106.081 1169.65 L1872.76 1169.65 L1872.76 123.472 L106.081 123.472 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip502\">\n <rect x=\"106\" y=\"123\" width=\"1768\" height=\"1047\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 203.251,1169.65 203.251,123.472 \n \"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 596.335,1169.65 596.335,123.472 \n \"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 989.418,1169.65 989.418,123.472 \n \"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1382.5,1169.65 1382.5,123.472 \n \"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1775.59,1169.65 1775.59,123.472 \n \"/>\n<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 106.081,1169.65 1872.76,1169.65 \n \"/>\n<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 203.251,1169.65 203.251,1150.75 \n \"/>\n<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 596.335,1169.65 596.335,1150.75 \n \"/>\n<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 989.418,1169.65 989.418,1150.75 \n \"/>\n<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1382.5,1169.65 1382.5,1150.75 \n \"/>\n<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1775.59,1169.65 1775.59,1150.75 \n \"/>\n<path clip-path=\"url(#clip500)\" d=\"M203.251 1196.73 Q199.64 1196.73 197.811 1200.29 Q196.006 1203.83 196.006 1210.96 Q196.006 1218.07 197.811 1221.63 Q199.64 1225.18 203.251 1225.18 Q206.885 1225.18 208.691 1221.63 Q210.52 1218.07 210.52 1210.96 Q210.52 1203.83 208.691 1200.29 Q206.885 1196.73 203.251 1196.73 M203.251 1193.02 Q209.061 1193.02 212.117 1197.63 Q215.196 1202.21 215.196 1210.96 Q215.196 1219.69 212.117 1224.3 Q209.061 1228.88 203.251 1228.88 Q197.441 1228.88 194.362 1224.3 Q191.307 1219.69 191.307 1210.96 Q191.307 1202.21 194.362 1197.63 Q197.441 1193.02 203.251 1193.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M586.717 1224.27 L594.356 1224.27 L594.356 1197.91 L586.045 1199.57 L586.045 1195.31 L594.309 1193.65 L598.985 1193.65 L598.985 1224.27 L606.624 1224.27 L606.624 1228.21 L586.717 1228.21 L586.717 1224.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M984.071 1224.27 L1000.39 1224.27 L1000.39 1228.21 L978.446 1228.21 L978.446 1224.27 Q981.108 1221.52 985.692 1216.89 Q990.298 1212.24 991.479 1210.89 Q993.724 1208.37 994.604 1206.63 Q995.506 1204.87 995.506 1203.18 Q995.506 1200.43 993.562 1198.69 Q991.641 1196.96 988.539 1196.96 Q986.34 1196.96 983.886 1197.72 Q981.455 1198.49 978.678 1200.04 L978.678 1195.31 Q981.502 1194.18 983.955 1193.6 Q986.409 1193.02 988.446 1193.02 Q993.817 1193.02 997.011 1195.71 Q1000.21 1198.39 1000.21 1202.88 Q1000.21 1205.01 999.395 1206.93 Q998.608 1208.83 996.502 1211.43 Q995.923 1212.1 992.821 1215.31 Q989.719 1218.51 984.071 1224.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M1386.75 1209.57 Q1390.11 1210.29 1391.98 1212.56 Q1393.88 1214.83 1393.88 1218.16 Q1393.88 1223.28 1390.36 1226.08 Q1386.84 1228.88 1380.36 1228.88 Q1378.18 1228.88 1375.87 1228.44 Q1373.58 1228.02 1371.12 1227.17 L1371.12 1222.65 Q1373.07 1223.79 1375.38 1224.37 Q1377.7 1224.94 1380.22 1224.94 Q1384.62 1224.94 1386.91 1223.21 Q1389.23 1221.47 1389.23 1218.16 Q1389.23 1215.11 1387.07 1213.39 Q1384.94 1211.66 1381.12 1211.66 L1377.1 1211.66 L1377.1 1207.81 L1381.31 1207.81 Q1384.76 1207.81 1386.59 1206.45 Q1388.42 1205.06 1388.42 1202.47 Q1388.42 1199.81 1386.52 1198.39 Q1384.64 1196.96 1381.12 1196.96 Q1379.2 1196.96 1377 1197.37 Q1374.81 1197.79 1372.17 1198.67 L1372.17 1194.5 Q1374.83 1193.76 1377.14 1193.39 Q1379.48 1193.02 1381.54 1193.02 Q1386.87 1193.02 1389.97 1195.45 Q1393.07 1197.86 1393.07 1201.98 Q1393.07 1204.85 1391.43 1206.84 Q1389.78 1208.81 1386.75 1209.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M1778.59 1197.72 L1766.79 1216.17 L1778.59 1216.17 L1778.59 1197.72 M1777.37 1193.65 L1783.25 1193.65 L1783.25 1216.17 L1788.18 1216.17 L1788.18 1220.06 L1783.25 1220.06 L1783.25 1228.21 L1778.59 1228.21 L1778.59 1220.06 L1762.99 1220.06 L1762.99 1215.55 L1777.37 1193.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 106.081,1140.04 1872.76,1140.04 \n \"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 106.081,811.44 1872.76,811.44 \n \"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 106.081,482.84 1872.76,482.84 \n \"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 106.081,154.24 1872.76,154.24 \n \"/>\n<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 106.081,1169.65 106.081,123.472 \n \"/>\n<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 106.081,1140.04 124.979,1140.04 \n \"/>\n<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 106.081,811.44 124.979,811.44 \n \"/>\n<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 106.081,482.84 124.979,482.84 \n \"/>\n<polyline clip-path=\"url(#clip500)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 106.081,154.24 124.979,154.24 \n \"/>\n<path clip-path=\"url(#clip500)\" d=\"M65.3365 1125.84 Q61.7254 1125.84 59.8967 1129.4 Q58.0912 1132.94 58.0912 1140.07 Q58.0912 1147.18 59.8967 1150.75 Q61.7254 1154.29 65.3365 1154.29 Q68.9707 1154.29 70.7763 1150.75 Q72.605 1147.18 72.605 1140.07 Q72.605 1132.94 70.7763 1129.4 Q68.9707 1125.84 65.3365 1125.84 M65.3365 1122.13 Q71.1467 1122.13 74.2022 1126.74 Q77.2809 1131.32 77.2809 1140.07 Q77.2809 1148.8 74.2022 1153.41 Q71.1467 1157.99 65.3365 1157.99 Q59.5264 1157.99 56.4477 1153.41 Q53.3921 1148.8 53.3921 1140.07 Q53.3921 1131.32 56.4477 1126.74 Q59.5264 1122.13 65.3365 1122.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M57.3736 824.784 L65.0124 824.784 L65.0124 798.419 L56.7023 800.085 L56.7023 795.826 L64.9661 794.16 L69.642 794.16 L69.642 824.784 L77.2809 824.784 L77.2809 828.72 L57.3736 828.72 L57.3736 824.784 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M60.9615 496.185 L77.2809 496.185 L77.2809 500.12 L55.3366 500.12 L55.3366 496.185 Q57.9986 493.43 62.5819 488.801 Q67.1883 484.148 68.3689 482.805 Q70.6143 480.282 71.4939 478.546 Q72.3967 476.787 72.3967 475.097 Q72.3967 472.342 70.4522 470.606 Q68.5309 468.87 65.4291 468.87 Q63.23 468.87 60.7763 469.634 Q58.3458 470.398 55.568 471.949 L55.568 467.227 Q58.3921 466.092 60.8458 465.514 Q63.2995 464.935 65.3365 464.935 Q70.7068 464.935 73.9013 467.62 Q77.0957 470.305 77.0957 474.796 Q77.0957 476.926 76.2855 478.847 Q75.4985 480.745 73.392 483.338 Q72.8133 484.009 69.7115 487.226 Q66.6096 490.421 60.9615 496.185 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M70.1513 152.886 Q73.5078 153.604 75.3827 155.872 Q77.2809 158.141 77.2809 161.474 Q77.2809 166.59 73.7624 169.391 Q70.2439 172.192 63.7624 172.192 Q61.5865 172.192 59.2717 171.752 Q56.9801 171.335 54.5264 170.479 L54.5264 165.965 Q56.4708 167.099 58.7856 167.678 Q61.1004 168.256 63.6236 168.256 Q68.0217 168.256 70.3133 166.52 Q72.6281 164.784 72.6281 161.474 Q72.6281 158.418 70.4754 156.706 Q68.3457 154.969 64.5263 154.969 L60.4986 154.969 L60.4986 151.127 L64.7115 151.127 Q68.1606 151.127 69.9893 149.761 Q71.818 148.372 71.818 145.78 Q71.818 143.118 69.9198 141.706 Q68.0448 140.27 64.5263 140.27 Q62.605 140.27 60.406 140.687 Q58.2069 141.104 55.568 141.983 L55.568 137.817 Q58.2301 137.076 60.5449 136.706 Q62.8828 136.335 64.943 136.335 Q70.267 136.335 73.3689 138.766 Q76.4707 141.173 76.4707 145.294 Q76.4707 148.164 74.8272 150.155 Q73.1837 152.122 70.1513 152.886 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M176.28 12.096 L184.463 12.096 L184.463 36.8875 L214.197 36.8875 L214.197 12.096 L222.38 12.096 L222.38 72.576 L214.197 72.576 L214.197 43.7741 L184.463 43.7741 L184.463 72.576 L176.28 72.576 L176.28 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M238.34 27.2059 L245.794 27.2059 L245.794 72.576 L238.34 72.576 L238.34 27.2059 M238.34 9.54393 L245.794 9.54393 L245.794 18.9825 L238.34 18.9825 L238.34 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M290.313 28.5427 L290.313 35.5912 Q287.154 33.9709 283.751 33.1607 Q280.348 32.3505 276.702 32.3505 Q271.153 32.3505 268.357 34.0519 Q265.603 35.7533 265.603 39.156 Q265.603 41.7486 267.588 43.2475 Q269.573 44.7058 275.568 46.0426 L278.12 46.6097 Q286.06 48.3111 289.382 51.4303 Q292.744 54.509 292.744 60.0587 Q292.744 66.3781 287.721 70.0644 Q282.738 73.7508 273.988 73.7508 Q270.342 73.7508 266.373 73.0216 Q262.443 72.3329 258.068 70.9151 L258.068 63.2184 Q262.2 65.3654 266.21 66.4591 Q270.221 67.5124 274.15 67.5124 Q279.416 67.5124 282.252 65.73 Q285.088 63.9071 285.088 60.6258 Q285.088 57.5877 283.022 55.9673 Q280.996 54.3469 274.069 52.8481 L271.477 52.2405 Q264.55 50.7821 261.471 47.7845 Q258.392 44.7463 258.392 39.4801 Q258.392 33.0797 262.929 29.5959 Q267.466 26.1121 275.811 26.1121 Q279.943 26.1121 283.589 26.7198 Q287.235 27.3274 290.313 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M311.986 14.324 L311.986 27.2059 L327.339 27.2059 L327.339 32.9987 L311.986 32.9987 L311.986 57.6282 Q311.986 63.1779 313.485 64.7578 Q315.024 66.3376 319.682 66.3376 L327.339 66.3376 L327.339 72.576 L319.682 72.576 Q311.054 72.576 307.773 69.3758 Q304.492 66.1351 304.492 57.6282 L304.492 32.9987 L299.023 32.9987 L299.023 27.2059 L304.492 27.2059 L304.492 14.324 L311.986 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M354.723 32.4315 Q348.727 32.4315 345.244 37.1306 Q341.76 41.7891 341.76 49.9314 Q341.76 58.0738 345.203 62.7728 Q348.687 67.4314 354.723 67.4314 Q360.678 67.4314 364.161 62.7323 Q367.645 58.0333 367.645 49.9314 Q367.645 41.8701 364.161 37.1711 Q360.678 32.4315 354.723 32.4315 M354.723 26.1121 Q364.445 26.1121 369.995 32.4315 Q375.544 38.7509 375.544 49.9314 Q375.544 61.0714 369.995 67.4314 Q364.445 73.7508 354.723 73.7508 Q344.96 73.7508 339.41 67.4314 Q333.901 61.0714 333.901 49.9314 Q333.901 38.7509 339.41 32.4315 Q344.96 26.1121 354.723 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M417.755 49.3643 Q417.755 41.2625 414.393 36.8065 Q411.071 32.3505 405.035 32.3505 Q399.04 32.3505 395.677 36.8065 Q392.356 41.2625 392.356 49.3643 Q392.356 57.4256 395.677 61.8816 Q399.04 66.3376 405.035 66.3376 Q411.071 66.3376 414.393 61.8816 Q417.755 57.4256 417.755 49.3643 M425.208 66.9452 Q425.208 78.5308 420.064 84.1616 Q414.919 89.8329 404.306 89.8329 Q400.376 89.8329 396.893 89.2252 Q393.409 88.6581 390.128 87.4428 L390.128 80.1917 Q393.409 81.9741 396.609 82.8248 Q399.809 83.6755 403.131 83.6755 Q410.463 83.6755 414.109 79.8271 Q417.755 76.0193 417.755 68.282 L417.755 64.5957 Q415.446 68.6061 411.84 70.5911 Q408.235 72.576 403.212 72.576 Q394.867 72.576 389.763 66.2161 Q384.659 59.8562 384.659 49.3643 Q384.659 38.832 389.763 32.472 Q394.867 26.1121 403.212 26.1121 Q408.235 26.1121 411.84 28.0971 Q415.446 30.082 417.755 34.0924 L417.755 27.2059 L425.208 27.2059 L425.208 66.9452 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M466.852 34.1734 Q465.596 33.4443 464.097 33.1202 Q462.639 32.7556 460.856 32.7556 Q454.537 32.7556 451.134 36.8875 Q447.772 40.9789 447.772 48.6757 L447.772 72.576 L440.278 72.576 L440.278 27.2059 L447.772 27.2059 L447.772 34.2544 Q450.122 30.1225 453.889 28.1376 Q457.656 26.1121 463.044 26.1121 Q463.814 26.1121 464.745 26.2337 Q465.677 26.3147 466.811 26.5172 L466.852 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M495.289 49.7694 Q486.256 49.7694 482.772 51.8354 Q479.288 53.9013 479.288 58.8839 Q479.288 62.8538 481.881 65.2034 Q484.514 67.5124 489.01 67.5124 Q495.208 67.5124 498.935 63.1374 Q502.702 58.7219 502.702 51.4303 L502.702 49.7694 L495.289 49.7694 M510.156 46.6907 L510.156 72.576 L502.702 72.576 L502.702 65.6895 Q500.15 69.8214 496.342 71.8063 Q492.534 73.7508 487.025 73.7508 Q480.058 73.7508 475.926 69.8619 Q471.834 65.9325 471.834 59.3701 Q471.834 51.7138 476.939 47.825 Q482.083 43.9361 492.251 43.9361 L502.702 43.9361 L502.702 43.2069 Q502.702 38.0623 499.299 35.2672 Q495.937 32.4315 489.82 32.4315 Q485.932 32.4315 482.245 33.3632 Q478.559 34.295 475.156 36.1584 L475.156 29.2718 Q479.248 27.692 483.096 26.9223 Q486.944 26.1121 490.59 26.1121 Q500.434 26.1121 505.295 31.2163 Q510.156 36.3204 510.156 46.6907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M560.833 35.9153 Q563.628 30.8922 567.517 28.5022 Q571.406 26.1121 576.672 26.1121 Q583.761 26.1121 587.609 31.0947 Q591.458 36.0368 591.458 45.1919 L591.458 72.576 L583.963 72.576 L583.963 45.4349 Q583.963 38.913 581.654 35.7533 Q579.345 32.5936 574.606 32.5936 Q568.813 32.5936 565.451 36.4419 Q562.089 40.2903 562.089 46.9338 L562.089 72.576 L554.594 72.576 L554.594 45.4349 Q554.594 38.8725 552.285 35.7533 Q549.976 32.5936 545.156 32.5936 Q539.444 32.5936 536.082 36.4824 Q532.719 40.3308 532.719 46.9338 L532.719 72.576 L525.225 72.576 L525.225 27.2059 L532.719 27.2059 L532.719 34.2544 Q535.272 30.082 538.836 28.0971 Q542.401 26.1121 547.303 26.1121 Q552.245 26.1121 555.688 28.6237 Q559.172 31.1352 560.833 35.9153 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M650.277 32.4315 Q644.281 32.4315 640.798 37.1306 Q637.314 41.7891 637.314 49.9314 Q637.314 58.0738 640.757 62.7728 Q644.241 67.4314 650.277 67.4314 Q656.232 67.4314 659.715 62.7323 Q663.199 58.0333 663.199 49.9314 Q663.199 41.8701 659.715 37.1711 Q656.232 32.4315 650.277 32.4315 M650.277 26.1121 Q659.999 26.1121 665.549 32.4315 Q671.098 38.7509 671.098 49.9314 Q671.098 61.0714 665.549 67.4314 Q659.999 73.7508 650.277 73.7508 Q640.514 73.7508 634.964 67.4314 Q629.455 61.0714 629.455 49.9314 Q629.455 38.7509 634.964 32.4315 Q640.514 26.1121 650.277 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M706.422 9.54393 L706.422 15.7418 L699.293 15.7418 Q695.282 15.7418 693.702 17.3622 Q692.163 18.9825 692.163 23.1955 L692.163 27.2059 L704.437 27.2059 L704.437 32.9987 L692.163 32.9987 L692.163 72.576 L684.669 72.576 L684.669 32.9987 L677.539 32.9987 L677.539 27.2059 L684.669 27.2059 L684.669 24.0462 Q684.669 16.471 688.193 13.0277 Q691.717 9.54393 699.374 9.54393 L706.422 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M741.503 65.6895 L754.871 65.6895 L754.871 19.5497 L740.328 22.4663 L740.328 15.0127 L754.79 12.096 L762.973 12.096 L762.973 65.6895 L776.341 65.6895 L776.341 72.576 L741.503 72.576 L741.503 65.6895 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M810.368 17.4837 Q804.049 17.4837 800.849 23.7221 Q797.689 29.92 797.689 42.3968 Q797.689 54.833 800.849 61.0714 Q804.049 67.2693 810.368 67.2693 Q816.728 67.2693 819.888 61.0714 Q823.088 54.833 823.088 42.3968 Q823.088 29.92 819.888 23.7221 Q816.728 17.4837 810.368 17.4837 M810.368 11.0023 Q820.536 11.0023 825.883 19.0636 Q831.271 27.0843 831.271 42.3968 Q831.271 57.6687 825.883 65.73 Q820.536 73.7508 810.368 73.7508 Q800.201 73.7508 794.813 65.73 Q789.466 57.6687 789.466 42.3968 Q789.466 27.0843 794.813 19.0636 Q800.201 11.0023 810.368 11.0023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M863.152 17.4837 Q856.832 17.4837 853.632 23.7221 Q850.472 29.92 850.472 42.3968 Q850.472 54.833 853.632 61.0714 Q856.832 67.2693 863.152 67.2693 Q869.512 67.2693 872.671 61.0714 Q875.872 54.833 875.872 42.3968 Q875.872 29.92 872.671 23.7221 Q869.512 17.4837 863.152 17.4837 M863.152 11.0023 Q873.319 11.0023 878.667 19.0636 Q884.054 27.0843 884.054 42.3968 Q884.054 57.6687 878.667 65.73 Q873.319 73.7508 863.152 73.7508 Q852.984 73.7508 847.596 65.73 Q842.249 57.6687 842.249 42.3968 Q842.249 27.0843 847.596 19.0636 Q852.984 11.0023 863.152 11.0023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M915.935 17.4837 Q909.616 17.4837 906.415 23.7221 Q903.256 29.92 903.256 42.3968 Q903.256 54.833 906.415 61.0714 Q909.616 67.2693 915.935 67.2693 Q922.295 67.2693 925.455 61.0714 Q928.655 54.833 928.655 42.3968 Q928.655 29.92 925.455 23.7221 Q922.295 17.4837 915.935 17.4837 M915.935 11.0023 Q926.103 11.0023 931.45 19.0636 Q936.838 27.0843 936.838 42.3968 Q936.838 57.6687 931.45 65.73 Q926.103 73.7508 915.935 73.7508 Q905.767 73.7508 900.38 65.73 Q895.032 57.6687 895.032 42.3968 Q895.032 27.0843 900.38 19.0636 Q905.767 11.0023 915.935 11.0023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M968.718 17.4837 Q962.399 17.4837 959.199 23.7221 Q956.039 29.92 956.039 42.3968 Q956.039 54.833 959.199 61.0714 Q962.399 67.2693 968.718 67.2693 Q975.078 67.2693 978.238 61.0714 Q981.438 54.833 981.438 42.3968 Q981.438 29.92 978.238 23.7221 Q975.078 17.4837 968.718 17.4837 M968.718 11.0023 Q978.886 11.0023 984.233 19.0636 Q989.621 27.0843 989.621 42.3968 Q989.621 57.6687 984.233 65.73 Q978.886 73.7508 968.718 73.7508 Q958.551 73.7508 953.163 65.73 Q947.816 57.6687 947.816 42.3968 Q947.816 27.0843 953.163 19.0636 Q958.551 11.0023 968.718 11.0023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M1049.94 49.7694 Q1040.91 49.7694 1037.42 51.8354 Q1033.94 53.9013 1033.94 58.8839 Q1033.94 62.8538 1036.53 65.2034 Q1039.16 67.5124 1043.66 67.5124 Q1049.86 67.5124 1053.58 63.1374 Q1057.35 58.7219 1057.35 51.4303 L1057.35 49.7694 L1049.94 49.7694 M1064.81 46.6907 L1064.81 72.576 L1057.35 72.576 L1057.35 65.6895 Q1054.8 69.8214 1050.99 71.8063 Q1047.18 73.7508 1041.68 73.7508 Q1034.71 73.7508 1030.58 69.8619 Q1026.48 65.9325 1026.48 59.3701 Q1026.48 51.7138 1031.59 47.825 Q1036.73 43.9361 1046.9 43.9361 L1057.35 43.9361 L1057.35 43.2069 Q1057.35 38.0623 1053.95 35.2672 Q1050.59 32.4315 1044.47 32.4315 Q1040.58 32.4315 1036.89 33.3632 Q1033.21 34.295 1029.81 36.1584 L1029.81 29.2718 Q1033.9 27.692 1037.75 26.9223 Q1041.59 26.1121 1045.24 26.1121 Q1055.08 26.1121 1059.94 31.2163 Q1064.81 36.3204 1064.81 46.6907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M1074.81 27.2059 L1082.71 27.2059 L1096.89 65.2844 L1111.07 27.2059 L1118.97 27.2059 L1101.95 72.576 L1091.83 72.576 L1074.81 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M1168.06 48.0275 L1168.06 51.6733 L1133.79 51.6733 Q1134.28 59.3701 1138.41 63.421 Q1142.58 67.4314 1150 67.4314 Q1154.29 67.4314 1158.3 66.3781 Q1162.35 65.3249 1166.32 63.2184 L1166.32 70.267 Q1162.31 71.9684 1158.1 72.8596 Q1153.89 73.7508 1149.55 73.7508 Q1138.69 73.7508 1132.33 67.4314 Q1126.01 61.1119 1126.01 50.3365 Q1126.01 39.1965 1132.01 32.6746 Q1138.05 26.1121 1148.25 26.1121 Q1157.41 26.1121 1162.72 32.0264 Q1168.06 37.9003 1168.06 48.0275 M1160.61 45.84 Q1160.53 39.7232 1157.17 36.0774 Q1153.84 32.4315 1148.34 32.4315 Q1142.1 32.4315 1138.33 35.9558 Q1134.6 39.4801 1134.04 45.8805 L1160.61 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M1206.59 34.1734 Q1205.33 33.4443 1203.83 33.1202 Q1202.37 32.7556 1200.59 32.7556 Q1194.27 32.7556 1190.87 36.8875 Q1187.51 40.9789 1187.51 48.6757 L1187.51 72.576 L1180.01 72.576 L1180.01 27.2059 L1187.51 27.2059 L1187.51 34.2544 Q1189.86 30.1225 1193.62 28.1376 Q1197.39 26.1121 1202.78 26.1121 Q1203.55 26.1121 1204.48 26.2337 Q1205.41 26.3147 1206.55 26.5172 L1206.59 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M1235.02 49.7694 Q1225.99 49.7694 1222.51 51.8354 Q1219.02 53.9013 1219.02 58.8839 Q1219.02 62.8538 1221.62 65.2034 Q1224.25 67.5124 1228.75 67.5124 Q1234.94 67.5124 1238.67 63.1374 Q1242.44 58.7219 1242.44 51.4303 L1242.44 49.7694 L1235.02 49.7694 M1249.89 46.6907 L1249.89 72.576 L1242.44 72.576 L1242.44 65.6895 Q1239.89 69.8214 1236.08 71.8063 Q1232.27 73.7508 1226.76 73.7508 Q1219.79 73.7508 1215.66 69.8619 Q1211.57 65.9325 1211.57 59.3701 Q1211.57 51.7138 1216.67 47.825 Q1221.82 43.9361 1231.99 43.9361 L1242.44 43.9361 L1242.44 43.2069 Q1242.44 38.0623 1239.04 35.2672 Q1235.67 32.4315 1229.56 32.4315 Q1225.67 32.4315 1221.98 33.3632 Q1218.29 34.295 1214.89 36.1584 L1214.89 29.2718 Q1218.98 27.692 1222.83 26.9223 Q1226.68 26.1121 1230.33 26.1121 Q1240.17 26.1121 1245.03 31.2163 Q1249.89 36.3204 1249.89 46.6907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M1295.1 49.3643 Q1295.1 41.2625 1291.74 36.8065 Q1288.42 32.3505 1282.38 32.3505 Q1276.38 32.3505 1273.02 36.8065 Q1269.7 41.2625 1269.7 49.3643 Q1269.7 57.4256 1273.02 61.8816 Q1276.38 66.3376 1282.38 66.3376 Q1288.42 66.3376 1291.74 61.8816 Q1295.1 57.4256 1295.1 49.3643 M1302.55 66.9452 Q1302.55 78.5308 1297.41 84.1616 Q1292.26 89.8329 1281.65 89.8329 Q1277.72 89.8329 1274.24 89.2252 Q1270.75 88.6581 1267.47 87.4428 L1267.47 80.1917 Q1270.75 81.9741 1273.95 82.8248 Q1277.15 83.6755 1280.48 83.6755 Q1287.81 83.6755 1291.45 79.8271 Q1295.1 76.0193 1295.1 68.282 L1295.1 64.5957 Q1292.79 68.6061 1289.19 70.5911 Q1285.58 72.576 1280.56 72.576 Q1272.21 72.576 1267.11 66.2161 Q1262 59.8562 1262 49.3643 Q1262 38.832 1267.11 32.472 Q1272.21 26.1121 1280.56 26.1121 Q1285.58 26.1121 1289.19 28.0971 Q1292.79 30.082 1295.1 34.0924 L1295.1 27.2059 L1302.55 27.2059 L1302.55 66.9452 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M1356.71 48.0275 L1356.71 51.6733 L1322.44 51.6733 Q1322.93 59.3701 1327.06 63.421 Q1331.23 67.4314 1338.65 67.4314 Q1342.94 67.4314 1346.95 66.3781 Q1351 65.3249 1354.97 63.2184 L1354.97 70.267 Q1350.96 71.9684 1346.75 72.8596 Q1342.54 73.7508 1338.2 73.7508 Q1327.34 73.7508 1320.98 67.4314 Q1314.67 61.1119 1314.67 50.3365 Q1314.67 39.1965 1320.66 32.6746 Q1326.7 26.1121 1336.9 26.1121 Q1346.06 26.1121 1351.37 32.0264 Q1356.71 37.9003 1356.71 48.0275 M1349.26 45.84 Q1349.18 39.7232 1345.82 36.0774 Q1342.5 32.4315 1336.99 32.4315 Q1330.75 32.4315 1326.98 35.9558 Q1323.25 39.4801 1322.69 45.8805 L1349.26 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M1397.87 28.5427 L1397.87 35.5912 Q1394.71 33.9709 1391.31 33.1607 Q1387.91 32.3505 1384.26 32.3505 Q1378.71 32.3505 1375.92 34.0519 Q1373.16 35.7533 1373.16 39.156 Q1373.16 41.7486 1375.15 43.2475 Q1377.13 44.7058 1383.13 46.0426 L1385.68 46.6097 Q1393.62 48.3111 1396.94 51.4303 Q1400.3 54.509 1400.3 60.0587 Q1400.3 66.3781 1395.28 70.0644 Q1390.3 73.7508 1381.55 73.7508 Q1377.9 73.7508 1373.93 73.0216 Q1370 72.3329 1365.63 70.9151 L1365.63 63.2184 Q1369.76 65.3654 1373.77 66.4591 Q1377.78 67.5124 1381.71 67.5124 Q1386.97 67.5124 1389.81 65.73 Q1392.65 63.9071 1392.65 60.6258 Q1392.65 57.5877 1390.58 55.9673 Q1388.55 54.3469 1381.63 52.8481 L1379.03 52.2405 Q1372.11 50.7821 1369.03 47.7845 Q1365.95 44.7463 1365.95 39.4801 Q1365.95 33.0797 1370.49 29.5959 Q1375.02 26.1121 1383.37 26.1121 Q1387.5 26.1121 1391.15 26.7198 Q1394.79 27.3274 1397.87 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M1434.21 27.2059 L1441.66 27.2059 L1450.98 62.6108 L1460.25 27.2059 L1469.05 27.2059 L1478.36 62.6108 L1487.64 27.2059 L1495.09 27.2059 L1483.22 72.576 L1474.43 72.576 L1464.67 35.3887 L1454.87 72.576 L1446.08 72.576 L1434.21 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M1506.39 27.2059 L1513.85 27.2059 L1513.85 72.576 L1506.39 72.576 L1506.39 27.2059 M1506.39 9.54393 L1513.85 9.54393 L1513.85 18.9825 L1506.39 18.9825 L1506.39 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M1536.82 14.324 L1536.82 27.2059 L1552.17 27.2059 L1552.17 32.9987 L1536.82 32.9987 L1536.82 57.6282 Q1536.82 63.1779 1538.32 64.7578 Q1539.86 66.3376 1544.51 66.3376 L1552.17 66.3376 L1552.17 72.576 L1544.51 72.576 Q1535.89 72.576 1532.6 69.3758 Q1529.32 66.1351 1529.32 57.6282 L1529.32 32.9987 L1523.85 32.9987 L1523.85 27.2059 L1529.32 27.2059 L1529.32 14.324 L1536.82 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M1599.69 45.1919 L1599.69 72.576 L1592.23 72.576 L1592.23 45.4349 Q1592.23 38.994 1589.72 35.7938 Q1587.21 32.5936 1582.19 32.5936 Q1576.15 32.5936 1572.67 36.4419 Q1569.18 40.2903 1569.18 46.9338 L1569.18 72.576 L1561.69 72.576 L1561.69 9.54393 L1569.18 9.54393 L1569.18 34.2544 Q1571.86 30.163 1575.46 28.1376 Q1579.11 26.1121 1583.85 26.1121 Q1591.67 26.1121 1595.68 30.9732 Q1599.69 35.7938 1599.69 45.1919 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M1644.29 35.3077 Q1646.76 31.1758 1652.88 27.5299 Q1655.27 26.1121 1662.64 26.1121 Q1670.9 26.1121 1676.05 32.6746 Q1681.23 39.2371 1681.23 49.9314 Q1681.23 60.6258 1676.05 67.1883 Q1670.9 73.7508 1662.64 73.7508 Q1657.66 73.7508 1654.05 71.8063 Q1650.49 69.8214 1648.14 65.7705 L1648.14 89.8329 L1640.64 89.8329 L1640.64 50.3365 Q1640.64 40.9789 1644.29 35.3077 M1673.49 49.9314 Q1673.49 41.7081 1670.09 37.0496 Q1666.73 32.3505 1660.82 32.3505 Q1654.9 32.3505 1651.5 37.0496 Q1648.14 41.7081 1648.14 49.9314 Q1648.14 58.1548 1651.5 62.8538 Q1654.9 67.5124 1660.82 67.5124 Q1666.73 67.5124 1670.09 62.8538 Q1673.49 58.1548 1673.49 49.9314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M1694.56 34.9026 L1746.49 34.9026 L1746.49 41.7081 L1694.56 41.7081 L1694.56 34.9026 M1694.56 51.4303 L1746.49 51.4303 L1746.49 58.3168 L1694.56 58.3168 L1694.56 51.4303 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip500)\" d=\"M1781.65 17.4837 Q1775.33 17.4837 1772.13 23.7221 Q1768.97 29.92 1768.97 42.3968 Q1768.97 54.833 1772.13 61.0714 Q1775.33 67.2693 1781.65 67.2693 Q1788.01 67.2693 1791.17 61.0714 Q1794.37 54.833 1794.37 42.3968 Q1794.37 29.92 1791.17 23.7221 Q1788.01 17.4837 1781.65 17.4837 M1781.65 11.0023 Q1791.82 11.0023 1797.17 19.0636 Q1802.56 27.0843 1802.56 42.3968 Q1802.56 57.6687 1797.17 65.73 Q1791.82 73.7508 1781.65 73.7508 Q1771.49 73.7508 1766.1 65.73 Q1760.75 57.6687 1760.75 42.3968 Q1760.75 27.0843 1766.1 19.0636 Q1771.49 11.0023 1781.65 11.0023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip502)\" d=\"\nM203.251 1140.04 L203.251 1140.04 L242.56 1140.04 L242.56 1140.04 L203.251 1140.04 L203.251 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 203.251,1140.04 203.251,1140.04 242.56,1140.04 203.251,1140.04 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM242.56 1140.04 L242.56 1140.04 L281.868 1140.04 L281.868 1140.04 L242.56 1140.04 L242.56 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 242.56,1140.04 242.56,1140.04 281.868,1140.04 242.56,1140.04 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM281.868 1140.04 L281.868 1140.04 L321.176 1140.04 L321.176 1140.04 L281.868 1140.04 L281.868 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 281.868,1140.04 281.868,1140.04 321.176,1140.04 281.868,1140.04 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM321.176 1140.04 L321.176 1140.04 L360.485 1140.04 L360.485 1140.04 L321.176 1140.04 L321.176 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 321.176,1140.04 321.176,1140.04 360.485,1140.04 321.176,1140.04 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM360.485 1140.04 L360.485 1140.04 L399.793 1140.04 L399.793 1140.04 L360.485 1140.04 L360.485 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 360.485,1140.04 360.485,1140.04 399.793,1140.04 360.485,1140.04 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM399.793 1140.04 L399.793 1140.04 L439.101 1140.04 L439.101 1140.04 L399.793 1140.04 L399.793 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 399.793,1140.04 399.793,1140.04 439.101,1140.04 399.793,1140.04 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM439.101 1140.04 L439.101 1140.04 L478.41 1140.04 L478.41 1140.04 L439.101 1140.04 L439.101 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 439.101,1140.04 439.101,1140.04 478.41,1140.04 439.101,1140.04 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM478.41 1140.04 L478.41 1140.04 L517.718 1140.04 L517.718 1140.04 L478.41 1140.04 L478.41 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 478.41,1140.04 478.41,1140.04 517.718,1140.04 478.41,1140.04 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM517.718 1140.04 L517.718 1140.04 L557.026 1140.04 L557.026 1140.04 L517.718 1140.04 L517.718 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 517.718,1140.04 517.718,1140.04 557.026,1140.04 517.718,1140.04 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM557.026 1140.04 L557.026 1140.04 L596.335 1140.04 L596.335 1140.04 L557.026 1140.04 L557.026 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 557.026,1140.04 557.026,1140.04 596.335,1140.04 557.026,1140.04 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM596.335 1140.04 L596.335 1140.04 L635.643 1140.04 L635.643 1140.04 L596.335 1140.04 L596.335 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 596.335,1140.04 596.335,1140.04 635.643,1140.04 596.335,1140.04 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM635.643 1140.04 L635.643 1140.04 L674.952 1140.04 L674.952 1140.04 L635.643 1140.04 L635.643 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 635.643,1140.04 635.643,1140.04 674.952,1140.04 635.643,1140.04 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM674.952 1140.04 L674.952 1140.04 L714.26 1140.04 L714.26 1140.04 L674.952 1140.04 L674.952 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 674.952,1140.04 674.952,1140.04 714.26,1140.04 674.952,1140.04 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM714.26 1139.71 L714.26 1140.04 L753.568 1140.04 L753.568 1139.71 L714.26 1139.71 L714.26 1139.71 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 714.26,1139.71 714.26,1140.04 753.568,1140.04 753.568,1139.71 714.26,1139.71 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM753.568 1140.04 L753.568 1140.04 L792.877 1140.04 L792.877 1140.04 L753.568 1140.04 L753.568 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 753.568,1140.04 753.568,1140.04 792.877,1140.04 753.568,1140.04 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM792.877 1135.11 L792.877 1140.04 L832.185 1140.04 L832.185 1135.11 L792.877 1135.11 L792.877 1135.11 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 792.877,1135.11 792.877,1140.04 832.185,1140.04 832.185,1135.11 792.877,1135.11 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM832.185 1099.62 L832.185 1140.04 L871.493 1140.04 L871.493 1099.62 L832.185 1099.62 L832.185 1099.62 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 832.185,1099.62 832.185,1140.04 871.493,1140.04 871.493,1099.62 832.185,1099.62 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM871.493 970.153 L871.493 1140.04 L910.802 1140.04 L910.802 970.153 L871.493 970.153 L871.493 970.153 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 871.493,970.153 871.493,1140.04 910.802,1140.04 910.802,970.153 871.493,970.153 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM910.802 610.665 L910.802 1140.04 L950.11 1140.04 L950.11 610.665 L910.802 610.665 L910.802 610.665 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 910.802,610.665 910.802,1140.04 950.11,1140.04 950.11,610.665 910.802,610.665 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM950.11 242.962 L950.11 1140.04 L989.418 1140.04 L989.418 242.962 L950.11 242.962 L950.11 242.962 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 950.11,242.962 950.11,1140.04 989.418,1140.04 989.418,242.962 950.11,242.962 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM989.418 258.078 L989.418 1140.04 L1028.73 1140.04 L1028.73 258.078 L989.418 258.078 L989.418 258.078 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 989.418,258.078 989.418,1140.04 1028.73,1140.04 1028.73,258.078 989.418,258.078 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM1028.73 597.85 L1028.73 1140.04 L1068.04 1140.04 L1068.04 597.85 L1028.73 597.85 L1028.73 597.85 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1028.73,597.85 1028.73,1140.04 1068.04,1140.04 1068.04,597.85 1028.73,597.85 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM1068.04 959.638 L1068.04 1140.04 L1107.34 1140.04 L1107.34 959.638 L1068.04 959.638 L1068.04 959.638 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1068.04,959.638 1068.04,1140.04 1107.34,1140.04 1107.34,959.638 1068.04,959.638 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM1107.34 1104.22 L1107.34 1140.04 L1146.65 1140.04 L1146.65 1104.22 L1107.34 1104.22 L1107.34 1104.22 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1107.34,1104.22 1107.34,1140.04 1146.65,1140.04 1146.65,1104.22 1107.34,1104.22 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM1146.65 1137.08 L1146.65 1140.04 L1185.96 1140.04 L1185.96 1137.08 L1146.65 1137.08 L1146.65 1137.08 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1146.65,1137.08 1146.65,1140.04 1185.96,1140.04 1185.96,1137.08 1146.65,1137.08 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM1185.96 1139.71 L1185.96 1140.04 L1225.27 1140.04 L1225.27 1139.71 L1185.96 1139.71 L1185.96 1139.71 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1185.96,1139.71 1185.96,1140.04 1225.27,1140.04 1225.27,1139.71 1185.96,1139.71 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM1225.27 1139.71 L1225.27 1140.04 L1264.58 1140.04 L1264.58 1139.71 L1225.27 1139.71 L1225.27 1139.71 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1225.27,1139.71 1225.27,1140.04 1264.58,1140.04 1264.58,1139.71 1225.27,1139.71 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM1264.58 1140.04 L1264.58 1140.04 L1303.89 1140.04 L1303.89 1140.04 L1264.58 1140.04 L1264.58 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1264.58,1140.04 1264.58,1140.04 1303.89,1140.04 1264.58,1140.04 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM1303.89 1140.04 L1303.89 1140.04 L1343.19 1140.04 L1343.19 1140.04 L1303.89 1140.04 L1303.89 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1303.89,1140.04 1303.89,1140.04 1343.19,1140.04 1303.89,1140.04 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM1343.19 1140.04 L1343.19 1140.04 L1382.5 1140.04 L1382.5 1140.04 L1343.19 1140.04 L1343.19 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1343.19,1140.04 1343.19,1140.04 1382.5,1140.04 1343.19,1140.04 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM1382.5 1140.04 L1382.5 1140.04 L1421.81 1140.04 L1421.81 1140.04 L1382.5 1140.04 L1382.5 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1382.5,1140.04 1382.5,1140.04 1421.81,1140.04 1382.5,1140.04 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM1421.81 1140.04 L1421.81 1140.04 L1461.12 1140.04 L1461.12 1140.04 L1421.81 1140.04 L1421.81 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1421.81,1140.04 1421.81,1140.04 1461.12,1140.04 1421.81,1140.04 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM1461.12 1140.04 L1461.12 1140.04 L1500.43 1140.04 L1500.43 1140.04 L1461.12 1140.04 L1461.12 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1461.12,1140.04 1461.12,1140.04 1500.43,1140.04 1461.12,1140.04 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM1500.43 1140.04 L1500.43 1140.04 L1539.74 1140.04 L1539.74 1140.04 L1500.43 1140.04 L1500.43 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1500.43,1140.04 1500.43,1140.04 1539.74,1140.04 1500.43,1140.04 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM1539.74 1140.04 L1539.74 1140.04 L1579.04 1140.04 L1579.04 1140.04 L1539.74 1140.04 L1539.74 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1539.74,1140.04 1539.74,1140.04 1579.04,1140.04 1539.74,1140.04 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM1579.04 1140.04 L1579.04 1140.04 L1618.35 1140.04 L1618.35 1140.04 L1579.04 1140.04 L1579.04 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1579.04,1140.04 1579.04,1140.04 1618.35,1140.04 1579.04,1140.04 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM1618.35 1140.04 L1618.35 1140.04 L1657.66 1140.04 L1657.66 1140.04 L1618.35 1140.04 L1618.35 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1618.35,1140.04 1618.35,1140.04 1657.66,1140.04 1618.35,1140.04 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM1657.66 1140.04 L1657.66 1140.04 L1696.97 1140.04 L1696.97 1140.04 L1657.66 1140.04 L1657.66 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1657.66,1140.04 1657.66,1140.04 1696.97,1140.04 1657.66,1140.04 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM1696.97 1140.04 L1696.97 1140.04 L1736.28 1140.04 L1736.28 1140.04 L1696.97 1140.04 L1696.97 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1696.97,1140.04 1696.97,1140.04 1736.28,1140.04 1696.97,1140.04 \n \"/>\n<path clip-path=\"url(#clip502)\" d=\"\nM1736.28 1140.04 L1736.28 1140.04 L1775.59 1140.04 L1775.59 1140.04 L1736.28 1140.04 L1736.28 1140.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1736.28,1140.04 1736.28,1140.04 1775.59,1140.04 1736.28,1140.04 \n \"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"222.905\" cy=\"1140.04\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"262.214\" cy=\"1140.04\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"301.522\" cy=\"1140.04\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"340.83\" cy=\"1140.04\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"380.139\" cy=\"1140.04\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"419.447\" cy=\"1140.04\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"458.756\" cy=\"1140.04\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"498.064\" cy=\"1140.04\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"537.372\" cy=\"1140.04\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"576.681\" cy=\"1140.04\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"615.989\" cy=\"1140.04\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"655.297\" cy=\"1140.04\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"694.606\" cy=\"1140.04\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"733.914\" cy=\"1139.71\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"773.222\" cy=\"1140.04\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"812.531\" cy=\"1135.11\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"851.839\" cy=\"1099.62\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"891.147\" cy=\"970.153\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"930.456\" cy=\"610.665\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"969.764\" cy=\"242.962\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1009.07\" cy=\"258.078\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1048.38\" cy=\"597.85\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1087.69\" cy=\"959.638\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1127\" cy=\"1104.22\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1166.31\" cy=\"1137.08\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1205.61\" cy=\"1139.71\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1244.92\" cy=\"1139.71\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1284.23\" cy=\"1140.04\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1323.54\" cy=\"1140.04\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1362.85\" cy=\"1140.04\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1402.16\" cy=\"1140.04\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1441.46\" cy=\"1140.04\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1480.77\" cy=\"1140.04\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1520.08\" cy=\"1140.04\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1559.39\" cy=\"1140.04\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1598.7\" cy=\"1140.04\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1638.01\" cy=\"1140.04\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1677.31\" cy=\"1140.04\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1716.62\" cy=\"1140.04\" r=\"2\"/>\n<circle clip-path=\"url(#clip502)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1755.93\" cy=\"1140.04\" r=\"2\"/>\n<polyline clip-path=\"url(#clip502)\" style=\"stroke:#e26f46; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 156.081,1140.04 172.358,1140.04 322.857,1140.04 413.301,1140.04 489.77,1140.04 572.836,1140.04 649.417,1140.04 690.468,1140.04 731.519,1140.03 755.3,1140 \n 779.08,1139.74 802.861,1138.38 826.642,1132.4 837.209,1125.97 847.776,1115.17 858.343,1097.84 868.909,1071.31 874.193,1053.66 879.476,1032.59 884.76,1007.74 \n 890.043,978.805 895.326,945.545 900.61,907.815 905.893,865.591 911.177,818.996 920.443,727.692 929.709,626.849 938.975,521.153 948.241,416.837 952.874,367.442 \n 957.507,321.149 962.14,278.893 966.773,241.561 971.406,209.966 976.039,184.813 980.673,166.678 985.306,155.98 990.357,153.081 995.408,159.398 1000.46,174.755 \n 1005.51,198.727 1010.56,230.657 1015.61,269.693 1020.66,314.815 1025.72,364.89 1035.82,475.052 1045.92,590.529 1056.02,702.645 1066.13,804.684 1071.21,850.751 \n 1076.29,892.844 1081.37,930.803 1086.45,964.604 1091.53,994.331 1096.61,1020.16 1101.7,1042.34 1106.78,1061.17 1116.94,1090.08 1127.1,1109.57 1137.26,1122.15 \n 1147.43,1129.92 1169.9,1137.53 1192.37,1139.52 1214.84,1139.95 1237.32,1140.03 1280.08,1140.04 1322.84,1140.04 1411.77,1140.04 1486.63,1140.04 1578.02,1140.04 \n 1663.93,1140.04 1801.57,1140.04 1822.76,1140.04 \n \"/>\n</svg>\n",
"text/html": [
"<?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=\"clip550\">\n",
" <rect x=\"0\" y=\"0\" width=\"1920\" height=\"1280\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip550)\" 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=\"clip551\">\n",
" <rect x=\"384\" y=\"0\" width=\"1345\" height=\"1280\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip550)\" d=\"\n",
"M106.081 1169.65 L1872.76 1169.65 L1872.76 123.472 L106.081 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip552\">\n",
" <rect x=\"106\" y=\"123\" width=\"1768\" height=\"1047\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 203.251,1169.65 203.251,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 596.335,1169.65 596.335,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 989.418,1169.65 989.418,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1382.5,1169.65 1382.5,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1775.59,1169.65 1775.59,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip550)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 106.081,1169.65 1872.76,1169.65 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip550)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 203.251,1169.65 203.251,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip550)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 596.335,1169.65 596.335,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip550)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 989.418,1169.65 989.418,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip550)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1382.5,1169.65 1382.5,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip550)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1775.59,1169.65 1775.59,1150.75 \n",
" \"/>\n",
"<path clip-path=\"url(#clip550)\" d=\"M203.251 1196.73 Q199.64 1196.73 197.811 1200.29 Q196.006 1203.83 196.006 1210.96 Q196.006 1218.07 197.811 1221.63 Q199.64 1225.18 203.251 1225.18 Q206.885 1225.18 208.691 1221.63 Q210.52 1218.07 210.52 1210.96 Q210.52 1203.83 208.691 1200.29 Q206.885 1196.73 203.251 1196.73 M203.251 1193.02 Q209.061 1193.02 212.117 1197.63 Q215.196 1202.21 215.196 1210.96 Q215.196 1219.69 212.117 1224.3 Q209.061 1228.88 203.251 1228.88 Q197.441 1228.88 194.362 1224.3 Q191.307 1219.69 191.307 1210.96 Q191.307 1202.21 194.362 1197.63 Q197.441 1193.02 203.251 1193.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M586.717 1224.27 L594.356 1224.27 L594.356 1197.91 L586.045 1199.57 L586.045 1195.31 L594.309 1193.65 L598.985 1193.65 L598.985 1224.27 L606.624 1224.27 L606.624 1228.21 L586.717 1228.21 L586.717 1224.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M984.071 1224.27 L1000.39 1224.27 L1000.39 1228.21 L978.446 1228.21 L978.446 1224.27 Q981.108 1221.52 985.692 1216.89 Q990.298 1212.24 991.479 1210.89 Q993.724 1208.37 994.604 1206.63 Q995.506 1204.87 995.506 1203.18 Q995.506 1200.43 993.562 1198.69 Q991.641 1196.96 988.539 1196.96 Q986.34 1196.96 983.886 1197.72 Q981.455 1198.49 978.678 1200.04 L978.678 1195.31 Q981.502 1194.18 983.955 1193.6 Q986.409 1193.02 988.446 1193.02 Q993.817 1193.02 997.011 1195.71 Q1000.21 1198.39 1000.21 1202.88 Q1000.21 1205.01 999.395 1206.93 Q998.608 1208.83 996.502 1211.43 Q995.923 1212.1 992.821 1215.31 Q989.719 1218.51 984.071 1224.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M1386.75 1209.57 Q1390.11 1210.29 1391.98 1212.56 Q1393.88 1214.83 1393.88 1218.16 Q1393.88 1223.28 1390.36 1226.08 Q1386.84 1228.88 1380.36 1228.88 Q1378.18 1228.88 1375.87 1228.44 Q1373.58 1228.02 1371.12 1227.17 L1371.12 1222.65 Q1373.07 1223.79 1375.38 1224.37 Q1377.7 1224.94 1380.22 1224.94 Q1384.62 1224.94 1386.91 1223.21 Q1389.23 1221.47 1389.23 1218.16 Q1389.23 1215.11 1387.07 1213.39 Q1384.94 1211.66 1381.12 1211.66 L1377.1 1211.66 L1377.1 1207.81 L1381.31 1207.81 Q1384.76 1207.81 1386.59 1206.45 Q1388.42 1205.06 1388.42 1202.47 Q1388.42 1199.81 1386.52 1198.39 Q1384.64 1196.96 1381.12 1196.96 Q1379.2 1196.96 1377 1197.37 Q1374.81 1197.79 1372.17 1198.67 L1372.17 1194.5 Q1374.83 1193.76 1377.14 1193.39 Q1379.48 1193.02 1381.54 1193.02 Q1386.87 1193.02 1389.97 1195.45 Q1393.07 1197.86 1393.07 1201.98 Q1393.07 1204.85 1391.43 1206.84 Q1389.78 1208.81 1386.75 1209.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M1778.59 1197.72 L1766.79 1216.17 L1778.59 1216.17 L1778.59 1197.72 M1777.37 1193.65 L1783.25 1193.65 L1783.25 1216.17 L1788.18 1216.17 L1788.18 1220.06 L1783.25 1220.06 L1783.25 1228.21 L1778.59 1228.21 L1778.59 1220.06 L1762.99 1220.06 L1762.99 1215.55 L1777.37 1193.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 106.081,1140.04 1872.76,1140.04 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 106.081,811.44 1872.76,811.44 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 106.081,482.84 1872.76,482.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 106.081,154.24 1872.76,154.24 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip550)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 106.081,1169.65 106.081,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip550)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 106.081,1140.04 124.979,1140.04 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip550)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 106.081,811.44 124.979,811.44 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip550)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 106.081,482.84 124.979,482.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip550)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 106.081,154.24 124.979,154.24 \n",
" \"/>\n",
"<path clip-path=\"url(#clip550)\" d=\"M65.3365 1125.84 Q61.7254 1125.84 59.8967 1129.4 Q58.0912 1132.94 58.0912 1140.07 Q58.0912 1147.18 59.8967 1150.75 Q61.7254 1154.29 65.3365 1154.29 Q68.9707 1154.29 70.7763 1150.75 Q72.605 1147.18 72.605 1140.07 Q72.605 1132.94 70.7763 1129.4 Q68.9707 1125.84 65.3365 1125.84 M65.3365 1122.13 Q71.1467 1122.13 74.2022 1126.74 Q77.2809 1131.32 77.2809 1140.07 Q77.2809 1148.8 74.2022 1153.41 Q71.1467 1157.99 65.3365 1157.99 Q59.5264 1157.99 56.4477 1153.41 Q53.3921 1148.8 53.3921 1140.07 Q53.3921 1131.32 56.4477 1126.74 Q59.5264 1122.13 65.3365 1122.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M57.3736 824.784 L65.0124 824.784 L65.0124 798.419 L56.7023 800.085 L56.7023 795.826 L64.9661 794.16 L69.642 794.16 L69.642 824.784 L77.2809 824.784 L77.2809 828.72 L57.3736 828.72 L57.3736 824.784 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M60.9615 496.185 L77.2809 496.185 L77.2809 500.12 L55.3366 500.12 L55.3366 496.185 Q57.9986 493.43 62.5819 488.801 Q67.1883 484.148 68.3689 482.805 Q70.6143 480.282 71.4939 478.546 Q72.3967 476.787 72.3967 475.097 Q72.3967 472.342 70.4522 470.606 Q68.5309 468.87 65.4291 468.87 Q63.23 468.87 60.7763 469.634 Q58.3458 470.398 55.568 471.949 L55.568 467.227 Q58.3921 466.092 60.8458 465.514 Q63.2995 464.935 65.3365 464.935 Q70.7068 464.935 73.9013 467.62 Q77.0957 470.305 77.0957 474.796 Q77.0957 476.926 76.2855 478.847 Q75.4985 480.745 73.392 483.338 Q72.8133 484.009 69.7115 487.226 Q66.6096 490.421 60.9615 496.185 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M70.1513 152.886 Q73.5078 153.604 75.3827 155.872 Q77.2809 158.141 77.2809 161.474 Q77.2809 166.59 73.7624 169.391 Q70.2439 172.192 63.7624 172.192 Q61.5865 172.192 59.2717 171.752 Q56.9801 171.335 54.5264 170.479 L54.5264 165.965 Q56.4708 167.099 58.7856 167.678 Q61.1004 168.256 63.6236 168.256 Q68.0217 168.256 70.3133 166.52 Q72.6281 164.784 72.6281 161.474 Q72.6281 158.418 70.4754 156.706 Q68.3457 154.969 64.5263 154.969 L60.4986 154.969 L60.4986 151.127 L64.7115 151.127 Q68.1606 151.127 69.9893 149.761 Q71.818 148.372 71.818 145.78 Q71.818 143.118 69.9198 141.706 Q68.0448 140.27 64.5263 140.27 Q62.605 140.27 60.406 140.687 Q58.2069 141.104 55.568 141.983 L55.568 137.817 Q58.2301 137.076 60.5449 136.706 Q62.8828 136.335 64.943 136.335 Q70.267 136.335 73.3689 138.766 Q76.4707 141.173 76.4707 145.294 Q76.4707 148.164 74.8272 150.155 Q73.1837 152.122 70.1513 152.886 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M176.28 12.096 L184.463 12.096 L184.463 36.8875 L214.197 36.8875 L214.197 12.096 L222.38 12.096 L222.38 72.576 L214.197 72.576 L214.197 43.7741 L184.463 43.7741 L184.463 72.576 L176.28 72.576 L176.28 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M238.34 27.2059 L245.794 27.2059 L245.794 72.576 L238.34 72.576 L238.34 27.2059 M238.34 9.54393 L245.794 9.54393 L245.794 18.9825 L238.34 18.9825 L238.34 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M290.313 28.5427 L290.313 35.5912 Q287.154 33.9709 283.751 33.1607 Q280.348 32.3505 276.702 32.3505 Q271.153 32.3505 268.357 34.0519 Q265.603 35.7533 265.603 39.156 Q265.603 41.7486 267.588 43.2475 Q269.573 44.7058 275.568 46.0426 L278.12 46.6097 Q286.06 48.3111 289.382 51.4303 Q292.744 54.509 292.744 60.0587 Q292.744 66.3781 287.721 70.0644 Q282.738 73.7508 273.988 73.7508 Q270.342 73.7508 266.373 73.0216 Q262.443 72.3329 258.068 70.9151 L258.068 63.2184 Q262.2 65.3654 266.21 66.4591 Q270.221 67.5124 274.15 67.5124 Q279.416 67.5124 282.252 65.73 Q285.088 63.9071 285.088 60.6258 Q285.088 57.5877 283.022 55.9673 Q280.996 54.3469 274.069 52.8481 L271.477 52.2405 Q264.55 50.7821 261.471 47.7845 Q258.392 44.7463 258.392 39.4801 Q258.392 33.0797 262.929 29.5959 Q267.466 26.1121 275.811 26.1121 Q279.943 26.1121 283.589 26.7198 Q287.235 27.3274 290.313 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M311.986 14.324 L311.986 27.2059 L327.339 27.2059 L327.339 32.9987 L311.986 32.9987 L311.986 57.6282 Q311.986 63.1779 313.485 64.7578 Q315.024 66.3376 319.682 66.3376 L327.339 66.3376 L327.339 72.576 L319.682 72.576 Q311.054 72.576 307.773 69.3758 Q304.492 66.1351 304.492 57.6282 L304.492 32.9987 L299.023 32.9987 L299.023 27.2059 L304.492 27.2059 L304.492 14.324 L311.986 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M354.723 32.4315 Q348.727 32.4315 345.244 37.1306 Q341.76 41.7891 341.76 49.9314 Q341.76 58.0738 345.203 62.7728 Q348.687 67.4314 354.723 67.4314 Q360.678 67.4314 364.161 62.7323 Q367.645 58.0333 367.645 49.9314 Q367.645 41.8701 364.161 37.1711 Q360.678 32.4315 354.723 32.4315 M354.723 26.1121 Q364.445 26.1121 369.995 32.4315 Q375.544 38.7509 375.544 49.9314 Q375.544 61.0714 369.995 67.4314 Q364.445 73.7508 354.723 73.7508 Q344.96 73.7508 339.41 67.4314 Q333.901 61.0714 333.901 49.9314 Q333.901 38.7509 339.41 32.4315 Q344.96 26.1121 354.723 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M417.755 49.3643 Q417.755 41.2625 414.393 36.8065 Q411.071 32.3505 405.035 32.3505 Q399.04 32.3505 395.677 36.8065 Q392.356 41.2625 392.356 49.3643 Q392.356 57.4256 395.677 61.8816 Q399.04 66.3376 405.035 66.3376 Q411.071 66.3376 414.393 61.8816 Q417.755 57.4256 417.755 49.3643 M425.208 66.9452 Q425.208 78.5308 420.064 84.1616 Q414.919 89.8329 404.306 89.8329 Q400.376 89.8329 396.893 89.2252 Q393.409 88.6581 390.128 87.4428 L390.128 80.1917 Q393.409 81.9741 396.609 82.8248 Q399.809 83.6755 403.131 83.6755 Q410.463 83.6755 414.109 79.8271 Q417.755 76.0193 417.755 68.282 L417.755 64.5957 Q415.446 68.6061 411.84 70.5911 Q408.235 72.576 403.212 72.576 Q394.867 72.576 389.763 66.2161 Q384.659 59.8562 384.659 49.3643 Q384.659 38.832 389.763 32.472 Q394.867 26.1121 403.212 26.1121 Q408.235 26.1121 411.84 28.0971 Q415.446 30.082 417.755 34.0924 L417.755 27.2059 L425.208 27.2059 L425.208 66.9452 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M466.852 34.1734 Q465.596 33.4443 464.097 33.1202 Q462.639 32.7556 460.856 32.7556 Q454.537 32.7556 451.134 36.8875 Q447.772 40.9789 447.772 48.6757 L447.772 72.576 L440.278 72.576 L440.278 27.2059 L447.772 27.2059 L447.772 34.2544 Q450.122 30.1225 453.889 28.1376 Q457.656 26.1121 463.044 26.1121 Q463.814 26.1121 464.745 26.2337 Q465.677 26.3147 466.811 26.5172 L466.852 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M495.289 49.7694 Q486.256 49.7694 482.772 51.8354 Q479.288 53.9013 479.288 58.8839 Q479.288 62.8538 481.881 65.2034 Q484.514 67.5124 489.01 67.5124 Q495.208 67.5124 498.935 63.1374 Q502.702 58.7219 502.702 51.4303 L502.702 49.7694 L495.289 49.7694 M510.156 46.6907 L510.156 72.576 L502.702 72.576 L502.702 65.6895 Q500.15 69.8214 496.342 71.8063 Q492.534 73.7508 487.025 73.7508 Q480.058 73.7508 475.926 69.8619 Q471.834 65.9325 471.834 59.3701 Q471.834 51.7138 476.939 47.825 Q482.083 43.9361 492.251 43.9361 L502.702 43.9361 L502.702 43.2069 Q502.702 38.0623 499.299 35.2672 Q495.937 32.4315 489.82 32.4315 Q485.932 32.4315 482.245 33.3632 Q478.559 34.295 475.156 36.1584 L475.156 29.2718 Q479.248 27.692 483.096 26.9223 Q486.944 26.1121 490.59 26.1121 Q500.434 26.1121 505.295 31.2163 Q510.156 36.3204 510.156 46.6907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M560.833 35.9153 Q563.628 30.8922 567.517 28.5022 Q571.406 26.1121 576.672 26.1121 Q583.761 26.1121 587.609 31.0947 Q591.458 36.0368 591.458 45.1919 L591.458 72.576 L583.963 72.576 L583.963 45.4349 Q583.963 38.913 581.654 35.7533 Q579.345 32.5936 574.606 32.5936 Q568.813 32.5936 565.451 36.4419 Q562.089 40.2903 562.089 46.9338 L562.089 72.576 L554.594 72.576 L554.594 45.4349 Q554.594 38.8725 552.285 35.7533 Q549.976 32.5936 545.156 32.5936 Q539.444 32.5936 536.082 36.4824 Q532.719 40.3308 532.719 46.9338 L532.719 72.576 L525.225 72.576 L525.225 27.2059 L532.719 27.2059 L532.719 34.2544 Q535.272 30.082 538.836 28.0971 Q542.401 26.1121 547.303 26.1121 Q552.245 26.1121 555.688 28.6237 Q559.172 31.1352 560.833 35.9153 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M650.277 32.4315 Q644.281 32.4315 640.798 37.1306 Q637.314 41.7891 637.314 49.9314 Q637.314 58.0738 640.757 62.7728 Q644.241 67.4314 650.277 67.4314 Q656.232 67.4314 659.715 62.7323 Q663.199 58.0333 663.199 49.9314 Q663.199 41.8701 659.715 37.1711 Q656.232 32.4315 650.277 32.4315 M650.277 26.1121 Q659.999 26.1121 665.549 32.4315 Q671.098 38.7509 671.098 49.9314 Q671.098 61.0714 665.549 67.4314 Q659.999 73.7508 650.277 73.7508 Q640.514 73.7508 634.964 67.4314 Q629.455 61.0714 629.455 49.9314 Q629.455 38.7509 634.964 32.4315 Q640.514 26.1121 650.277 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M706.422 9.54393 L706.422 15.7418 L699.293 15.7418 Q695.282 15.7418 693.702 17.3622 Q692.163 18.9825 692.163 23.1955 L692.163 27.2059 L704.437 27.2059 L704.437 32.9987 L692.163 32.9987 L692.163 72.576 L684.669 72.576 L684.669 32.9987 L677.539 32.9987 L677.539 27.2059 L684.669 27.2059 L684.669 24.0462 Q684.669 16.471 688.193 13.0277 Q691.717 9.54393 699.374 9.54393 L706.422 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M741.503 65.6895 L754.871 65.6895 L754.871 19.5497 L740.328 22.4663 L740.328 15.0127 L754.79 12.096 L762.973 12.096 L762.973 65.6895 L776.341 65.6895 L776.341 72.576 L741.503 72.576 L741.503 65.6895 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M810.368 17.4837 Q804.049 17.4837 800.849 23.7221 Q797.689 29.92 797.689 42.3968 Q797.689 54.833 800.849 61.0714 Q804.049 67.2693 810.368 67.2693 Q816.728 67.2693 819.888 61.0714 Q823.088 54.833 823.088 42.3968 Q823.088 29.92 819.888 23.7221 Q816.728 17.4837 810.368 17.4837 M810.368 11.0023 Q820.536 11.0023 825.883 19.0636 Q831.271 27.0843 831.271 42.3968 Q831.271 57.6687 825.883 65.73 Q820.536 73.7508 810.368 73.7508 Q800.201 73.7508 794.813 65.73 Q789.466 57.6687 789.466 42.3968 Q789.466 27.0843 794.813 19.0636 Q800.201 11.0023 810.368 11.0023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M863.152 17.4837 Q856.832 17.4837 853.632 23.7221 Q850.472 29.92 850.472 42.3968 Q850.472 54.833 853.632 61.0714 Q856.832 67.2693 863.152 67.2693 Q869.512 67.2693 872.671 61.0714 Q875.872 54.833 875.872 42.3968 Q875.872 29.92 872.671 23.7221 Q869.512 17.4837 863.152 17.4837 M863.152 11.0023 Q873.319 11.0023 878.667 19.0636 Q884.054 27.0843 884.054 42.3968 Q884.054 57.6687 878.667 65.73 Q873.319 73.7508 863.152 73.7508 Q852.984 73.7508 847.596 65.73 Q842.249 57.6687 842.249 42.3968 Q842.249 27.0843 847.596 19.0636 Q852.984 11.0023 863.152 11.0023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M915.935 17.4837 Q909.616 17.4837 906.415 23.7221 Q903.256 29.92 903.256 42.3968 Q903.256 54.833 906.415 61.0714 Q909.616 67.2693 915.935 67.2693 Q922.295 67.2693 925.455 61.0714 Q928.655 54.833 928.655 42.3968 Q928.655 29.92 925.455 23.7221 Q922.295 17.4837 915.935 17.4837 M915.935 11.0023 Q926.103 11.0023 931.45 19.0636 Q936.838 27.0843 936.838 42.3968 Q936.838 57.6687 931.45 65.73 Q926.103 73.7508 915.935 73.7508 Q905.767 73.7508 900.38 65.73 Q895.032 57.6687 895.032 42.3968 Q895.032 27.0843 900.38 19.0636 Q905.767 11.0023 915.935 11.0023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M968.718 17.4837 Q962.399 17.4837 959.199 23.7221 Q956.039 29.92 956.039 42.3968 Q956.039 54.833 959.199 61.0714 Q962.399 67.2693 968.718 67.2693 Q975.078 67.2693 978.238 61.0714 Q981.438 54.833 981.438 42.3968 Q981.438 29.92 978.238 23.7221 Q975.078 17.4837 968.718 17.4837 M968.718 11.0023 Q978.886 11.0023 984.233 19.0636 Q989.621 27.0843 989.621 42.3968 Q989.621 57.6687 984.233 65.73 Q978.886 73.7508 968.718 73.7508 Q958.551 73.7508 953.163 65.73 Q947.816 57.6687 947.816 42.3968 Q947.816 27.0843 953.163 19.0636 Q958.551 11.0023 968.718 11.0023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M1049.94 49.7694 Q1040.91 49.7694 1037.42 51.8354 Q1033.94 53.9013 1033.94 58.8839 Q1033.94 62.8538 1036.53 65.2034 Q1039.16 67.5124 1043.66 67.5124 Q1049.86 67.5124 1053.58 63.1374 Q1057.35 58.7219 1057.35 51.4303 L1057.35 49.7694 L1049.94 49.7694 M1064.81 46.6907 L1064.81 72.576 L1057.35 72.576 L1057.35 65.6895 Q1054.8 69.8214 1050.99 71.8063 Q1047.18 73.7508 1041.68 73.7508 Q1034.71 73.7508 1030.58 69.8619 Q1026.48 65.9325 1026.48 59.3701 Q1026.48 51.7138 1031.59 47.825 Q1036.73 43.9361 1046.9 43.9361 L1057.35 43.9361 L1057.35 43.2069 Q1057.35 38.0623 1053.95 35.2672 Q1050.59 32.4315 1044.47 32.4315 Q1040.58 32.4315 1036.89 33.3632 Q1033.21 34.295 1029.81 36.1584 L1029.81 29.2718 Q1033.9 27.692 1037.75 26.9223 Q1041.59 26.1121 1045.24 26.1121 Q1055.08 26.1121 1059.94 31.2163 Q1064.81 36.3204 1064.81 46.6907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M1074.81 27.2059 L1082.71 27.2059 L1096.89 65.2844 L1111.07 27.2059 L1118.97 27.2059 L1101.95 72.576 L1091.83 72.576 L1074.81 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M1168.06 48.0275 L1168.06 51.6733 L1133.79 51.6733 Q1134.28 59.3701 1138.41 63.421 Q1142.58 67.4314 1150 67.4314 Q1154.29 67.4314 1158.3 66.3781 Q1162.35 65.3249 1166.32 63.2184 L1166.32 70.267 Q1162.31 71.9684 1158.1 72.8596 Q1153.89 73.7508 1149.55 73.7508 Q1138.69 73.7508 1132.33 67.4314 Q1126.01 61.1119 1126.01 50.3365 Q1126.01 39.1965 1132.01 32.6746 Q1138.05 26.1121 1148.25 26.1121 Q1157.41 26.1121 1162.72 32.0264 Q1168.06 37.9003 1168.06 48.0275 M1160.61 45.84 Q1160.53 39.7232 1157.17 36.0774 Q1153.84 32.4315 1148.34 32.4315 Q1142.1 32.4315 1138.33 35.9558 Q1134.6 39.4801 1134.04 45.8805 L1160.61 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M1206.59 34.1734 Q1205.33 33.4443 1203.83 33.1202 Q1202.37 32.7556 1200.59 32.7556 Q1194.27 32.7556 1190.87 36.8875 Q1187.51 40.9789 1187.51 48.6757 L1187.51 72.576 L1180.01 72.576 L1180.01 27.2059 L1187.51 27.2059 L1187.51 34.2544 Q1189.86 30.1225 1193.62 28.1376 Q1197.39 26.1121 1202.78 26.1121 Q1203.55 26.1121 1204.48 26.2337 Q1205.41 26.3147 1206.55 26.5172 L1206.59 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M1235.02 49.7694 Q1225.99 49.7694 1222.51 51.8354 Q1219.02 53.9013 1219.02 58.8839 Q1219.02 62.8538 1221.62 65.2034 Q1224.25 67.5124 1228.75 67.5124 Q1234.94 67.5124 1238.67 63.1374 Q1242.44 58.7219 1242.44 51.4303 L1242.44 49.7694 L1235.02 49.7694 M1249.89 46.6907 L1249.89 72.576 L1242.44 72.576 L1242.44 65.6895 Q1239.89 69.8214 1236.08 71.8063 Q1232.27 73.7508 1226.76 73.7508 Q1219.79 73.7508 1215.66 69.8619 Q1211.57 65.9325 1211.57 59.3701 Q1211.57 51.7138 1216.67 47.825 Q1221.82 43.9361 1231.99 43.9361 L1242.44 43.9361 L1242.44 43.2069 Q1242.44 38.0623 1239.04 35.2672 Q1235.67 32.4315 1229.56 32.4315 Q1225.67 32.4315 1221.98 33.3632 Q1218.29 34.295 1214.89 36.1584 L1214.89 29.2718 Q1218.98 27.692 1222.83 26.9223 Q1226.68 26.1121 1230.33 26.1121 Q1240.17 26.1121 1245.03 31.2163 Q1249.89 36.3204 1249.89 46.6907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M1295.1 49.3643 Q1295.1 41.2625 1291.74 36.8065 Q1288.42 32.3505 1282.38 32.3505 Q1276.38 32.3505 1273.02 36.8065 Q1269.7 41.2625 1269.7 49.3643 Q1269.7 57.4256 1273.02 61.8816 Q1276.38 66.3376 1282.38 66.3376 Q1288.42 66.3376 1291.74 61.8816 Q1295.1 57.4256 1295.1 49.3643 M1302.55 66.9452 Q1302.55 78.5308 1297.41 84.1616 Q1292.26 89.8329 1281.65 89.8329 Q1277.72 89.8329 1274.24 89.2252 Q1270.75 88.6581 1267.47 87.4428 L1267.47 80.1917 Q1270.75 81.9741 1273.95 82.8248 Q1277.15 83.6755 1280.48 83.6755 Q1287.81 83.6755 1291.45 79.8271 Q1295.1 76.0193 1295.1 68.282 L1295.1 64.5957 Q1292.79 68.6061 1289.19 70.5911 Q1285.58 72.576 1280.56 72.576 Q1272.21 72.576 1267.11 66.2161 Q1262 59.8562 1262 49.3643 Q1262 38.832 1267.11 32.472 Q1272.21 26.1121 1280.56 26.1121 Q1285.58 26.1121 1289.19 28.0971 Q1292.79 30.082 1295.1 34.0924 L1295.1 27.2059 L1302.55 27.2059 L1302.55 66.9452 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M1356.71 48.0275 L1356.71 51.6733 L1322.44 51.6733 Q1322.93 59.3701 1327.06 63.421 Q1331.23 67.4314 1338.65 67.4314 Q1342.94 67.4314 1346.95 66.3781 Q1351 65.3249 1354.97 63.2184 L1354.97 70.267 Q1350.96 71.9684 1346.75 72.8596 Q1342.54 73.7508 1338.2 73.7508 Q1327.34 73.7508 1320.98 67.4314 Q1314.67 61.1119 1314.67 50.3365 Q1314.67 39.1965 1320.66 32.6746 Q1326.7 26.1121 1336.9 26.1121 Q1346.06 26.1121 1351.37 32.0264 Q1356.71 37.9003 1356.71 48.0275 M1349.26 45.84 Q1349.18 39.7232 1345.82 36.0774 Q1342.5 32.4315 1336.99 32.4315 Q1330.75 32.4315 1326.98 35.9558 Q1323.25 39.4801 1322.69 45.8805 L1349.26 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M1397.87 28.5427 L1397.87 35.5912 Q1394.71 33.9709 1391.31 33.1607 Q1387.91 32.3505 1384.26 32.3505 Q1378.71 32.3505 1375.92 34.0519 Q1373.16 35.7533 1373.16 39.156 Q1373.16 41.7486 1375.15 43.2475 Q1377.13 44.7058 1383.13 46.0426 L1385.68 46.6097 Q1393.62 48.3111 1396.94 51.4303 Q1400.3 54.509 1400.3 60.0587 Q1400.3 66.3781 1395.28 70.0644 Q1390.3 73.7508 1381.55 73.7508 Q1377.9 73.7508 1373.93 73.0216 Q1370 72.3329 1365.63 70.9151 L1365.63 63.2184 Q1369.76 65.3654 1373.77 66.4591 Q1377.78 67.5124 1381.71 67.5124 Q1386.97 67.5124 1389.81 65.73 Q1392.65 63.9071 1392.65 60.6258 Q1392.65 57.5877 1390.58 55.9673 Q1388.55 54.3469 1381.63 52.8481 L1379.03 52.2405 Q1372.11 50.7821 1369.03 47.7845 Q1365.95 44.7463 1365.95 39.4801 Q1365.95 33.0797 1370.49 29.5959 Q1375.02 26.1121 1383.37 26.1121 Q1387.5 26.1121 1391.15 26.7198 Q1394.79 27.3274 1397.87 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M1434.21 27.2059 L1441.66 27.2059 L1450.98 62.6108 L1460.25 27.2059 L1469.05 27.2059 L1478.36 62.6108 L1487.64 27.2059 L1495.09 27.2059 L1483.22 72.576 L1474.43 72.576 L1464.67 35.3887 L1454.87 72.576 L1446.08 72.576 L1434.21 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M1506.39 27.2059 L1513.85 27.2059 L1513.85 72.576 L1506.39 72.576 L1506.39 27.2059 M1506.39 9.54393 L1513.85 9.54393 L1513.85 18.9825 L1506.39 18.9825 L1506.39 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M1536.82 14.324 L1536.82 27.2059 L1552.17 27.2059 L1552.17 32.9987 L1536.82 32.9987 L1536.82 57.6282 Q1536.82 63.1779 1538.32 64.7578 Q1539.86 66.3376 1544.51 66.3376 L1552.17 66.3376 L1552.17 72.576 L1544.51 72.576 Q1535.89 72.576 1532.6 69.3758 Q1529.32 66.1351 1529.32 57.6282 L1529.32 32.9987 L1523.85 32.9987 L1523.85 27.2059 L1529.32 27.2059 L1529.32 14.324 L1536.82 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M1599.69 45.1919 L1599.69 72.576 L1592.23 72.576 L1592.23 45.4349 Q1592.23 38.994 1589.72 35.7938 Q1587.21 32.5936 1582.19 32.5936 Q1576.15 32.5936 1572.67 36.4419 Q1569.18 40.2903 1569.18 46.9338 L1569.18 72.576 L1561.69 72.576 L1561.69 9.54393 L1569.18 9.54393 L1569.18 34.2544 Q1571.86 30.163 1575.46 28.1376 Q1579.11 26.1121 1583.85 26.1121 Q1591.67 26.1121 1595.68 30.9732 Q1599.69 35.7938 1599.69 45.1919 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M1644.29 35.3077 Q1646.76 31.1758 1652.88 27.5299 Q1655.27 26.1121 1662.64 26.1121 Q1670.9 26.1121 1676.05 32.6746 Q1681.23 39.2371 1681.23 49.9314 Q1681.23 60.6258 1676.05 67.1883 Q1670.9 73.7508 1662.64 73.7508 Q1657.66 73.7508 1654.05 71.8063 Q1650.49 69.8214 1648.14 65.7705 L1648.14 89.8329 L1640.64 89.8329 L1640.64 50.3365 Q1640.64 40.9789 1644.29 35.3077 M1673.49 49.9314 Q1673.49 41.7081 1670.09 37.0496 Q1666.73 32.3505 1660.82 32.3505 Q1654.9 32.3505 1651.5 37.0496 Q1648.14 41.7081 1648.14 49.9314 Q1648.14 58.1548 1651.5 62.8538 Q1654.9 67.5124 1660.82 67.5124 Q1666.73 67.5124 1670.09 62.8538 Q1673.49 58.1548 1673.49 49.9314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M1694.56 34.9026 L1746.49 34.9026 L1746.49 41.7081 L1694.56 41.7081 L1694.56 34.9026 M1694.56 51.4303 L1746.49 51.4303 L1746.49 58.3168 L1694.56 58.3168 L1694.56 51.4303 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip550)\" d=\"M1781.65 17.4837 Q1775.33 17.4837 1772.13 23.7221 Q1768.97 29.92 1768.97 42.3968 Q1768.97 54.833 1772.13 61.0714 Q1775.33 67.2693 1781.65 67.2693 Q1788.01 67.2693 1791.17 61.0714 Q1794.37 54.833 1794.37 42.3968 Q1794.37 29.92 1791.17 23.7221 Q1788.01 17.4837 1781.65 17.4837 M1781.65 11.0023 Q1791.82 11.0023 1797.17 19.0636 Q1802.56 27.0843 1802.56 42.3968 Q1802.56 57.6687 1797.17 65.73 Q1791.82 73.7508 1781.65 73.7508 Q1771.49 73.7508 1766.1 65.73 Q1760.75 57.6687 1760.75 42.3968 Q1760.75 27.0843 1766.1 19.0636 Q1771.49 11.0023 1781.65 11.0023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip552)\" d=\"\n",
"M203.251 1140.04 L203.251 1140.04 L242.56 1140.04 L242.56 1140.04 L203.251 1140.04 L203.251 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 203.251,1140.04 203.251,1140.04 242.56,1140.04 203.251,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M242.56 1140.04 L242.56 1140.04 L281.868 1140.04 L281.868 1140.04 L242.56 1140.04 L242.56 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 242.56,1140.04 242.56,1140.04 281.868,1140.04 242.56,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M281.868 1140.04 L281.868 1140.04 L321.176 1140.04 L321.176 1140.04 L281.868 1140.04 L281.868 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 281.868,1140.04 281.868,1140.04 321.176,1140.04 281.868,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M321.176 1140.04 L321.176 1140.04 L360.485 1140.04 L360.485 1140.04 L321.176 1140.04 L321.176 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 321.176,1140.04 321.176,1140.04 360.485,1140.04 321.176,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M360.485 1140.04 L360.485 1140.04 L399.793 1140.04 L399.793 1140.04 L360.485 1140.04 L360.485 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 360.485,1140.04 360.485,1140.04 399.793,1140.04 360.485,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M399.793 1140.04 L399.793 1140.04 L439.101 1140.04 L439.101 1140.04 L399.793 1140.04 L399.793 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 399.793,1140.04 399.793,1140.04 439.101,1140.04 399.793,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M439.101 1140.04 L439.101 1140.04 L478.41 1140.04 L478.41 1140.04 L439.101 1140.04 L439.101 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 439.101,1140.04 439.101,1140.04 478.41,1140.04 439.101,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M478.41 1140.04 L478.41 1140.04 L517.718 1140.04 L517.718 1140.04 L478.41 1140.04 L478.41 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 478.41,1140.04 478.41,1140.04 517.718,1140.04 478.41,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M517.718 1140.04 L517.718 1140.04 L557.026 1140.04 L557.026 1140.04 L517.718 1140.04 L517.718 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 517.718,1140.04 517.718,1140.04 557.026,1140.04 517.718,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M557.026 1140.04 L557.026 1140.04 L596.335 1140.04 L596.335 1140.04 L557.026 1140.04 L557.026 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 557.026,1140.04 557.026,1140.04 596.335,1140.04 557.026,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M596.335 1140.04 L596.335 1140.04 L635.643 1140.04 L635.643 1140.04 L596.335 1140.04 L596.335 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 596.335,1140.04 596.335,1140.04 635.643,1140.04 596.335,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M635.643 1140.04 L635.643 1140.04 L674.952 1140.04 L674.952 1140.04 L635.643 1140.04 L635.643 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 635.643,1140.04 635.643,1140.04 674.952,1140.04 635.643,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M674.952 1140.04 L674.952 1140.04 L714.26 1140.04 L714.26 1140.04 L674.952 1140.04 L674.952 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 674.952,1140.04 674.952,1140.04 714.26,1140.04 674.952,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M714.26 1139.71 L714.26 1140.04 L753.568 1140.04 L753.568 1139.71 L714.26 1139.71 L714.26 1139.71 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 714.26,1139.71 714.26,1140.04 753.568,1140.04 753.568,1139.71 714.26,1139.71 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M753.568 1140.04 L753.568 1140.04 L792.877 1140.04 L792.877 1140.04 L753.568 1140.04 L753.568 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 753.568,1140.04 753.568,1140.04 792.877,1140.04 753.568,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M792.877 1135.11 L792.877 1140.04 L832.185 1140.04 L832.185 1135.11 L792.877 1135.11 L792.877 1135.11 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 792.877,1135.11 792.877,1140.04 832.185,1140.04 832.185,1135.11 792.877,1135.11 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M832.185 1099.62 L832.185 1140.04 L871.493 1140.04 L871.493 1099.62 L832.185 1099.62 L832.185 1099.62 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 832.185,1099.62 832.185,1140.04 871.493,1140.04 871.493,1099.62 832.185,1099.62 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M871.493 970.153 L871.493 1140.04 L910.802 1140.04 L910.802 970.153 L871.493 970.153 L871.493 970.153 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 871.493,970.153 871.493,1140.04 910.802,1140.04 910.802,970.153 871.493,970.153 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M910.802 610.665 L910.802 1140.04 L950.11 1140.04 L950.11 610.665 L910.802 610.665 L910.802 610.665 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 910.802,610.665 910.802,1140.04 950.11,1140.04 950.11,610.665 910.802,610.665 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M950.11 242.962 L950.11 1140.04 L989.418 1140.04 L989.418 242.962 L950.11 242.962 L950.11 242.962 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 950.11,242.962 950.11,1140.04 989.418,1140.04 989.418,242.962 950.11,242.962 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M989.418 258.078 L989.418 1140.04 L1028.73 1140.04 L1028.73 258.078 L989.418 258.078 L989.418 258.078 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 989.418,258.078 989.418,1140.04 1028.73,1140.04 1028.73,258.078 989.418,258.078 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1028.73 597.85 L1028.73 1140.04 L1068.04 1140.04 L1068.04 597.85 L1028.73 597.85 L1028.73 597.85 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1028.73,597.85 1028.73,1140.04 1068.04,1140.04 1068.04,597.85 1028.73,597.85 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1068.04 959.638 L1068.04 1140.04 L1107.34 1140.04 L1107.34 959.638 L1068.04 959.638 L1068.04 959.638 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1068.04,959.638 1068.04,1140.04 1107.34,1140.04 1107.34,959.638 1068.04,959.638 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1107.34 1104.22 L1107.34 1140.04 L1146.65 1140.04 L1146.65 1104.22 L1107.34 1104.22 L1107.34 1104.22 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1107.34,1104.22 1107.34,1140.04 1146.65,1140.04 1146.65,1104.22 1107.34,1104.22 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1146.65 1137.08 L1146.65 1140.04 L1185.96 1140.04 L1185.96 1137.08 L1146.65 1137.08 L1146.65 1137.08 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1146.65,1137.08 1146.65,1140.04 1185.96,1140.04 1185.96,1137.08 1146.65,1137.08 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1185.96 1139.71 L1185.96 1140.04 L1225.27 1140.04 L1225.27 1139.71 L1185.96 1139.71 L1185.96 1139.71 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1185.96,1139.71 1185.96,1140.04 1225.27,1140.04 1225.27,1139.71 1185.96,1139.71 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1225.27 1139.71 L1225.27 1140.04 L1264.58 1140.04 L1264.58 1139.71 L1225.27 1139.71 L1225.27 1139.71 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1225.27,1139.71 1225.27,1140.04 1264.58,1140.04 1264.58,1139.71 1225.27,1139.71 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1264.58 1140.04 L1264.58 1140.04 L1303.89 1140.04 L1303.89 1140.04 L1264.58 1140.04 L1264.58 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1264.58,1140.04 1264.58,1140.04 1303.89,1140.04 1264.58,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1303.89 1140.04 L1303.89 1140.04 L1343.19 1140.04 L1343.19 1140.04 L1303.89 1140.04 L1303.89 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1303.89,1140.04 1303.89,1140.04 1343.19,1140.04 1303.89,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1343.19 1140.04 L1343.19 1140.04 L1382.5 1140.04 L1382.5 1140.04 L1343.19 1140.04 L1343.19 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1343.19,1140.04 1343.19,1140.04 1382.5,1140.04 1343.19,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1382.5 1140.04 L1382.5 1140.04 L1421.81 1140.04 L1421.81 1140.04 L1382.5 1140.04 L1382.5 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1382.5,1140.04 1382.5,1140.04 1421.81,1140.04 1382.5,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1421.81 1140.04 L1421.81 1140.04 L1461.12 1140.04 L1461.12 1140.04 L1421.81 1140.04 L1421.81 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1421.81,1140.04 1421.81,1140.04 1461.12,1140.04 1421.81,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1461.12 1140.04 L1461.12 1140.04 L1500.43 1140.04 L1500.43 1140.04 L1461.12 1140.04 L1461.12 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1461.12,1140.04 1461.12,1140.04 1500.43,1140.04 1461.12,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1500.43 1140.04 L1500.43 1140.04 L1539.74 1140.04 L1539.74 1140.04 L1500.43 1140.04 L1500.43 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1500.43,1140.04 1500.43,1140.04 1539.74,1140.04 1500.43,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1539.74 1140.04 L1539.74 1140.04 L1579.04 1140.04 L1579.04 1140.04 L1539.74 1140.04 L1539.74 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1539.74,1140.04 1539.74,1140.04 1579.04,1140.04 1539.74,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1579.04 1140.04 L1579.04 1140.04 L1618.35 1140.04 L1618.35 1140.04 L1579.04 1140.04 L1579.04 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1579.04,1140.04 1579.04,1140.04 1618.35,1140.04 1579.04,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1618.35 1140.04 L1618.35 1140.04 L1657.66 1140.04 L1657.66 1140.04 L1618.35 1140.04 L1618.35 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1618.35,1140.04 1618.35,1140.04 1657.66,1140.04 1618.35,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1657.66 1140.04 L1657.66 1140.04 L1696.97 1140.04 L1696.97 1140.04 L1657.66 1140.04 L1657.66 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1657.66,1140.04 1657.66,1140.04 1696.97,1140.04 1657.66,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1696.97 1140.04 L1696.97 1140.04 L1736.28 1140.04 L1736.28 1140.04 L1696.97 1140.04 L1696.97 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1696.97,1140.04 1696.97,1140.04 1736.28,1140.04 1696.97,1140.04 \n",
" \"/>\n",
"<path clip-path=\"url(#clip552)\" d=\"\n",
"M1736.28 1140.04 L1736.28 1140.04 L1775.59 1140.04 L1775.59 1140.04 L1736.28 1140.04 L1736.28 1140.04 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1736.28,1140.04 1736.28,1140.04 1775.59,1140.04 1736.28,1140.04 \n",
" \"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"222.905\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"262.214\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"301.522\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"340.83\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"380.139\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"419.447\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"458.756\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"498.064\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"537.372\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"576.681\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"615.989\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"655.297\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"694.606\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"733.914\" cy=\"1139.71\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"773.222\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"812.531\" cy=\"1135.11\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"851.839\" cy=\"1099.62\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"891.147\" cy=\"970.153\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"930.456\" cy=\"610.665\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"969.764\" cy=\"242.962\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1009.07\" cy=\"258.078\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1048.38\" cy=\"597.85\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1087.69\" cy=\"959.638\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1127\" cy=\"1104.22\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1166.31\" cy=\"1137.08\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1205.61\" cy=\"1139.71\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1244.92\" cy=\"1139.71\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1284.23\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1323.54\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1362.85\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1402.16\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1441.46\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1480.77\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1520.08\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1559.39\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1598.7\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1638.01\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1677.31\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1716.62\" cy=\"1140.04\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip552)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1755.93\" cy=\"1140.04\" r=\"2\"/>\n",
"<polyline clip-path=\"url(#clip552)\" style=\"stroke:#e26f46; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 156.081,1140.04 172.358,1140.04 322.857,1140.04 413.301,1140.04 489.77,1140.04 572.836,1140.04 649.417,1140.04 690.468,1140.04 731.519,1140.03 755.3,1140 \n",
" 779.08,1139.74 802.861,1138.38 826.642,1132.4 837.209,1125.97 847.776,1115.17 858.343,1097.84 868.909,1071.31 874.193,1053.66 879.476,1032.59 884.76,1007.74 \n",
" 890.043,978.805 895.326,945.545 900.61,907.815 905.893,865.591 911.177,818.996 920.443,727.692 929.709,626.849 938.975,521.153 948.241,416.837 952.874,367.442 \n",
" 957.507,321.149 962.14,278.893 966.773,241.561 971.406,209.966 976.039,184.813 980.673,166.678 985.306,155.98 990.357,153.081 995.408,159.398 1000.46,174.755 \n",
" 1005.51,198.727 1010.56,230.657 1015.61,269.693 1020.66,314.815 1025.72,364.89 1035.82,475.052 1045.92,590.529 1056.02,702.645 1066.13,804.684 1071.21,850.751 \n",
" 1076.29,892.844 1081.37,930.803 1086.45,964.604 1091.53,994.331 1096.61,1020.16 1101.7,1042.34 1106.78,1061.17 1116.94,1090.08 1127.1,1109.57 1137.26,1122.15 \n",
" 1147.43,1129.92 1169.9,1137.53 1192.37,1139.52 1214.84,1139.95 1237.32,1140.03 1280.08,1140.04 1322.84,1140.04 1411.77,1140.04 1486.63,1140.04 1578.02,1140.04 \n",
" 1663.93,1140.04 1801.57,1140.04 1822.76,1140.04 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"histogram(μi1,bins=0:0.1:4,normalize=true,legend=false,title=\"Histogram of 10000 averages with ρ=0\")\n",
"plot!(μi1->pdf(Normal(μ, s1), μi1))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Task 3\n",
"\n",
"Redo task 2, but now use `ρ=0.75` (the other parameters are unchanged)."
]
},
{
"cell_type": "code",
"execution_count": 97,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Average across the simulations: 1.989\n",
"\n",
"Std across the samples (with ρ=0.75) and in theory:\n",
"simulations theory\n",
" 0.534 0.206\n",
"\n"
]
}
],
"source": [
"M = 10_000\n",
"\n",
"(T,ρ2,σ,μ) = (500,0.75,3,2)\n",
"\n",
"μi2 = fill(NaN, M)\n",
"σi2 = fill(NaN, M)\n",
"\n",
"# Monte Carlo simulation\n",
"for i = 1:M\n",
" y = SimAR1(T, ρ2, σ, μ)\n",
" μi2[i] = mean(y)\n",
" σi2[i] = std(y)\n",
"end\n",
"\n",
"# Theoretical results\n",
"y2 = SimAR1(10_000,ρ2,σ,μ)\n",
"σy2 = std(y2)\n",
"s2 = σy2/sqrt(T)\n",
"\n",
"printmat(\"Average across the simulations:\", mean(μi2))\n",
"println(\"Std across the samples (with ρ=0.75) and in theory:\")\n",
"printmat([\"simulations\", std(μi2)], [\"theory\", s2])"
]
},
{
"cell_type": "code",
"execution_count": 98,
"metadata": {},
"outputs": [
{
"data": {
"image/png": "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",
"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=\"clip590\">\n <rect x=\"0\" y=\"0\" width=\"1920\" height=\"1280\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip590)\" d=\"\nM0 1280 L1920 1280 L1920 0 L0 0 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip591\">\n <rect x=\"384\" y=\"0\" width=\"1345\" height=\"1280\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip590)\" d=\"\nM151.312 1169.65 L1872.76 1169.65 L1872.76 123.472 L151.312 123.472 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip592\">\n <rect x=\"151\" y=\"123\" width=\"1722\" height=\"1047\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 245.995,1169.65 245.995,123.472 \n \"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 629.014,1169.65 629.014,123.472 \n \"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1012.03,1169.65 1012.03,123.472 \n \"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1395.05,1169.65 1395.05,123.472 \n \"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1778.07,1169.65 1778.07,123.472 \n \"/>\n<polyline clip-path=\"url(#clip590)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 151.312,1169.65 1872.76,1169.65 \n \"/>\n<polyline clip-path=\"url(#clip590)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 245.995,1169.65 245.995,1150.75 \n \"/>\n<polyline clip-path=\"url(#clip590)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 629.014,1169.65 629.014,1150.75 \n \"/>\n<polyline clip-path=\"url(#clip590)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1012.03,1169.65 1012.03,1150.75 \n \"/>\n<polyline clip-path=\"url(#clip590)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1395.05,1169.65 1395.05,1150.75 \n \"/>\n<polyline clip-path=\"url(#clip590)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1778.07,1169.65 1778.07,1150.75 \n \"/>\n<path clip-path=\"url(#clip590)\" d=\"M245.995 1196.73 Q242.384 1196.73 240.555 1200.29 Q238.749 1203.83 238.749 1210.96 Q238.749 1218.07 240.555 1221.63 Q242.384 1225.18 245.995 1225.18 Q249.629 1225.18 251.434 1221.63 Q253.263 1218.07 253.263 1210.96 Q253.263 1203.83 251.434 1200.29 Q249.629 1196.73 245.995 1196.73 M245.995 1193.02 Q251.805 1193.02 254.86 1197.63 Q257.939 1202.21 257.939 1210.96 Q257.939 1219.69 254.86 1224.3 Q251.805 1228.88 245.995 1228.88 Q240.184 1228.88 237.106 1224.3 Q234.05 1219.69 234.05 1210.96 Q234.05 1202.21 237.106 1197.63 Q240.184 1193.02 245.995 1193.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M619.396 1224.27 L627.035 1224.27 L627.035 1197.91 L618.725 1199.57 L618.725 1195.31 L626.989 1193.65 L631.665 1193.65 L631.665 1224.27 L639.304 1224.27 L639.304 1228.21 L619.396 1228.21 L619.396 1224.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M1006.69 1224.27 L1023.01 1224.27 L1023.01 1228.21 L1001.06 1228.21 L1001.06 1224.27 Q1003.72 1221.52 1008.31 1216.89 Q1012.91 1212.24 1014.09 1210.89 Q1016.34 1208.37 1017.22 1206.63 Q1018.12 1204.87 1018.12 1203.18 Q1018.12 1200.43 1016.18 1198.69 Q1014.26 1196.96 1011.15 1196.96 Q1008.96 1196.96 1006.5 1197.72 Q1004.07 1198.49 1001.29 1200.04 L1001.29 1195.31 Q1004.12 1194.18 1006.57 1193.6 Q1009.02 1193.02 1011.06 1193.02 Q1016.43 1193.02 1019.63 1195.71 Q1022.82 1198.39 1022.82 1202.88 Q1022.82 1205.01 1022.01 1206.93 Q1021.22 1208.83 1019.12 1211.43 Q1018.54 1212.1 1015.44 1215.31 Q1012.33 1218.51 1006.69 1224.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M1399.3 1209.57 Q1402.66 1210.29 1404.53 1212.56 Q1406.43 1214.83 1406.43 1218.16 Q1406.43 1223.28 1402.91 1226.08 Q1399.39 1228.88 1392.91 1228.88 Q1390.74 1228.88 1388.42 1228.44 Q1386.13 1228.02 1383.68 1227.17 L1383.68 1222.65 Q1385.62 1223.79 1387.94 1224.37 Q1390.25 1224.94 1392.77 1224.94 Q1397.17 1224.94 1399.46 1223.21 Q1401.78 1221.47 1401.78 1218.16 Q1401.78 1215.11 1399.63 1213.39 Q1397.5 1211.66 1393.68 1211.66 L1389.65 1211.66 L1389.65 1207.81 L1393.86 1207.81 Q1397.31 1207.81 1399.14 1206.45 Q1400.97 1205.06 1400.97 1202.47 Q1400.97 1199.81 1399.07 1198.39 Q1397.19 1196.96 1393.68 1196.96 Q1391.76 1196.96 1389.56 1197.37 Q1387.36 1197.79 1384.72 1198.67 L1384.72 1194.5 Q1387.38 1193.76 1389.69 1193.39 Q1392.03 1193.02 1394.09 1193.02 Q1399.42 1193.02 1402.52 1195.45 Q1405.62 1197.86 1405.62 1201.98 Q1405.62 1204.85 1403.98 1206.84 Q1402.33 1208.81 1399.3 1209.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M1781.08 1197.72 L1769.28 1216.17 L1781.08 1216.17 L1781.08 1197.72 M1779.86 1193.65 L1785.74 1193.65 L1785.74 1216.17 L1790.67 1216.17 L1790.67 1220.06 L1785.74 1220.06 L1785.74 1228.21 L1781.08 1228.21 L1781.08 1220.06 L1765.48 1220.06 L1765.48 1215.55 L1779.86 1193.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 151.312,1140.04 1872.76,1140.04 \n \"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 151.312,885.048 1872.76,885.048 \n \"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 151.312,630.056 1872.76,630.056 \n \"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 151.312,375.065 1872.76,375.065 \n \"/>\n<polyline clip-path=\"url(#clip590)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 151.312,1169.65 151.312,123.472 \n \"/>\n<polyline clip-path=\"url(#clip590)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 151.312,1140.04 170.21,1140.04 \n \"/>\n<polyline clip-path=\"url(#clip590)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 151.312,885.048 170.21,885.048 \n \"/>\n<polyline clip-path=\"url(#clip590)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 151.312,630.056 170.21,630.056 \n \"/>\n<polyline clip-path=\"url(#clip590)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 151.312,375.065 170.21,375.065 \n \"/>\n<path clip-path=\"url(#clip590)\" d=\"M65.3365 1125.84 Q61.7254 1125.84 59.8967 1129.4 Q58.0912 1132.94 58.0912 1140.07 Q58.0912 1147.18 59.8967 1150.75 Q61.7254 1154.29 65.3365 1154.29 Q68.9707 1154.29 70.7763 1150.75 Q72.605 1147.18 72.605 1140.07 Q72.605 1132.94 70.7763 1129.4 Q68.9707 1125.84 65.3365 1125.84 M65.3365 1122.13 Q71.1467 1122.13 74.2022 1126.74 Q77.2809 1131.32 77.2809 1140.07 Q77.2809 1148.8 74.2022 1153.41 Q71.1467 1157.99 65.3365 1157.99 Q59.5264 1157.99 56.4477 1153.41 Q53.3921 1148.8 53.3921 1140.07 Q53.3921 1131.32 56.4477 1126.74 Q59.5264 1122.13 65.3365 1122.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M85.4984 1151.44 L90.3827 1151.44 L90.3827 1157.32 L85.4984 1157.32 L85.4984 1151.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M110.568 1125.84 Q106.957 1125.84 105.128 1129.4 Q103.322 1132.94 103.322 1140.07 Q103.322 1147.18 105.128 1150.75 Q106.957 1154.29 110.568 1154.29 Q114.202 1154.29 116.008 1150.75 Q117.836 1147.18 117.836 1140.07 Q117.836 1132.94 116.008 1129.4 Q114.202 1125.84 110.568 1125.84 M110.568 1122.13 Q116.378 1122.13 119.433 1126.74 Q122.512 1131.32 122.512 1140.07 Q122.512 1148.8 119.433 1153.41 Q116.378 1157.99 110.568 1157.99 Q104.758 1157.99 101.679 1153.41 Q98.6234 1148.8 98.6234 1140.07 Q98.6234 1131.32 101.679 1126.74 Q104.758 1122.13 110.568 1122.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M66.3319 870.846 Q62.7208 870.846 60.8921 874.411 Q59.0865 877.953 59.0865 885.082 Q59.0865 892.189 60.8921 895.754 Q62.7208 899.295 66.3319 899.295 Q69.9661 899.295 71.7717 895.754 Q73.6004 892.189 73.6004 885.082 Q73.6004 877.953 71.7717 874.411 Q69.9661 870.846 66.3319 870.846 M66.3319 867.143 Q72.142 867.143 75.1976 871.749 Q78.2763 876.332 78.2763 885.082 Q78.2763 893.809 75.1976 898.416 Q72.142 902.999 66.3319 902.999 Q60.5217 902.999 57.443 898.416 Q54.3875 893.809 54.3875 885.082 Q54.3875 876.332 57.443 871.749 Q60.5217 867.143 66.3319 867.143 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M86.4938 896.448 L91.378 896.448 L91.378 902.328 L86.4938 902.328 L86.4938 896.448 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M101.609 867.768 L119.966 867.768 L119.966 871.703 L105.892 871.703 L105.892 880.175 Q106.91 879.828 107.929 879.666 Q108.947 879.481 109.966 879.481 Q115.753 879.481 119.133 882.652 Q122.512 885.823 122.512 891.24 Q122.512 896.818 119.04 899.92 Q115.568 902.999 109.248 902.999 Q107.072 902.999 104.804 902.629 Q102.559 902.258 100.151 901.517 L100.151 896.818 Q102.234 897.953 104.457 898.508 Q106.679 899.064 109.156 899.064 Q113.16 899.064 115.498 896.957 Q117.836 894.851 117.836 891.24 Q117.836 887.629 115.498 885.522 Q113.16 883.416 109.156 883.416 Q107.281 883.416 105.406 883.832 Q103.554 884.249 101.609 885.129 L101.609 867.768 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M56.1467 643.401 L63.7856 643.401 L63.7856 617.035 L55.4754 618.702 L55.4754 614.443 L63.7393 612.776 L68.4152 612.776 L68.4152 643.401 L76.054 643.401 L76.054 647.336 L56.1467 647.336 L56.1467 643.401 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M85.4984 641.457 L90.3827 641.457 L90.3827 647.336 L85.4984 647.336 L85.4984 641.457 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M110.568 615.855 Q106.957 615.855 105.128 619.42 Q103.322 622.961 103.322 630.091 Q103.322 637.197 105.128 640.762 Q106.957 644.304 110.568 644.304 Q114.202 644.304 116.008 640.762 Q117.836 637.197 117.836 630.091 Q117.836 622.961 116.008 619.42 Q114.202 615.855 110.568 615.855 M110.568 612.151 Q116.378 612.151 119.433 616.758 Q122.512 621.341 122.512 630.091 Q122.512 638.818 119.433 643.424 Q116.378 648.007 110.568 648.007 Q104.758 648.007 101.679 643.424 Q98.6234 638.818 98.6234 630.091 Q98.6234 621.341 101.679 616.758 Q104.758 612.151 110.568 612.151 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M57.1421 388.41 L64.781 388.41 L64.781 362.044 L56.4708 363.711 L56.4708 359.451 L64.7347 357.785 L69.4106 357.785 L69.4106 388.41 L77.0494 388.41 L77.0494 392.345 L57.1421 392.345 L57.1421 388.41 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M86.4938 386.465 L91.378 386.465 L91.378 392.345 L86.4938 392.345 L86.4938 386.465 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M101.609 357.785 L119.966 357.785 L119.966 361.72 L105.892 361.72 L105.892 370.192 Q106.91 369.845 107.929 369.683 Q108.947 369.498 109.966 369.498 Q115.753 369.498 119.133 372.669 Q122.512 375.84 122.512 381.257 Q122.512 386.836 119.04 389.937 Q115.568 393.016 109.248 393.016 Q107.072 393.016 104.804 392.646 Q102.559 392.275 100.151 391.535 L100.151 386.836 Q102.234 387.97 104.457 388.525 Q106.679 389.081 109.156 389.081 Q113.16 389.081 115.498 386.974 Q117.836 384.868 117.836 381.257 Q117.836 377.646 115.498 375.539 Q113.16 373.433 109.156 373.433 Q107.281 373.433 105.406 373.849 Q103.554 374.266 101.609 375.146 L101.609 357.785 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M133.798 12.096 L141.981 12.096 L141.981 36.8875 L171.714 36.8875 L171.714 12.096 L179.897 12.096 L179.897 72.576 L171.714 72.576 L171.714 43.7741 L141.981 43.7741 L141.981 72.576 L133.798 72.576 L133.798 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M195.858 27.2059 L203.311 27.2059 L203.311 72.576 L195.858 72.576 L195.858 27.2059 M195.858 9.54393 L203.311 9.54393 L203.311 18.9825 L195.858 18.9825 L195.858 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M247.831 28.5427 L247.831 35.5912 Q244.671 33.9709 241.268 33.1607 Q237.866 32.3505 234.22 32.3505 Q228.67 32.3505 225.875 34.0519 Q223.12 35.7533 223.12 39.156 Q223.12 41.7486 225.105 43.2475 Q227.09 44.7058 233.086 46.0426 L235.638 46.6097 Q243.577 48.3111 246.899 51.4303 Q250.261 54.509 250.261 60.0587 Q250.261 66.3781 245.238 70.0644 Q240.256 73.7508 231.506 73.7508 Q227.86 73.7508 223.89 73.0216 Q219.961 72.3329 215.586 70.9151 L215.586 63.2184 Q219.718 65.3654 223.728 66.4591 Q227.738 67.5124 231.668 67.5124 Q236.934 67.5124 239.77 65.73 Q242.605 63.9071 242.605 60.6258 Q242.605 57.5877 240.539 55.9673 Q238.514 54.3469 231.587 52.8481 L228.994 52.2405 Q222.067 50.7821 218.988 47.7845 Q215.91 44.7463 215.91 39.4801 Q215.91 33.0797 220.447 29.5959 Q224.984 26.1121 233.329 26.1121 Q237.461 26.1121 241.106 26.7198 Q244.752 27.3274 247.831 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M269.503 14.324 L269.503 27.2059 L284.856 27.2059 L284.856 32.9987 L269.503 32.9987 L269.503 57.6282 Q269.503 63.1779 271.002 64.7578 Q272.541 66.3376 277.2 66.3376 L284.856 66.3376 L284.856 72.576 L277.2 72.576 Q268.572 72.576 265.29 69.3758 Q262.009 66.1351 262.009 57.6282 L262.009 32.9987 L256.54 32.9987 L256.54 27.2059 L262.009 27.2059 L262.009 14.324 L269.503 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M312.24 32.4315 Q306.245 32.4315 302.761 37.1306 Q299.277 41.7891 299.277 49.9314 Q299.277 58.0738 302.721 62.7728 Q306.204 67.4314 312.24 67.4314 Q318.195 67.4314 321.679 62.7323 Q325.163 58.0333 325.163 49.9314 Q325.163 41.8701 321.679 37.1711 Q318.195 32.4315 312.24 32.4315 M312.24 26.1121 Q321.962 26.1121 327.512 32.4315 Q333.062 38.7509 333.062 49.9314 Q333.062 61.0714 327.512 67.4314 Q321.962 73.7508 312.24 73.7508 Q302.478 73.7508 296.928 67.4314 Q291.419 61.0714 291.419 49.9314 Q291.419 38.7509 296.928 32.4315 Q302.478 26.1121 312.24 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M375.272 49.3643 Q375.272 41.2625 371.91 36.8065 Q368.588 32.3505 362.553 32.3505 Q356.557 32.3505 353.195 36.8065 Q349.873 41.2625 349.873 49.3643 Q349.873 57.4256 353.195 61.8816 Q356.557 66.3376 362.553 66.3376 Q368.588 66.3376 371.91 61.8816 Q375.272 57.4256 375.272 49.3643 M382.726 66.9452 Q382.726 78.5308 377.581 84.1616 Q372.437 89.8329 361.823 89.8329 Q357.894 89.8329 354.41 89.2252 Q350.926 88.6581 347.645 87.4428 L347.645 80.1917 Q350.926 81.9741 354.127 82.8248 Q357.327 83.6755 360.649 83.6755 Q367.981 83.6755 371.627 79.8271 Q375.272 76.0193 375.272 68.282 L375.272 64.5957 Q372.963 68.6061 369.358 70.5911 Q365.753 72.576 360.73 72.576 Q352.385 72.576 347.281 66.2161 Q342.176 59.8562 342.176 49.3643 Q342.176 38.832 347.281 32.472 Q352.385 26.1121 360.73 26.1121 Q365.753 26.1121 369.358 28.0971 Q372.963 30.082 375.272 34.0924 L375.272 27.2059 L382.726 27.2059 L382.726 66.9452 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M424.369 34.1734 Q423.114 33.4443 421.615 33.1202 Q420.156 32.7556 418.374 32.7556 Q412.055 32.7556 408.652 36.8875 Q405.29 40.9789 405.29 48.6757 L405.29 72.576 L397.795 72.576 L397.795 27.2059 L405.29 27.2059 L405.29 34.2544 Q407.639 30.1225 411.406 28.1376 Q415.174 26.1121 420.561 26.1121 Q421.331 26.1121 422.263 26.2337 Q423.195 26.3147 424.329 26.5172 L424.369 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M452.807 49.7694 Q443.773 49.7694 440.289 51.8354 Q436.806 53.9013 436.806 58.8839 Q436.806 62.8538 439.398 65.2034 Q442.031 67.5124 446.528 67.5124 Q452.726 67.5124 456.453 63.1374 Q460.22 58.7219 460.22 51.4303 L460.22 49.7694 L452.807 49.7694 M467.674 46.6907 L467.674 72.576 L460.22 72.576 L460.22 65.6895 Q457.668 69.8214 453.86 71.8063 Q450.052 73.7508 444.543 73.7508 Q437.575 73.7508 433.443 69.8619 Q429.352 65.9325 429.352 59.3701 Q429.352 51.7138 434.456 47.825 Q439.601 43.9361 449.769 43.9361 L460.22 43.9361 L460.22 43.2069 Q460.22 38.0623 456.817 35.2672 Q453.455 32.4315 447.338 32.4315 Q443.449 32.4315 439.763 33.3632 Q436.076 34.295 432.674 36.1584 L432.674 29.2718 Q436.765 27.692 440.613 26.9223 Q444.462 26.1121 448.108 26.1121 Q457.951 26.1121 462.812 31.2163 Q467.674 36.3204 467.674 46.6907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M518.35 35.9153 Q521.145 30.8922 525.034 28.5022 Q528.923 26.1121 534.189 26.1121 Q541.278 26.1121 545.127 31.0947 Q548.975 36.0368 548.975 45.1919 L548.975 72.576 L541.481 72.576 L541.481 45.4349 Q541.481 38.913 539.172 35.7533 Q536.863 32.5936 532.123 32.5936 Q526.331 32.5936 522.968 36.4419 Q519.606 40.2903 519.606 46.9338 L519.606 72.576 L512.112 72.576 L512.112 45.4349 Q512.112 38.8725 509.803 35.7533 Q507.494 32.5936 502.673 32.5936 Q496.962 32.5936 493.599 36.4824 Q490.237 40.3308 490.237 46.9338 L490.237 72.576 L482.743 72.576 L482.743 27.2059 L490.237 27.2059 L490.237 34.2544 Q492.789 30.082 496.354 28.0971 Q499.919 26.1121 504.82 26.1121 Q509.762 26.1121 513.206 28.6237 Q516.689 31.1352 518.35 35.9153 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M607.794 32.4315 Q601.799 32.4315 598.315 37.1306 Q594.831 41.7891 594.831 49.9314 Q594.831 58.0738 598.275 62.7728 Q601.758 67.4314 607.794 67.4314 Q613.749 67.4314 617.233 62.7323 Q620.717 58.0333 620.717 49.9314 Q620.717 41.8701 617.233 37.1711 Q613.749 32.4315 607.794 32.4315 M607.794 26.1121 Q617.516 26.1121 623.066 32.4315 Q628.616 38.7509 628.616 49.9314 Q628.616 61.0714 623.066 67.4314 Q617.516 73.7508 607.794 73.7508 Q598.032 73.7508 592.482 67.4314 Q586.973 61.0714 586.973 49.9314 Q586.973 38.7509 592.482 32.4315 Q598.032 26.1121 607.794 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M663.94 9.54393 L663.94 15.7418 L656.81 15.7418 Q652.8 15.7418 651.22 17.3622 Q649.681 18.9825 649.681 23.1955 L649.681 27.2059 L661.955 27.2059 L661.955 32.9987 L649.681 32.9987 L649.681 72.576 L642.186 72.576 L642.186 32.9987 L635.057 32.9987 L635.057 27.2059 L642.186 27.2059 L642.186 24.0462 Q642.186 16.471 645.711 13.0277 Q649.235 9.54393 656.891 9.54393 L663.94 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M699.021 65.6895 L712.389 65.6895 L712.389 19.5497 L697.846 22.4663 L697.846 15.0127 L712.308 12.096 L720.49 12.096 L720.49 65.6895 L733.858 65.6895 L733.858 72.576 L699.021 72.576 L699.021 65.6895 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M767.886 17.4837 Q761.567 17.4837 758.366 23.7221 Q755.207 29.92 755.207 42.3968 Q755.207 54.833 758.366 61.0714 Q761.567 67.2693 767.886 67.2693 Q774.246 67.2693 777.406 61.0714 Q780.606 54.833 780.606 42.3968 Q780.606 29.92 777.406 23.7221 Q774.246 17.4837 767.886 17.4837 M767.886 11.0023 Q778.054 11.0023 783.401 19.0636 Q788.789 27.0843 788.789 42.3968 Q788.789 57.6687 783.401 65.73 Q778.054 73.7508 767.886 73.7508 Q757.718 73.7508 752.331 65.73 Q746.983 57.6687 746.983 42.3968 Q746.983 27.0843 752.331 19.0636 Q757.718 11.0023 767.886 11.0023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M820.669 17.4837 Q814.35 17.4837 811.15 23.7221 Q807.99 29.92 807.99 42.3968 Q807.99 54.833 811.15 61.0714 Q814.35 67.2693 820.669 67.2693 Q827.029 67.2693 830.189 61.0714 Q833.389 54.833 833.389 42.3968 Q833.389 29.92 830.189 23.7221 Q827.029 17.4837 820.669 17.4837 M820.669 11.0023 Q830.837 11.0023 836.184 19.0636 Q841.572 27.0843 841.572 42.3968 Q841.572 57.6687 836.184 65.73 Q830.837 73.7508 820.669 73.7508 Q810.502 73.7508 805.114 65.73 Q799.767 57.6687 799.767 42.3968 Q799.767 27.0843 805.114 19.0636 Q810.502 11.0023 820.669 11.0023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M873.453 17.4837 Q867.133 17.4837 863.933 23.7221 Q860.773 29.92 860.773 42.3968 Q860.773 54.833 863.933 61.0714 Q867.133 67.2693 873.453 67.2693 Q879.813 67.2693 882.972 61.0714 Q886.172 54.833 886.172 42.3968 Q886.172 29.92 882.972 23.7221 Q879.813 17.4837 873.453 17.4837 M873.453 11.0023 Q883.62 11.0023 888.968 19.0636 Q894.355 27.0843 894.355 42.3968 Q894.355 57.6687 888.968 65.73 Q883.62 73.7508 873.453 73.7508 Q863.285 73.7508 857.897 65.73 Q852.55 57.6687 852.55 42.3968 Q852.55 27.0843 857.897 19.0636 Q863.285 11.0023 873.453 11.0023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M926.236 17.4837 Q919.916 17.4837 916.716 23.7221 Q913.557 29.92 913.557 42.3968 Q913.557 54.833 916.716 61.0714 Q919.916 67.2693 926.236 67.2693 Q932.596 67.2693 935.755 61.0714 Q938.956 54.833 938.956 42.3968 Q938.956 29.92 935.755 23.7221 Q932.596 17.4837 926.236 17.4837 M926.236 11.0023 Q936.404 11.0023 941.751 19.0636 Q947.139 27.0843 947.139 42.3968 Q947.139 57.6687 941.751 65.73 Q936.404 73.7508 926.236 73.7508 Q916.068 73.7508 910.68 65.73 Q905.333 57.6687 905.333 42.3968 Q905.333 27.0843 910.68 19.0636 Q916.068 11.0023 926.236 11.0023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M1007.46 49.7694 Q998.423 49.7694 994.939 51.8354 Q991.455 53.9013 991.455 58.8839 Q991.455 62.8538 994.048 65.2034 Q996.681 67.5124 1001.18 67.5124 Q1007.38 67.5124 1011.1 63.1374 Q1014.87 58.7219 1014.87 51.4303 L1014.87 49.7694 L1007.46 49.7694 M1022.32 46.6907 L1022.32 72.576 L1014.87 72.576 L1014.87 65.6895 Q1012.32 69.8214 1008.51 71.8063 Q1004.7 73.7508 999.193 73.7508 Q992.225 73.7508 988.093 69.8619 Q984.002 65.9325 984.002 59.3701 Q984.002 51.7138 989.106 47.825 Q994.251 43.9361 1004.42 43.9361 L1014.87 43.9361 L1014.87 43.2069 Q1014.87 38.0623 1011.47 35.2672 Q1008.1 32.4315 1001.99 32.4315 Q998.099 32.4315 994.413 33.3632 Q990.726 34.295 987.324 36.1584 L987.324 29.2718 Q991.415 27.692 995.263 26.9223 Q999.112 26.1121 1002.76 26.1121 Q1012.6 26.1121 1017.46 31.2163 Q1022.32 36.3204 1022.32 46.6907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M1032.33 27.2059 L1040.23 27.2059 L1054.41 65.2844 L1068.58 27.2059 L1076.48 27.2059 L1059.47 72.576 L1049.34 72.576 L1032.33 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M1125.58 48.0275 L1125.58 51.6733 L1091.31 51.6733 Q1091.8 59.3701 1095.93 63.421 Q1100.1 67.4314 1107.51 67.4314 Q1111.81 67.4314 1115.82 66.3781 Q1119.87 65.3249 1123.84 63.2184 L1123.84 70.267 Q1119.83 71.9684 1115.62 72.8596 Q1111.4 73.7508 1107.07 73.7508 Q1096.21 73.7508 1089.85 67.4314 Q1083.53 61.1119 1083.53 50.3365 Q1083.53 39.1965 1089.53 32.6746 Q1095.56 26.1121 1105.77 26.1121 Q1114.93 26.1121 1120.23 32.0264 Q1125.58 37.9003 1125.58 48.0275 M1118.13 45.84 Q1118.05 39.7232 1114.68 36.0774 Q1111.36 32.4315 1105.85 32.4315 Q1099.61 32.4315 1095.85 35.9558 Q1092.12 39.4801 1091.55 45.8805 L1118.13 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M1164.1 34.1734 Q1162.85 33.4443 1161.35 33.1202 Q1159.89 32.7556 1158.11 32.7556 Q1151.79 32.7556 1148.39 36.8875 Q1145.03 40.9789 1145.03 48.6757 L1145.03 72.576 L1137.53 72.576 L1137.53 27.2059 L1145.03 27.2059 L1145.03 34.2544 Q1147.37 30.1225 1151.14 28.1376 Q1154.91 26.1121 1160.3 26.1121 Q1161.07 26.1121 1162 26.2337 Q1162.93 26.3147 1164.06 26.5172 L1164.1 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M1192.54 49.7694 Q1183.51 49.7694 1180.03 51.8354 Q1176.54 53.9013 1176.54 58.8839 Q1176.54 62.8538 1179.13 65.2034 Q1181.77 67.5124 1186.26 67.5124 Q1192.46 67.5124 1196.19 63.1374 Q1199.96 58.7219 1199.96 51.4303 L1199.96 49.7694 L1192.54 49.7694 M1207.41 46.6907 L1207.41 72.576 L1199.96 72.576 L1199.96 65.6895 Q1197.4 69.8214 1193.6 71.8063 Q1189.79 73.7508 1184.28 73.7508 Q1177.31 73.7508 1173.18 69.8619 Q1169.09 65.9325 1169.09 59.3701 Q1169.09 51.7138 1174.19 47.825 Q1179.34 43.9361 1189.5 43.9361 L1199.96 43.9361 L1199.96 43.2069 Q1199.96 38.0623 1196.55 35.2672 Q1193.19 32.4315 1187.07 32.4315 Q1183.18 32.4315 1179.5 33.3632 Q1175.81 34.295 1172.41 36.1584 L1172.41 29.2718 Q1176.5 27.692 1180.35 26.9223 Q1184.2 26.1121 1187.84 26.1121 Q1197.69 26.1121 1202.55 31.2163 Q1207.41 36.3204 1207.41 46.6907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M1252.62 49.3643 Q1252.62 41.2625 1249.25 36.8065 Q1245.93 32.3505 1239.9 32.3505 Q1233.9 32.3505 1230.54 36.8065 Q1227.22 41.2625 1227.22 49.3643 Q1227.22 57.4256 1230.54 61.8816 Q1233.9 66.3376 1239.9 66.3376 Q1245.93 66.3376 1249.25 61.8816 Q1252.62 57.4256 1252.62 49.3643 M1260.07 66.9452 Q1260.07 78.5308 1254.93 84.1616 Q1249.78 89.8329 1239.17 89.8329 Q1235.24 89.8329 1231.76 89.2252 Q1228.27 88.6581 1224.99 87.4428 L1224.99 80.1917 Q1228.27 81.9741 1231.47 82.8248 Q1234.67 83.6755 1237.99 83.6755 Q1245.33 83.6755 1248.97 79.8271 Q1252.62 76.0193 1252.62 68.282 L1252.62 64.5957 Q1250.31 68.6061 1246.7 70.5911 Q1243.1 72.576 1238.07 72.576 Q1229.73 72.576 1224.63 66.2161 Q1219.52 59.8562 1219.52 49.3643 Q1219.52 38.832 1224.63 32.472 Q1229.73 26.1121 1238.07 26.1121 Q1243.1 26.1121 1246.7 28.0971 Q1250.31 30.082 1252.62 34.0924 L1252.62 27.2059 L1260.07 27.2059 L1260.07 66.9452 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M1314.23 48.0275 L1314.23 51.6733 L1279.96 51.6733 Q1280.45 59.3701 1284.58 63.421 Q1288.75 67.4314 1296.16 67.4314 Q1300.46 67.4314 1304.47 66.3781 Q1308.52 65.3249 1312.49 63.2184 L1312.49 70.267 Q1308.48 71.9684 1304.27 72.8596 Q1300.05 73.7508 1295.72 73.7508 Q1284.86 73.7508 1278.5 67.4314 Q1272.18 61.1119 1272.18 50.3365 Q1272.18 39.1965 1278.18 32.6746 Q1284.21 26.1121 1294.42 26.1121 Q1303.58 26.1121 1308.88 32.0264 Q1314.23 37.9003 1314.23 48.0275 M1306.78 45.84 Q1306.7 39.7232 1303.33 36.0774 Q1300.01 32.4315 1294.5 32.4315 Q1288.27 32.4315 1284.5 35.9558 Q1280.77 39.4801 1280.2 45.8805 L1306.78 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M1355.39 28.5427 L1355.39 35.5912 Q1352.23 33.9709 1348.83 33.1607 Q1345.42 32.3505 1341.78 32.3505 Q1336.23 32.3505 1333.43 34.0519 Q1330.68 35.7533 1330.68 39.156 Q1330.68 41.7486 1332.66 43.2475 Q1334.65 44.7058 1340.64 46.0426 L1343.2 46.6097 Q1351.14 48.3111 1354.46 51.4303 Q1357.82 54.509 1357.82 60.0587 Q1357.82 66.3781 1352.8 70.0644 Q1347.81 73.7508 1339.06 73.7508 Q1335.42 73.7508 1331.45 73.0216 Q1327.52 72.3329 1323.14 70.9151 L1323.14 63.2184 Q1327.28 65.3654 1331.29 66.4591 Q1335.3 67.5124 1339.23 67.5124 Q1344.49 67.5124 1347.33 65.73 Q1350.16 63.9071 1350.16 60.6258 Q1350.16 57.5877 1348.1 55.9673 Q1346.07 54.3469 1339.14 52.8481 L1336.55 52.2405 Q1329.62 50.7821 1326.55 47.7845 Q1323.47 44.7463 1323.47 39.4801 Q1323.47 33.0797 1328 29.5959 Q1332.54 26.1121 1340.89 26.1121 Q1345.02 26.1121 1348.66 26.7198 Q1352.31 27.3274 1355.39 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M1391.73 27.2059 L1399.18 27.2059 L1408.5 62.6108 L1417.77 27.2059 L1426.56 27.2059 L1435.88 62.6108 L1445.16 27.2059 L1452.61 27.2059 L1440.74 72.576 L1431.95 72.576 L1422.19 35.3887 L1412.38 72.576 L1403.59 72.576 L1391.73 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M1463.91 27.2059 L1471.37 27.2059 L1471.37 72.576 L1463.91 72.576 L1463.91 27.2059 M1463.91 9.54393 L1471.37 9.54393 L1471.37 18.9825 L1463.91 18.9825 L1463.91 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M1494.33 14.324 L1494.33 27.2059 L1509.69 27.2059 L1509.69 32.9987 L1494.33 32.9987 L1494.33 57.6282 Q1494.33 63.1779 1495.83 64.7578 Q1497.37 66.3376 1502.03 66.3376 L1509.69 66.3376 L1509.69 72.576 L1502.03 72.576 Q1493.4 72.576 1490.12 69.3758 Q1486.84 66.1351 1486.84 57.6282 L1486.84 32.9987 L1481.37 32.9987 L1481.37 27.2059 L1486.84 27.2059 L1486.84 14.324 L1494.33 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M1557.2 45.1919 L1557.2 72.576 L1549.75 72.576 L1549.75 45.4349 Q1549.75 38.994 1547.24 35.7938 Q1544.73 32.5936 1539.7 32.5936 Q1533.67 32.5936 1530.19 36.4419 Q1526.7 40.2903 1526.7 46.9338 L1526.7 72.576 L1519.21 72.576 L1519.21 9.54393 L1526.7 9.54393 L1526.7 34.2544 Q1529.37 30.163 1532.98 28.1376 Q1536.63 26.1121 1541.37 26.1121 Q1549.18 26.1121 1553.19 30.9732 Q1557.2 35.7938 1557.2 45.1919 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M1601.81 35.3077 Q1604.28 31.1758 1610.39 27.5299 Q1612.78 26.1121 1620.16 26.1121 Q1628.42 26.1121 1633.56 32.6746 Q1638.75 39.2371 1638.75 49.9314 Q1638.75 60.6258 1633.56 67.1883 Q1628.42 73.7508 1620.16 73.7508 Q1615.17 73.7508 1611.57 71.8063 Q1608 69.8214 1605.65 65.7705 L1605.65 89.8329 L1598.16 89.8329 L1598.16 50.3365 Q1598.16 40.9789 1601.81 35.3077 M1631.01 49.9314 Q1631.01 41.7081 1627.61 37.0496 Q1624.25 32.3505 1618.33 32.3505 Q1612.42 32.3505 1609.02 37.0496 Q1605.65 41.7081 1605.65 49.9314 Q1605.65 58.1548 1609.02 62.8538 Q1612.42 67.5124 1618.33 67.5124 Q1624.25 67.5124 1627.61 62.8538 Q1631.01 58.1548 1631.01 49.9314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M1652.08 34.9026 L1704.01 34.9026 L1704.01 41.7081 L1652.08 41.7081 L1652.08 34.9026 M1652.08 51.4303 L1704.01 51.4303 L1704.01 58.3168 L1652.08 58.3168 L1652.08 51.4303 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M1739.17 17.4837 Q1732.85 17.4837 1729.65 23.7221 Q1726.49 29.92 1726.49 42.3968 Q1726.49 54.833 1729.65 61.0714 Q1732.85 67.2693 1739.17 67.2693 Q1745.53 67.2693 1748.69 61.0714 Q1751.89 54.833 1751.89 42.3968 Q1751.89 29.92 1748.69 23.7221 Q1745.53 17.4837 1739.17 17.4837 M1739.17 11.0023 Q1749.34 11.0023 1754.69 19.0636 Q1760.07 27.0843 1760.07 42.3968 Q1760.07 57.6687 1754.69 65.73 Q1749.34 73.7508 1739.17 73.7508 Q1729 73.7508 1723.62 65.73 Q1718.27 57.6687 1718.27 42.3968 Q1718.27 27.0843 1723.62 19.0636 Q1729 11.0023 1739.17 11.0023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M1774.45 62.2867 L1783 62.2867 L1783 72.576 L1774.45 72.576 L1774.45 62.2867 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M1798.76 12.096 L1837.65 12.096 L1837.65 15.5798 L1815.69 72.576 L1807.15 72.576 L1827.81 18.9825 L1798.76 18.9825 L1798.76 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip590)\" d=\"M1853.69 12.096 L1885.81 12.096 L1885.81 18.9825 L1861.18 18.9825 L1861.18 33.8088 Q1862.97 33.2012 1864.75 32.9176 Q1866.53 32.5936 1868.31 32.5936 Q1878.44 32.5936 1884.36 38.1433 Q1890.27 43.6931 1890.27 53.1722 Q1890.27 62.9348 1884.19 68.3631 Q1878.12 73.7508 1867.06 73.7508 Q1863.25 73.7508 1859.28 73.1026 Q1855.35 72.4545 1851.14 71.1582 L1851.14 62.9348 Q1854.78 64.9198 1858.67 65.892 Q1862.56 66.8642 1866.9 66.8642 Q1873.9 66.8642 1878 63.1779 Q1882.09 59.4916 1882.09 53.1722 Q1882.09 46.8528 1878 43.1664 Q1873.9 39.4801 1866.9 39.4801 Q1863.62 39.4801 1860.33 40.2093 Q1857.09 40.9384 1853.69 42.4778 L1853.69 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip592)\" d=\"\nM245.995 1139.53 L245.995 1140.04 L284.297 1140.04 L284.297 1139.53 L245.995 1139.53 L245.995 1139.53 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 245.995,1139.53 245.995,1140.04 284.297,1140.04 284.297,1139.53 245.995,1139.53 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM284.297 1138.51 L284.297 1140.04 L322.599 1140.04 L322.599 1138.51 L284.297 1138.51 L284.297 1138.51 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 284.297,1138.51 284.297,1140.04 322.599,1140.04 322.599,1138.51 284.297,1138.51 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM322.599 1137.49 L322.599 1140.04 L360.901 1140.04 L360.901 1137.49 L322.599 1137.49 L322.599 1137.49 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 322.599,1137.49 322.599,1140.04 360.901,1140.04 360.901,1137.49 322.599,1137.49 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM360.901 1136.98 L360.901 1140.04 L399.202 1140.04 L399.202 1136.98 L360.901 1136.98 L360.901 1136.98 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 360.901,1136.98 360.901,1140.04 399.202,1140.04 399.202,1136.98 360.901,1136.98 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM399.202 1133.41 L399.202 1140.04 L437.504 1140.04 L437.504 1133.41 L399.202 1133.41 L399.202 1133.41 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 399.202,1133.41 399.202,1140.04 437.504,1140.04 437.504,1133.41 399.202,1133.41 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM437.504 1129.33 L437.504 1140.04 L475.806 1140.04 L475.806 1129.33 L437.504 1129.33 L437.504 1129.33 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 437.504,1129.33 437.504,1140.04 475.806,1140.04 475.806,1129.33 437.504,1129.33 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM475.806 1128.31 L475.806 1140.04 L514.108 1140.04 L514.108 1128.31 L475.806 1128.31 L475.806 1128.31 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 475.806,1128.31 475.806,1140.04 514.108,1140.04 514.108,1128.31 475.806,1128.31 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM514.108 1109.43 L514.108 1140.04 L552.41 1140.04 L552.41 1109.43 L514.108 1109.43 L514.108 1109.43 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 514.108,1109.43 514.108,1140.04 552.41,1140.04 552.41,1109.43 514.108,1109.43 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM552.41 1094.13 L552.41 1140.04 L590.712 1140.04 L590.712 1094.13 L552.41 1094.13 L552.41 1094.13 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 552.41,1094.13 552.41,1140.04 590.712,1140.04 590.712,1094.13 552.41,1094.13 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM590.712 1089.54 L590.712 1140.04 L629.014 1140.04 L629.014 1089.54 L590.712 1089.54 L590.712 1089.54 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 590.712,1089.54 590.712,1140.04 629.014,1140.04 629.014,1089.54 590.712,1089.54 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM629.014 1068.11 L629.014 1140.04 L667.316 1140.04 L667.316 1068.11 L629.014 1068.11 L629.014 1068.11 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 629.014,1068.11 629.014,1140.04 667.316,1140.04 667.316,1068.11 629.014,1068.11 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM667.316 1031.89 L667.316 1140.04 L705.618 1140.04 L705.618 1031.89 L667.316 1031.89 L667.316 1031.89 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 667.316,1031.89 667.316,1140.04 705.618,1140.04 705.618,1031.89 667.316,1031.89 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM705.618 992.1 L705.618 1140.04 L743.92 1140.04 L743.92 992.1 L705.618 992.1 L705.618 992.1 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 705.618,992.1 705.618,1140.04 743.92,1140.04 743.92,992.1 705.618,992.1 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM743.92 949.758 L743.92 1140.04 L782.222 1140.04 L782.222 949.758 L743.92 949.758 L743.92 949.758 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 743.92,949.758 743.92,1140.04 782.222,1140.04 782.222,949.758 743.92,949.758 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM782.222 919.15 L782.222 1140.04 L820.524 1140.04 L820.524 919.15 L782.222 919.15 L782.222 919.15 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 782.222,919.15 782.222,1140.04 820.524,1140.04 820.524,919.15 782.222,919.15 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM820.524 866.606 L820.524 1140.04 L858.826 1140.04 L858.826 866.606 L820.524 866.606 L820.524 866.606 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 820.524,866.606 820.524,1140.04 858.826,1140.04 858.826,866.606 820.524,866.606 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM858.826 834.978 L858.826 1140.04 L897.128 1140.04 L897.128 834.978 L858.826 834.978 L858.826 834.978 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 858.826,834.978 858.826,1140.04 897.128,1140.04 897.128,834.978 858.826,834.978 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM897.128 758.968 L897.128 1140.04 L935.43 1140.04 L935.43 758.968 L897.128 758.968 L897.128 758.968 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 897.128,758.968 897.128,1140.04 935.43,1140.04 935.43,758.968 897.128,758.968 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM935.43 792.126 L935.43 1140.04 L973.732 1140.04 L973.732 792.126 L935.43 792.126 L935.43 792.126 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 935.43,792.126 935.43,1140.04 973.732,1140.04 973.732,792.126 935.43,792.126 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM973.732 753.356 L973.732 1140.04 L1012.03 1140.04 L1012.03 753.356 L973.732 753.356 L973.732 753.356 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 973.732,753.356 973.732,1140.04 1012.03,1140.04 1012.03,753.356 973.732,753.356 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM1012.03 757.947 L1012.03 1140.04 L1050.34 1140.04 L1050.34 757.947 L1012.03 757.947 L1012.03 757.947 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1012.03,757.947 1012.03,1140.04 1050.34,1140.04 1050.34,757.947 1012.03,757.947 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM1050.34 789.576 L1050.34 1140.04 L1088.64 1140.04 L1088.64 789.576 L1050.34 789.576 L1050.34 789.576 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1050.34,789.576 1050.34,1140.04 1088.64,1140.04 1088.64,789.576 1050.34,789.576 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM1088.64 806.41 L1088.64 1140.04 L1126.94 1140.04 L1126.94 806.41 L1088.64 806.41 L1088.64 806.41 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1088.64,806.41 1088.64,1140.04 1126.94,1140.04 1126.94,806.41 1088.64,806.41 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM1126.94 848.241 L1126.94 1140.04 L1165.24 1140.04 L1165.24 848.241 L1126.94 848.241 L1126.94 848.241 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1126.94,848.241 1126.94,1140.04 1165.24,1140.04 1165.24,848.241 1126.94,848.241 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM1165.24 858.954 L1165.24 1140.04 L1203.54 1140.04 L1203.54 858.954 L1165.24 858.954 L1165.24 858.954 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1165.24,858.954 1165.24,1140.04 1203.54,1140.04 1203.54,858.954 1165.24,858.954 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM1203.54 927.823 L1203.54 1140.04 L1241.85 1140.04 L1241.85 927.823 L1203.54 927.823 L1203.54 927.823 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1203.54,927.823 1203.54,1140.04 1241.85,1140.04 1241.85,927.823 1203.54,927.823 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM1241.85 949.758 L1241.85 1140.04 L1280.15 1140.04 L1280.15 949.758 L1241.85 949.758 L1241.85 949.758 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1241.85,949.758 1241.85,1140.04 1280.15,1140.04 1280.15,949.758 1241.85,949.758 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM1280.15 1005.36 L1280.15 1140.04 L1318.45 1140.04 L1318.45 1005.36 L1280.15 1005.36 L1280.15 1005.36 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1280.15,1005.36 1280.15,1140.04 1318.45,1140.04 1318.45,1005.36 1280.15,1005.36 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM1318.45 1044.13 L1318.45 1140.04 L1356.75 1140.04 L1356.75 1044.13 L1318.45 1044.13 L1318.45 1044.13 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1318.45,1044.13 1318.45,1140.04 1356.75,1140.04 1356.75,1044.13 1318.45,1044.13 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM1356.75 1060.46 L1356.75 1140.04 L1395.05 1140.04 L1395.05 1060.46 L1356.75 1060.46 L1356.75 1060.46 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1356.75,1060.46 1356.75,1140.04 1395.05,1140.04 1395.05,1060.46 1356.75,1060.46 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM1395.05 1083.41 L1395.05 1140.04 L1433.36 1140.04 L1433.36 1083.41 L1395.05 1083.41 L1395.05 1083.41 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1395.05,1083.41 1395.05,1140.04 1433.36,1140.04 1433.36,1083.41 1395.05,1083.41 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM1433.36 1103.31 L1433.36 1140.04 L1471.66 1140.04 L1471.66 1103.31 L1433.36 1103.31 L1433.36 1103.31 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1433.36,1103.31 1433.36,1140.04 1471.66,1140.04 1471.66,1103.31 1433.36,1103.31 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM1471.66 1114.02 L1471.66 1140.04 L1509.96 1140.04 L1509.96 1114.02 L1471.66 1114.02 L1471.66 1114.02 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1471.66,1114.02 1471.66,1140.04 1509.96,1140.04 1509.96,1114.02 1471.66,1114.02 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM1509.96 1126.27 L1509.96 1140.04 L1548.26 1140.04 L1548.26 1126.27 L1509.96 1126.27 L1509.96 1126.27 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1509.96,1126.27 1509.96,1140.04 1548.26,1140.04 1548.26,1126.27 1509.96,1126.27 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM1548.26 1130.86 L1548.26 1140.04 L1586.56 1140.04 L1586.56 1130.86 L1548.26 1130.86 L1548.26 1130.86 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1548.26,1130.86 1548.26,1140.04 1586.56,1140.04 1586.56,1130.86 1548.26,1130.86 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM1586.56 1136.47 L1586.56 1140.04 L1624.87 1140.04 L1624.87 1136.47 L1586.56 1136.47 L1586.56 1136.47 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1586.56,1136.47 1586.56,1140.04 1624.87,1140.04 1624.87,1136.47 1586.56,1136.47 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM1624.87 1137.49 L1624.87 1140.04 L1663.17 1140.04 L1663.17 1137.49 L1624.87 1137.49 L1624.87 1137.49 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1624.87,1137.49 1624.87,1140.04 1663.17,1140.04 1663.17,1137.49 1624.87,1137.49 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM1663.17 1138.51 L1663.17 1140.04 L1701.47 1140.04 L1701.47 1138.51 L1663.17 1138.51 L1663.17 1138.51 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1663.17,1138.51 1663.17,1140.04 1701.47,1140.04 1701.47,1138.51 1663.17,1138.51 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM1701.47 1139.53 L1701.47 1140.04 L1739.77 1140.04 L1739.77 1139.53 L1701.47 1139.53 L1701.47 1139.53 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1701.47,1139.53 1701.47,1140.04 1739.77,1140.04 1739.77,1139.53 1701.47,1139.53 \n \"/>\n<path clip-path=\"url(#clip592)\" d=\"\nM1739.77 1139.53 L1739.77 1140.04 L1778.07 1140.04 L1778.07 1139.53 L1739.77 1139.53 L1739.77 1139.53 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1739.77,1139.53 1739.77,1140.04 1778.07,1140.04 1778.07,1139.53 1739.77,1139.53 \n \"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"265.146\" cy=\"1139.53\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"303.448\" cy=\"1138.51\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"341.75\" cy=\"1137.49\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"380.051\" cy=\"1136.98\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"418.353\" cy=\"1133.41\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"456.655\" cy=\"1129.33\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"494.957\" cy=\"1128.31\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"533.259\" cy=\"1109.43\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"571.561\" cy=\"1094.13\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"609.863\" cy=\"1089.54\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"648.165\" cy=\"1068.11\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"686.467\" cy=\"1031.89\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"724.769\" cy=\"992.1\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"763.071\" cy=\"949.758\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"801.373\" cy=\"919.15\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"839.675\" cy=\"866.606\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"877.977\" cy=\"834.978\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"916.279\" cy=\"758.968\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"954.581\" cy=\"792.126\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"992.883\" cy=\"753.356\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1031.19\" cy=\"757.947\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1069.49\" cy=\"789.576\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1107.79\" cy=\"806.41\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1146.09\" cy=\"848.241\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1184.39\" cy=\"858.954\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1222.69\" cy=\"927.823\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1261\" cy=\"949.758\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1299.3\" cy=\"1005.36\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1337.6\" cy=\"1044.13\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1375.9\" cy=\"1060.46\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1414.2\" cy=\"1083.41\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1452.51\" cy=\"1103.31\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1490.81\" cy=\"1114.02\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1529.11\" cy=\"1126.27\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1567.41\" cy=\"1130.86\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1605.71\" cy=\"1136.47\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1644.02\" cy=\"1137.49\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1682.32\" cy=\"1138.51\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1720.62\" cy=\"1139.53\" r=\"2\"/>\n<circle clip-path=\"url(#clip592)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1758.92\" cy=\"1139.53\" r=\"2\"/>\n<polyline clip-path=\"url(#clip592)\" style=\"stroke:#e26f46; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 200.032,1140.04 215.892,1140.04 362.538,1140.04 450.666,1140.04 525.177,1140.04 606.118,1140.04 680.737,1139.89 720.737,1138.95 760.737,1133.81 783.909,1124.85 \n 807.081,1106.08 818.667,1090.86 830.253,1070.35 841.839,1043.38 853.425,1008.83 863.721,970.98 874.018,925.877 884.314,873.317 894.61,813.46 904.907,746.913 \n 915.203,674.786 925.499,598.711 935.795,520.818 944.824,453.025 953.853,387.714 962.882,326.899 971.911,272.587 980.94,226.67 989.969,190.819 994.483,177.104 \n 998.998,166.379 1003.51,158.748 1008.03,154.285 1012.95,153.081 1017.87,155.708 1022.79,162.136 1027.71,172.291 1032.64,186.055 1037.56,203.271 1042.48,223.744 \n 1047.4,247.247 1057.25,302.284 1067.09,366.055 1076.93,436.002 1086.78,509.506 1096.68,584.489 1106.58,658.195 1116.49,728.645 1126.39,794.277 1136.29,853.974 \n 1146.19,907.058 1156.09,953.253 1166,992.626 1176.95,1028.63 1187.89,1057.45 1198.84,1079.97 1209.79,1097.19 1231.69,1119.45 1253.58,1130.88 1295.25,1138.45 \n 1336.92,1139.83 1423.57,1140.04 1496.51,1140.04 1585.57,1140.04 1669.28,1140.04 1803.4,1140.04 1824.04,1140.04 \n \"/>\n</svg>\n",
"text/html": [
"<?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=\"clip640\">\n",
" <rect x=\"0\" y=\"0\" width=\"1920\" height=\"1280\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip640)\" 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=\"clip641\">\n",
" <rect x=\"384\" y=\"0\" width=\"1345\" height=\"1280\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip640)\" d=\"\n",
"M151.312 1169.65 L1872.76 1169.65 L1872.76 123.472 L151.312 123.472 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip642\">\n",
" <rect x=\"151\" y=\"123\" width=\"1722\" height=\"1047\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 245.995,1169.65 245.995,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 629.014,1169.65 629.014,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1012.03,1169.65 1012.03,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1395.05,1169.65 1395.05,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1778.07,1169.65 1778.07,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip640)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.312,1169.65 1872.76,1169.65 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip640)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 245.995,1169.65 245.995,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip640)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 629.014,1169.65 629.014,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip640)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1012.03,1169.65 1012.03,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip640)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1395.05,1169.65 1395.05,1150.75 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip640)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1778.07,1169.65 1778.07,1150.75 \n",
" \"/>\n",
"<path clip-path=\"url(#clip640)\" d=\"M245.995 1196.73 Q242.384 1196.73 240.555 1200.29 Q238.749 1203.83 238.749 1210.96 Q238.749 1218.07 240.555 1221.63 Q242.384 1225.18 245.995 1225.18 Q249.629 1225.18 251.434 1221.63 Q253.263 1218.07 253.263 1210.96 Q253.263 1203.83 251.434 1200.29 Q249.629 1196.73 245.995 1196.73 M245.995 1193.02 Q251.805 1193.02 254.86 1197.63 Q257.939 1202.21 257.939 1210.96 Q257.939 1219.69 254.86 1224.3 Q251.805 1228.88 245.995 1228.88 Q240.184 1228.88 237.106 1224.3 Q234.05 1219.69 234.05 1210.96 Q234.05 1202.21 237.106 1197.63 Q240.184 1193.02 245.995 1193.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M619.396 1224.27 L627.035 1224.27 L627.035 1197.91 L618.725 1199.57 L618.725 1195.31 L626.989 1193.65 L631.665 1193.65 L631.665 1224.27 L639.304 1224.27 L639.304 1228.21 L619.396 1228.21 L619.396 1224.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M1006.69 1224.27 L1023.01 1224.27 L1023.01 1228.21 L1001.06 1228.21 L1001.06 1224.27 Q1003.72 1221.52 1008.31 1216.89 Q1012.91 1212.24 1014.09 1210.89 Q1016.34 1208.37 1017.22 1206.63 Q1018.12 1204.87 1018.12 1203.18 Q1018.12 1200.43 1016.18 1198.69 Q1014.26 1196.96 1011.15 1196.96 Q1008.96 1196.96 1006.5 1197.72 Q1004.07 1198.49 1001.29 1200.04 L1001.29 1195.31 Q1004.12 1194.18 1006.57 1193.6 Q1009.02 1193.02 1011.06 1193.02 Q1016.43 1193.02 1019.63 1195.71 Q1022.82 1198.39 1022.82 1202.88 Q1022.82 1205.01 1022.01 1206.93 Q1021.22 1208.83 1019.12 1211.43 Q1018.54 1212.1 1015.44 1215.31 Q1012.33 1218.51 1006.69 1224.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M1399.3 1209.57 Q1402.66 1210.29 1404.53 1212.56 Q1406.43 1214.83 1406.43 1218.16 Q1406.43 1223.28 1402.91 1226.08 Q1399.39 1228.88 1392.91 1228.88 Q1390.74 1228.88 1388.42 1228.44 Q1386.13 1228.02 1383.68 1227.17 L1383.68 1222.65 Q1385.62 1223.79 1387.94 1224.37 Q1390.25 1224.94 1392.77 1224.94 Q1397.17 1224.94 1399.46 1223.21 Q1401.78 1221.47 1401.78 1218.16 Q1401.78 1215.11 1399.63 1213.39 Q1397.5 1211.66 1393.68 1211.66 L1389.65 1211.66 L1389.65 1207.81 L1393.86 1207.81 Q1397.31 1207.81 1399.14 1206.45 Q1400.97 1205.06 1400.97 1202.47 Q1400.97 1199.81 1399.07 1198.39 Q1397.19 1196.96 1393.68 1196.96 Q1391.76 1196.96 1389.56 1197.37 Q1387.36 1197.79 1384.72 1198.67 L1384.72 1194.5 Q1387.38 1193.76 1389.69 1193.39 Q1392.03 1193.02 1394.09 1193.02 Q1399.42 1193.02 1402.52 1195.45 Q1405.62 1197.86 1405.62 1201.98 Q1405.62 1204.85 1403.98 1206.84 Q1402.33 1208.81 1399.3 1209.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M1781.08 1197.72 L1769.28 1216.17 L1781.08 1216.17 L1781.08 1197.72 M1779.86 1193.65 L1785.74 1193.65 L1785.74 1216.17 L1790.67 1216.17 L1790.67 1220.06 L1785.74 1220.06 L1785.74 1228.21 L1781.08 1228.21 L1781.08 1220.06 L1765.48 1220.06 L1765.48 1215.55 L1779.86 1193.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.312,1140.04 1872.76,1140.04 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.312,885.048 1872.76,885.048 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.312,630.056 1872.76,630.056 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 151.312,375.065 1872.76,375.065 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip640)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.312,1169.65 151.312,123.472 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip640)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.312,1140.04 170.21,1140.04 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip640)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.312,885.048 170.21,885.048 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip640)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.312,630.056 170.21,630.056 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip640)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 151.312,375.065 170.21,375.065 \n",
" \"/>\n",
"<path clip-path=\"url(#clip640)\" d=\"M65.3365 1125.84 Q61.7254 1125.84 59.8967 1129.4 Q58.0912 1132.94 58.0912 1140.07 Q58.0912 1147.18 59.8967 1150.75 Q61.7254 1154.29 65.3365 1154.29 Q68.9707 1154.29 70.7763 1150.75 Q72.605 1147.18 72.605 1140.07 Q72.605 1132.94 70.7763 1129.4 Q68.9707 1125.84 65.3365 1125.84 M65.3365 1122.13 Q71.1467 1122.13 74.2022 1126.74 Q77.2809 1131.32 77.2809 1140.07 Q77.2809 1148.8 74.2022 1153.41 Q71.1467 1157.99 65.3365 1157.99 Q59.5264 1157.99 56.4477 1153.41 Q53.3921 1148.8 53.3921 1140.07 Q53.3921 1131.32 56.4477 1126.74 Q59.5264 1122.13 65.3365 1122.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M85.4984 1151.44 L90.3827 1151.44 L90.3827 1157.32 L85.4984 1157.32 L85.4984 1151.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M110.568 1125.84 Q106.957 1125.84 105.128 1129.4 Q103.322 1132.94 103.322 1140.07 Q103.322 1147.18 105.128 1150.75 Q106.957 1154.29 110.568 1154.29 Q114.202 1154.29 116.008 1150.75 Q117.836 1147.18 117.836 1140.07 Q117.836 1132.94 116.008 1129.4 Q114.202 1125.84 110.568 1125.84 M110.568 1122.13 Q116.378 1122.13 119.433 1126.74 Q122.512 1131.32 122.512 1140.07 Q122.512 1148.8 119.433 1153.41 Q116.378 1157.99 110.568 1157.99 Q104.758 1157.99 101.679 1153.41 Q98.6234 1148.8 98.6234 1140.07 Q98.6234 1131.32 101.679 1126.74 Q104.758 1122.13 110.568 1122.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M66.3319 870.846 Q62.7208 870.846 60.8921 874.411 Q59.0865 877.953 59.0865 885.082 Q59.0865 892.189 60.8921 895.754 Q62.7208 899.295 66.3319 899.295 Q69.9661 899.295 71.7717 895.754 Q73.6004 892.189 73.6004 885.082 Q73.6004 877.953 71.7717 874.411 Q69.9661 870.846 66.3319 870.846 M66.3319 867.143 Q72.142 867.143 75.1976 871.749 Q78.2763 876.332 78.2763 885.082 Q78.2763 893.809 75.1976 898.416 Q72.142 902.999 66.3319 902.999 Q60.5217 902.999 57.443 898.416 Q54.3875 893.809 54.3875 885.082 Q54.3875 876.332 57.443 871.749 Q60.5217 867.143 66.3319 867.143 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M86.4938 896.448 L91.378 896.448 L91.378 902.328 L86.4938 902.328 L86.4938 896.448 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M101.609 867.768 L119.966 867.768 L119.966 871.703 L105.892 871.703 L105.892 880.175 Q106.91 879.828 107.929 879.666 Q108.947 879.481 109.966 879.481 Q115.753 879.481 119.133 882.652 Q122.512 885.823 122.512 891.24 Q122.512 896.818 119.04 899.92 Q115.568 902.999 109.248 902.999 Q107.072 902.999 104.804 902.629 Q102.559 902.258 100.151 901.517 L100.151 896.818 Q102.234 897.953 104.457 898.508 Q106.679 899.064 109.156 899.064 Q113.16 899.064 115.498 896.957 Q117.836 894.851 117.836 891.24 Q117.836 887.629 115.498 885.522 Q113.16 883.416 109.156 883.416 Q107.281 883.416 105.406 883.832 Q103.554 884.249 101.609 885.129 L101.609 867.768 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M56.1467 643.401 L63.7856 643.401 L63.7856 617.035 L55.4754 618.702 L55.4754 614.443 L63.7393 612.776 L68.4152 612.776 L68.4152 643.401 L76.054 643.401 L76.054 647.336 L56.1467 647.336 L56.1467 643.401 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M85.4984 641.457 L90.3827 641.457 L90.3827 647.336 L85.4984 647.336 L85.4984 641.457 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M110.568 615.855 Q106.957 615.855 105.128 619.42 Q103.322 622.961 103.322 630.091 Q103.322 637.197 105.128 640.762 Q106.957 644.304 110.568 644.304 Q114.202 644.304 116.008 640.762 Q117.836 637.197 117.836 630.091 Q117.836 622.961 116.008 619.42 Q114.202 615.855 110.568 615.855 M110.568 612.151 Q116.378 612.151 119.433 616.758 Q122.512 621.341 122.512 630.091 Q122.512 638.818 119.433 643.424 Q116.378 648.007 110.568 648.007 Q104.758 648.007 101.679 643.424 Q98.6234 638.818 98.6234 630.091 Q98.6234 621.341 101.679 616.758 Q104.758 612.151 110.568 612.151 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M57.1421 388.41 L64.781 388.41 L64.781 362.044 L56.4708 363.711 L56.4708 359.451 L64.7347 357.785 L69.4106 357.785 L69.4106 388.41 L77.0494 388.41 L77.0494 392.345 L57.1421 392.345 L57.1421 388.41 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M86.4938 386.465 L91.378 386.465 L91.378 392.345 L86.4938 392.345 L86.4938 386.465 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M101.609 357.785 L119.966 357.785 L119.966 361.72 L105.892 361.72 L105.892 370.192 Q106.91 369.845 107.929 369.683 Q108.947 369.498 109.966 369.498 Q115.753 369.498 119.133 372.669 Q122.512 375.84 122.512 381.257 Q122.512 386.836 119.04 389.937 Q115.568 393.016 109.248 393.016 Q107.072 393.016 104.804 392.646 Q102.559 392.275 100.151 391.535 L100.151 386.836 Q102.234 387.97 104.457 388.525 Q106.679 389.081 109.156 389.081 Q113.16 389.081 115.498 386.974 Q117.836 384.868 117.836 381.257 Q117.836 377.646 115.498 375.539 Q113.16 373.433 109.156 373.433 Q107.281 373.433 105.406 373.849 Q103.554 374.266 101.609 375.146 L101.609 357.785 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M133.798 12.096 L141.981 12.096 L141.981 36.8875 L171.714 36.8875 L171.714 12.096 L179.897 12.096 L179.897 72.576 L171.714 72.576 L171.714 43.7741 L141.981 43.7741 L141.981 72.576 L133.798 72.576 L133.798 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M195.858 27.2059 L203.311 27.2059 L203.311 72.576 L195.858 72.576 L195.858 27.2059 M195.858 9.54393 L203.311 9.54393 L203.311 18.9825 L195.858 18.9825 L195.858 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M247.831 28.5427 L247.831 35.5912 Q244.671 33.9709 241.268 33.1607 Q237.866 32.3505 234.22 32.3505 Q228.67 32.3505 225.875 34.0519 Q223.12 35.7533 223.12 39.156 Q223.12 41.7486 225.105 43.2475 Q227.09 44.7058 233.086 46.0426 L235.638 46.6097 Q243.577 48.3111 246.899 51.4303 Q250.261 54.509 250.261 60.0587 Q250.261 66.3781 245.238 70.0644 Q240.256 73.7508 231.506 73.7508 Q227.86 73.7508 223.89 73.0216 Q219.961 72.3329 215.586 70.9151 L215.586 63.2184 Q219.718 65.3654 223.728 66.4591 Q227.738 67.5124 231.668 67.5124 Q236.934 67.5124 239.77 65.73 Q242.605 63.9071 242.605 60.6258 Q242.605 57.5877 240.539 55.9673 Q238.514 54.3469 231.587 52.8481 L228.994 52.2405 Q222.067 50.7821 218.988 47.7845 Q215.91 44.7463 215.91 39.4801 Q215.91 33.0797 220.447 29.5959 Q224.984 26.1121 233.329 26.1121 Q237.461 26.1121 241.106 26.7198 Q244.752 27.3274 247.831 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M269.503 14.324 L269.503 27.2059 L284.856 27.2059 L284.856 32.9987 L269.503 32.9987 L269.503 57.6282 Q269.503 63.1779 271.002 64.7578 Q272.541 66.3376 277.2 66.3376 L284.856 66.3376 L284.856 72.576 L277.2 72.576 Q268.572 72.576 265.29 69.3758 Q262.009 66.1351 262.009 57.6282 L262.009 32.9987 L256.54 32.9987 L256.54 27.2059 L262.009 27.2059 L262.009 14.324 L269.503 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M312.24 32.4315 Q306.245 32.4315 302.761 37.1306 Q299.277 41.7891 299.277 49.9314 Q299.277 58.0738 302.721 62.7728 Q306.204 67.4314 312.24 67.4314 Q318.195 67.4314 321.679 62.7323 Q325.163 58.0333 325.163 49.9314 Q325.163 41.8701 321.679 37.1711 Q318.195 32.4315 312.24 32.4315 M312.24 26.1121 Q321.962 26.1121 327.512 32.4315 Q333.062 38.7509 333.062 49.9314 Q333.062 61.0714 327.512 67.4314 Q321.962 73.7508 312.24 73.7508 Q302.478 73.7508 296.928 67.4314 Q291.419 61.0714 291.419 49.9314 Q291.419 38.7509 296.928 32.4315 Q302.478 26.1121 312.24 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M375.272 49.3643 Q375.272 41.2625 371.91 36.8065 Q368.588 32.3505 362.553 32.3505 Q356.557 32.3505 353.195 36.8065 Q349.873 41.2625 349.873 49.3643 Q349.873 57.4256 353.195 61.8816 Q356.557 66.3376 362.553 66.3376 Q368.588 66.3376 371.91 61.8816 Q375.272 57.4256 375.272 49.3643 M382.726 66.9452 Q382.726 78.5308 377.581 84.1616 Q372.437 89.8329 361.823 89.8329 Q357.894 89.8329 354.41 89.2252 Q350.926 88.6581 347.645 87.4428 L347.645 80.1917 Q350.926 81.9741 354.127 82.8248 Q357.327 83.6755 360.649 83.6755 Q367.981 83.6755 371.627 79.8271 Q375.272 76.0193 375.272 68.282 L375.272 64.5957 Q372.963 68.6061 369.358 70.5911 Q365.753 72.576 360.73 72.576 Q352.385 72.576 347.281 66.2161 Q342.176 59.8562 342.176 49.3643 Q342.176 38.832 347.281 32.472 Q352.385 26.1121 360.73 26.1121 Q365.753 26.1121 369.358 28.0971 Q372.963 30.082 375.272 34.0924 L375.272 27.2059 L382.726 27.2059 L382.726 66.9452 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M424.369 34.1734 Q423.114 33.4443 421.615 33.1202 Q420.156 32.7556 418.374 32.7556 Q412.055 32.7556 408.652 36.8875 Q405.29 40.9789 405.29 48.6757 L405.29 72.576 L397.795 72.576 L397.795 27.2059 L405.29 27.2059 L405.29 34.2544 Q407.639 30.1225 411.406 28.1376 Q415.174 26.1121 420.561 26.1121 Q421.331 26.1121 422.263 26.2337 Q423.195 26.3147 424.329 26.5172 L424.369 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M452.807 49.7694 Q443.773 49.7694 440.289 51.8354 Q436.806 53.9013 436.806 58.8839 Q436.806 62.8538 439.398 65.2034 Q442.031 67.5124 446.528 67.5124 Q452.726 67.5124 456.453 63.1374 Q460.22 58.7219 460.22 51.4303 L460.22 49.7694 L452.807 49.7694 M467.674 46.6907 L467.674 72.576 L460.22 72.576 L460.22 65.6895 Q457.668 69.8214 453.86 71.8063 Q450.052 73.7508 444.543 73.7508 Q437.575 73.7508 433.443 69.8619 Q429.352 65.9325 429.352 59.3701 Q429.352 51.7138 434.456 47.825 Q439.601 43.9361 449.769 43.9361 L460.22 43.9361 L460.22 43.2069 Q460.22 38.0623 456.817 35.2672 Q453.455 32.4315 447.338 32.4315 Q443.449 32.4315 439.763 33.3632 Q436.076 34.295 432.674 36.1584 L432.674 29.2718 Q436.765 27.692 440.613 26.9223 Q444.462 26.1121 448.108 26.1121 Q457.951 26.1121 462.812 31.2163 Q467.674 36.3204 467.674 46.6907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M518.35 35.9153 Q521.145 30.8922 525.034 28.5022 Q528.923 26.1121 534.189 26.1121 Q541.278 26.1121 545.127 31.0947 Q548.975 36.0368 548.975 45.1919 L548.975 72.576 L541.481 72.576 L541.481 45.4349 Q541.481 38.913 539.172 35.7533 Q536.863 32.5936 532.123 32.5936 Q526.331 32.5936 522.968 36.4419 Q519.606 40.2903 519.606 46.9338 L519.606 72.576 L512.112 72.576 L512.112 45.4349 Q512.112 38.8725 509.803 35.7533 Q507.494 32.5936 502.673 32.5936 Q496.962 32.5936 493.599 36.4824 Q490.237 40.3308 490.237 46.9338 L490.237 72.576 L482.743 72.576 L482.743 27.2059 L490.237 27.2059 L490.237 34.2544 Q492.789 30.082 496.354 28.0971 Q499.919 26.1121 504.82 26.1121 Q509.762 26.1121 513.206 28.6237 Q516.689 31.1352 518.35 35.9153 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M607.794 32.4315 Q601.799 32.4315 598.315 37.1306 Q594.831 41.7891 594.831 49.9314 Q594.831 58.0738 598.275 62.7728 Q601.758 67.4314 607.794 67.4314 Q613.749 67.4314 617.233 62.7323 Q620.717 58.0333 620.717 49.9314 Q620.717 41.8701 617.233 37.1711 Q613.749 32.4315 607.794 32.4315 M607.794 26.1121 Q617.516 26.1121 623.066 32.4315 Q628.616 38.7509 628.616 49.9314 Q628.616 61.0714 623.066 67.4314 Q617.516 73.7508 607.794 73.7508 Q598.032 73.7508 592.482 67.4314 Q586.973 61.0714 586.973 49.9314 Q586.973 38.7509 592.482 32.4315 Q598.032 26.1121 607.794 26.1121 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M663.94 9.54393 L663.94 15.7418 L656.81 15.7418 Q652.8 15.7418 651.22 17.3622 Q649.681 18.9825 649.681 23.1955 L649.681 27.2059 L661.955 27.2059 L661.955 32.9987 L649.681 32.9987 L649.681 72.576 L642.186 72.576 L642.186 32.9987 L635.057 32.9987 L635.057 27.2059 L642.186 27.2059 L642.186 24.0462 Q642.186 16.471 645.711 13.0277 Q649.235 9.54393 656.891 9.54393 L663.94 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M699.021 65.6895 L712.389 65.6895 L712.389 19.5497 L697.846 22.4663 L697.846 15.0127 L712.308 12.096 L720.49 12.096 L720.49 65.6895 L733.858 65.6895 L733.858 72.576 L699.021 72.576 L699.021 65.6895 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M767.886 17.4837 Q761.567 17.4837 758.366 23.7221 Q755.207 29.92 755.207 42.3968 Q755.207 54.833 758.366 61.0714 Q761.567 67.2693 767.886 67.2693 Q774.246 67.2693 777.406 61.0714 Q780.606 54.833 780.606 42.3968 Q780.606 29.92 777.406 23.7221 Q774.246 17.4837 767.886 17.4837 M767.886 11.0023 Q778.054 11.0023 783.401 19.0636 Q788.789 27.0843 788.789 42.3968 Q788.789 57.6687 783.401 65.73 Q778.054 73.7508 767.886 73.7508 Q757.718 73.7508 752.331 65.73 Q746.983 57.6687 746.983 42.3968 Q746.983 27.0843 752.331 19.0636 Q757.718 11.0023 767.886 11.0023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M820.669 17.4837 Q814.35 17.4837 811.15 23.7221 Q807.99 29.92 807.99 42.3968 Q807.99 54.833 811.15 61.0714 Q814.35 67.2693 820.669 67.2693 Q827.029 67.2693 830.189 61.0714 Q833.389 54.833 833.389 42.3968 Q833.389 29.92 830.189 23.7221 Q827.029 17.4837 820.669 17.4837 M820.669 11.0023 Q830.837 11.0023 836.184 19.0636 Q841.572 27.0843 841.572 42.3968 Q841.572 57.6687 836.184 65.73 Q830.837 73.7508 820.669 73.7508 Q810.502 73.7508 805.114 65.73 Q799.767 57.6687 799.767 42.3968 Q799.767 27.0843 805.114 19.0636 Q810.502 11.0023 820.669 11.0023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M873.453 17.4837 Q867.133 17.4837 863.933 23.7221 Q860.773 29.92 860.773 42.3968 Q860.773 54.833 863.933 61.0714 Q867.133 67.2693 873.453 67.2693 Q879.813 67.2693 882.972 61.0714 Q886.172 54.833 886.172 42.3968 Q886.172 29.92 882.972 23.7221 Q879.813 17.4837 873.453 17.4837 M873.453 11.0023 Q883.62 11.0023 888.968 19.0636 Q894.355 27.0843 894.355 42.3968 Q894.355 57.6687 888.968 65.73 Q883.62 73.7508 873.453 73.7508 Q863.285 73.7508 857.897 65.73 Q852.55 57.6687 852.55 42.3968 Q852.55 27.0843 857.897 19.0636 Q863.285 11.0023 873.453 11.0023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M926.236 17.4837 Q919.916 17.4837 916.716 23.7221 Q913.557 29.92 913.557 42.3968 Q913.557 54.833 916.716 61.0714 Q919.916 67.2693 926.236 67.2693 Q932.596 67.2693 935.755 61.0714 Q938.956 54.833 938.956 42.3968 Q938.956 29.92 935.755 23.7221 Q932.596 17.4837 926.236 17.4837 M926.236 11.0023 Q936.404 11.0023 941.751 19.0636 Q947.139 27.0843 947.139 42.3968 Q947.139 57.6687 941.751 65.73 Q936.404 73.7508 926.236 73.7508 Q916.068 73.7508 910.68 65.73 Q905.333 57.6687 905.333 42.3968 Q905.333 27.0843 910.68 19.0636 Q916.068 11.0023 926.236 11.0023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M1007.46 49.7694 Q998.423 49.7694 994.939 51.8354 Q991.455 53.9013 991.455 58.8839 Q991.455 62.8538 994.048 65.2034 Q996.681 67.5124 1001.18 67.5124 Q1007.38 67.5124 1011.1 63.1374 Q1014.87 58.7219 1014.87 51.4303 L1014.87 49.7694 L1007.46 49.7694 M1022.32 46.6907 L1022.32 72.576 L1014.87 72.576 L1014.87 65.6895 Q1012.32 69.8214 1008.51 71.8063 Q1004.7 73.7508 999.193 73.7508 Q992.225 73.7508 988.093 69.8619 Q984.002 65.9325 984.002 59.3701 Q984.002 51.7138 989.106 47.825 Q994.251 43.9361 1004.42 43.9361 L1014.87 43.9361 L1014.87 43.2069 Q1014.87 38.0623 1011.47 35.2672 Q1008.1 32.4315 1001.99 32.4315 Q998.099 32.4315 994.413 33.3632 Q990.726 34.295 987.324 36.1584 L987.324 29.2718 Q991.415 27.692 995.263 26.9223 Q999.112 26.1121 1002.76 26.1121 Q1012.6 26.1121 1017.46 31.2163 Q1022.32 36.3204 1022.32 46.6907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M1032.33 27.2059 L1040.23 27.2059 L1054.41 65.2844 L1068.58 27.2059 L1076.48 27.2059 L1059.47 72.576 L1049.34 72.576 L1032.33 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M1125.58 48.0275 L1125.58 51.6733 L1091.31 51.6733 Q1091.8 59.3701 1095.93 63.421 Q1100.1 67.4314 1107.51 67.4314 Q1111.81 67.4314 1115.82 66.3781 Q1119.87 65.3249 1123.84 63.2184 L1123.84 70.267 Q1119.83 71.9684 1115.62 72.8596 Q1111.4 73.7508 1107.07 73.7508 Q1096.21 73.7508 1089.85 67.4314 Q1083.53 61.1119 1083.53 50.3365 Q1083.53 39.1965 1089.53 32.6746 Q1095.56 26.1121 1105.77 26.1121 Q1114.93 26.1121 1120.23 32.0264 Q1125.58 37.9003 1125.58 48.0275 M1118.13 45.84 Q1118.05 39.7232 1114.68 36.0774 Q1111.36 32.4315 1105.85 32.4315 Q1099.61 32.4315 1095.85 35.9558 Q1092.12 39.4801 1091.55 45.8805 L1118.13 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M1164.1 34.1734 Q1162.85 33.4443 1161.35 33.1202 Q1159.89 32.7556 1158.11 32.7556 Q1151.79 32.7556 1148.39 36.8875 Q1145.03 40.9789 1145.03 48.6757 L1145.03 72.576 L1137.53 72.576 L1137.53 27.2059 L1145.03 27.2059 L1145.03 34.2544 Q1147.37 30.1225 1151.14 28.1376 Q1154.91 26.1121 1160.3 26.1121 Q1161.07 26.1121 1162 26.2337 Q1162.93 26.3147 1164.06 26.5172 L1164.1 34.1734 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M1192.54 49.7694 Q1183.51 49.7694 1180.03 51.8354 Q1176.54 53.9013 1176.54 58.8839 Q1176.54 62.8538 1179.13 65.2034 Q1181.77 67.5124 1186.26 67.5124 Q1192.46 67.5124 1196.19 63.1374 Q1199.96 58.7219 1199.96 51.4303 L1199.96 49.7694 L1192.54 49.7694 M1207.41 46.6907 L1207.41 72.576 L1199.96 72.576 L1199.96 65.6895 Q1197.4 69.8214 1193.6 71.8063 Q1189.79 73.7508 1184.28 73.7508 Q1177.31 73.7508 1173.18 69.8619 Q1169.09 65.9325 1169.09 59.3701 Q1169.09 51.7138 1174.19 47.825 Q1179.34 43.9361 1189.5 43.9361 L1199.96 43.9361 L1199.96 43.2069 Q1199.96 38.0623 1196.55 35.2672 Q1193.19 32.4315 1187.07 32.4315 Q1183.18 32.4315 1179.5 33.3632 Q1175.81 34.295 1172.41 36.1584 L1172.41 29.2718 Q1176.5 27.692 1180.35 26.9223 Q1184.2 26.1121 1187.84 26.1121 Q1197.69 26.1121 1202.55 31.2163 Q1207.41 36.3204 1207.41 46.6907 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M1252.62 49.3643 Q1252.62 41.2625 1249.25 36.8065 Q1245.93 32.3505 1239.9 32.3505 Q1233.9 32.3505 1230.54 36.8065 Q1227.22 41.2625 1227.22 49.3643 Q1227.22 57.4256 1230.54 61.8816 Q1233.9 66.3376 1239.9 66.3376 Q1245.93 66.3376 1249.25 61.8816 Q1252.62 57.4256 1252.62 49.3643 M1260.07 66.9452 Q1260.07 78.5308 1254.93 84.1616 Q1249.78 89.8329 1239.17 89.8329 Q1235.24 89.8329 1231.76 89.2252 Q1228.27 88.6581 1224.99 87.4428 L1224.99 80.1917 Q1228.27 81.9741 1231.47 82.8248 Q1234.67 83.6755 1237.99 83.6755 Q1245.33 83.6755 1248.97 79.8271 Q1252.62 76.0193 1252.62 68.282 L1252.62 64.5957 Q1250.31 68.6061 1246.7 70.5911 Q1243.1 72.576 1238.07 72.576 Q1229.73 72.576 1224.63 66.2161 Q1219.52 59.8562 1219.52 49.3643 Q1219.52 38.832 1224.63 32.472 Q1229.73 26.1121 1238.07 26.1121 Q1243.1 26.1121 1246.7 28.0971 Q1250.31 30.082 1252.62 34.0924 L1252.62 27.2059 L1260.07 27.2059 L1260.07 66.9452 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M1314.23 48.0275 L1314.23 51.6733 L1279.96 51.6733 Q1280.45 59.3701 1284.58 63.421 Q1288.75 67.4314 1296.16 67.4314 Q1300.46 67.4314 1304.47 66.3781 Q1308.52 65.3249 1312.49 63.2184 L1312.49 70.267 Q1308.48 71.9684 1304.27 72.8596 Q1300.05 73.7508 1295.72 73.7508 Q1284.86 73.7508 1278.5 67.4314 Q1272.18 61.1119 1272.18 50.3365 Q1272.18 39.1965 1278.18 32.6746 Q1284.21 26.1121 1294.42 26.1121 Q1303.58 26.1121 1308.88 32.0264 Q1314.23 37.9003 1314.23 48.0275 M1306.78 45.84 Q1306.7 39.7232 1303.33 36.0774 Q1300.01 32.4315 1294.5 32.4315 Q1288.27 32.4315 1284.5 35.9558 Q1280.77 39.4801 1280.2 45.8805 L1306.78 45.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M1355.39 28.5427 L1355.39 35.5912 Q1352.23 33.9709 1348.83 33.1607 Q1345.42 32.3505 1341.78 32.3505 Q1336.23 32.3505 1333.43 34.0519 Q1330.68 35.7533 1330.68 39.156 Q1330.68 41.7486 1332.66 43.2475 Q1334.65 44.7058 1340.64 46.0426 L1343.2 46.6097 Q1351.14 48.3111 1354.46 51.4303 Q1357.82 54.509 1357.82 60.0587 Q1357.82 66.3781 1352.8 70.0644 Q1347.81 73.7508 1339.06 73.7508 Q1335.42 73.7508 1331.45 73.0216 Q1327.52 72.3329 1323.14 70.9151 L1323.14 63.2184 Q1327.28 65.3654 1331.29 66.4591 Q1335.3 67.5124 1339.23 67.5124 Q1344.49 67.5124 1347.33 65.73 Q1350.16 63.9071 1350.16 60.6258 Q1350.16 57.5877 1348.1 55.9673 Q1346.07 54.3469 1339.14 52.8481 L1336.55 52.2405 Q1329.62 50.7821 1326.55 47.7845 Q1323.47 44.7463 1323.47 39.4801 Q1323.47 33.0797 1328 29.5959 Q1332.54 26.1121 1340.89 26.1121 Q1345.02 26.1121 1348.66 26.7198 Q1352.31 27.3274 1355.39 28.5427 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M1391.73 27.2059 L1399.18 27.2059 L1408.5 62.6108 L1417.77 27.2059 L1426.56 27.2059 L1435.88 62.6108 L1445.16 27.2059 L1452.61 27.2059 L1440.74 72.576 L1431.95 72.576 L1422.19 35.3887 L1412.38 72.576 L1403.59 72.576 L1391.73 27.2059 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M1463.91 27.2059 L1471.37 27.2059 L1471.37 72.576 L1463.91 72.576 L1463.91 27.2059 M1463.91 9.54393 L1471.37 9.54393 L1471.37 18.9825 L1463.91 18.9825 L1463.91 9.54393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M1494.33 14.324 L1494.33 27.2059 L1509.69 27.2059 L1509.69 32.9987 L1494.33 32.9987 L1494.33 57.6282 Q1494.33 63.1779 1495.83 64.7578 Q1497.37 66.3376 1502.03 66.3376 L1509.69 66.3376 L1509.69 72.576 L1502.03 72.576 Q1493.4 72.576 1490.12 69.3758 Q1486.84 66.1351 1486.84 57.6282 L1486.84 32.9987 L1481.37 32.9987 L1481.37 27.2059 L1486.84 27.2059 L1486.84 14.324 L1494.33 14.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M1557.2 45.1919 L1557.2 72.576 L1549.75 72.576 L1549.75 45.4349 Q1549.75 38.994 1547.24 35.7938 Q1544.73 32.5936 1539.7 32.5936 Q1533.67 32.5936 1530.19 36.4419 Q1526.7 40.2903 1526.7 46.9338 L1526.7 72.576 L1519.21 72.576 L1519.21 9.54393 L1526.7 9.54393 L1526.7 34.2544 Q1529.37 30.163 1532.98 28.1376 Q1536.63 26.1121 1541.37 26.1121 Q1549.18 26.1121 1553.19 30.9732 Q1557.2 35.7938 1557.2 45.1919 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M1601.81 35.3077 Q1604.28 31.1758 1610.39 27.5299 Q1612.78 26.1121 1620.16 26.1121 Q1628.42 26.1121 1633.56 32.6746 Q1638.75 39.2371 1638.75 49.9314 Q1638.75 60.6258 1633.56 67.1883 Q1628.42 73.7508 1620.16 73.7508 Q1615.17 73.7508 1611.57 71.8063 Q1608 69.8214 1605.65 65.7705 L1605.65 89.8329 L1598.16 89.8329 L1598.16 50.3365 Q1598.16 40.9789 1601.81 35.3077 M1631.01 49.9314 Q1631.01 41.7081 1627.61 37.0496 Q1624.25 32.3505 1618.33 32.3505 Q1612.42 32.3505 1609.02 37.0496 Q1605.65 41.7081 1605.65 49.9314 Q1605.65 58.1548 1609.02 62.8538 Q1612.42 67.5124 1618.33 67.5124 Q1624.25 67.5124 1627.61 62.8538 Q1631.01 58.1548 1631.01 49.9314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M1652.08 34.9026 L1704.01 34.9026 L1704.01 41.7081 L1652.08 41.7081 L1652.08 34.9026 M1652.08 51.4303 L1704.01 51.4303 L1704.01 58.3168 L1652.08 58.3168 L1652.08 51.4303 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M1739.17 17.4837 Q1732.85 17.4837 1729.65 23.7221 Q1726.49 29.92 1726.49 42.3968 Q1726.49 54.833 1729.65 61.0714 Q1732.85 67.2693 1739.17 67.2693 Q1745.53 67.2693 1748.69 61.0714 Q1751.89 54.833 1751.89 42.3968 Q1751.89 29.92 1748.69 23.7221 Q1745.53 17.4837 1739.17 17.4837 M1739.17 11.0023 Q1749.34 11.0023 1754.69 19.0636 Q1760.07 27.0843 1760.07 42.3968 Q1760.07 57.6687 1754.69 65.73 Q1749.34 73.7508 1739.17 73.7508 Q1729 73.7508 1723.62 65.73 Q1718.27 57.6687 1718.27 42.3968 Q1718.27 27.0843 1723.62 19.0636 Q1729 11.0023 1739.17 11.0023 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M1774.45 62.2867 L1783 62.2867 L1783 72.576 L1774.45 72.576 L1774.45 62.2867 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M1798.76 12.096 L1837.65 12.096 L1837.65 15.5798 L1815.69 72.576 L1807.15 72.576 L1827.81 18.9825 L1798.76 18.9825 L1798.76 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip640)\" d=\"M1853.69 12.096 L1885.81 12.096 L1885.81 18.9825 L1861.18 18.9825 L1861.18 33.8088 Q1862.97 33.2012 1864.75 32.9176 Q1866.53 32.5936 1868.31 32.5936 Q1878.44 32.5936 1884.36 38.1433 Q1890.27 43.6931 1890.27 53.1722 Q1890.27 62.9348 1884.19 68.3631 Q1878.12 73.7508 1867.06 73.7508 Q1863.25 73.7508 1859.28 73.1026 Q1855.35 72.4545 1851.14 71.1582 L1851.14 62.9348 Q1854.78 64.9198 1858.67 65.892 Q1862.56 66.8642 1866.9 66.8642 Q1873.9 66.8642 1878 63.1779 Q1882.09 59.4916 1882.09 53.1722 Q1882.09 46.8528 1878 43.1664 Q1873.9 39.4801 1866.9 39.4801 Q1863.62 39.4801 1860.33 40.2093 Q1857.09 40.9384 1853.69 42.4778 L1853.69 12.096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip642)\" d=\"\n",
"M245.995 1139.53 L245.995 1140.04 L284.297 1140.04 L284.297 1139.53 L245.995 1139.53 L245.995 1139.53 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 245.995,1139.53 245.995,1140.04 284.297,1140.04 284.297,1139.53 245.995,1139.53 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M284.297 1138.51 L284.297 1140.04 L322.599 1140.04 L322.599 1138.51 L284.297 1138.51 L284.297 1138.51 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 284.297,1138.51 284.297,1140.04 322.599,1140.04 322.599,1138.51 284.297,1138.51 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M322.599 1137.49 L322.599 1140.04 L360.901 1140.04 L360.901 1137.49 L322.599 1137.49 L322.599 1137.49 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 322.599,1137.49 322.599,1140.04 360.901,1140.04 360.901,1137.49 322.599,1137.49 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M360.901 1136.98 L360.901 1140.04 L399.202 1140.04 L399.202 1136.98 L360.901 1136.98 L360.901 1136.98 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 360.901,1136.98 360.901,1140.04 399.202,1140.04 399.202,1136.98 360.901,1136.98 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M399.202 1133.41 L399.202 1140.04 L437.504 1140.04 L437.504 1133.41 L399.202 1133.41 L399.202 1133.41 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 399.202,1133.41 399.202,1140.04 437.504,1140.04 437.504,1133.41 399.202,1133.41 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M437.504 1129.33 L437.504 1140.04 L475.806 1140.04 L475.806 1129.33 L437.504 1129.33 L437.504 1129.33 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 437.504,1129.33 437.504,1140.04 475.806,1140.04 475.806,1129.33 437.504,1129.33 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M475.806 1128.31 L475.806 1140.04 L514.108 1140.04 L514.108 1128.31 L475.806 1128.31 L475.806 1128.31 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 475.806,1128.31 475.806,1140.04 514.108,1140.04 514.108,1128.31 475.806,1128.31 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M514.108 1109.43 L514.108 1140.04 L552.41 1140.04 L552.41 1109.43 L514.108 1109.43 L514.108 1109.43 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 514.108,1109.43 514.108,1140.04 552.41,1140.04 552.41,1109.43 514.108,1109.43 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M552.41 1094.13 L552.41 1140.04 L590.712 1140.04 L590.712 1094.13 L552.41 1094.13 L552.41 1094.13 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 552.41,1094.13 552.41,1140.04 590.712,1140.04 590.712,1094.13 552.41,1094.13 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M590.712 1089.54 L590.712 1140.04 L629.014 1140.04 L629.014 1089.54 L590.712 1089.54 L590.712 1089.54 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 590.712,1089.54 590.712,1140.04 629.014,1140.04 629.014,1089.54 590.712,1089.54 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M629.014 1068.11 L629.014 1140.04 L667.316 1140.04 L667.316 1068.11 L629.014 1068.11 L629.014 1068.11 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 629.014,1068.11 629.014,1140.04 667.316,1140.04 667.316,1068.11 629.014,1068.11 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M667.316 1031.89 L667.316 1140.04 L705.618 1140.04 L705.618 1031.89 L667.316 1031.89 L667.316 1031.89 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 667.316,1031.89 667.316,1140.04 705.618,1140.04 705.618,1031.89 667.316,1031.89 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M705.618 992.1 L705.618 1140.04 L743.92 1140.04 L743.92 992.1 L705.618 992.1 L705.618 992.1 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 705.618,992.1 705.618,1140.04 743.92,1140.04 743.92,992.1 705.618,992.1 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M743.92 949.758 L743.92 1140.04 L782.222 1140.04 L782.222 949.758 L743.92 949.758 L743.92 949.758 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 743.92,949.758 743.92,1140.04 782.222,1140.04 782.222,949.758 743.92,949.758 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M782.222 919.15 L782.222 1140.04 L820.524 1140.04 L820.524 919.15 L782.222 919.15 L782.222 919.15 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 782.222,919.15 782.222,1140.04 820.524,1140.04 820.524,919.15 782.222,919.15 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M820.524 866.606 L820.524 1140.04 L858.826 1140.04 L858.826 866.606 L820.524 866.606 L820.524 866.606 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 820.524,866.606 820.524,1140.04 858.826,1140.04 858.826,866.606 820.524,866.606 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M858.826 834.978 L858.826 1140.04 L897.128 1140.04 L897.128 834.978 L858.826 834.978 L858.826 834.978 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 858.826,834.978 858.826,1140.04 897.128,1140.04 897.128,834.978 858.826,834.978 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M897.128 758.968 L897.128 1140.04 L935.43 1140.04 L935.43 758.968 L897.128 758.968 L897.128 758.968 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 897.128,758.968 897.128,1140.04 935.43,1140.04 935.43,758.968 897.128,758.968 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M935.43 792.126 L935.43 1140.04 L973.732 1140.04 L973.732 792.126 L935.43 792.126 L935.43 792.126 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 935.43,792.126 935.43,1140.04 973.732,1140.04 973.732,792.126 935.43,792.126 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M973.732 753.356 L973.732 1140.04 L1012.03 1140.04 L1012.03 753.356 L973.732 753.356 L973.732 753.356 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 973.732,753.356 973.732,1140.04 1012.03,1140.04 1012.03,753.356 973.732,753.356 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1012.03 757.947 L1012.03 1140.04 L1050.34 1140.04 L1050.34 757.947 L1012.03 757.947 L1012.03 757.947 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1012.03,757.947 1012.03,1140.04 1050.34,1140.04 1050.34,757.947 1012.03,757.947 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1050.34 789.576 L1050.34 1140.04 L1088.64 1140.04 L1088.64 789.576 L1050.34 789.576 L1050.34 789.576 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1050.34,789.576 1050.34,1140.04 1088.64,1140.04 1088.64,789.576 1050.34,789.576 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1088.64 806.41 L1088.64 1140.04 L1126.94 1140.04 L1126.94 806.41 L1088.64 806.41 L1088.64 806.41 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1088.64,806.41 1088.64,1140.04 1126.94,1140.04 1126.94,806.41 1088.64,806.41 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1126.94 848.241 L1126.94 1140.04 L1165.24 1140.04 L1165.24 848.241 L1126.94 848.241 L1126.94 848.241 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1126.94,848.241 1126.94,1140.04 1165.24,1140.04 1165.24,848.241 1126.94,848.241 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1165.24 858.954 L1165.24 1140.04 L1203.54 1140.04 L1203.54 858.954 L1165.24 858.954 L1165.24 858.954 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1165.24,858.954 1165.24,1140.04 1203.54,1140.04 1203.54,858.954 1165.24,858.954 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1203.54 927.823 L1203.54 1140.04 L1241.85 1140.04 L1241.85 927.823 L1203.54 927.823 L1203.54 927.823 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1203.54,927.823 1203.54,1140.04 1241.85,1140.04 1241.85,927.823 1203.54,927.823 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1241.85 949.758 L1241.85 1140.04 L1280.15 1140.04 L1280.15 949.758 L1241.85 949.758 L1241.85 949.758 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1241.85,949.758 1241.85,1140.04 1280.15,1140.04 1280.15,949.758 1241.85,949.758 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1280.15 1005.36 L1280.15 1140.04 L1318.45 1140.04 L1318.45 1005.36 L1280.15 1005.36 L1280.15 1005.36 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1280.15,1005.36 1280.15,1140.04 1318.45,1140.04 1318.45,1005.36 1280.15,1005.36 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1318.45 1044.13 L1318.45 1140.04 L1356.75 1140.04 L1356.75 1044.13 L1318.45 1044.13 L1318.45 1044.13 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1318.45,1044.13 1318.45,1140.04 1356.75,1140.04 1356.75,1044.13 1318.45,1044.13 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1356.75 1060.46 L1356.75 1140.04 L1395.05 1140.04 L1395.05 1060.46 L1356.75 1060.46 L1356.75 1060.46 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1356.75,1060.46 1356.75,1140.04 1395.05,1140.04 1395.05,1060.46 1356.75,1060.46 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1395.05 1083.41 L1395.05 1140.04 L1433.36 1140.04 L1433.36 1083.41 L1395.05 1083.41 L1395.05 1083.41 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1395.05,1083.41 1395.05,1140.04 1433.36,1140.04 1433.36,1083.41 1395.05,1083.41 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1433.36 1103.31 L1433.36 1140.04 L1471.66 1140.04 L1471.66 1103.31 L1433.36 1103.31 L1433.36 1103.31 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1433.36,1103.31 1433.36,1140.04 1471.66,1140.04 1471.66,1103.31 1433.36,1103.31 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1471.66 1114.02 L1471.66 1140.04 L1509.96 1140.04 L1509.96 1114.02 L1471.66 1114.02 L1471.66 1114.02 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1471.66,1114.02 1471.66,1140.04 1509.96,1140.04 1509.96,1114.02 1471.66,1114.02 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1509.96 1126.27 L1509.96 1140.04 L1548.26 1140.04 L1548.26 1126.27 L1509.96 1126.27 L1509.96 1126.27 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1509.96,1126.27 1509.96,1140.04 1548.26,1140.04 1548.26,1126.27 1509.96,1126.27 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1548.26 1130.86 L1548.26 1140.04 L1586.56 1140.04 L1586.56 1130.86 L1548.26 1130.86 L1548.26 1130.86 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1548.26,1130.86 1548.26,1140.04 1586.56,1140.04 1586.56,1130.86 1548.26,1130.86 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1586.56 1136.47 L1586.56 1140.04 L1624.87 1140.04 L1624.87 1136.47 L1586.56 1136.47 L1586.56 1136.47 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1586.56,1136.47 1586.56,1140.04 1624.87,1140.04 1624.87,1136.47 1586.56,1136.47 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1624.87 1137.49 L1624.87 1140.04 L1663.17 1140.04 L1663.17 1137.49 L1624.87 1137.49 L1624.87 1137.49 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1624.87,1137.49 1624.87,1140.04 1663.17,1140.04 1663.17,1137.49 1624.87,1137.49 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1663.17 1138.51 L1663.17 1140.04 L1701.47 1140.04 L1701.47 1138.51 L1663.17 1138.51 L1663.17 1138.51 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1663.17,1138.51 1663.17,1140.04 1701.47,1140.04 1701.47,1138.51 1663.17,1138.51 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1701.47 1139.53 L1701.47 1140.04 L1739.77 1140.04 L1739.77 1139.53 L1701.47 1139.53 L1701.47 1139.53 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1701.47,1139.53 1701.47,1140.04 1739.77,1140.04 1739.77,1139.53 1701.47,1139.53 \n",
" \"/>\n",
"<path clip-path=\"url(#clip642)\" d=\"\n",
"M1739.77 1139.53 L1739.77 1140.04 L1778.07 1140.04 L1778.07 1139.53 L1739.77 1139.53 L1739.77 1139.53 Z\n",
" \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#000000; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1739.77,1139.53 1739.77,1140.04 1778.07,1140.04 1778.07,1139.53 1739.77,1139.53 \n",
" \"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"265.146\" cy=\"1139.53\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"303.448\" cy=\"1138.51\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"341.75\" cy=\"1137.49\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"380.051\" cy=\"1136.98\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"418.353\" cy=\"1133.41\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"456.655\" cy=\"1129.33\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"494.957\" cy=\"1128.31\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"533.259\" cy=\"1109.43\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"571.561\" cy=\"1094.13\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"609.863\" cy=\"1089.54\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"648.165\" cy=\"1068.11\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"686.467\" cy=\"1031.89\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"724.769\" cy=\"992.1\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"763.071\" cy=\"949.758\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"801.373\" cy=\"919.15\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"839.675\" cy=\"866.606\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"877.977\" cy=\"834.978\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"916.279\" cy=\"758.968\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"954.581\" cy=\"792.126\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"992.883\" cy=\"753.356\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1031.19\" cy=\"757.947\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1069.49\" cy=\"789.576\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1107.79\" cy=\"806.41\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1146.09\" cy=\"848.241\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1184.39\" cy=\"858.954\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1222.69\" cy=\"927.823\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1261\" cy=\"949.758\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1299.3\" cy=\"1005.36\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1337.6\" cy=\"1044.13\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1375.9\" cy=\"1060.46\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1414.2\" cy=\"1083.41\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1452.51\" cy=\"1103.31\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1490.81\" cy=\"1114.02\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1529.11\" cy=\"1126.27\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1567.41\" cy=\"1130.86\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1605.71\" cy=\"1136.47\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1644.02\" cy=\"1137.49\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1682.32\" cy=\"1138.51\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1720.62\" cy=\"1139.53\" r=\"2\"/>\n",
"<circle clip-path=\"url(#clip642)\" style=\"fill:#009af9; stroke:none; fill-opacity:0\" cx=\"1758.92\" cy=\"1139.53\" r=\"2\"/>\n",
"<polyline clip-path=\"url(#clip642)\" style=\"stroke:#e26f46; stroke-linecap:butt; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 200.032,1140.04 215.892,1140.04 362.538,1140.04 450.666,1140.04 525.177,1140.04 606.118,1140.04 680.737,1139.89 720.737,1138.95 760.737,1133.81 783.909,1124.85 \n",
" 807.081,1106.08 818.667,1090.86 830.253,1070.35 841.839,1043.38 853.425,1008.83 863.721,970.98 874.018,925.877 884.314,873.317 894.61,813.46 904.907,746.913 \n",
" 915.203,674.786 925.499,598.711 935.795,520.818 944.824,453.025 953.853,387.714 962.882,326.899 971.911,272.587 980.94,226.67 989.969,190.819 994.483,177.104 \n",
" 998.998,166.379 1003.51,158.748 1008.03,154.285 1012.95,153.081 1017.87,155.708 1022.79,162.136 1027.71,172.291 1032.64,186.055 1037.56,203.271 1042.48,223.744 \n",
" 1047.4,247.247 1057.25,302.284 1067.09,366.055 1076.93,436.002 1086.78,509.506 1096.68,584.489 1106.58,658.195 1116.49,728.645 1126.39,794.277 1136.29,853.974 \n",
" 1146.19,907.058 1156.09,953.253 1166,992.626 1176.95,1028.63 1187.89,1057.45 1198.84,1079.97 1209.79,1097.19 1231.69,1119.45 1253.58,1130.88 1295.25,1138.45 \n",
" 1336.92,1139.83 1423.57,1140.04 1496.51,1140.04 1585.57,1140.04 1669.28,1140.04 1803.4,1140.04 1824.04,1140.04 \n",
" \"/>\n",
"</svg>\n"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"histogram(μi2,bins=0:0.1:4,normalize=true,legend=false,title=\"Histogram of 10000 averages with ρ=0.75\")\n",
"plot!(μi2->pdf(Normal(μ, s2), μi2))"
]
},
{
"cell_type": "markdown",
"metadata": {},
"source": [
"# Task 4\n",
"\n",
"You decide to test the hypothesis that $\\mu=2$. Your decision rule is \n",
"\n",
"- reject the hypothesis if $|(\\mu_i-2)/s|>1.645$ with $s=\\sigma_y/\\sqrt{T}$\n",
"\n",
"With this decision rule, you are clearly assuming that the theoretical result (definition of $s$) is correct.\n",
"\n",
"Estimate both $\\mu_i$ and $\\sigma_y$ from each sample.\n",
"\n",
"In what fraction of the $M$ simulation do you reject your hypothesis when $\\rho=0$ and when $\\rho=0.75$? For the other parameters, use `(T,σ,μ) = (500,3,2)` (same as before)."
]
},
{
"cell_type": "code",
"execution_count": 99,
"metadata": {},
"outputs": [
{
"name": "stdout",
"output_type": "stream",
"text": [
"Frequency of rejections:\n",
" with ρ=0 with ρ=0.75 \n",
" 0.098 0.536\n",
"\n"
]
}
],
"source": [
"(T,σ,μ) = (500,3,2)\n",
"\n",
"rejection1 = 0\n",
"rejection2 = 0\n",
"\n",
"# Count how many times we reject the hypothesis\n",
"for i = 1:M\n",
" # rejections for ρ = 0\n",
" s1 = σi1[i]/sqrt(T)\n",
" if abs((μi1[i] - 2)/s1) > 1.645\n",
" rejection1 += 1\n",
" end\n",
"\n",
" # rejections for ρ = 0.75\n",
" s2 = σi2[i]/sqrt(T)\n",
" if abs((μi2[i] - 2)/s2) > 1.645\n",
" rejection2 += 1\n",
" end\n",
"end\n",
"\n",
"println(\"Frequency of rejections:\")\n",
"printmat([\"with ρ=0 \", rejection1 / (M)], [\"with ρ=0.75 \", rejection2 / (M)])"
]
}
],
"metadata": {
"@webio": {
"lastCommId": null,
"lastKernelId": null
},
"kernelspec": {
"display_name": "Julia 1.7.1",
"language": "julia",
"name": "julia-1.7"
},
"language_info": {
"file_extension": ".jl",
"mimetype": "application/julia",
"name": "julia",
"version": "1.7.1"
}
},
"nbformat": 4,
"nbformat_minor": 4
}