HSG-MCS-HS21_Julia/JuliaTutorial-master/Tutorial_02_Stats.ipynb
2021-11-15 21:14:51 +01:00

546 lines
318 KiB
Plaintext
Raw Permalink Blame History

This file contains ambiguous Unicode characters

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

{
"cells": [
{
"cell_type": "markdown",
"source": [
"# Stats\n",
"\n",
"This notebook loads some data, reports some simple descriptive statistics (means, standard deviations etc) and shows a number of useful plots (scatter plots, histograms, time series plots).\n",
"\n",
"Most of the descriptive stats use the standard package Statistics. The plots rely on the Plots package and the pdf and quantiles are from the [Distributions](https://github.com/JuliaStats/Distributions.jl) package.\n",
"\n",
"For more stat functions, see the [StatsBase](https://github.com/JuliaStats/StatsBase.jl) package. (Not used here.)\n",
"\n",
"Statistical calculations are often reported in tables. This notebook uses my own `printmat()` function. For more powerful alternatives, consider the [PrettyTables](https://github.com/ronisbr/PrettyTables.jl) package."
],
"metadata": {
"collapsed": true
}
},
{
"cell_type": "markdown",
"source": [
"## Load Packages and Extra Functions"
],
"metadata": {}
},
{
"cell_type": "code",
"execution_count": 1,
"source": [
"using Statistics, Printf, Dates, LinearAlgebra, DelimitedFiles, Distributions\n",
"\n",
"include(\"jlFiles/printmat.jl\")"
],
"outputs": [
{
"output_type": "execute_result",
"data": {
"text/plain": [
"printyellow (generic function with 1 method)"
]
},
"metadata": {},
"execution_count": 1
}
],
"metadata": {}
},
{
"cell_type": "code",
"execution_count": 2,
"source": [
"using Plots\n",
"\n",
"#pyplot(size=(600,400))\n",
"gr(size=(480,320))\n",
"default(fmt = :svg)"
],
"outputs": [],
"metadata": {}
},
{
"cell_type": "markdown",
"source": [
"# Load Data from a csv File\n",
"\n",
"The following is a portion of MyData.csv:\n",
"\n",
"```\n",
"date,Mkt-RF,RF,SmallGrowth\n",
"197901,4.18,0.77,10.96\n",
"197902,-3.41,0.73,-2.09\n",
"197903,5.75,0.81,11.71\n",
"197904,0.05,0.8,3.27\n",
"```"
],
"metadata": {}
},
{
"cell_type": "code",
"execution_count": 3,
"source": [
"x = readdlm(\"Data/MyData.csv\",',',skipstart=1) #reading the csv file\n",
" #skip 1st line\n",
"println(\"\\nfirst four lines of x:\")\n",
"printmat(x[1:4,:])"
],
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"\n",
"first four lines of x:\n",
"197901.000 4.180 0.770 10.960\n",
"197902.000 -3.410 0.730 -2.090\n",
"197903.000 5.750 0.810 11.710\n",
"197904.000 0.050 0.800 3.270\n",
"\n"
]
}
],
"metadata": {}
},
{
"cell_type": "markdown",
"source": [
"### Creating Variables"
],
"metadata": {}
},
{
"cell_type": "code",
"execution_count": 4,
"source": [
"ym = round.(Int,x[:,1]) #yearmonth, like 200712\n",
"(Rme,Rf,R) = (x[:,2],x[:,3],x[:,4]) #creating variables from columns of x\n",
"Re = R - Rf #do R .- Rf if R has several columns\n",
"dN = Date.(string.(ym),\"yyyymm\") #convert to string and then to Julia Date\n",
"\n",
"println(\"first 4 obs of Rme and Re\")\n",
"printmat([dN[1:4] Rme[1:4,:] Re[1:4,:]])"
],
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"first 4 obs of Rme and Re\n",
"1979-01-01 4.180 10.190\n",
"1979-02-01 -3.410 -2.820\n",
"1979-03-01 5.750 10.900\n",
"1979-04-01 0.050 2.470\n",
"\n"
]
}
],
"metadata": {
"scrolled": true
}
},
{
"cell_type": "markdown",
"source": [
"# Some Descriptive Statistics"
],
"metadata": {}
},
{
"cell_type": "markdown",
"source": [
"## Means and Standard Deviations\n",
"\n",
"The next few cells estimate means, standard deviations, covariances and correlations of the variables `Rme` (US equity market excess return) and `Re` (excess returns for a segment of the market, small growth firms). "
],
"metadata": {}
},
{
"cell_type": "code",
"execution_count": 5,
"source": [
"μ = mean([Rme Re],dims=1) #,dims=1 to calculate average along a column\n",
"σ = std([Rme Re],dims=1) #do \\sigma[Tab] to get σ\n",
"\n",
"printmat([μ;σ],colNames=[\"Rme\",\"Re\"],rowNames=[\"mean\",\"std\"])"
],
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
" Rme Re\n",
"mean 0.602 0.303\n",
"std 4.604 8.572\n",
"\n"
]
}
],
"metadata": {}
},
{
"cell_type": "markdown",
"source": [
"## Covariances and Correlations"
],
"metadata": {}
},
{
"cell_type": "code",
"execution_count": 6,
"source": [
"println(\"\\n\",\"cov([Rme Re]): \")\n",
"printmat(cov([Rme Re]))\n",
"\n",
"println(\"\\n\",\"cor([Rme Re]): \")\n",
"printmat(cor([Rme Re]))"
],
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"\n",
"cov([Rme Re]): \n",
" 21.197 28.426\n",
" 28.426 73.475\n",
"\n",
"\n",
"cor([Rme Re]): \n",
" 1.000 0.720\n",
" 0.720 1.000\n",
"\n"
]
}
],
"metadata": {}
},
{
"cell_type": "markdown",
"source": [
"## OLS\n",
"\n",
"A linear regression\n",
"$\n",
"y_t = x_t'b + u_t,\n",
"$\n",
"where $x_t=[1;R^e_{m,t}]$.\n",
"\n",
"Clearly, the first element of $b$ is the intercept and the second element is the slope coefficient.\n",
"\n",
"The code below creates a $Tx2$ matrix `x` with $x'_t$ on row $t$. $y$ is a T-element vector (or $Tx1$).\n",
"\n",
"The GLM package (not used here) has powerful regression methods. See https://github.com/JuliaStats/GLM.jl."
],
"metadata": {}
},
{
"cell_type": "code",
"execution_count": 7,
"source": [
"c = ones(size(Rme,1)) #a vector with ones, no. rows from variable\n",
"x = [c Rme] #x is a Tx2 matrix\n",
"y = copy(Re) #to get standard OLS notation\n",
"\n",
"b2 = inv(x'x)*x'y #OLS according to a textbook\n",
"b = x\\y #also OLS, numerically more stable\n",
"u = y - x*b #OLS residuals\n",
"R2 = 1 - var(u)/var(y) #R2\n",
"\n",
"println(\"OLS coefficients, regressing Re on constant and Rme\")\n",
"printmat([b b2],colNames=[\"Calc 1\",\"Calc 2\"],rowNames=[\"c\",\"Rme\"])\n",
"printlnPs(\"R2: \",R2) \n",
"printlnPs(\"no. of observations: \",size(Re,1))"
],
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"OLS coefficients, regressing Re on constant and Rme\n",
" Calc 1 Calc 2\n",
"c -0.504 -0.504\n",
"Rme 1.341 1.341\n",
"\n",
" R2: 0.519\n",
"no. of observations: 388 \n"
]
}
],
"metadata": {}
},
{
"cell_type": "code",
"execution_count": 8,
"source": [
"Covb = inv(x'x)*var(u) #covariance matrix of b estimates\n",
"Stdb = sqrt.(diag(Covb)) #std of b estimates\n",
"tstat = (b .- 0)./Stdb #t-stats, replace 0 with your null hypothesis \n",
"\n",
"println(\"\\ncoeffs and t-stats\")\n",
"printmat([b tstat],colNames=[\"Coef\",\"t-stat\"],rowNames=[\"c\",\"Rme\"])"
],
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"\n",
"coeffs and t-stats\n",
" Coef t-stat\n",
"c -0.504 -1.656\n",
"Rme 1.341 20.427\n",
"\n"
]
}
],
"metadata": {}
},
{
"cell_type": "markdown",
"source": [
"# Drawing Random Numbers and Finding Critical Values"
],
"metadata": {}
},
{
"cell_type": "markdown",
"source": [
"## Random Numbers: Independent Variables"
],
"metadata": {}
},
{
"cell_type": "code",
"execution_count": 9,
"source": [
"T = 100\n",
"x = randn(T,2) #T x 2 matrix, N(0,1) distribution\n",
"\n",
"println(\"\\n\",\"mean and std of random draws: \")\n",
"μ = mean(x,dims=1)\n",
"σ = std(x,dims=1)\n",
"printmat([μ;σ],colNames=[\"series 1\",\"series 2\"],rowNames=[\"mean\",\"std\"])\n",
"\n",
"println(\"covariance matrix:\")\n",
"printmat(cov(x))\n",
"println(\"correlation matrix:\")\n",
"printmat(cor(x))"
],
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"\n",
"mean and std of random draws: \n",
" series 1 series 2\n",
"mean 0.140 0.150\n",
"std 1.038 1.051\n",
"\n",
"covariance matrix:\n",
" 1.078 0.057\n",
" 0.057 1.104\n",
"\n",
"correlation matrix:\n",
" 1.000 0.052\n",
" 0.052 1.000\n",
"\n"
]
}
],
"metadata": {}
},
{
"cell_type": "markdown",
"source": [
"## Random Numbers: Correlated Variables"
],
"metadata": {}
},
{
"cell_type": "code",
"execution_count": 10,
"source": [
"μ = [-1,10] #vector of means\n",
"Σ = [1 0.5; #covariance matrix\n",
" 0.5 2]\n",
"\n",
"T = 100\n",
"x = rand(MvNormal(μ,Σ),T)' #random numbers, T x 2, drawn from bivariate N(μ,Σ)\n",
"\n",
"println(\"covariance matrix\")\n",
"printmat(cov(x))\n",
"println(\"correlation matrix:\")\n",
"printmat(cor(x))"
],
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"covariance matrix\n",
" 1.097 0.766\n",
" 0.766 2.539\n",
"\n",
"correlation matrix:\n",
" 1.000 0.459\n",
" 0.459 1.000\n",
"\n"
]
}
],
"metadata": {}
},
{
"cell_type": "markdown",
"source": [
"## Quantiles (\"critical values\") of Distributions"
],
"metadata": {}
},
{
"cell_type": "code",
"execution_count": 11,
"source": [
"N05 = quantile(Normal(0,1),0.05) #from the Distributions package\n",
"Chisq05 = quantile(Chisq(5),0.95)\n",
"\n",
"println(\"\\n\",\"5th percentile of N(0,1) and 95th of Chisquare(5)\") #lots of statistics functions\n",
"printmat([N05 Chisq05])"
],
"outputs": [
{
"output_type": "stream",
"name": "stdout",
"text": [
"\n",
"5th percentile of N(0,1) and 95th of Chisquare(5)\n",
" -1.645 11.070\n",
"\n"
]
}
],
"metadata": {}
},
{
"cell_type": "markdown",
"source": [
"# Statistical Plots"
],
"metadata": {}
},
{
"cell_type": "code",
"execution_count": 12,
"source": [
"xTicksLoc = [Date(1980),Date(1990),Date(2000),Date(2010)]\n",
"xTicksLab = Dates.format.(xTicksLoc,\"Y\")\n",
"\n",
"p1 = plot( dN,Rme,\n",
" linecolor = :blue,\n",
" legend = false,\n",
" xticks = (xTicksLoc,xTicksLab),\n",
" ylim = (-25,25),\n",
" title = \"Time series plot: monthly US equity market excess return\",\n",
" titlefont = font(10),\n",
" ylabel = \"%\" )\n",
"display(p1)"
],
"outputs": [
{
"output_type": "display_data",
"data": {
"image/svg+xml": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"480\" height=\"320\" viewBox=\"0 0 1920 1280\">\n<defs>\n <clipPath id=\"clip650\">\n <rect x=\"0\" y=\"0\" width=\"1920\" height=\"1280\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip650)\" d=\"\nM0 1280 L1920 1280 L1920 0 L0 0 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip651\">\n <rect x=\"384\" y=\"0\" width=\"1345\" height=\"1280\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip650)\" d=\"\nM227.937 1169.65 L1872.76 1169.65 L1872.76 106.192 L227.937 106.192 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip652\">\n <rect x=\"227\" y=\"106\" width=\"1646\" height=\"1064\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip652)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 322.576,1169.65 322.576,106.192 \n \"/>\n<polyline clip-path=\"url(#clip652)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 803.848,1169.65 803.848,106.192 \n \"/>\n<polyline clip-path=\"url(#clip652)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1284.99,1169.65 1284.99,106.192 \n \"/>\n<polyline clip-path=\"url(#clip652)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1766.26,1169.65 1766.26,106.192 \n \"/>\n<polyline clip-path=\"url(#clip650)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 227.937,1169.65 1872.76,1169.65 \n \"/>\n<polyline clip-path=\"url(#clip650)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 322.576,1169.65 322.576,1156.89 \n \"/>\n<polyline clip-path=\"url(#clip650)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 803.848,1169.65 803.848,1156.89 \n \"/>\n<polyline clip-path=\"url(#clip650)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1284.99,1169.65 1284.99,1156.89 \n \"/>\n<polyline clip-path=\"url(#clip650)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1766.26,1169.65 1766.26,1156.89 \n \"/>\n<path clip-path=\"url(#clip650)\" d=\"M 0 0 M272.576 1222.54 L280.215 1222.54 L280.215 1196.18 L271.905 1197.85 L271.905 1193.59 L280.169 1191.92 L284.844 1191.92 L284.844 1222.54 L292.483 1222.54 L292.483 1226.48 L272.576 1226.48 L272.576 1222.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M297.692 1225.76 L297.692 1221.5 Q299.451 1222.34 301.256 1222.78 Q303.062 1223.22 304.798 1223.22 Q309.428 1223.22 311.858 1220.11 Q314.312 1216.99 314.659 1210.65 Q313.317 1212.64 311.256 1213.7 Q309.196 1214.77 306.696 1214.77 Q301.511 1214.77 298.479 1211.64 Q295.469 1208.49 295.469 1203.05 Q295.469 1197.73 298.618 1194.51 Q301.766 1191.29 306.997 1191.29 Q312.992 1191.29 316.141 1195.9 Q319.312 1200.48 319.312 1209.23 Q319.312 1217.41 315.423 1222.29 Q311.557 1227.15 305.006 1227.15 Q303.247 1227.15 301.442 1226.8 Q299.636 1226.46 297.692 1225.76 M306.997 1211.11 Q310.145 1211.11 311.974 1208.96 Q313.826 1206.8 313.826 1203.05 Q313.826 1199.33 311.974 1197.17 Q310.145 1195 306.997 1195 Q303.849 1195 301.997 1197.17 Q300.168 1199.33 300.168 1203.05 Q300.168 1206.8 301.997 1208.96 Q303.849 1211.11 306.997 1211.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M334.381 1210.07 Q331.048 1210.07 329.127 1211.85 Q327.228 1213.63 327.228 1216.76 Q327.228 1219.88 329.127 1221.67 Q331.048 1223.45 334.381 1223.45 Q337.715 1223.45 339.636 1221.67 Q341.557 1219.86 341.557 1216.76 Q341.557 1213.63 339.636 1211.85 Q337.738 1210.07 334.381 1210.07 M329.705 1208.08 Q326.696 1207.34 325.006 1205.28 Q323.34 1203.22 323.34 1200.25 Q323.34 1196.11 326.279 1193.7 Q329.242 1191.29 334.381 1191.29 Q339.543 1191.29 342.483 1193.7 Q345.423 1196.11 345.423 1200.25 Q345.423 1203.22 343.733 1205.28 Q342.066 1207.34 339.08 1208.08 Q342.46 1208.86 344.335 1211.16 Q346.233 1213.45 346.233 1216.76 Q346.233 1221.78 343.154 1224.47 Q340.099 1227.15 334.381 1227.15 Q328.664 1227.15 325.585 1224.47 Q322.529 1221.78 322.529 1216.76 Q322.529 1213.45 324.428 1211.16 Q326.326 1208.86 329.705 1208.08 M327.992 1200.69 Q327.992 1203.38 329.659 1204.88 Q331.349 1206.39 334.381 1206.39 Q337.39 1206.39 339.08 1204.88 Q340.793 1203.38 340.793 1200.69 Q340.793 1198.01 339.08 1196.5 Q337.39 1195 334.381 1195 Q331.349 1195 329.659 1196.5 Q327.992 1198.01 327.992 1200.69 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M361.302 1195 Q357.691 1195 355.863 1198.56 Q354.057 1202.11 354.057 1209.23 Q354.057 1216.34 355.863 1219.91 Q357.691 1223.45 361.302 1223.45 Q364.937 1223.45 366.742 1219.91 Q368.571 1216.34 368.571 1209.23 Q368.571 1202.11 366.742 1198.56 Q364.937 1195 361.302 1195 M361.302 1191.29 Q367.113 1191.29 370.168 1195.9 Q373.247 1200.48 373.247 1209.23 Q373.247 1217.96 370.168 1222.57 Q367.113 1227.15 361.302 1227.15 Q355.492 1227.15 352.414 1222.57 Q349.358 1217.96 349.358 1209.23 Q349.358 1200.48 352.414 1195.9 Q355.492 1191.29 361.302 1191.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M753.894 1222.54 L761.533 1222.54 L761.533 1196.18 L753.223 1197.85 L753.223 1193.59 L761.487 1191.92 L766.163 1191.92 L766.163 1222.54 L773.801 1222.54 L773.801 1226.48 L753.894 1226.48 L753.894 1222.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M779.01 1225.76 L779.01 1221.5 Q780.769 1222.34 782.575 1222.78 Q784.38 1223.22 786.116 1223.22 Q790.746 1223.22 793.176 1220.11 Q795.63 1216.99 795.977 1210.65 Q794.635 1212.64 792.574 1213.7 Q790.514 1214.77 788.014 1214.77 Q782.829 1214.77 779.797 1211.64 Q776.788 1208.49 776.788 1203.05 Q776.788 1197.73 779.936 1194.51 Q783.084 1191.29 788.315 1191.29 Q794.311 1191.29 797.459 1195.9 Q800.63 1200.48 800.63 1209.23 Q800.63 1217.41 796.741 1222.29 Q792.875 1227.15 786.325 1227.15 Q784.565 1227.15 782.76 1226.8 Q780.954 1226.46 779.01 1225.76 M788.315 1211.11 Q791.463 1211.11 793.292 1208.96 Q795.144 1206.8 795.144 1203.05 Q795.144 1199.33 793.292 1197.17 Q791.463 1195 788.315 1195 Q785.167 1195 783.315 1197.17 Q781.487 1199.33 781.487 1203.05 Q781.487 1206.8 783.315 1208.96 Q785.167 1211.11 788.315 1211.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M805.838 1225.76 L805.838 1221.5 Q807.598 1222.34 809.403 1222.78 Q811.209 1223.22 812.945 1223.22 Q817.574 1223.22 820.005 1220.11 Q822.459 1216.99 822.806 1210.65 Q821.463 1212.64 819.403 1213.7 Q817.343 1214.77 814.843 1214.77 Q809.658 1214.77 806.625 1211.64 Q803.616 1208.49 803.616 1203.05 Q803.616 1197.73 806.764 1194.51 Q809.912 1191.29 815.144 1191.29 Q821.139 1191.29 824.287 1195.9 Q827.459 1200.48 827.459 1209.23 Q827.459 1217.41 823.57 1222.29 Q819.704 1227.15 813.153 1227.15 Q811.394 1227.15 809.588 1226.8 Q807.783 1226.46 805.838 1225.76 M815.144 1211.11 Q818.292 1211.11 820.121 1208.96 Q821.972 1206.8 821.972 1203.05 Q821.972 1199.33 820.121 1197.17 Q818.292 1195 815.144 1195 Q811.996 1195 810.144 1197.17 Q808.315 1199.33 808.315 1203.05 Q808.315 1206.8 810.144 1208.96 Q811.996 1211.11 815.144 1211.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M842.528 1195 Q838.917 1195 837.088 1198.56 Q835.283 1202.11 835.283 1209.23 Q835.283 1216.34 837.088 1219.91 Q838.917 1223.45 842.528 1223.45 Q846.162 1223.45 847.968 1219.91 Q849.796 1216.34 849.796 1209.23 Q849.796 1202.11 847.968 1198.56 Q846.162 1195 842.528 1195 M842.528 1191.29 Q848.338 1191.29 851.394 1195.9 Q854.472 1200.48 854.472 1209.23 Q854.472 1217.96 851.394 1222.57 Q848.338 1227.15 842.528 1227.15 Q836.718 1227.15 833.639 1222.57 Q830.584 1217.96 830.584 1209.23 Q830.584 1200.48 833.639 1195.9 Q836.718 1191.29 842.528 1191.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1239.12 1222.54 L1255.44 1222.54 L1255.44 1226.48 L1233.49 1226.48 L1233.49 1222.54 Q1236.16 1219.79 1240.74 1215.16 Q1245.35 1210.51 1246.53 1209.17 Q1248.77 1206.64 1249.65 1204.91 Q1250.55 1203.15 1250.55 1201.46 Q1250.55 1198.7 1248.61 1196.97 Q1246.69 1195.23 1243.59 1195.23 Q1241.39 1195.23 1238.93 1195.99 Q1236.5 1196.76 1233.73 1198.31 L1233.73 1193.59 Q1236.55 1192.45 1239 1191.87 Q1241.46 1191.29 1243.49 1191.29 Q1248.87 1191.29 1252.06 1193.98 Q1255.25 1196.67 1255.25 1201.16 Q1255.25 1203.29 1254.44 1205.21 Q1253.66 1207.1 1251.55 1209.7 Q1250.97 1210.37 1247.87 1213.59 Q1244.77 1216.78 1239.12 1222.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1270.51 1195 Q1266.9 1195 1265.07 1198.56 Q1263.26 1202.11 1263.26 1209.23 Q1263.26 1216.34 1265.07 1219.91 Q1266.9 1223.45 1270.51 1223.45 Q1274.14 1223.45 1275.95 1219.91 Q1277.78 1216.34 1277.78 1209.23 Q1277.78 1202.11 1275.95 1198.56 Q1274.14 1195 1270.51 1195 M1270.51 1191.29 Q1276.32 1191.29 1279.37 1195.9 Q1282.45 1200.48 1282.45 1209.23 Q1282.45 1217.96 1279.37 1222.57 Q1276.32 1227.15 1270.51 1227.15 Q1264.7 1227.15 1261.62 1222.57 Q1258.56 1217.96 1258.56 1209.23 Q1258.56 1200.48 1261.62 1195.9 Q1264.7 1191.29 1270.51 1191.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1297.52 1195 Q1293.91 1195 1292.08 1198.56 Q1290.28 1202.11 1290.28 1209.23 Q1290.28 1216.34 1292.08 1219.91 Q1293.91 1223.45 1297.52 1223.45 Q1301.16 1223.45 1302.96 1219.91 Q1304.79 1216.34 1304.79 1209.23 Q1304.79 1202.11 1302.96 1198.56 Q1301.16 1195 1297.52 1195 M1297.52 1191.29 Q1303.33 1191.29 1306.39 1195.9 Q1309.47 1200.48 1309.47 1209.23 Q1309.47 1217.96 1306.39 1222.57 Q1303.33 1227.15 1297.52 1227.15 Q1291.71 1227.15 1288.63 1222.57 Q1285.58 1217.96 1285.58 1209.23 Q1285.58 1200.48 1288.63 1195.9 Q1291.71 1191.29 1297.52 1191.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1324.54 1195 Q1320.92 1195 1319.1 1198.56 Q1317.29 1202.11 1317.29 1209.23 Q1317.29 1216.34 1319.1 1219.91 Q1320.92 1223.45 1324.54 1223.45 Q1328.17 1223.45 1329.98 1219.91 Q1331.8 1216.34 1331.8 1209.23 Q1331.8 1202.11 1329.98 1198.56 Q1328.17 1195 1324.54 1195 M1324.54 1191.29 Q1330.35 1191.29 1333.4 1195.9 Q1336.48 1200.48 1336.48 1209.23 Q1336.48 1217.96 1333.4 1222.57 Q1330.35 1227.15 1324.54 1227.15 Q1318.73 1227.15 1315.65 1222.57 Q1312.59 1217.96 1312.59 1209.23 Q1312.59 1200.48 1315.65 1195.9 Q1318.73 1191.29 1324.54 1191.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1721.01 1222.54 L1737.32 1222.54 L1737.32 1226.48 L1715.38 1226.48 L1715.38 1222.54 Q1718.04 1219.79 1722.63 1215.16 Q1727.23 1210.51 1728.41 1209.17 Q1730.66 1206.64 1731.54 1204.91 Q1732.44 1203.15 1732.44 1201.46 Q1732.44 1198.7 1730.5 1196.97 Q1728.57 1195.23 1725.47 1195.23 Q1723.27 1195.23 1720.82 1195.99 Q1718.39 1196.76 1715.61 1198.31 L1715.61 1193.59 Q1718.44 1192.45 1720.89 1191.87 Q1723.34 1191.29 1725.38 1191.29 Q1730.75 1191.29 1733.94 1193.98 Q1737.14 1196.67 1737.14 1201.16 Q1737.14 1203.29 1736.33 1205.21 Q1735.54 1207.1 1733.44 1209.7 Q1732.86 1210.37 1729.76 1213.59 Q1726.65 1216.78 1721.01 1222.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1752.39 1195 Q1748.78 1195 1746.95 1198.56 Q1745.15 1202.11 1745.15 1209.23 Q1745.15 1216.34 1746.95 1219.91 Q1748.78 1223.45 1752.39 1223.45 Q1756.03 1223.45 1757.83 1219.91 Q1759.66 1216.34 1759.66 1209.23 Q1759.66 1202.11 1757.83 1198.56 Q1756.03 1195 1752.39 1195 M1752.39 1191.29 Q1758.2 1191.29 1761.26 1195.9 Q1764.34 1200.48 1764.34 1209.23 Q1764.34 1217.96 1761.26 1222.57 Q1758.2 1227.15 1752.39 1227.15 Q1746.58 1227.15 1743.51 1222.57 Q1740.45 1217.96 1740.45 1209.23 Q1740.45 1200.48 1743.51 1195.9 Q1746.58 1191.29 1752.39 1191.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1770.22 1222.54 L1777.86 1222.54 L1777.86 1196.18 L1769.55 1197.85 L1769.55 1193.59 L1777.81 1191.92 L1782.49 1191.92 L1782.49 1222.54 L1790.13 1222.54 L1790.13 1226.48 L1770.22 1226.48 L1770.22 1222.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1805.19 1195 Q1801.58 1195 1799.75 1198.56 Q1797.95 1202.11 1797.95 1209.23 Q1797.95 1216.34 1799.75 1219.91 Q1801.58 1223.45 1805.19 1223.45 Q1808.83 1223.45 1810.63 1219.91 Q1812.46 1216.34 1812.46 1209.23 Q1812.46 1202.11 1810.63 1198.56 Q1808.83 1195 1805.19 1195 M1805.19 1191.29 Q1811 1191.29 1814.06 1195.9 Q1817.14 1200.48 1817.14 1209.23 Q1817.14 1217.96 1814.06 1222.57 Q1811 1227.15 1805.19 1227.15 Q1799.38 1227.15 1796.31 1222.57 Q1793.25 1217.96 1793.25 1209.23 Q1793.25 1200.48 1796.31 1195.9 Q1799.38 1191.29 1805.19 1191.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip652)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 227.937,1063.3 1872.76,1063.3 \n \"/>\n<polyline clip-path=\"url(#clip652)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 227.937,850.611 1872.76,850.611 \n \"/>\n<polyline clip-path=\"url(#clip652)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 227.937,637.92 1872.76,637.92 \n \"/>\n<polyline clip-path=\"url(#clip652)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 227.937,425.229 1872.76,425.229 \n \"/>\n<polyline clip-path=\"url(#clip652)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 227.937,212.538 1872.76,212.538 \n \"/>\n<polyline clip-path=\"url(#clip650)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 227.937,1169.65 227.937,106.192 \n \"/>\n<polyline clip-path=\"url(#clip650)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 227.937,1063.3 247.674,1063.3 \n \"/>\n<polyline clip-path=\"url(#clip650)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 227.937,850.611 247.674,850.611 \n \"/>\n<polyline clip-path=\"url(#clip650)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 227.937,637.92 247.674,637.92 \n \"/>\n<polyline clip-path=\"url(#clip650)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 227.937,425.229 247.674,425.229 \n \"/>\n<polyline clip-path=\"url(#clip650)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 227.937,212.538 247.674,212.538 \n \"/>\n<path clip-path=\"url(#clip650)\" d=\"M 0 0 M117.031 1063.75 L146.706 1063.75 L146.706 1067.69 L117.031 1067.69 L117.031 1063.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M155.803 1076.65 L172.123 1076.65 L172.123 1080.58 L150.178 1080.58 L150.178 1076.65 Q152.841 1073.89 157.424 1069.26 Q162.03 1064.61 163.211 1063.27 Q165.456 1060.74 166.336 1059.01 Q167.239 1057.25 167.239 1055.56 Q167.239 1052.8 165.294 1051.07 Q163.373 1049.33 160.271 1049.33 Q158.072 1049.33 155.618 1050.1 Q153.188 1050.86 150.41 1052.41 L150.41 1047.69 Q153.234 1046.55 155.688 1045.98 Q158.141 1045.4 160.178 1045.4 Q165.549 1045.4 168.743 1048.08 Q171.938 1050.77 171.938 1055.26 Q171.938 1057.39 171.127 1059.31 Q170.34 1061.21 168.234 1063.8 Q167.655 1064.47 164.553 1067.69 Q161.452 1070.88 155.803 1076.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M187.192 1049.1 Q183.581 1049.1 181.752 1052.67 Q179.947 1056.21 179.947 1063.34 Q179.947 1070.44 181.752 1074.01 Q183.581 1077.55 187.192 1077.55 Q190.826 1077.55 192.632 1074.01 Q194.461 1070.44 194.461 1063.34 Q194.461 1056.21 192.632 1052.67 Q190.826 1049.1 187.192 1049.1 M187.192 1045.4 Q193.002 1045.4 196.058 1050 Q199.137 1054.59 199.137 1063.34 Q199.137 1072.06 196.058 1076.67 Q193.002 1081.25 187.192 1081.25 Q181.382 1081.25 178.303 1076.67 Q175.248 1072.06 175.248 1063.34 Q175.248 1054.59 178.303 1050 Q181.382 1045.4 187.192 1045.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M116.66 851.063 L146.336 851.063 L146.336 854.998 L116.66 854.998 L116.66 851.063 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M152.216 863.956 L159.854 863.956 L159.854 837.59 L151.544 839.257 L151.544 834.998 L159.808 833.331 L164.484 833.331 L164.484 863.956 L172.123 863.956 L172.123 867.891 L152.216 867.891 L152.216 863.956 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M187.192 836.41 Q183.581 836.41 181.752 839.975 Q179.947 843.516 179.947 850.646 Q179.947 857.752 181.752 861.317 Q183.581 864.859 187.192 864.859 Q190.826 864.859 192.632 861.317 Q194.461 857.752 194.461 850.646 Q194.461 843.516 192.632 839.975 Q190.826 836.41 187.192 836.41 M187.192 832.706 Q193.002 832.706 196.058 837.313 Q199.137 841.896 199.137 850.646 Q199.137 859.373 196.058 863.979 Q193.002 868.562 187.192 868.562 Q181.382 868.562 178.303 863.979 Q175.248 859.373 175.248 850.646 Q175.248 841.896 178.303 837.313 Q181.382 832.706 187.192 832.706 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M187.192 623.719 Q183.581 623.719 181.752 627.283 Q179.947 630.825 179.947 637.955 Q179.947 645.061 181.752 648.626 Q183.581 652.168 187.192 652.168 Q190.826 652.168 192.632 648.626 Q194.461 645.061 194.461 637.955 Q194.461 630.825 192.632 627.283 Q190.826 623.719 187.192 623.719 M187.192 620.015 Q193.002 620.015 196.058 624.621 Q199.137 629.205 199.137 637.955 Q199.137 646.682 196.058 651.288 Q193.002 655.871 187.192 655.871 Q181.382 655.871 178.303 651.288 Q175.248 646.682 175.248 637.955 Q175.248 629.205 178.303 624.621 Q181.382 620.015 187.192 620.015 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M152.216 438.574 L159.854 438.574 L159.854 412.208 L151.544 413.875 L151.544 409.616 L159.808 407.949 L164.484 407.949 L164.484 438.574 L172.123 438.574 L172.123 442.509 L152.216 442.509 L152.216 438.574 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M187.192 411.028 Q183.581 411.028 181.752 414.592 Q179.947 418.134 179.947 425.264 Q179.947 432.37 181.752 435.935 Q183.581 439.476 187.192 439.476 Q190.826 439.476 192.632 435.935 Q194.461 432.37 194.461 425.264 Q194.461 418.134 192.632 414.592 Q190.826 411.028 187.192 411.028 M187.192 407.324 Q193.002 407.324 196.058 411.93 Q199.137 416.514 199.137 425.264 Q199.137 433.99 196.058 438.597 Q193.002 443.18 187.192 443.18 Q181.382 443.18 178.303 438.597 Q175.248 433.99 175.248 425.264 Q175.248 416.514 178.303 411.93 Q181.382 407.324 187.192 407.324 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M155.803 225.883 L172.123 225.883 L172.123 229.818 L150.178 229.818 L150.178 225.883 Q152.841 223.128 157.424 218.498 Q162.03 213.846 163.211 212.503 Q165.456 209.98 166.336 208.244 Q167.239 206.484 167.239 204.795 Q167.239 202.04 165.294 200.304 Q163.373 198.568 160.271 198.568 Q158.072 198.568 155.618 199.332 Q153.188 200.096 150.41 201.647 L150.41 196.924 Q153.234 195.79 155.688 195.211 Q158.141 194.633 160.178 194.633 Q165.549 194.633 168.743 197.318 Q171.938 200.003 171.938 204.494 Q171.938 206.623 171.127 208.545 Q170.34 210.443 168.234 213.035 Q167.655 213.707 164.553 216.924 Q161.452 220.119 155.803 225.883 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M187.192 198.336 Q183.581 198.336 181.752 201.901 Q179.947 205.443 179.947 212.572 Q179.947 219.679 181.752 223.244 Q183.581 226.785 187.192 226.785 Q190.826 226.785 192.632 223.244 Q194.461 219.679 194.461 212.572 Q194.461 205.443 192.632 201.901 Q190.826 198.336 187.192 198.336 M187.192 194.633 Q193.002 194.633 196.058 199.239 Q199.137 203.822 199.137 212.572 Q199.137 221.299 196.058 225.906 Q193.002 230.489 187.192 230.489 Q181.382 230.489 178.303 225.906 Q175.248 221.299 175.248 212.572 Q175.248 203.822 178.303 199.239 Q181.382 194.633 187.192 194.633 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M52.6928 621.496 Q52.6928 624.266 55.0481 625.857 Q57.4034 627.417 61.6048 627.417 Q65.7425 627.417 68.1296 625.857 Q70.485 624.266 70.485 621.496 Q70.485 618.791 68.1296 617.231 Q65.7425 615.64 61.6048 615.64 Q57.4353 615.64 55.08 617.231 Q52.6928 618.791 52.6928 621.496 M48.6506 621.496 Q48.6506 616.468 52.1517 613.508 Q55.6529 610.547 61.6048 610.547 Q67.5567 610.547 71.0579 613.539 Q74.5272 616.499 74.5272 621.496 Q74.5272 626.589 71.0579 629.549 Q67.5567 632.509 61.6048 632.509 Q55.621 632.509 52.1517 629.549 Q48.6506 626.557 48.6506 621.496 M29.267 654.344 Q29.267 657.081 31.6542 658.672 Q34.0095 660.232 38.1472 660.232 Q42.3485 660.232 44.7038 658.672 Q47.0592 657.113 47.0592 654.344 Q47.0592 651.574 44.7038 650.015 Q42.3485 648.423 38.1472 648.423 Q34.0413 648.423 31.6542 650.015 Q29.267 651.606 29.267 654.344 M25.2248 625.602 L25.2248 620.51 L74.5272 650.238 L74.5272 655.33 L25.2248 625.602 M25.2248 654.344 Q25.2248 649.315 28.7259 646.323 Q32.1952 643.331 38.1472 643.331 Q44.1628 643.331 47.6321 646.323 Q51.1014 649.283 51.1014 654.344 Q51.1014 659.404 47.6321 662.364 Q44.1309 665.293 38.1472 665.293 Q32.2271 665.293 28.7259 662.332 Q25.2248 659.372 25.2248 654.344 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M275.22 8.64 L311.765 8.64 L311.765 13.559 L296.43 13.559 L296.43 51.84 L290.556 51.84 L290.556 13.559 L275.22 13.559 L275.22 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M315.527 19.4328 L320.851 19.4328 L320.851 51.84 L315.527 51.84 L315.527 19.4328 M315.527 6.81709 L320.851 6.81709 L320.851 13.559 L315.527 13.559 L315.527 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M351.667 25.6538 Q353.663 22.0659 356.441 20.3587 Q359.219 18.6515 362.98 18.6515 Q368.044 18.6515 370.793 22.2105 Q373.541 25.7406 373.541 32.2799 L373.541 51.84 L368.188 51.84 L368.188 32.4535 Q368.188 27.795 366.539 25.5381 Q364.89 23.2811 361.504 23.2811 Q357.367 23.2811 354.965 26.03 Q352.564 28.7788 352.564 33.5241 L352.564 51.84 L347.211 51.84 L347.211 32.4535 Q347.211 27.7661 345.561 25.5381 Q343.912 23.2811 340.469 23.2811 Q336.389 23.2811 333.987 26.0589 Q331.586 28.8077 331.586 33.5241 L331.586 51.84 L326.233 51.84 L326.233 19.4328 L331.586 19.4328 L331.586 24.4675 Q333.409 21.4872 335.955 20.0693 Q338.501 18.6515 342.002 18.6515 Q345.532 18.6515 347.992 20.4455 Q350.48 22.2395 351.667 25.6538 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M406.846 34.3054 L406.846 36.9095 L382.367 36.9095 Q382.714 42.4072 385.665 45.3007 Q388.645 48.1653 393.941 48.1653 Q397.008 48.1653 399.872 47.4129 Q402.766 46.6606 405.601 45.156 L405.601 50.1907 Q402.737 51.406 399.728 52.0425 Q396.718 52.6791 393.622 52.6791 Q385.868 52.6791 381.325 48.1653 Q376.811 43.6514 376.811 35.9547 Q376.811 27.9975 381.093 23.339 Q385.405 18.6515 392.696 18.6515 Q399.236 18.6515 403.026 22.876 Q406.846 27.0716 406.846 34.3054 M401.522 32.7429 Q401.464 28.3737 399.062 25.7695 Q396.689 23.1654 392.754 23.1654 Q388.298 23.1654 385.607 25.6827 Q382.945 28.2001 382.54 32.7718 L401.522 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M451.926 20.3876 L451.926 25.4223 Q449.669 24.2649 447.239 23.6862 Q444.808 23.1075 442.204 23.1075 Q438.24 23.1075 436.244 24.3228 Q434.276 25.5381 434.276 27.9686 Q434.276 29.8204 435.694 30.891 Q437.112 31.9327 441.394 32.8876 L443.217 33.2926 Q448.888 34.5079 451.261 36.7359 Q453.663 38.935 453.663 42.8991 Q453.663 47.4129 450.075 50.046 Q446.516 52.6791 440.266 52.6791 Q437.661 52.6791 434.826 52.1583 Q432.019 51.6664 428.894 50.6537 L428.894 45.156 Q431.845 46.6896 434.71 47.4708 Q437.575 48.2231 440.381 48.2231 Q444.143 48.2231 446.168 46.95 Q448.194 45.6479 448.194 43.3042 Q448.194 41.134 446.718 39.9766 Q445.271 38.8192 440.323 37.7486 L438.472 37.3146 Q433.524 36.273 431.325 34.1318 Q429.126 31.9616 429.126 28.2001 Q429.126 23.6283 432.366 21.1399 Q435.607 18.6515 441.568 18.6515 Q444.519 18.6515 447.123 19.0855 Q449.727 19.5196 451.926 20.3876 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M486.967 34.3054 L486.967 36.9095 L462.488 36.9095 Q462.835 42.4072 465.786 45.3007 Q468.767 48.1653 474.062 48.1653 Q477.129 48.1653 479.993 47.4129 Q482.887 46.6606 485.723 45.156 L485.723 50.1907 Q482.858 51.406 479.849 52.0425 Q476.839 52.6791 473.743 52.6791 Q465.989 52.6791 461.446 48.1653 Q456.932 43.6514 456.932 35.9547 Q456.932 27.9975 461.215 23.339 Q465.526 18.6515 472.818 18.6515 Q479.357 18.6515 483.147 22.876 Q486.967 27.0716 486.967 34.3054 M481.643 32.7429 Q481.585 28.3737 479.183 25.7695 Q476.811 23.1654 472.875 23.1654 Q468.419 23.1654 465.728 25.6827 Q463.066 28.2001 462.661 32.7718 L481.643 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M511.33 24.4096 Q510.433 23.8888 509.362 23.6573 Q508.321 23.3969 507.048 23.3969 Q502.534 23.3969 500.103 26.3482 Q497.702 29.2707 497.702 34.7683 L497.702 51.84 L492.349 51.84 L492.349 19.4328 L497.702 19.4328 L497.702 24.4675 Q499.38 21.5161 502.071 20.0983 Q504.762 18.6515 508.61 18.6515 Q509.16 18.6515 509.825 18.7383 Q510.491 18.7962 511.301 18.9409 L511.33 24.4096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M516.914 19.4328 L522.239 19.4328 L522.239 51.84 L516.914 51.84 L516.914 19.4328 M516.914 6.81709 L522.239 6.81709 L522.239 13.559 L516.914 13.559 L516.914 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M555.543 34.3054 L555.543 36.9095 L531.064 36.9095 Q531.411 42.4072 534.362 45.3007 Q537.343 48.1653 542.638 48.1653 Q545.705 48.1653 548.569 47.4129 Q551.463 46.6606 554.299 45.156 L554.299 50.1907 Q551.434 51.406 548.425 52.0425 Q545.415 52.6791 542.319 52.6791 Q534.565 52.6791 530.022 48.1653 Q525.508 43.6514 525.508 35.9547 Q525.508 27.9975 529.791 23.339 Q534.102 18.6515 541.394 18.6515 Q547.933 18.6515 551.723 22.876 Q555.543 27.0716 555.543 34.3054 M550.219 32.7429 Q550.161 28.3737 547.759 25.7695 Q545.387 23.1654 541.451 23.1654 Q536.995 23.1654 534.304 25.6827 Q531.642 28.2001 531.237 32.7718 L550.219 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M581.787 20.3876 L581.787 25.4223 Q579.53 24.2649 577.099 23.6862 Q574.669 23.1075 572.065 23.1075 Q568.101 23.1075 566.104 24.3228 Q564.136 25.5381 564.136 27.9686 Q564.136 29.8204 565.554 30.891 Q566.972 31.9327 571.254 32.8876 L573.077 33.2926 Q578.749 34.5079 581.121 36.7359 Q583.523 38.935 583.523 42.8991 Q583.523 47.4129 579.935 50.046 Q576.376 52.6791 570.126 52.6791 Q567.522 52.6791 564.686 52.1583 Q561.88 51.6664 558.755 50.6537 L558.755 45.156 Q561.706 46.6896 564.57 47.4708 Q567.435 48.2231 570.242 48.2231 Q574.003 48.2231 576.029 46.95 Q578.054 45.6479 578.054 43.3042 Q578.054 41.134 576.579 39.9766 Q575.132 38.8192 570.184 37.7486 L568.332 37.3146 Q563.384 36.273 561.185 34.1318 Q558.986 31.9616 558.986 28.2001 Q558.986 23.6283 562.227 21.1399 Q565.467 18.6515 571.428 18.6515 Q574.379 18.6515 576.984 19.0855 Q579.588 19.5196 581.787 20.3876 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M613.095 46.9789 L613.095 64.1663 L607.742 64.1663 L607.742 19.4328 L613.095 19.4328 L613.095 24.3517 Q614.773 21.4582 617.319 20.0693 Q619.894 18.6515 623.453 18.6515 Q629.356 18.6515 633.031 23.339 Q636.734 28.0265 636.734 35.6653 Q636.734 43.3042 633.031 47.9916 Q629.356 52.6791 623.453 52.6791 Q619.894 52.6791 617.319 51.2902 Q614.773 49.8724 613.095 46.9789 M631.208 35.6653 Q631.208 29.7915 628.777 26.464 Q626.376 23.1075 622.151 23.1075 Q617.927 23.1075 615.496 26.464 Q613.095 29.7915 613.095 35.6653 Q613.095 41.5391 615.496 44.8956 Q617.927 48.2231 622.151 48.2231 Q626.376 48.2231 628.777 44.8956 Q631.208 41.5391 631.208 35.6653 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M642.319 6.81709 L647.643 6.81709 L647.643 51.84 L642.319 51.84 L642.319 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M665.785 23.1654 Q661.503 23.1654 659.014 26.5218 Q656.526 29.8494 656.526 35.6653 Q656.526 41.4813 658.985 44.8377 Q661.474 48.1653 665.785 48.1653 Q670.039 48.1653 672.527 44.8088 Q675.015 41.4523 675.015 35.6653 Q675.015 29.9072 672.527 26.5508 Q670.039 23.1654 665.785 23.1654 M665.785 18.6515 Q672.73 18.6515 676.694 23.1654 Q680.658 27.6792 680.658 35.6653 Q680.658 43.6225 676.694 48.1653 Q672.73 52.6791 665.785 52.6791 Q658.812 52.6791 654.848 48.1653 Q650.913 43.6225 650.913 35.6653 Q650.913 27.6792 654.848 23.1654 Q658.812 18.6515 665.785 18.6515 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M691.508 10.2314 L691.508 19.4328 L702.475 19.4328 L702.475 23.5705 L691.508 23.5705 L691.508 41.163 Q691.508 45.1271 692.579 46.2555 Q693.679 47.384 697.006 47.384 L702.475 47.384 L702.475 51.84 L697.006 51.84 Q690.843 51.84 688.499 49.5541 Q686.155 47.2393 686.155 41.163 L686.155 23.5705 L682.249 23.5705 L682.249 19.4328 L686.155 19.4328 L686.155 10.2314 L691.508 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M709.419 44.4905 L715.525 44.4905 L715.525 51.84 L709.419 51.84 L709.419 44.4905 M709.419 21.1978 L715.525 21.1978 L715.525 28.5473 L709.419 28.5473 L709.419 21.1978 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M765.177 25.6538 Q767.174 22.0659 769.951 20.3587 Q772.729 18.6515 776.491 18.6515 Q781.554 18.6515 784.303 22.2105 Q787.052 25.7406 787.052 32.2799 L787.052 51.84 L781.699 51.84 L781.699 32.4535 Q781.699 27.795 780.05 25.5381 Q778.4 23.2811 775.015 23.2811 Q770.877 23.2811 768.476 26.03 Q766.074 28.7788 766.074 33.5241 L766.074 51.84 L760.721 51.84 L760.721 32.4535 Q760.721 27.7661 759.072 25.5381 Q757.422 23.2811 753.979 23.2811 Q749.899 23.2811 747.498 26.0589 Q745.096 28.8077 745.096 33.5241 L745.096 51.84 L739.743 51.84 L739.743 19.4328 L745.096 19.4328 L745.096 24.4675 Q746.919 21.4872 749.465 20.0693 Q752.012 18.6515 755.513 18.6515 Q759.043 18.6515 761.502 20.4455 Q763.991 22.2395 765.177 25.6538 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M805.194 23.1654 Q800.912 23.1654 798.423 26.5218 Q795.935 29.8494 795.935 35.6653 Q795.935 41.4813 798.394 44.8377 Q800.883 48.1653 805.194 48.1653 Q809.448 48.1653 811.936 44.8088 Q814.424 41.4523 814.424 35.6653 Q814.424 29.9072 811.936 26.5508 Q809.448 23.1654 805.194 23.1654 M805.194 18.6515 Q812.139 18.6515 816.103 23.1654 Q820.067 27.6792 820.067 35.6653 Q820.067 43.6225 816.103 48.1653 Q812.139 52.6791 805.194 52.6791 Q798.221 52.6791 794.257 48.1653 Q790.322 43.6225 790.322 35.6653 Q790.322 27.6792 794.257 23.1654 Q798.221 18.6515 805.194 18.6515 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M852.59 32.2799 L852.59 51.84 L847.266 51.84 L847.266 32.4535 Q847.266 27.8529 845.472 25.567 Q843.678 23.2811 840.09 23.2811 Q835.779 23.2811 833.29 26.03 Q830.802 28.7788 830.802 33.5241 L830.802 51.84 L825.449 51.84 L825.449 19.4328 L830.802 19.4328 L830.802 24.4675 Q832.711 21.545 835.287 20.0983 Q837.891 18.6515 841.276 18.6515 Q846.861 18.6515 849.725 22.1237 Q852.59 25.567 852.59 32.2799 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M863.44 10.2314 L863.44 19.4328 L874.407 19.4328 L874.407 23.5705 L863.44 23.5705 L863.44 41.163 Q863.44 45.1271 864.511 46.2555 Q865.611 47.384 868.938 47.384 L874.407 47.384 L874.407 51.84 L868.938 51.84 Q862.775 51.84 860.431 49.5541 Q858.087 47.2393 858.087 41.163 L858.087 23.5705 L854.181 23.5705 L854.181 19.4328 L858.087 19.4328 L858.087 10.2314 L863.44 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M906.93 32.2799 L906.93 51.84 L901.606 51.84 L901.606 32.4535 Q901.606 27.8529 899.812 25.567 Q898.018 23.2811 894.43 23.2811 Q890.119 23.2811 887.63 26.03 Q885.142 28.7788 885.142 33.5241 L885.142 51.84 L879.789 51.84 L879.789 6.81709 L885.142 6.81709 L885.142 24.4675 Q887.051 21.545 889.627 20.0983 Q892.231 18.6515 895.616 18.6515 Q901.201 18.6515 904.065 22.1237 Q906.93 25.567 906.93 32.2799 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M912.514 6.81709 L917.838 6.81709 L917.838 51.84 L912.514 51.84 L912.514 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M936.906 54.8492 Q934.65 60.6362 932.508 62.4013 Q930.367 64.1663 926.779 64.1663 L922.526 64.1663 L922.526 59.7103 L925.651 59.7103 Q927.85 59.7103 929.065 58.6687 Q930.28 57.627 931.756 53.7497 L932.711 51.3192 L919.603 19.4328 L925.246 19.4328 L935.373 44.7799 L945.5 19.4328 L951.142 19.4328 L936.906 54.8492 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M975.13 8.64 L981.003 8.64 L981.003 34.8841 Q981.003 41.8285 983.521 44.8956 Q986.038 47.9338 991.68 47.9338 Q997.294 47.9338 999.811 44.8956 Q1002.33 41.8285 1002.33 34.8841 L1002.33 8.64 L1008.2 8.64 L1008.2 35.6074 Q1008.2 44.0565 1004.01 48.3678 Q999.84 52.6791 991.68 52.6791 Q983.492 52.6791 979.296 48.3678 Q975.13 44.0565 975.13 35.6074 L975.13 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1039.92 10.0578 L1039.92 15.758 Q1036.59 14.1666 1033.64 13.3853 Q1030.68 12.6041 1027.94 12.6041 Q1023.16 12.6041 1020.56 14.4559 Q1017.98 16.3078 1017.98 19.7221 Q1017.98 22.5867 1019.69 24.0624 Q1021.43 25.5091 1026.23 26.4061 L1029.76 27.1295 Q1036.3 28.3737 1039.39 31.5276 Q1042.52 34.6526 1042.52 39.9188 Q1042.52 46.1977 1038.29 49.4384 Q1034.1 52.6791 1025.97 52.6791 Q1022.9 52.6791 1019.43 51.9847 Q1015.99 51.2902 1012.28 49.9303 L1012.28 43.9118 Q1015.84 45.9083 1019.26 46.921 Q1022.67 47.9338 1025.97 47.9338 Q1030.97 47.9338 1033.69 45.9662 Q1036.41 43.9986 1036.41 40.3528 Q1036.41 37.1699 1034.45 35.376 Q1032.51 33.582 1028.05 32.685 L1024.49 31.9906 Q1017.95 30.6885 1015.03 27.9107 Q1012.11 25.133 1012.11 20.1851 Q1012.11 14.4559 1016.13 11.1573 Q1020.18 7.85875 1027.27 7.85875 Q1030.31 7.85875 1033.46 8.40852 Q1036.62 8.95829 1039.92 10.0578 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1094.66 34.3054 L1094.66 36.9095 L1070.18 36.9095 Q1070.53 42.4072 1073.48 45.3007 Q1076.46 48.1653 1081.76 48.1653 Q1084.82 48.1653 1087.69 47.4129 Q1090.58 46.6606 1093.42 45.156 L1093.42 50.1907 Q1090.55 51.406 1087.54 52.0425 Q1084.53 52.6791 1081.44 52.6791 Q1073.68 52.6791 1069.14 48.1653 Q1064.63 43.6514 1064.63 35.9547 Q1064.63 27.9975 1068.91 23.339 Q1073.22 18.6515 1080.51 18.6515 Q1087.05 18.6515 1090.84 22.876 Q1094.66 27.0716 1094.66 34.3054 M1089.34 32.7429 Q1089.28 28.3737 1086.88 25.7695 Q1084.5 23.1654 1080.57 23.1654 Q1076.11 23.1654 1073.42 25.6827 Q1070.76 28.2001 1070.35 32.7718 L1089.34 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1103.43 35.6653 Q1103.43 41.5391 1105.83 44.8956 Q1108.26 48.2231 1112.48 48.2231 Q1116.71 48.2231 1119.14 44.8956 Q1121.57 41.5391 1121.57 35.6653 Q1121.57 29.7915 1119.14 26.464 Q1116.71 23.1075 1112.48 23.1075 Q1108.26 23.1075 1105.83 26.464 Q1103.43 29.7915 1103.43 35.6653 M1121.57 46.9789 Q1119.89 49.8724 1117.32 51.2902 Q1114.77 52.6791 1111.18 52.6791 Q1105.31 52.6791 1101.6 47.9916 Q1097.93 43.3042 1097.93 35.6653 Q1097.93 28.0265 1101.6 23.339 Q1105.31 18.6515 1111.18 18.6515 Q1114.77 18.6515 1117.32 20.0693 Q1119.89 21.4582 1121.57 24.3517 L1121.57 19.4328 L1126.89 19.4328 L1126.89 64.1663 L1121.57 64.1663 L1121.57 46.9789 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1131.93 39.0507 L1131.93 19.4328 L1137.25 19.4328 L1137.25 38.8482 Q1137.25 43.4488 1139.05 45.7636 Q1140.84 48.0495 1144.43 48.0495 Q1148.74 48.0495 1151.23 45.3007 Q1153.75 42.5519 1153.75 37.8065 L1153.75 19.4328 L1159.07 19.4328 L1159.07 51.84 L1153.75 51.84 L1153.75 46.8632 Q1151.81 49.8145 1149.23 51.2613 Q1146.69 52.6791 1143.3 52.6791 Q1137.72 52.6791 1134.82 49.2069 Q1131.93 45.7347 1131.93 39.0507 M1145.33 18.6515 L1145.33 18.6515 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1164.65 19.4328 L1169.98 19.4328 L1169.98 51.84 L1164.65 51.84 L1164.65 19.4328 M1164.65 6.81709 L1169.98 6.81709 L1169.98 13.559 L1164.65 13.559 L1164.65 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1180.83 10.2314 L1180.83 19.4328 L1191.8 19.4328 L1191.8 23.5705 L1180.83 23.5705 L1180.83 41.163 Q1180.83 45.1271 1181.9 46.2555 Q1183 47.384 1186.33 47.384 L1191.8 47.384 L1191.8 51.84 L1186.33 51.84 Q1180.16 51.84 1177.82 49.5541 Q1175.48 47.2393 1175.48 41.163 L1175.48 23.5705 L1171.57 23.5705 L1171.57 19.4328 L1175.48 19.4328 L1175.48 10.2314 L1180.83 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1210.86 54.8492 Q1208.61 60.6362 1206.47 62.4013 Q1204.32 64.1663 1200.74 64.1663 L1196.48 64.1663 L1196.48 59.7103 L1199.61 59.7103 Q1201.81 59.7103 1203.02 58.6687 Q1204.24 57.627 1205.71 53.7497 L1206.67 51.3192 L1193.56 19.4328 L1199.2 19.4328 L1209.33 44.7799 L1219.46 19.4328 L1225.1 19.4328 L1210.86 54.8492 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1274.75 25.6538 Q1276.75 22.0659 1279.53 20.3587 Q1282.3 18.6515 1286.07 18.6515 Q1291.13 18.6515 1293.88 22.2105 Q1296.63 25.7406 1296.63 32.2799 L1296.63 51.84 L1291.27 51.84 L1291.27 32.4535 Q1291.27 27.795 1289.62 25.5381 Q1287.98 23.2811 1284.59 23.2811 Q1280.45 23.2811 1278.05 26.03 Q1275.65 28.7788 1275.65 33.5241 L1275.65 51.84 L1270.3 51.84 L1270.3 32.4535 Q1270.3 27.7661 1268.65 25.5381 Q1267 23.2811 1263.55 23.2811 Q1259.47 23.2811 1257.07 26.0589 Q1254.67 28.8077 1254.67 33.5241 L1254.67 51.84 L1249.32 51.84 L1249.32 19.4328 L1254.67 19.4328 L1254.67 24.4675 Q1256.49 21.4872 1259.04 20.0693 Q1261.59 18.6515 1265.09 18.6515 Q1268.62 18.6515 1271.08 20.4455 Q1273.57 22.2395 1274.75 25.6538 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1316.94 35.5496 Q1310.49 35.5496 1308 37.0253 Q1305.51 38.501 1305.51 42.06 Q1305.51 44.8956 1307.36 46.5738 Q1309.24 48.2231 1312.45 48.2231 Q1316.88 48.2231 1319.54 45.0981 Q1322.23 41.9442 1322.23 36.7359 L1322.23 35.5496 L1316.94 35.5496 M1327.56 33.3505 L1327.56 51.84 L1322.23 51.84 L1322.23 46.921 Q1320.41 49.8724 1317.69 51.2902 Q1314.97 52.6791 1311.04 52.6791 Q1306.06 52.6791 1303.11 49.9014 Q1300.19 47.0947 1300.19 42.4072 Q1300.19 36.9385 1303.83 34.1607 Q1307.51 31.3829 1314.77 31.3829 L1322.23 31.3829 L1322.23 30.8621 Q1322.23 27.1874 1319.8 25.1908 Q1317.4 23.1654 1313.03 23.1654 Q1310.26 23.1654 1307.62 23.8309 Q1304.99 24.4964 1302.56 25.8274 L1302.56 20.9085 Q1305.48 19.78 1308.23 19.2302 Q1310.98 18.6515 1313.58 18.6515 Q1320.61 18.6515 1324.09 22.2973 Q1327.56 25.9431 1327.56 33.3505 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1351.92 24.4096 Q1351.02 23.8888 1349.95 23.6573 Q1348.91 23.3969 1347.64 23.3969 Q1343.13 23.3969 1340.69 26.3482 Q1338.29 29.2707 1338.29 34.7683 L1338.29 51.84 L1332.94 51.84 L1332.94 19.4328 L1338.29 19.4328 L1338.29 24.4675 Q1339.97 21.5161 1342.66 20.0983 Q1345.35 18.6515 1349.2 18.6515 Q1349.75 18.6515 1350.42 18.7383 Q1351.08 18.7962 1351.89 18.9409 L1351.92 24.4096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1357.3 6.81709 L1362.66 6.81709 L1362.66 33.4084 L1378.54 19.4328 L1385.34 19.4328 L1368.15 34.5947 L1386.06 51.84 L1379.12 51.84 L1362.66 36.0125 L1362.66 51.84 L1357.3 51.84 L1357.3 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1417.26 34.3054 L1417.26 36.9095 L1392.78 36.9095 Q1393.13 42.4072 1396.08 45.3007 Q1399.06 48.1653 1404.35 48.1653 Q1407.42 48.1653 1410.28 47.4129 Q1413.18 46.6606 1416.01 45.156 L1416.01 50.1907 Q1413.15 51.406 1410.14 52.0425 Q1407.13 52.6791 1404.03 52.6791 Q1396.28 52.6791 1391.74 48.1653 Q1387.22 43.6514 1387.22 35.9547 Q1387.22 27.9975 1391.5 23.339 Q1395.82 18.6515 1403.11 18.6515 Q1409.65 18.6515 1413.44 22.876 Q1417.26 27.0716 1417.26 34.3054 M1411.93 32.7429 Q1411.87 28.3737 1409.47 25.7695 Q1407.1 23.1654 1403.17 23.1654 Q1398.71 23.1654 1396.02 25.6827 Q1393.36 28.2001 1392.95 32.7718 L1411.93 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1428.11 10.2314 L1428.11 19.4328 L1439.07 19.4328 L1439.07 23.5705 L1428.11 23.5705 L1428.11 41.163 Q1428.11 45.1271 1429.18 46.2555 Q1430.28 47.384 1433.61 47.384 L1439.07 47.384 L1439.07 51.84 L1433.61 51.84 Q1427.44 51.84 1425.1 49.5541 Q1422.75 47.2393 1422.75 41.163 L1422.75 23.5705 L1418.85 23.5705 L1418.85 19.4328 L1422.75 19.4328 L1422.75 10.2314 L1428.11 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1491.21 34.3054 L1491.21 36.9095 L1466.74 36.9095 Q1467.08 42.4072 1470.03 45.3007 Q1473.01 48.1653 1478.31 48.1653 Q1481.38 48.1653 1484.24 47.4129 Q1487.13 46.6606 1489.97 45.156 L1489.97 50.1907 Q1487.11 51.406 1484.1 52.0425 Q1481.09 52.6791 1477.99 52.6791 Q1470.24 52.6791 1465.69 48.1653 Q1461.18 43.6514 1461.18 35.9547 Q1461.18 27.9975 1465.46 23.339 Q1469.77 18.6515 1477.07 18.6515 Q1483.6 18.6515 1487.4 22.876 Q1491.21 27.0716 1491.21 34.3054 M1485.89 32.7429 Q1485.83 28.3737 1483.43 25.7695 Q1481.06 23.1654 1477.12 23.1654 Q1472.67 23.1654 1469.98 25.6827 Q1467.31 28.2001 1466.91 32.7718 L1485.89 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1522.7 19.4328 L1510.98 35.2024 L1523.3 51.84 L1517.02 51.84 L1507.59 39.1086 L1498.16 51.84 L1491.88 51.84 L1504.47 34.8841 L1492.95 19.4328 L1499.23 19.4328 L1507.82 30.9778 L1516.42 19.4328 L1522.7 19.4328 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1551.17 20.677 L1551.17 25.6538 Q1548.91 24.4096 1546.63 23.802 Q1544.37 23.1654 1542.05 23.1654 Q1536.87 23.1654 1534.01 26.464 Q1531.15 29.7336 1531.15 35.6653 Q1531.15 41.597 1534.01 44.8956 Q1536.87 48.1653 1542.05 48.1653 Q1544.37 48.1653 1546.63 47.5576 Q1548.91 46.921 1551.17 45.6768 L1551.17 50.5958 Q1548.94 51.6375 1546.54 52.1583 Q1544.17 52.6791 1541.47 52.6791 Q1534.15 52.6791 1529.84 48.0784 Q1525.53 43.4778 1525.53 35.6653 Q1525.53 27.7371 1529.87 23.1943 Q1534.24 18.6515 1541.82 18.6515 Q1544.28 18.6515 1546.63 19.1724 Q1548.97 19.6642 1551.17 20.677 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1584.47 34.3054 L1584.47 36.9095 L1559.99 36.9095 Q1560.34 42.4072 1563.29 45.3007 Q1566.27 48.1653 1571.57 48.1653 Q1574.63 48.1653 1577.5 47.4129 Q1580.39 46.6606 1583.23 45.156 L1583.23 50.1907 Q1580.36 51.406 1577.35 52.0425 Q1574.35 52.6791 1571.25 52.6791 Q1563.49 52.6791 1558.95 48.1653 Q1554.44 43.6514 1554.44 35.9547 Q1554.44 27.9975 1558.72 23.339 Q1563.03 18.6515 1570.32 18.6515 Q1576.86 18.6515 1580.65 22.876 Q1584.47 27.0716 1584.47 34.3054 M1579.15 32.7429 Q1579.09 28.3737 1576.69 25.7695 Q1574.32 23.1654 1570.38 23.1654 Q1565.93 23.1654 1563.23 25.6827 Q1560.57 28.2001 1560.17 32.7718 L1579.15 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1610.72 20.3876 L1610.72 25.4223 Q1608.46 24.2649 1606.03 23.6862 Q1603.6 23.1075 1600.99 23.1075 Q1597.03 23.1075 1595.03 24.3228 Q1593.07 25.5381 1593.07 27.9686 Q1593.07 29.8204 1594.48 30.891 Q1595.9 31.9327 1600.18 32.8876 L1602.01 33.2926 Q1607.68 34.5079 1610.05 36.7359 Q1612.45 38.935 1612.45 42.8991 Q1612.45 47.4129 1608.86 50.046 Q1605.31 52.6791 1599.06 52.6791 Q1596.45 52.6791 1593.62 52.1583 Q1590.81 51.6664 1587.68 50.6537 L1587.68 45.156 Q1590.64 46.6896 1593.5 47.4708 Q1596.36 48.2231 1599.17 48.2231 Q1602.93 48.2231 1604.96 46.95 Q1606.98 45.6479 1606.98 43.3042 Q1606.98 41.134 1605.51 39.9766 Q1604.06 38.8192 1599.11 37.7486 L1597.26 37.3146 Q1592.31 36.273 1590.11 34.1318 Q1587.92 31.9616 1587.92 28.2001 Q1587.92 23.6283 1591.16 21.1399 Q1594.4 18.6515 1600.36 18.6515 Q1603.31 18.6515 1605.91 19.0855 Q1608.52 19.5196 1610.72 20.3876 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1638.7 20.3876 L1638.7 25.4223 Q1636.44 24.2649 1634.01 23.6862 Q1631.58 23.1075 1628.97 23.1075 Q1625.01 23.1075 1623.01 24.3228 Q1621.05 25.5381 1621.05 27.9686 Q1621.05 29.8204 1622.46 30.891 Q1623.88 31.9327 1628.16 32.8876 L1629.99 33.2926 Q1635.66 34.5079 1638.03 36.7359 Q1640.43 38.935 1640.43 42.8991 Q1640.43 47.4129 1636.84 50.046 Q1633.29 52.6791 1627.04 52.6791 Q1624.43 52.6791 1621.6 52.1583 Q1618.79 51.6664 1615.66 50.6537 L1615.66 45.156 Q1618.62 46.6896 1621.48 47.4708 Q1624.34 48.2231 1627.15 48.2231 Q1630.91 48.2231 1632.94 46.95 Q1634.96 45.6479 1634.96 43.3042 Q1634.96 41.134 1633.49 39.9766 Q1632.04 38.8192 1627.09 37.7486 L1625.24 37.3146 Q1620.29 36.273 1618.09 34.1318 Q1615.9 31.9616 1615.9 28.2001 Q1615.9 23.6283 1619.14 21.1399 Q1622.38 18.6515 1628.34 18.6515 Q1631.29 18.6515 1633.89 19.0855 Q1636.5 19.5196 1638.7 20.3876 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1683.63 24.4096 Q1682.74 23.8888 1681.67 23.6573 Q1680.62 23.3969 1679.35 23.3969 Q1674.84 23.3969 1672.41 26.3482 Q1670 29.2707 1670 34.7683 L1670 51.84 L1664.65 51.84 L1664.65 19.4328 L1670 19.4328 L1670 24.4675 Q1671.68 21.5161 1674.37 20.0983 Q1677.06 18.6515 1680.91 18.6515 Q1681.46 18.6515 1682.13 18.7383 Q1682.79 18.7962 1683.6 18.9409 L1683.63 24.4096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1715.63 34.3054 L1715.63 36.9095 L1691.16 36.9095 Q1691.5 42.4072 1694.45 45.3007 Q1697.43 48.1653 1702.73 48.1653 Q1705.8 48.1653 1708.66 47.4129 Q1711.56 46.6606 1714.39 45.156 L1714.39 50.1907 Q1711.53 51.406 1708.52 52.0425 Q1705.51 52.6791 1702.41 52.6791 Q1694.66 52.6791 1690.11 48.1653 Q1685.6 43.6514 1685.6 35.9547 Q1685.6 27.9975 1689.88 23.339 Q1694.19 18.6515 1701.49 18.6515 Q1708.03 18.6515 1711.82 22.876 Q1715.63 27.0716 1715.63 34.3054 M1710.31 32.7429 Q1710.25 28.3737 1707.85 25.7695 Q1705.48 23.1654 1701.54 23.1654 Q1697.09 23.1654 1694.4 25.6827 Q1691.73 28.2001 1691.33 32.7718 L1710.31 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1726.49 10.2314 L1726.49 19.4328 L1737.45 19.4328 L1737.45 23.5705 L1726.49 23.5705 L1726.49 41.163 Q1726.49 45.1271 1727.56 46.2555 Q1728.66 47.384 1731.98 47.384 L1737.45 47.384 L1737.45 51.84 L1731.98 51.84 Q1725.82 51.84 1723.48 49.5541 Q1721.13 47.2393 1721.13 41.163 L1721.13 23.5705 L1717.23 23.5705 L1717.23 19.4328 L1721.13 19.4328 L1721.13 10.2314 L1726.49 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1742.49 39.0507 L1742.49 19.4328 L1747.81 19.4328 L1747.81 38.8482 Q1747.81 43.4488 1749.6 45.7636 Q1751.4 48.0495 1754.99 48.0495 Q1759.3 48.0495 1761.79 45.3007 Q1764.3 42.5519 1764.3 37.8065 L1764.3 19.4328 L1769.63 19.4328 L1769.63 51.84 L1764.3 51.84 L1764.3 46.8632 Q1762.36 49.8145 1759.79 51.2613 Q1757.24 52.6791 1753.86 52.6791 Q1748.27 52.6791 1745.38 49.2069 Q1742.49 45.7347 1742.49 39.0507 M1755.88 18.6515 L1755.88 18.6515 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1793.99 24.4096 Q1793.09 23.8888 1792.02 23.6573 Q1790.98 23.3969 1789.71 23.3969 Q1785.19 23.3969 1782.76 26.3482 Q1780.36 29.2707 1780.36 34.7683 L1780.36 51.84 L1775.01 51.84 L1775.01 19.4328 L1780.36 19.4328 L1780.36 24.4675 Q1782.04 21.5161 1784.73 20.0983 Q1787.42 18.6515 1791.27 18.6515 Q1791.82 18.6515 1792.49 18.7383 Q1793.15 18.7962 1793.96 18.9409 L1793.99 24.4096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip650)\" d=\"M 0 0 M1825.47 32.2799 L1825.47 51.84 L1820.15 51.84 L1820.15 32.4535 Q1820.15 27.8529 1818.35 25.567 Q1816.56 23.2811 1812.97 23.2811 Q1808.66 23.2811 1806.17 26.03 Q1803.68 28.7788 1803.68 33.5241 L1803.68 51.84 L1798.33 51.84 L1798.33 19.4328 L1803.68 19.4328 L1803.68 24.4675 Q1805.59 21.545 1808.17 20.0983 Q1810.77 18.6515 1814.16 18.6515 Q1819.74 18.6515 1822.61 22.1237 Q1825.47 25.567 1825.47 32.2799 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip652)\" style=\"stroke:#0000ff; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 274.488,549.015 278.572,710.448 282.261,515.623 286.345,636.857 290.298,684.287 294.382,555.396 298.334,622.394 302.418,516.686 306.503,652.596 310.455,811.051 \n 314.539,523.705 318.492,598.147 322.576,515.41 326.66,654.723 330.481,919.31 334.565,553.482 338.517,527.321 342.601,570.71 346.554,501.585 350.638,601.337 \n 354.722,591.128 358.674,615.375 362.759,435.013 366.711,738.948 370.795,745.329 374.879,627.711 378.568,565.392 382.652,684.925 386.605,633.453 390.689,688.328 \n 394.641,670.887 398.725,784.89 402.81,799.991 406.762,535.616 410.846,563.265 414.799,716.19 418.883,710.66 422.967,766.173 426.656,680.246 430.74,569.859 \n 434.692,720.444 438.777,709.172 442.729,703.854 446.813,400.982 450.897,613.035 454.85,398.217 458.934,540.933 462.886,621.33 466.97,563.478 471.055,586.874 \n 474.744,577.516 478.828,495.204 482.78,624.52 486.864,571.773 490.817,720.87 494.901,646.64 498.985,619.841 502.937,713.638 507.022,589.852 510.974,675.779 \n 515.058,681.734 519.142,736.183 522.963,624.946 527.047,649.831 530.999,765.747 535.084,604.102 539.036,699.175 543.12,415.87 547.204,655.361 551.157,659.402 \n 555.241,676.204 559.193,601.124 563.278,469.469 567.362,614.311 571.051,654.723 575.135,657.913 579.087,533.276 583.171,613.248 587.124,651.745 591.208,659.827 \n 595.292,735.333 599.244,557.31 603.329,503.712 607.281,560.075 611.365,628.987 615.449,494.992 619.138,536.041 623.222,665.783 627.175,540.295 631.259,618.778 \n 635.211,775.957 639.296,506.902 643.38,815.517 647.332,542.847 651.416,614.099 655.369,704.492 659.453,373.545 663.537,545.187 667.226,597.509 671.31,683.436 \n 675.262,635.155 679.347,555.183 683.299,553.694 687.383,569.008 691.467,691.731 695.42,1130.09 699.504,799.14 703.456,496.693 707.541,548.59 711.625,537.742 \n 715.445,682.585 719.529,624.308 723.482,647.916 727.566,538.806 731.518,664.294 735.603,710.022 739.687,571.986 743.639,613.461 747.723,684.925 751.676,606.442 \n 755.76,509.029 759.844,685.776 763.533,606.442 767.617,549.653 771.57,571.135 775.654,663.443 779.606,488.824 783.69,606.654 787.774,654.935 791.727,714.702 \n 795.811,614.737 799.763,611.972 803.848,799.14 807.932,618.352 811.621,600.274 815.705,712.787 819.657,463.301 823.741,660.253 827.694,672.376 831.778,847.421 \n 835.862,765.109 839.815,678.969 843.899,510.305 847.851,587.938 851.935,544.549 856.019,486.909 859.708,585.811 863.792,642.174 867.745,561.351 871.829,740.437 \n 875.781,548.802 879.866,590.703 883.95,671.1 887.902,608.994 891.986,725.549 895.939,418.848 900.023,647.704 904.107,615.375 907.928,695.559 912.012,616.226 \n 915.964,630.263 920.048,685.776 924.001,559.65 928.085,687.69 932.169,617.076 936.122,619.416 940.206,557.31 944.158,606.016 948.242,616.013 952.326,631.114 \n 956.015,589.852 960.1,697.048 964.052,579.643 968.136,631.752 972.089,644.726 976.173,559.224 980.257,642.174 984.209,604.102 988.293,680.671 992.246,601.337 \n 996.33,576.24 1000.41,693.858 1004.1,741.075 1008.19,623.457 1012.14,624.733 1016.22,703.854 1020.18,578.792 1024.26,555.183 1028.34,684.925 1032.3,615.162 \n 1036.38,724.911 1040.33,620.479 1044.42,603.464 1048.5,562.202 1052.19,590.277 1056.27,594.106 1060.23,577.09 1064.31,581.557 1068.26,560.713 1072.35,628.136 \n 1076.43,569.646 1080.38,671.951 1084.47,556.034 1088.42,616.013 1092.51,587.3 1096.59,611.546 1100.41,623.032 1104.49,593.468 1108.45,589.852 1112.53,664.081 \n 1116.48,761.919 1120.57,577.516 1124.65,534.552 1128.6,617.714 1132.69,507.115 1136.64,671.951 1140.72,533.701 1144.81,648.555 1148.5,742.564 1152.58,556.885 \n 1156.53,496.055 1160.62,551.993 1164.57,484.357 1168.66,723.847 1172.74,522.854 1176.69,720.019 1180.78,581.557 1184.73,610.27 1188.81,637.495 1192.9,490.312 \n 1196.59,537.104 1200.67,623.882 1204.62,701.089 1208.71,578.792 1212.66,696.197 1216.74,982.692 1220.83,512.007 1224.78,486.484 1228.86,512.645 1232.82,511.794 \n 1236.9,563.478 1240.98,726.4 1244.67,566.456 1248.76,541.358 1252.71,689.179 1256.79,538.381 1260.75,711.298 1264.83,667.484 1268.91,694.709 1272.87,514.134 \n 1276.95,567.307 1280.9,469.043 1284.99,730.866 1289.07,579.43 1292.89,534.127 1296.98,774.255 1300.93,731.504 1305.01,536.679 1308.97,684.499 1313.05,487.122 \n 1317.13,757.452 1321.09,702.153 1325.17,866.776 1329.12,605.166 1333.21,565.392 1337.29,857.417 1340.98,796.8 1345.06,467.98 1349.02,622.181 1353.1,681.096 \n 1357.05,683.223 1361.14,770.001 1365.22,838.488 1369.17,583.471 1373.26,473.935 1377.21,603.039 1381.29,674.928 1385.38,686.839 1389.07,545.612 1393.15,746.605 \n 1397.1,663.23 1401.19,790.207 1405.14,813.603 1409.23,623.882 1413.31,853.589 1417.26,481.592 1421.35,510.093 1425.3,753.624 1429.38,689.817 1433.47,672.589 \n 1437.16,618.14 1441.24,463.939 1445.19,504.775 1449.28,605.378 1453.23,590.277 1457.31,586.236 1461.4,658.976 1465.35,511.156 1469.43,604.102 1473.39,542.847 \n 1477.47,590.49 1481.55,606.229 1485.37,662.592 1489.46,691.093 1493.41,609.207 1497.5,593.68 1501.45,720.231 1505.53,634.517 1509.62,596.658 1513.57,602.401 \n 1517.65,538.593 1521.61,566.456 1525.69,697.899 1529.77,593.042 1533.46,678.331 1537.55,695.985 1541.5,562.202 1545.58,618.352 1549.54,550.929 1553.62,656.85 \n 1557.7,621.543 1561.66,687.902 1565.74,558.586 1569.69,637.282 1573.78,560.288 1577.86,648.555 1581.55,605.166 1585.63,617.927 1589.59,713 1593.67,647.278 \n 1597.62,650.469 1601.71,593.468 1605.79,605.378 1609.74,567.732 1613.83,596.445 1617.78,623.457 1621.86,606.016 1625.95,675.779 1629.64,619.416 1633.72,562.415 \n 1637.67,563.903 1641.76,677.693 1645.71,713.851 1649.8,621.968 1653.88,557.735 1657.83,589.852 1661.92,750.008 1665.87,652.808 1669.95,774.893 1674.04,687.477 \n 1677.86,663.656 1681.94,532.851 1685.89,590.915 1689.98,808.711 1693.93,669.186 1698.01,616.864 1702.1,849.973 1706.05,1032.46 1710.14,819.984 1714.09,594.106 \n 1718.17,802.756 1722.26,853.163 1725.94,451.815 1730.03,403.109 1733.98,494.779 1738.07,643.875 1742.02,462.875 1746.1,570.284 1750.19,541.784 1754.14,698.324 \n 1758.22,515.835 1762.18,576.027 1766.26,716.828 1770.34,562.84 1774.03,500.947 1778.12,594.956 1782.07,808.073 1786.15,748.732 1790.11,486.909 1794.19,731.504 \n 1798.27,441.393 1802.23,555.396 1806.31,626.009 1810.26,493.928 1814.35,595.169 1818.43,556.034 1822.12,631.965 1826.2,577.941 \n \"/>\n</svg>\n"
},
"metadata": {}
}
],
"metadata": {}
},
{
"cell_type": "code",
"execution_count": 13,
"source": [
"p1 = scatter( Rme,Re,\n",
" fillcolor = :blue,\n",
" legend = false,\n",
" xlim = (-40,40),\n",
" ylim = (-40,60),\n",
" title = \"Scatter plot: two monthly return series (and 45 degree line)\",\n",
" titlefont = font(10),\n",
" xlabel = \"Market excess return, %\",\n",
" ylabel = \"Excess returns on small growth stocks, %\",\n",
" guidefont = font(8) )\n",
"plot!([-40;60],[-40;60],color=:black,linewidth=0.5) #easier to keep this outside plot()\n",
"display(p1)"
],
"outputs": [
{
"output_type": "display_data",
"data": {
"image/svg+xml": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"480\" height=\"320\" viewBox=\"0 0 1920 1280\">\n<defs>\n <clipPath id=\"clip690\">\n <rect x=\"0\" y=\"0\" width=\"1920\" height=\"1280\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip690)\" d=\"\nM0 1280 L1920 1280 L1920 0 L0 0 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip691\">\n <rect x=\"384\" y=\"0\" width=\"1345\" height=\"1280\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip690)\" d=\"\nM216.69 1119.34 L1872.76 1119.34 L1872.76 106.192 L216.69 106.192 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip692\">\n <rect x=\"216\" y=\"106\" width=\"1657\" height=\"1014\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip692)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 216.69,1119.34 216.69,106.192 \n \"/>\n<polyline clip-path=\"url(#clip692)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 630.706,1119.34 630.706,106.192 \n \"/>\n<polyline clip-path=\"url(#clip692)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1044.72,1119.34 1044.72,106.192 \n \"/>\n<polyline clip-path=\"url(#clip692)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1458.74,1119.34 1458.74,106.192 \n \"/>\n<polyline clip-path=\"url(#clip692)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1872.76,1119.34 1872.76,106.192 \n \"/>\n<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 216.69,1119.34 1872.76,1119.34 \n \"/>\n<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 216.69,1119.34 216.69,1107.18 \n \"/>\n<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 630.706,1119.34 630.706,1107.18 \n \"/>\n<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1044.72,1119.34 1044.72,1107.18 \n \"/>\n<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1458.74,1119.34 1458.74,1107.18 \n \"/>\n<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1872.76,1119.34 1872.76,1107.18 \n \"/>\n<path clip-path=\"url(#clip690)\" d=\"M 0 0 M174.595 1159.34 L204.271 1159.34 L204.271 1163.28 L174.595 1163.28 L174.595 1159.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M222.187 1145.69 L210.382 1164.13 L222.187 1164.13 L222.187 1145.69 M220.96 1141.61 L226.84 1141.61 L226.84 1164.13 L231.77 1164.13 L231.77 1168.02 L226.84 1168.02 L226.84 1176.17 L222.187 1176.17 L222.187 1168.02 L206.585 1168.02 L206.585 1163.51 L220.96 1141.61 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M246.84 1144.69 Q243.229 1144.69 241.4 1148.26 Q239.594 1151.8 239.594 1158.93 Q239.594 1166.03 241.4 1169.6 Q243.229 1173.14 246.84 1173.14 Q250.474 1173.14 252.28 1169.6 Q254.108 1166.03 254.108 1158.93 Q254.108 1151.8 252.28 1148.26 Q250.474 1144.69 246.84 1144.69 M246.84 1140.99 Q252.65 1140.99 255.706 1145.59 Q258.784 1150.18 258.784 1158.93 Q258.784 1167.65 255.706 1172.26 Q252.65 1176.84 246.84 1176.84 Q241.03 1176.84 237.951 1172.26 Q234.895 1167.65 234.895 1158.93 Q234.895 1150.18 237.951 1145.59 Q241.03 1140.99 246.84 1140.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M589.653 1159.34 L619.329 1159.34 L619.329 1163.28 L589.653 1163.28 L589.653 1159.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M628.426 1172.24 L644.745 1172.24 L644.745 1176.17 L622.801 1176.17 L622.801 1172.24 Q625.463 1169.48 630.046 1164.85 Q634.653 1160.2 635.833 1158.86 Q638.079 1156.33 638.958 1154.6 Q639.861 1152.84 639.861 1151.15 Q639.861 1148.39 637.917 1146.66 Q635.995 1144.92 632.894 1144.92 Q630.695 1144.92 628.241 1145.69 Q625.81 1146.45 623.033 1148 L623.033 1143.28 Q625.857 1142.14 628.31 1141.57 Q630.764 1140.99 632.801 1140.99 Q638.171 1140.99 641.366 1143.67 Q644.56 1146.36 644.56 1150.85 Q644.56 1152.98 643.75 1154.9 Q642.963 1156.8 640.857 1159.39 Q640.278 1160.06 637.176 1163.28 Q634.074 1166.47 628.426 1172.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M659.815 1144.69 Q656.204 1144.69 654.375 1148.26 Q652.569 1151.8 652.569 1158.93 Q652.569 1166.03 654.375 1169.6 Q656.204 1173.14 659.815 1173.14 Q663.449 1173.14 665.255 1169.6 Q667.083 1166.03 667.083 1158.93 Q667.083 1151.8 665.255 1148.26 Q663.449 1144.69 659.815 1144.69 M659.815 1140.99 Q665.625 1140.99 668.68 1145.59 Q671.759 1150.18 671.759 1158.93 Q671.759 1167.65 668.68 1172.26 Q665.625 1176.84 659.815 1176.84 Q654.005 1176.84 650.926 1172.26 Q647.87 1167.65 647.87 1158.93 Q647.87 1150.18 650.926 1145.59 Q654.005 1140.99 659.815 1140.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1044.72 1144.69 Q1041.11 1144.69 1039.28 1148.26 Q1037.48 1151.8 1037.48 1158.93 Q1037.48 1166.03 1039.28 1169.6 Q1041.11 1173.14 1044.72 1173.14 Q1048.36 1173.14 1050.16 1169.6 Q1051.99 1166.03 1051.99 1158.93 Q1051.99 1151.8 1050.16 1148.26 Q1048.36 1144.69 1044.72 1144.69 M1044.72 1140.99 Q1050.53 1140.99 1053.59 1145.59 Q1056.67 1150.18 1056.67 1158.93 Q1056.67 1167.65 1053.59 1172.26 Q1050.53 1176.84 1044.72 1176.84 Q1038.91 1176.84 1035.83 1172.26 Q1032.78 1167.65 1032.78 1158.93 Q1032.78 1150.18 1035.83 1145.59 Q1038.91 1140.99 1044.72 1140.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1439.89 1172.24 L1456.2 1172.24 L1456.2 1176.17 L1434.26 1176.17 L1434.26 1172.24 Q1436.92 1169.48 1441.51 1164.85 Q1446.11 1160.2 1447.29 1158.86 Q1449.54 1156.33 1450.42 1154.6 Q1451.32 1152.84 1451.32 1151.15 Q1451.32 1148.39 1449.38 1146.66 Q1447.45 1144.92 1444.35 1144.92 Q1442.15 1144.92 1439.7 1145.69 Q1437.27 1146.45 1434.49 1148 L1434.49 1143.28 Q1437.32 1142.14 1439.77 1141.57 Q1442.22 1140.99 1444.26 1140.99 Q1449.63 1140.99 1452.82 1143.67 Q1456.02 1146.36 1456.02 1150.85 Q1456.02 1152.98 1455.21 1154.9 Q1454.42 1156.8 1452.32 1159.39 Q1451.74 1160.06 1448.64 1163.28 Q1445.53 1166.47 1439.89 1172.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1471.27 1144.69 Q1467.66 1144.69 1465.83 1148.26 Q1464.03 1151.8 1464.03 1158.93 Q1464.03 1166.03 1465.83 1169.6 Q1467.66 1173.14 1471.27 1173.14 Q1474.91 1173.14 1476.71 1169.6 Q1478.54 1166.03 1478.54 1158.93 Q1478.54 1151.8 1476.71 1148.26 Q1474.91 1144.69 1471.27 1144.69 M1471.27 1140.99 Q1477.08 1140.99 1480.14 1145.59 Q1483.22 1150.18 1483.22 1158.93 Q1483.22 1167.65 1480.14 1172.26 Q1477.08 1176.84 1471.27 1176.84 Q1465.46 1176.84 1462.39 1172.26 Q1459.33 1167.65 1459.33 1158.93 Q1459.33 1150.18 1462.39 1145.59 Q1465.46 1140.99 1471.27 1140.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1862.26 1145.69 L1850.45 1164.13 L1862.26 1164.13 L1862.26 1145.69 M1861.03 1141.61 L1866.91 1141.61 L1866.91 1164.13 L1871.84 1164.13 L1871.84 1168.02 L1866.91 1168.02 L1866.91 1176.17 L1862.26 1176.17 L1862.26 1168.02 L1846.66 1168.02 L1846.66 1163.51 L1861.03 1141.61 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1886.91 1144.69 Q1883.3 1144.69 1881.47 1148.26 Q1879.67 1151.8 1879.67 1158.93 Q1879.67 1166.03 1881.47 1169.6 Q1883.3 1173.14 1886.91 1173.14 Q1890.55 1173.14 1892.35 1169.6 Q1894.18 1166.03 1894.18 1158.93 Q1894.18 1151.8 1892.35 1148.26 Q1890.55 1144.69 1886.91 1144.69 M1886.91 1140.99 Q1892.72 1140.99 1895.78 1145.59 Q1898.86 1150.18 1898.86 1158.93 Q1898.86 1167.65 1895.78 1172.26 Q1892.72 1176.84 1886.91 1176.84 Q1881.1 1176.84 1878.02 1172.26 Q1874.97 1167.65 1874.97 1158.93 Q1874.97 1150.18 1878.02 1145.59 Q1881.1 1140.99 1886.91 1140.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M783.405 1206.89 L790.372 1206.89 L799.192 1230.41 L808.057 1206.89 L815.025 1206.89 L815.025 1241.45 L810.465 1241.45 L810.465 1211.1 L801.553 1234.81 L796.854 1234.81 L787.942 1211.1 L787.942 1241.45 L783.405 1241.45 L783.405 1206.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M831.275 1228.42 Q826.113 1228.42 824.122 1229.6 Q822.131 1230.78 822.131 1233.63 Q822.131 1235.9 823.613 1237.24 Q825.117 1238.56 827.687 1238.56 Q831.228 1238.56 833.358 1236.06 Q835.511 1233.54 835.511 1229.37 L835.511 1228.42 L831.275 1228.42 M839.77 1226.66 L839.77 1241.45 L835.511 1241.45 L835.511 1237.52 Q834.053 1239.88 831.877 1241.01 Q829.701 1242.12 826.553 1242.12 Q822.571 1242.12 820.21 1239.9 Q817.872 1237.66 817.872 1233.91 Q817.872 1229.53 820.789 1227.31 Q823.729 1225.09 829.539 1225.09 L835.511 1225.09 L835.511 1224.67 Q835.511 1221.73 833.566 1220.13 Q831.645 1218.51 828.15 1218.51 Q825.928 1218.51 823.821 1219.04 Q821.715 1219.58 819.77 1220.64 L819.77 1216.71 Q822.108 1215.8 824.307 1215.36 Q826.506 1214.9 828.59 1214.9 Q834.215 1214.9 836.992 1217.82 Q839.77 1220.73 839.77 1226.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M859.261 1219.51 Q858.543 1219.09 857.687 1218.91 Q856.853 1218.7 855.835 1218.7 Q852.224 1218.7 850.279 1221.06 Q848.358 1223.4 848.358 1227.79 L848.358 1241.45 L844.076 1241.45 L844.076 1215.53 L848.358 1215.53 L848.358 1219.55 Q849.701 1217.19 851.853 1216.06 Q854.006 1214.9 857.085 1214.9 Q857.525 1214.9 858.057 1214.97 Q858.589 1215.02 859.238 1215.13 L859.261 1219.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M863.566 1205.43 L867.849 1205.43 L867.849 1226.71 L880.557 1215.53 L885.997 1215.53 L872.247 1227.66 L886.575 1241.45 L881.02 1241.45 L867.849 1228.79 L867.849 1241.45 L863.566 1241.45 L863.566 1205.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M911.529 1227.42 L911.529 1229.51 L891.946 1229.51 Q892.224 1233.91 894.585 1236.22 Q896.969 1238.51 901.205 1238.51 Q903.659 1238.51 905.95 1237.91 Q908.265 1237.31 910.534 1236.1 L910.534 1240.13 Q908.242 1241.1 905.835 1241.61 Q903.427 1242.12 900.95 1242.12 Q894.747 1242.12 891.112 1238.51 Q887.501 1234.9 887.501 1228.74 Q887.501 1222.38 890.927 1218.65 Q894.376 1214.9 900.21 1214.9 Q905.441 1214.9 908.473 1218.28 Q911.529 1221.64 911.529 1227.42 M907.27 1226.17 Q907.223 1222.68 905.302 1220.6 Q903.404 1218.51 900.256 1218.51 Q896.691 1218.51 894.538 1220.53 Q892.409 1222.54 892.085 1226.2 L907.27 1226.17 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M920.209 1208.16 L920.209 1215.53 L928.983 1215.53 L928.983 1218.84 L920.209 1218.84 L920.209 1232.91 Q920.209 1236.08 921.066 1236.98 Q921.946 1237.89 924.608 1237.89 L928.983 1237.89 L928.983 1241.45 L924.608 1241.45 Q919.677 1241.45 917.802 1239.62 Q915.927 1237.77 915.927 1232.91 L915.927 1218.84 L912.802 1218.84 L912.802 1215.53 L915.927 1215.53 L915.927 1208.16 L920.209 1208.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M970.695 1227.42 L970.695 1229.51 L951.112 1229.51 Q951.39 1233.91 953.751 1236.22 Q956.135 1238.51 960.371 1238.51 Q962.825 1238.51 965.117 1237.91 Q967.431 1237.31 969.7 1236.1 L969.7 1240.13 Q967.408 1241.1 965.001 1241.61 Q962.594 1242.12 960.117 1242.12 Q953.913 1242.12 950.279 1238.51 Q946.668 1234.9 946.668 1228.74 Q946.668 1222.38 950.094 1218.65 Q953.543 1214.9 959.376 1214.9 Q964.607 1214.9 967.64 1218.28 Q970.695 1221.64 970.695 1227.42 M966.436 1226.17 Q966.39 1222.68 964.469 1220.6 Q962.57 1218.51 959.422 1218.51 Q955.857 1218.51 953.705 1220.53 Q951.575 1222.54 951.251 1226.2 L966.436 1226.17 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M995.88 1215.53 L986.505 1228.14 L996.366 1241.45 L991.343 1241.45 L983.797 1231.27 L976.251 1241.45 L971.228 1241.45 L981.297 1227.89 L972.084 1215.53 L977.107 1215.53 L983.982 1224.76 L990.857 1215.53 L995.88 1215.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1018.66 1216.52 L1018.66 1220.5 Q1016.85 1219.51 1015.02 1219.02 Q1013.22 1218.51 1011.37 1218.51 Q1007.22 1218.51 1004.93 1221.15 Q1002.64 1223.77 1002.64 1228.51 Q1002.64 1233.26 1004.93 1235.9 Q1007.22 1238.51 1011.37 1238.51 Q1013.22 1238.51 1015.02 1238.03 Q1016.85 1237.52 1018.66 1236.52 L1018.66 1240.46 Q1016.88 1241.29 1014.95 1241.71 Q1013.06 1242.12 1010.9 1242.12 Q1005.05 1242.12 1001.6 1238.44 Q998.149 1234.76 998.149 1228.51 Q998.149 1222.17 1001.62 1218.54 Q1005.12 1214.9 1011.18 1214.9 Q1013.15 1214.9 1015.02 1215.32 Q1016.9 1215.71 1018.66 1216.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1045.3 1227.42 L1045.3 1229.51 L1025.72 1229.51 Q1026 1233.91 1028.36 1236.22 Q1030.74 1238.51 1034.98 1238.51 Q1037.43 1238.51 1039.72 1237.91 Q1042.04 1237.31 1044.31 1236.1 L1044.31 1240.13 Q1042.01 1241.1 1039.61 1241.61 Q1037.2 1242.12 1034.72 1242.12 Q1028.52 1242.12 1024.88 1238.51 Q1021.27 1234.9 1021.27 1228.74 Q1021.27 1222.38 1024.7 1218.65 Q1028.15 1214.9 1033.98 1214.9 Q1039.21 1214.9 1042.25 1218.28 Q1045.3 1221.64 1045.3 1227.42 M1041.04 1226.17 Q1041 1222.68 1039.07 1220.6 Q1037.18 1218.51 1034.03 1218.51 Q1030.46 1218.51 1028.31 1220.53 Q1026.18 1222.54 1025.86 1226.2 L1041.04 1226.17 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1066.3 1216.29 L1066.3 1220.32 Q1064.49 1219.39 1062.55 1218.93 Q1060.6 1218.47 1058.52 1218.47 Q1055.35 1218.47 1053.75 1219.44 Q1052.18 1220.41 1052.18 1222.35 Q1052.18 1223.84 1053.31 1224.69 Q1054.44 1225.53 1057.87 1226.29 L1059.33 1226.61 Q1063.87 1227.59 1065.76 1229.37 Q1067.69 1231.13 1067.69 1234.3 Q1067.69 1237.91 1064.82 1240.02 Q1061.97 1242.12 1056.97 1242.12 Q1054.88 1242.12 1052.62 1241.71 Q1050.37 1241.31 1047.87 1240.5 L1047.87 1236.1 Q1050.23 1237.33 1052.52 1237.96 Q1054.82 1238.56 1057.06 1238.56 Q1060.07 1238.56 1061.69 1237.54 Q1063.31 1236.5 1063.31 1234.62 Q1063.31 1232.89 1062.13 1231.96 Q1060.97 1231.04 1057.01 1230.18 L1055.53 1229.83 Q1051.57 1229 1049.82 1227.29 Q1048.06 1225.55 1048.06 1222.54 Q1048.06 1218.88 1050.65 1216.89 Q1053.24 1214.9 1058.01 1214.9 Q1060.37 1214.9 1062.45 1215.25 Q1064.54 1215.6 1066.3 1216.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1088.68 1216.29 L1088.68 1220.32 Q1086.88 1219.39 1084.93 1218.93 Q1082.99 1218.47 1080.9 1218.47 Q1077.73 1218.47 1076.13 1219.44 Q1074.56 1220.41 1074.56 1222.35 Q1074.56 1223.84 1075.69 1224.69 Q1076.83 1225.53 1080.25 1226.29 L1081.71 1226.61 Q1086.25 1227.59 1088.15 1229.37 Q1090.07 1231.13 1090.07 1234.3 Q1090.07 1237.91 1087.2 1240.02 Q1084.35 1242.12 1079.35 1242.12 Q1077.27 1242.12 1075 1241.71 Q1072.75 1241.31 1070.25 1240.5 L1070.25 1236.1 Q1072.62 1237.33 1074.91 1237.96 Q1077.2 1238.56 1079.44 1238.56 Q1082.45 1238.56 1084.07 1237.54 Q1085.69 1236.5 1085.69 1234.62 Q1085.69 1232.89 1084.51 1231.96 Q1083.36 1231.04 1079.4 1230.18 L1077.92 1229.83 Q1073.96 1229 1072.2 1227.29 Q1070.44 1225.55 1070.44 1222.54 Q1070.44 1218.88 1073.03 1216.89 Q1075.63 1214.9 1080.39 1214.9 Q1082.75 1214.9 1084.84 1215.25 Q1086.92 1215.6 1088.68 1216.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1124.63 1219.51 Q1123.91 1219.09 1123.06 1218.91 Q1122.22 1218.7 1121.2 1218.7 Q1117.59 1218.7 1115.65 1221.06 Q1113.73 1223.4 1113.73 1227.79 L1113.73 1241.45 L1109.44 1241.45 L1109.44 1215.53 L1113.73 1215.53 L1113.73 1219.55 Q1115.07 1217.19 1117.22 1216.06 Q1119.38 1214.9 1122.45 1214.9 Q1122.89 1214.9 1123.43 1214.97 Q1123.96 1215.02 1124.61 1215.13 L1124.63 1219.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1150.23 1227.42 L1150.23 1229.51 L1130.65 1229.51 Q1130.93 1233.91 1133.29 1236.22 Q1135.67 1238.51 1139.91 1238.51 Q1142.36 1238.51 1144.65 1237.91 Q1146.97 1237.31 1149.24 1236.1 L1149.24 1240.13 Q1146.94 1241.1 1144.54 1241.61 Q1142.13 1242.12 1139.65 1242.12 Q1133.45 1242.12 1129.81 1238.51 Q1126.2 1234.9 1126.2 1228.74 Q1126.2 1222.38 1129.63 1218.65 Q1133.08 1214.9 1138.91 1214.9 Q1144.14 1214.9 1147.18 1218.28 Q1150.23 1221.64 1150.23 1227.42 M1145.97 1226.17 Q1145.93 1222.68 1144 1220.6 Q1142.11 1218.51 1138.96 1218.51 Q1135.39 1218.51 1133.24 1220.53 Q1131.11 1222.54 1130.79 1226.2 L1145.97 1226.17 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1158.91 1208.16 L1158.91 1215.53 L1167.69 1215.53 L1167.69 1218.84 L1158.91 1218.84 L1158.91 1232.91 Q1158.91 1236.08 1159.77 1236.98 Q1160.65 1237.89 1163.31 1237.89 L1167.69 1237.89 L1167.69 1241.45 L1163.31 1241.45 Q1158.38 1241.45 1156.5 1239.62 Q1154.63 1237.77 1154.63 1232.91 L1154.63 1218.84 L1151.5 1218.84 L1151.5 1215.53 L1154.63 1215.53 L1154.63 1208.16 L1158.91 1208.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1171.71 1231.22 L1171.71 1215.53 L1175.97 1215.53 L1175.97 1231.06 Q1175.97 1234.74 1177.41 1236.59 Q1178.84 1238.42 1181.71 1238.42 Q1185.16 1238.42 1187.15 1236.22 Q1189.17 1234.02 1189.17 1230.23 L1189.17 1215.53 L1193.43 1215.53 L1193.43 1241.45 L1189.17 1241.45 L1189.17 1237.47 Q1187.62 1239.83 1185.56 1240.99 Q1183.52 1242.12 1180.81 1242.12 Q1176.34 1242.12 1174.03 1239.35 Q1171.71 1236.57 1171.71 1231.22 M1182.43 1214.9 L1182.43 1214.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1212.92 1219.51 Q1212.2 1219.09 1211.34 1218.91 Q1210.51 1218.7 1209.49 1218.7 Q1205.88 1218.7 1203.93 1221.06 Q1202.01 1223.4 1202.01 1227.79 L1202.01 1241.45 L1197.73 1241.45 L1197.73 1215.53 L1202.01 1215.53 L1202.01 1219.55 Q1203.36 1217.19 1205.51 1216.06 Q1207.66 1214.9 1210.74 1214.9 Q1211.18 1214.9 1211.71 1214.97 Q1212.24 1215.02 1212.89 1215.13 L1212.92 1219.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1238.1 1225.8 L1238.1 1241.45 L1233.84 1241.45 L1233.84 1225.94 Q1233.84 1222.26 1232.41 1220.43 Q1230.97 1218.6 1228.1 1218.6 Q1224.65 1218.6 1222.66 1220.8 Q1220.67 1223 1220.67 1226.8 L1220.67 1241.45 L1216.39 1241.45 L1216.39 1215.53 L1220.67 1215.53 L1220.67 1219.55 Q1222.2 1217.22 1224.26 1216.06 Q1226.34 1214.9 1229.05 1214.9 Q1233.52 1214.9 1235.81 1217.68 Q1238.1 1220.43 1238.1 1225.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1243.66 1235.57 L1248.54 1235.57 L1248.54 1239.55 L1244.74 1246.96 L1241.76 1246.96 L1243.66 1239.55 L1243.66 1235.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1298.08 1226.24 Q1296.06 1226.24 1294.91 1227.96 Q1293.77 1229.67 1293.77 1232.73 Q1293.77 1235.73 1294.91 1237.47 Q1296.06 1239.18 1298.08 1239.18 Q1300.05 1239.18 1301.18 1237.47 Q1302.34 1235.73 1302.34 1232.73 Q1302.34 1229.69 1301.18 1227.98 Q1300.05 1226.24 1298.08 1226.24 M1298.08 1223.3 Q1301.74 1223.3 1303.89 1225.85 Q1306.04 1228.4 1306.04 1232.73 Q1306.04 1237.05 1303.86 1239.6 Q1301.71 1242.12 1298.08 1242.12 Q1294.37 1242.12 1292.22 1239.6 Q1290.07 1237.05 1290.07 1232.73 Q1290.07 1228.37 1292.22 1225.85 Q1294.4 1223.3 1298.08 1223.3 M1274.19 1209.21 Q1272.2 1209.21 1271.04 1210.94 Q1269.91 1212.66 1269.91 1215.66 Q1269.91 1218.72 1271.04 1220.43 Q1272.18 1222.15 1274.19 1222.15 Q1276.2 1222.15 1277.34 1220.43 Q1278.49 1218.72 1278.49 1215.66 Q1278.49 1212.68 1277.34 1210.94 Q1276.18 1209.21 1274.19 1209.21 M1295.09 1206.27 L1298.8 1206.27 L1277.18 1242.12 L1273.47 1242.12 L1295.09 1206.27 M1274.19 1206.27 Q1277.85 1206.27 1280.02 1208.81 Q1282.2 1211.34 1282.2 1215.66 Q1282.2 1220.04 1280.02 1222.56 Q1277.87 1225.09 1274.19 1225.09 Q1270.51 1225.09 1268.36 1222.56 Q1266.23 1220.02 1266.23 1215.66 Q1266.23 1211.36 1268.38 1208.81 Q1270.53 1206.27 1274.19 1206.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip692)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 216.69,1119.34 1872.76,1119.34 \n \"/>\n<polyline clip-path=\"url(#clip692)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 216.69,916.71 1872.76,916.71 \n \"/>\n<polyline clip-path=\"url(#clip692)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 216.69,714.081 1872.76,714.081 \n \"/>\n<polyline clip-path=\"url(#clip692)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 216.69,511.451 1872.76,511.451 \n \"/>\n<polyline clip-path=\"url(#clip692)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 216.69,308.822 1872.76,308.822 \n \"/>\n<polyline clip-path=\"url(#clip692)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 216.69,106.192 1872.76,106.192 \n \"/>\n<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 216.69,1119.34 216.69,106.192 \n \"/>\n<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 216.69,1119.34 236.562,1119.34 \n \"/>\n<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 216.69,916.71 236.562,916.71 \n \"/>\n<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 216.69,714.081 236.562,714.081 \n \"/>\n<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 216.69,511.451 236.562,511.451 \n \"/>\n<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 216.69,308.822 236.562,308.822 \n \"/>\n<polyline clip-path=\"url(#clip690)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 216.69,106.192 236.562,106.192 \n \"/>\n<path clip-path=\"url(#clip690)\" d=\"M 0 0 M103.7 1119.79 L133.376 1119.79 L133.376 1123.73 L103.7 1123.73 L103.7 1119.79 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M151.292 1106.13 L139.487 1124.58 L151.292 1124.58 L151.292 1106.13 M150.066 1102.06 L155.945 1102.06 L155.945 1124.58 L160.876 1124.58 L160.876 1128.47 L155.945 1128.47 L155.945 1136.62 L151.292 1136.62 L151.292 1128.47 L135.691 1128.47 L135.691 1123.96 L150.066 1102.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M175.945 1105.14 Q172.334 1105.14 170.505 1108.7 Q168.7 1112.24 168.7 1119.37 Q168.7 1126.48 170.505 1130.05 Q172.334 1133.59 175.945 1133.59 Q179.579 1133.59 181.385 1130.05 Q183.214 1126.48 183.214 1119.37 Q183.214 1112.24 181.385 1108.7 Q179.579 1105.14 175.945 1105.14 M175.945 1101.43 Q181.755 1101.43 184.811 1106.04 Q187.89 1110.62 187.89 1119.37 Q187.89 1128.1 184.811 1132.71 Q181.755 1137.29 175.945 1137.29 Q170.135 1137.29 167.056 1132.71 Q164.001 1128.1 164.001 1119.37 Q164.001 1110.62 167.056 1106.04 Q170.135 1101.43 175.945 1101.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M105.783 917.162 L135.459 917.162 L135.459 921.097 L105.783 921.097 L105.783 917.162 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M144.556 930.055 L160.876 930.055 L160.876 933.99 L138.931 933.99 L138.931 930.055 Q141.593 927.301 146.177 922.671 Q150.783 918.018 151.964 916.676 Q154.209 914.152 155.089 912.416 Q155.992 910.657 155.992 908.967 Q155.992 906.213 154.047 904.477 Q152.126 902.74 149.024 902.74 Q146.825 902.74 144.371 903.504 Q141.941 904.268 139.163 905.819 L139.163 901.097 Q141.987 899.963 144.441 899.384 Q146.894 898.805 148.931 898.805 Q154.302 898.805 157.496 901.49 Q160.691 904.176 160.691 908.666 Q160.691 910.796 159.88 912.717 Q159.093 914.615 156.987 917.208 Q156.408 917.879 153.306 921.097 Q150.205 924.291 144.556 930.055 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M175.945 902.509 Q172.334 902.509 170.505 906.074 Q168.7 909.615 168.7 916.745 Q168.7 923.851 170.505 927.416 Q172.334 930.958 175.945 930.958 Q179.579 930.958 181.385 927.416 Q183.214 923.851 183.214 916.745 Q183.214 909.615 181.385 906.074 Q179.579 902.509 175.945 902.509 M175.945 898.805 Q181.755 898.805 184.811 903.412 Q187.89 907.995 187.89 916.745 Q187.89 925.472 184.811 930.078 Q181.755 934.662 175.945 934.662 Q170.135 934.662 167.056 930.078 Q164.001 925.472 164.001 916.745 Q164.001 907.995 167.056 903.412 Q170.135 898.805 175.945 898.805 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M175.945 699.879 Q172.334 699.879 170.505 703.444 Q168.7 706.986 168.7 714.115 Q168.7 721.222 170.505 724.787 Q172.334 728.328 175.945 728.328 Q179.579 728.328 181.385 724.787 Q183.214 721.222 183.214 714.115 Q183.214 706.986 181.385 703.444 Q179.579 699.879 175.945 699.879 M175.945 696.176 Q181.755 696.176 184.811 700.782 Q187.89 705.366 187.89 714.115 Q187.89 722.842 184.811 727.449 Q181.755 732.032 175.945 732.032 Q170.135 732.032 167.056 727.449 Q164.001 722.842 164.001 714.115 Q164.001 705.366 167.056 700.782 Q170.135 696.176 175.945 696.176 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M144.556 524.796 L160.876 524.796 L160.876 528.731 L138.931 528.731 L138.931 524.796 Q141.593 522.041 146.177 517.412 Q150.783 512.759 151.964 511.416 Q154.209 508.893 155.089 507.157 Q155.992 505.398 155.992 503.708 Q155.992 500.954 154.047 499.217 Q152.126 497.481 149.024 497.481 Q146.825 497.481 144.371 498.245 Q141.941 499.009 139.163 500.56 L139.163 495.838 Q141.987 494.704 144.441 494.125 Q146.894 493.546 148.931 493.546 Q154.302 493.546 157.496 496.231 Q160.691 498.917 160.691 503.407 Q160.691 505.537 159.88 507.458 Q159.093 509.356 156.987 511.949 Q156.408 512.62 153.306 515.838 Q150.205 519.032 144.556 524.796 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M175.945 497.25 Q172.334 497.25 170.505 500.815 Q168.7 504.356 168.7 511.486 Q168.7 518.592 170.505 522.157 Q172.334 525.699 175.945 525.699 Q179.579 525.699 181.385 522.157 Q183.214 518.592 183.214 511.486 Q183.214 504.356 181.385 500.815 Q179.579 497.25 175.945 497.25 M175.945 493.546 Q181.755 493.546 184.811 498.153 Q187.89 502.736 187.89 511.486 Q187.89 520.213 184.811 524.819 Q181.755 529.403 175.945 529.403 Q170.135 529.403 167.056 524.819 Q164.001 520.213 164.001 511.486 Q164.001 502.736 167.056 498.153 Q170.135 493.546 175.945 493.546 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M151.292 295.616 L139.487 314.065 L151.292 314.065 L151.292 295.616 M150.066 291.542 L155.945 291.542 L155.945 314.065 L160.876 314.065 L160.876 317.954 L155.945 317.954 L155.945 326.102 L151.292 326.102 L151.292 317.954 L135.691 317.954 L135.691 313.44 L150.066 291.542 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M175.945 294.62 Q172.334 294.62 170.505 298.185 Q168.7 301.727 168.7 308.856 Q168.7 315.963 170.505 319.528 Q172.334 323.069 175.945 323.069 Q179.579 323.069 181.385 319.528 Q183.214 315.963 183.214 308.856 Q183.214 301.727 181.385 298.185 Q179.579 294.62 175.945 294.62 M175.945 290.917 Q181.755 290.917 184.811 295.523 Q187.89 300.106 187.89 308.856 Q187.89 317.583 184.811 322.19 Q181.755 326.773 175.945 326.773 Q170.135 326.773 167.056 322.19 Q164.001 317.583 164.001 308.856 Q164.001 300.106 167.056 295.523 Q170.135 290.917 175.945 290.917 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M149.348 104.329 Q146.2 104.329 144.348 106.481 Q142.519 108.634 142.519 112.384 Q142.519 116.111 144.348 118.287 Q146.2 120.44 149.348 120.44 Q152.496 120.44 154.325 118.287 Q156.177 116.111 156.177 112.384 Q156.177 108.634 154.325 106.481 Q152.496 104.329 149.348 104.329 M158.63 89.676 L158.63 93.9352 Q156.871 93.1019 155.066 92.6621 Q153.283 92.2223 151.524 92.2223 Q146.894 92.2223 144.441 95.3473 Q142.01 98.4723 141.663 104.792 Q143.029 102.778 145.089 101.713 Q147.149 100.625 149.626 100.625 Q154.834 100.625 157.843 103.796 Q160.876 106.944 160.876 112.384 Q160.876 117.708 157.728 120.926 Q154.58 124.143 149.348 124.143 Q143.353 124.143 140.181 119.56 Q137.01 114.954 137.01 106.227 Q137.01 98.0324 140.899 93.1714 Q144.788 88.2871 151.339 88.2871 Q153.098 88.2871 154.88 88.6343 Q156.686 88.9816 158.63 89.676 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M175.945 91.9908 Q172.334 91.9908 170.505 95.5556 Q168.7 99.0973 168.7 106.227 Q168.7 113.333 170.505 116.898 Q172.334 120.44 175.945 120.44 Q179.579 120.44 181.385 116.898 Q183.214 113.333 183.214 106.227 Q183.214 99.0973 181.385 95.5556 Q179.579 91.9908 175.945 91.9908 M175.945 88.2871 Q181.755 88.2871 184.811 92.8936 Q187.89 97.4769 187.89 106.227 Q187.89 114.954 184.811 119.56 Q181.755 124.143 175.945 124.143 Q170.135 124.143 167.056 119.56 Q164.001 114.954 164.001 106.227 Q164.001 97.4769 167.056 92.8936 Q170.135 88.2871 175.945 88.2871 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M29.9722 1057.89 L29.9722 1036.04 L33.9073 1036.04 L33.9073 1053.22 L44.1387 1053.22 L44.1387 1036.76 L48.0739 1036.76 L48.0739 1053.22 L60.597 1053.22 L60.597 1035.62 L64.5322 1035.62 L64.5322 1057.89 L29.9722 1057.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M38.6064 1009.6 L51.222 1018.98 L64.5322 1009.12 L64.5322 1014.14 L54.347 1021.69 L64.5322 1029.23 L64.5322 1034.26 L50.9674 1024.19 L38.6064 1033.4 L38.6064 1028.38 L47.8424 1021.5 L38.6064 1014.63 L38.6064 1009.6 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M39.6017 986.826 L43.5832 986.826 Q42.5878 988.632 42.1017 990.461 Q41.5925 992.266 41.5925 994.118 Q41.5925 998.262 44.2313 1000.55 Q46.8471 1002.84 51.5924 1002.84 Q56.3378 1002.84 58.9766 1000.55 Q61.5924 998.262 61.5924 994.118 Q61.5924 992.266 61.1062 990.461 Q60.597 988.632 59.6016 986.826 L63.5368 986.826 Q64.3701 988.609 64.7868 990.53 Q65.2035 992.428 65.2035 994.581 Q65.2035 1000.44 61.5229 1003.89 Q57.8424 1007.34 51.5924 1007.34 Q45.2499 1007.34 41.6156 1003.86 Q37.9814 1000.37 37.9814 994.303 Q37.9814 992.336 38.398 990.461 Q38.7916 988.586 39.6017 986.826 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M50.5045 960.183 L52.5878 960.183 L52.5878 979.766 Q56.9859 979.489 59.3007 977.127 Q61.5924 974.743 61.5924 970.507 Q61.5924 968.053 60.9905 965.762 Q60.3887 963.447 59.185 961.178 L63.2127 961.178 Q64.1849 963.47 64.6942 965.878 Q65.2035 968.285 65.2035 970.762 Q65.2035 976.965 61.5924 980.6 Q57.9813 984.211 51.8239 984.211 Q45.4582 984.211 41.7314 980.785 Q37.9814 977.336 37.9814 971.502 Q37.9814 966.271 41.361 963.239 Q44.7174 960.183 50.5045 960.183 M49.2545 964.442 Q45.7591 964.489 43.6758 966.41 Q41.5925 968.308 41.5925 971.456 Q41.5925 975.021 43.6063 977.174 Q45.6202 979.303 49.2776 979.627 L49.2545 964.442 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M39.3703 939.188 L43.398 939.188 Q42.4721 940.993 42.0091 942.938 Q41.5462 944.882 41.5462 946.966 Q41.5462 950.137 42.5184 951.734 Q43.4906 953.308 45.435 953.308 Q46.9165 953.308 47.773 952.174 Q48.6063 951.04 49.3702 947.614 L49.6943 946.155 Q50.6665 941.618 52.4489 939.72 Q54.2081 937.799 57.3794 937.799 Q60.9905 937.799 63.097 940.669 Q65.2035 943.517 65.2035 948.516 Q65.2035 950.6 64.7868 952.868 Q64.3933 955.114 63.5831 957.614 L59.185 957.614 Q60.4118 955.253 61.0368 952.961 Q61.6387 950.669 61.6387 948.424 Q61.6387 945.415 60.6201 943.794 Q59.5785 942.174 57.7035 942.174 Q55.9674 942.174 55.0415 943.354 Q54.1155 944.512 53.2591 948.47 L52.9118 949.952 Q52.0785 953.91 50.3656 955.669 Q48.6295 957.428 45.6202 957.428 Q41.9628 957.428 39.9721 954.836 Q37.9814 952.243 37.9814 947.475 Q37.9814 945.114 38.3286 943.03 Q38.6758 940.947 39.3703 939.188 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M39.3703 916.804 L43.398 916.804 Q42.4721 918.609 42.0091 920.554 Q41.5462 922.498 41.5462 924.581 Q41.5462 927.753 42.5184 929.35 Q43.4906 930.924 45.435 930.924 Q46.9165 930.924 47.773 929.79 Q48.6063 928.655 49.3702 925.23 L49.6943 923.771 Q50.6665 919.234 52.4489 917.336 Q54.2081 915.415 57.3794 915.415 Q60.9905 915.415 63.097 918.285 Q65.2035 921.132 65.2035 926.132 Q65.2035 928.216 64.7868 930.484 Q64.3933 932.73 63.5831 935.23 L59.185 935.23 Q60.4118 932.868 61.0368 930.577 Q61.6387 928.285 61.6387 926.04 Q61.6387 923.031 60.6201 921.41 Q59.5785 919.79 57.7035 919.79 Q55.9674 919.79 55.0415 920.97 Q54.1155 922.128 53.2591 926.086 L52.9118 927.568 Q52.0785 931.526 50.3656 933.285 Q48.6295 935.044 45.6202 935.044 Q41.9628 935.044 39.9721 932.452 Q37.9814 929.859 37.9814 925.091 Q37.9814 922.73 38.3286 920.646 Q38.6758 918.563 39.3703 916.804 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M42.5878 880.855 Q42.1712 881.572 41.986 882.429 Q41.7776 883.262 41.7776 884.281 Q41.7776 887.892 44.1387 889.836 Q46.4767 891.758 50.8748 891.758 L64.5322 891.758 L64.5322 896.04 L38.6064 896.04 L38.6064 891.758 L42.6341 891.758 Q40.273 890.415 39.1388 888.262 Q37.9814 886.109 37.9814 883.031 Q37.9814 882.591 38.0508 882.059 Q38.0971 881.526 38.2129 880.878 L42.5878 880.855 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M50.5045 855.253 L52.5878 855.253 L52.5878 874.836 Q56.9859 874.559 59.3007 872.197 Q61.5924 869.813 61.5924 865.577 Q61.5924 863.123 60.9905 860.832 Q60.3887 858.517 59.185 856.248 L63.2127 856.248 Q64.1849 858.54 64.6942 860.948 Q65.2035 863.355 65.2035 865.832 Q65.2035 872.035 61.5924 875.67 Q57.9813 879.281 51.8239 879.281 Q45.4582 879.281 41.7314 875.855 Q37.9814 872.406 37.9814 866.572 Q37.9814 861.341 41.361 858.309 Q44.7174 855.253 50.5045 855.253 M49.2545 859.512 Q45.7591 859.559 43.6758 861.48 Q41.5925 863.378 41.5925 866.526 Q41.5925 870.091 43.6063 872.244 Q45.6202 874.373 49.2776 874.697 L49.2545 859.512 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M31.2453 846.573 L38.6064 846.573 L38.6064 837.8 L41.9165 837.8 L41.9165 846.573 L55.9905 846.573 Q59.1618 846.573 60.0646 845.716 Q60.9674 844.836 60.9674 842.174 L60.9674 837.8 L64.5322 837.8 L64.5322 842.174 Q64.5322 847.105 62.7035 848.98 Q60.8516 850.855 55.9905 850.855 L41.9165 850.855 L41.9165 853.98 L38.6064 853.98 L38.6064 850.855 L31.2453 850.855 L31.2453 846.573 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M54.3007 833.772 L38.6064 833.772 L38.6064 829.513 L54.1387 829.513 Q57.8192 829.513 59.6711 828.077 Q61.4998 826.642 61.4998 823.772 Q61.4998 820.323 59.3007 818.332 Q57.1016 816.318 53.3054 816.318 L38.6064 816.318 L38.6064 812.059 L64.5322 812.059 L64.5322 816.318 L60.5507 816.318 Q62.9118 817.869 64.0692 819.929 Q65.2035 821.966 65.2035 824.675 Q65.2035 829.142 62.4257 831.457 Q59.6479 833.772 54.3007 833.772 M37.9814 823.054 L37.9814 823.054 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M42.5878 792.568 Q42.1712 793.286 41.986 794.142 Q41.7776 794.976 41.7776 795.994 Q41.7776 799.605 44.1387 801.55 Q46.4767 803.471 50.8748 803.471 L64.5322 803.471 L64.5322 807.753 L38.6064 807.753 L38.6064 803.471 L42.6341 803.471 Q40.273 802.128 39.1388 799.976 Q37.9814 797.823 37.9814 794.744 Q37.9814 794.304 38.0508 793.772 Q38.0971 793.24 38.2129 792.591 L42.5878 792.568 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M48.8841 767.383 L64.5322 767.383 L64.5322 771.642 L49.023 771.642 Q45.3424 771.642 43.5138 773.078 Q41.6851 774.513 41.6851 777.383 Q41.6851 780.832 43.8841 782.823 Q46.0832 784.814 49.8795 784.814 L64.5322 784.814 L64.5322 789.096 L38.6064 789.096 L38.6064 784.814 L42.6341 784.814 Q40.2962 783.286 39.1388 781.226 Q37.9814 779.142 37.9814 776.434 Q37.9814 771.967 40.7591 769.675 Q43.5138 767.383 48.8841 767.383 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M39.3703 746.388 L43.398 746.388 Q42.4721 748.193 42.0091 750.138 Q41.5462 752.082 41.5462 754.166 Q41.5462 757.337 42.5184 758.934 Q43.4906 760.508 45.435 760.508 Q46.9165 760.508 47.773 759.374 Q48.6063 758.24 49.3702 754.814 L49.6943 753.356 Q50.6665 748.818 52.4489 746.92 Q54.2081 744.999 57.3794 744.999 Q60.9905 744.999 63.097 747.869 Q65.2035 750.717 65.2035 755.717 Q65.2035 757.8 64.7868 760.068 Q64.3933 762.314 63.5831 764.814 L59.185 764.814 Q60.4118 762.453 61.0368 760.161 Q61.6387 757.869 61.6387 755.624 Q61.6387 752.615 60.6201 750.994 Q59.5785 749.374 57.7035 749.374 Q55.9674 749.374 55.0415 750.555 Q54.1155 751.712 53.2591 755.67 L52.9118 757.152 Q52.0785 761.11 50.3656 762.869 Q48.6295 764.629 45.6202 764.629 Q41.9628 764.629 39.9721 762.036 Q37.9814 759.443 37.9814 754.675 Q37.9814 752.314 38.3286 750.231 Q38.6758 748.147 39.3703 746.388 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M41.5925 715.416 Q41.5925 718.842 44.2776 720.833 Q46.9397 722.823 51.5924 722.823 Q56.2452 722.823 58.9303 720.856 Q61.5924 718.865 61.5924 715.416 Q61.5924 712.013 58.9072 710.022 Q56.222 708.032 51.5924 708.032 Q46.986 708.032 44.3008 710.022 Q41.5925 712.013 41.5925 715.416 M37.9814 715.416 Q37.9814 709.86 41.5925 706.689 Q45.2036 703.518 51.5924 703.518 Q57.9581 703.518 61.5924 706.689 Q65.2035 709.86 65.2035 715.416 Q65.2035 720.995 61.5924 724.166 Q57.9581 727.314 51.5924 727.314 Q45.2036 727.314 41.5925 724.166 Q37.9814 720.995 37.9814 715.416 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M48.8841 677.499 L64.5322 677.499 L64.5322 681.759 L49.023 681.759 Q45.3424 681.759 43.5138 683.194 Q41.6851 684.629 41.6851 687.499 Q41.6851 690.948 43.8841 692.939 Q46.0832 694.93 49.8795 694.93 L64.5322 694.93 L64.5322 699.212 L38.6064 699.212 L38.6064 694.93 L42.6341 694.93 Q40.2962 693.402 39.1388 691.342 Q37.9814 689.259 37.9814 686.55 Q37.9814 682.083 40.7591 679.791 Q43.5138 677.499 48.8841 677.499 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M39.3703 641.435 L43.398 641.435 Q42.4721 643.24 42.0091 645.185 Q41.5462 647.129 41.5462 649.213 Q41.5462 652.384 42.5184 653.981 Q43.4906 655.555 45.435 655.555 Q46.9165 655.555 47.773 654.421 Q48.6063 653.287 49.3702 649.861 L49.6943 648.402 Q50.6665 643.865 52.4489 641.967 Q54.2081 640.046 57.3794 640.046 Q60.9905 640.046 63.097 642.916 Q65.2035 645.763 65.2035 650.763 Q65.2035 652.847 64.7868 655.115 Q64.3933 657.361 63.5831 659.861 L59.185 659.861 Q60.4118 657.5 61.0368 655.208 Q61.6387 652.916 61.6387 650.671 Q61.6387 647.662 60.6201 646.041 Q59.5785 644.421 57.7035 644.421 Q55.9674 644.421 55.0415 645.601 Q54.1155 646.759 53.2591 650.717 L52.9118 652.199 Q52.0785 656.157 50.3656 657.916 Q48.6295 659.675 45.6202 659.675 Q41.9628 659.675 39.9721 657.083 Q37.9814 654.49 37.9814 649.722 Q37.9814 647.361 38.3286 645.277 Q38.6758 643.194 39.3703 641.435 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M43.5832 615.393 Q40.7128 613.796 39.3471 611.574 Q37.9814 609.352 37.9814 606.342 Q37.9814 602.292 40.8286 600.092 Q43.6526 597.893 48.8841 597.893 L64.5322 597.893 L64.5322 602.176 L49.023 602.176 Q45.2961 602.176 43.4906 603.495 Q41.6851 604.815 41.6851 607.523 Q41.6851 610.833 43.8841 612.754 Q46.0832 614.676 49.8795 614.676 L64.5322 614.676 L64.5322 618.958 L49.023 618.958 Q45.273 618.958 43.4906 620.278 Q41.6851 621.597 41.6851 624.352 Q41.6851 627.615 43.9073 629.537 Q46.1063 631.458 49.8795 631.458 L64.5322 631.458 L64.5322 635.74 L38.6064 635.74 L38.6064 631.458 L42.6341 631.458 Q40.2499 630 39.1156 627.963 Q37.9814 625.926 37.9814 623.125 Q37.9814 620.301 39.4166 618.333 Q40.8517 616.342 43.5832 615.393 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M51.4998 581.643 Q51.4998 586.805 52.6804 588.796 Q53.8609 590.787 56.7081 590.787 Q58.9766 590.787 60.3192 589.305 Q61.6387 587.801 61.6387 585.231 Q61.6387 581.69 59.1387 579.56 Q56.6155 577.407 52.4489 577.407 L51.4998 577.407 L51.4998 581.643 M49.7406 573.148 L64.5322 573.148 L64.5322 577.407 L60.597 577.407 Q62.9581 578.866 64.0923 581.042 Q65.2035 583.218 65.2035 586.366 Q65.2035 590.347 62.9812 592.708 Q60.7359 595.046 56.9859 595.046 Q52.6109 595.046 50.3887 592.13 Q48.1665 589.19 48.1665 583.38 L48.1665 577.407 L47.7498 577.407 Q44.81 577.407 43.2128 579.352 Q41.5925 581.273 41.5925 584.768 Q41.5925 586.991 42.1249 589.097 Q42.6573 591.204 43.7221 593.148 L39.7869 593.148 Q38.8841 590.81 38.4443 588.611 Q37.9814 586.412 37.9814 584.329 Q37.9814 578.704 40.898 575.926 Q43.8147 573.148 49.7406 573.148 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M28.5138 568.681 L28.5138 564.421 L64.5322 564.421 L64.5322 568.681 L28.5138 568.681 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M28.5138 559.954 L28.5138 555.695 L64.5322 555.695 L64.5322 559.954 L28.5138 559.954 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M51.2683 519.098 Q46.6387 519.098 44.0925 521.019 Q41.5462 522.917 41.5462 526.366 Q41.5462 529.792 44.0925 531.713 Q46.6387 533.611 51.2683 533.611 Q55.8748 533.611 58.4211 531.713 Q60.9674 529.792 60.9674 526.366 Q60.9674 522.917 58.4211 521.019 Q55.8748 519.098 51.2683 519.098 M61.3146 514.838 Q67.9349 514.838 71.1525 517.778 Q74.3932 520.718 74.3932 526.783 Q74.3932 529.028 74.046 531.019 Q73.7219 533.009 73.0275 534.884 L68.884 534.884 Q69.9025 533.009 70.3886 531.181 Q70.8747 529.352 70.8747 527.454 Q70.8747 523.264 68.6757 521.181 Q66.4997 519.098 62.0785 519.098 L59.972 519.098 Q62.2637 520.417 63.3979 522.477 Q64.5322 524.537 64.5322 527.408 Q64.5322 532.176 60.8979 535.093 Q57.2637 538.009 51.2683 538.009 Q45.2499 538.009 41.6156 535.093 Q37.9814 532.176 37.9814 527.408 Q37.9814 524.537 39.1156 522.477 Q40.2499 520.417 42.5415 519.098 L38.6064 519.098 L38.6064 514.838 L61.3146 514.838 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M42.5878 495.348 Q42.1712 496.065 41.986 496.922 Q41.7776 497.755 41.7776 498.774 Q41.7776 502.385 44.1387 504.329 Q46.4767 506.25 50.8748 506.25 L64.5322 506.25 L64.5322 510.533 L38.6064 510.533 L38.6064 506.25 L42.6341 506.25 Q40.273 504.908 39.1388 502.755 Q37.9814 500.602 37.9814 497.524 Q37.9814 497.084 38.0508 496.551 Q38.0971 496.019 38.2129 495.371 L42.5878 495.348 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M41.5925 481.875 Q41.5925 485.301 44.2776 487.292 Q46.9397 489.283 51.5924 489.283 Q56.2452 489.283 58.9303 487.315 Q61.5924 485.325 61.5924 481.875 Q61.5924 478.473 58.9072 476.482 Q56.222 474.491 51.5924 474.491 Q46.986 474.491 44.3008 476.482 Q41.5925 478.473 41.5925 481.875 M37.9814 481.875 Q37.9814 476.32 41.5925 473.149 Q45.2036 469.977 51.5924 469.977 Q57.9581 469.977 61.5924 473.149 Q65.2035 476.32 65.2035 481.875 Q65.2035 487.454 61.5924 490.625 Q57.9581 493.774 51.5924 493.774 Q45.2036 493.774 41.5925 490.625 Q37.9814 487.454 37.9814 481.875 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M38.6064 467.987 L38.6064 463.727 L58.8377 458.403 L38.6064 453.102 L38.6064 448.079 L58.8377 442.755 L38.6064 437.454 L38.6064 433.195 L64.5322 439.978 L64.5322 445.001 L43.2823 450.579 L64.5322 456.181 L64.5322 461.204 L38.6064 467.987 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M31.2453 424.515 L38.6064 424.515 L38.6064 415.742 L41.9165 415.742 L41.9165 424.515 L55.9905 424.515 Q59.1618 424.515 60.0646 423.658 Q60.9674 422.779 60.9674 420.117 L60.9674 415.742 L64.5322 415.742 L64.5322 420.117 Q64.5322 425.047 62.7035 426.922 Q60.8516 428.797 55.9905 428.797 L41.9165 428.797 L41.9165 431.922 L38.6064 431.922 L38.6064 428.797 L31.2453 428.797 L31.2453 424.515 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M48.8841 389.723 L64.5322 389.723 L64.5322 393.982 L49.023 393.982 Q45.3424 393.982 43.5138 395.418 Q41.6851 396.853 41.6851 399.723 Q41.6851 403.172 43.8841 405.163 Q46.0832 407.154 49.8795 407.154 L64.5322 407.154 L64.5322 411.436 L28.5138 411.436 L28.5138 407.154 L42.6341 407.154 Q40.2962 405.626 39.1388 403.566 Q37.9814 401.482 37.9814 398.774 Q37.9814 394.307 40.7591 392.015 Q43.5138 389.723 48.8841 389.723 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M39.3703 353.659 L43.398 353.659 Q42.4721 355.464 42.0091 357.409 Q41.5462 359.353 41.5462 361.436 Q41.5462 364.608 42.5184 366.205 Q43.4906 367.779 45.435 367.779 Q46.9165 367.779 47.773 366.645 Q48.6063 365.51 49.3702 362.084 L49.6943 360.626 Q50.6665 356.089 52.4489 354.191 Q54.2081 352.27 57.3794 352.27 Q60.9905 352.27 63.097 355.14 Q65.2035 357.987 65.2035 362.987 Q65.2035 365.071 64.7868 367.339 Q64.3933 369.584 63.5831 372.084 L59.185 372.084 Q60.4118 369.723 61.0368 367.432 Q61.6387 365.14 61.6387 362.895 Q61.6387 359.885 60.6201 358.265 Q59.5785 356.645 57.7035 356.645 Q55.9674 356.645 55.0415 357.825 Q54.1155 358.983 53.2591 362.941 L52.9118 364.422 Q52.0785 368.381 50.3656 370.14 Q48.6295 371.899 45.6202 371.899 Q41.9628 371.899 39.9721 369.307 Q37.9814 366.714 37.9814 361.946 Q37.9814 359.584 38.3286 357.501 Q38.6758 355.418 39.3703 353.659 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M31.2453 343.589 L38.6064 343.589 L38.6064 334.816 L41.9165 334.816 L41.9165 343.589 L55.9905 343.589 Q59.1618 343.589 60.0646 342.733 Q60.9674 341.853 60.9674 339.191 L60.9674 334.816 L64.5322 334.816 L64.5322 339.191 Q64.5322 344.122 62.7035 345.997 Q60.8516 347.872 55.9905 347.872 L41.9165 347.872 L41.9165 350.997 L38.6064 350.997 L38.6064 347.872 L31.2453 347.872 L31.2453 343.589 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M41.5925 320.302 Q41.5925 323.728 44.2776 325.719 Q46.9397 327.71 51.5924 327.71 Q56.2452 327.71 58.9303 325.742 Q61.5924 323.751 61.5924 320.302 Q61.5924 316.9 58.9072 314.909 Q56.222 312.918 51.5924 312.918 Q46.986 312.918 44.3008 314.909 Q41.5925 316.9 41.5925 320.302 M37.9814 320.302 Q37.9814 314.747 41.5925 311.575 Q45.2036 308.404 51.5924 308.404 Q57.9581 308.404 61.5924 311.575 Q65.2035 314.747 65.2035 320.302 Q65.2035 325.881 61.5924 329.052 Q57.9581 332.2 51.5924 332.2 Q45.2036 332.2 41.5925 329.052 Q37.9814 325.881 37.9814 320.302 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M39.6017 285.279 L43.5832 285.279 Q42.5878 287.085 42.1017 288.914 Q41.5925 290.719 41.5925 292.571 Q41.5925 296.714 44.2313 299.006 Q46.8471 301.298 51.5924 301.298 Q56.3378 301.298 58.9766 299.006 Q61.5924 296.714 61.5924 292.571 Q61.5924 290.719 61.1062 288.914 Q60.597 287.085 59.6016 285.279 L63.5368 285.279 Q64.3701 287.062 64.7868 288.983 Q65.2035 290.881 65.2035 293.034 Q65.2035 298.89 61.5229 302.339 Q57.8424 305.788 51.5924 305.788 Q45.2499 305.788 41.6156 302.316 Q37.9814 298.821 37.9814 292.756 Q37.9814 290.789 38.398 288.914 Q38.7916 287.039 39.6017 285.279 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M28.5138 280.974 L28.5138 276.691 L49.7869 276.691 L38.6064 263.983 L38.6064 258.543 L50.7359 272.293 L64.5322 257.965 L64.5322 263.52 L51.8702 276.691 L64.5322 276.691 L64.5322 280.974 L28.5138 280.974 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M39.3703 236.969 L43.398 236.969 Q42.4721 238.775 42.0091 240.719 Q41.5462 242.664 41.5462 244.747 Q41.5462 247.918 42.5184 249.516 Q43.4906 251.09 45.435 251.09 Q46.9165 251.09 47.773 249.955 Q48.6063 248.821 49.3702 245.395 L49.6943 243.937 Q50.6665 239.4 52.4489 237.502 Q54.2081 235.581 57.3794 235.581 Q60.9905 235.581 63.097 238.451 Q65.2035 241.298 65.2035 246.298 Q65.2035 248.381 64.7868 250.65 Q64.3933 252.895 63.5831 255.395 L59.185 255.395 Q60.4118 253.034 61.0368 250.742 Q61.6387 248.451 61.6387 246.205 Q61.6387 243.196 60.6201 241.576 Q59.5785 239.955 57.7035 239.955 Q55.9674 239.955 55.0415 241.136 Q54.1155 242.293 53.2591 246.252 L52.9118 247.733 Q52.0785 251.692 50.3656 253.451 Q48.6295 255.21 45.6202 255.21 Q41.9628 255.21 39.9721 252.617 Q37.9814 250.025 37.9814 245.256 Q37.9814 242.895 38.3286 240.812 Q38.6758 238.729 39.3703 236.969 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M58.6526 230.025 L58.6526 225.141 L62.634 225.141 L70.0414 228.937 L70.0414 231.923 L62.634 230.025 L58.6526 230.025 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M49.3239 175.604 Q49.3239 177.618 51.0369 178.775 Q52.7498 179.91 55.8054 179.91 Q58.8146 179.91 60.5507 178.775 Q62.2637 177.618 62.2637 175.604 Q62.2637 173.636 60.5507 172.502 Q58.8146 171.345 55.8054 171.345 Q52.773 171.345 51.06 172.502 Q49.3239 173.636 49.3239 175.604 M46.3841 175.604 Q46.3841 171.947 48.9304 169.794 Q51.4767 167.641 55.8054 167.641 Q60.134 167.641 62.6803 169.817 Q65.2035 171.97 65.2035 175.604 Q65.2035 179.308 62.6803 181.46 Q60.134 183.613 55.8054 183.613 Q51.4535 183.613 48.9304 181.46 Q46.3841 179.285 46.3841 175.604 M32.287 199.493 Q32.287 201.483 34.0231 202.641 Q35.736 203.775 38.7453 203.775 Q41.8008 203.775 43.5138 202.641 Q45.2267 201.507 45.2267 199.493 Q45.2267 197.479 43.5138 196.345 Q41.8008 195.187 38.7453 195.187 Q35.7592 195.187 34.0231 196.345 Q32.287 197.502 32.287 199.493 M29.3472 178.59 L29.3472 174.886 L65.2035 196.507 L65.2035 200.21 L29.3472 178.59 M29.3472 199.493 Q29.3472 195.835 31.8934 193.659 Q34.4166 191.484 38.7453 191.484 Q43.1202 191.484 45.6434 193.659 Q48.1665 195.812 48.1665 199.493 Q48.1665 203.173 45.6434 205.326 Q43.0971 207.456 38.7453 207.456 Q34.4397 207.456 31.8934 205.303 Q29.3472 203.15 29.3472 199.493 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M277.554 10.0578 L277.554 15.758 Q274.226 14.1666 271.275 13.3853 Q268.324 12.6041 265.575 12.6041 Q260.8 12.6041 258.196 14.4559 Q255.621 16.3078 255.621 19.7221 Q255.621 22.5867 257.328 24.0624 Q259.064 25.5091 263.868 26.4061 L267.398 27.1295 Q273.937 28.3737 277.033 31.5276 Q280.158 34.6526 280.158 39.9188 Q280.158 46.1977 275.933 49.4384 Q271.738 52.6791 263.607 52.6791 Q260.54 52.6791 257.068 51.9847 Q253.625 51.2902 249.921 49.9303 L249.921 43.9118 Q253.48 45.9083 256.894 46.921 Q260.309 47.9338 263.607 47.9338 Q268.613 47.9338 271.333 45.9662 Q274.053 43.9986 274.053 40.3528 Q274.053 37.1699 272.085 35.376 Q270.146 33.582 265.69 32.685 L262.131 31.9906 Q255.592 30.6885 252.67 27.9107 Q249.747 25.133 249.747 20.1851 Q249.747 14.4559 253.769 11.1573 Q257.82 7.85875 264.909 7.85875 Q267.947 7.85875 271.101 8.40852 Q274.255 8.95829 277.554 10.0578 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M309.064 20.677 L309.064 25.6538 Q306.807 24.4096 304.521 23.802 Q302.264 23.1654 299.95 23.1654 Q294.77 23.1654 291.906 26.464 Q289.041 29.7336 289.041 35.6653 Q289.041 41.597 291.906 44.8956 Q294.77 48.1653 299.95 48.1653 Q302.264 48.1653 304.521 47.5576 Q306.807 46.921 309.064 45.6768 L309.064 50.5958 Q306.836 51.6375 304.434 52.1583 Q302.062 52.6791 299.371 52.6791 Q292.05 52.6791 287.739 48.0784 Q283.428 43.4778 283.428 35.6653 Q283.428 27.7371 287.768 23.1943 Q292.137 18.6515 299.718 18.6515 Q302.178 18.6515 304.521 19.1724 Q306.865 19.6642 309.064 20.677 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M329.376 35.5496 Q322.924 35.5496 320.436 37.0253 Q317.947 38.501 317.947 42.06 Q317.947 44.8956 319.799 46.5738 Q321.68 48.2231 324.892 48.2231 Q329.319 48.2231 331.981 45.0981 Q334.672 41.9442 334.672 36.7359 L334.672 35.5496 L329.376 35.5496 M339.996 33.3505 L339.996 51.84 L334.672 51.84 L334.672 46.921 Q332.849 49.8724 330.129 51.2902 Q327.409 52.6791 323.474 52.6791 Q318.497 52.6791 315.545 49.9014 Q312.623 47.0947 312.623 42.4072 Q312.623 36.9385 316.269 34.1607 Q319.944 31.3829 327.206 31.3829 L334.672 31.3829 L334.672 30.8621 Q334.672 27.1874 332.241 25.1908 Q329.839 23.1654 325.47 23.1654 Q322.692 23.1654 320.059 23.8309 Q317.426 24.4964 314.996 25.8274 L314.996 20.9085 Q317.918 19.78 320.667 19.2302 Q323.416 18.6515 326.02 18.6515 Q333.051 18.6515 336.523 22.2973 Q339.996 25.9431 339.996 33.3505 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M350.846 10.2314 L350.846 19.4328 L361.813 19.4328 L361.813 23.5705 L350.846 23.5705 L350.846 41.163 Q350.846 45.1271 351.917 46.2555 Q353.016 47.384 356.344 47.384 L361.813 47.384 L361.813 51.84 L356.344 51.84 Q350.181 51.84 347.837 49.5541 Q345.493 47.2393 345.493 41.163 L345.493 23.5705 L341.587 23.5705 L341.587 19.4328 L345.493 19.4328 L345.493 10.2314 L350.846 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M372.663 10.2314 L372.663 19.4328 L383.63 19.4328 L383.63 23.5705 L372.663 23.5705 L372.663 41.163 Q372.663 45.1271 373.734 46.2555 Q374.833 47.384 378.161 47.384 L383.63 47.384 L383.63 51.84 L378.161 51.84 Q371.998 51.84 369.654 49.5541 Q367.31 47.2393 367.31 41.163 L367.31 23.5705 L363.404 23.5705 L363.404 19.4328 L367.31 19.4328 L367.31 10.2314 L372.663 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M416.934 34.3054 L416.934 36.9095 L392.455 36.9095 Q392.802 42.4072 395.753 45.3007 Q398.734 48.1653 404.029 48.1653 Q407.096 48.1653 409.96 47.4129 Q412.854 46.6606 415.69 45.156 L415.69 50.1907 Q412.825 51.406 409.816 52.0425 Q406.807 52.6791 403.711 52.6791 Q395.956 52.6791 391.413 48.1653 Q386.899 43.6514 386.899 35.9547 Q386.899 27.9975 391.182 23.339 Q395.493 18.6515 402.785 18.6515 Q409.324 18.6515 413.114 22.876 Q416.934 27.0716 416.934 34.3054 M411.61 32.7429 Q411.552 28.3737 409.15 25.7695 Q406.778 23.1654 402.842 23.1654 Q398.386 23.1654 395.696 25.6827 Q393.033 28.2001 392.628 32.7718 L411.61 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M441.297 24.4096 Q440.4 23.8888 439.33 23.6573 Q438.288 23.3969 437.015 23.3969 Q432.501 23.3969 430.07 26.3482 Q427.669 29.2707 427.669 34.7683 L427.669 51.84 L422.316 51.84 L422.316 19.4328 L427.669 19.4328 L427.669 24.4675 Q429.347 21.5161 432.038 20.0983 Q434.729 18.6515 438.577 18.6515 Q439.127 18.6515 439.793 18.7383 Q440.458 18.7962 441.268 18.9409 L441.297 24.4096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M470.869 46.9789 L470.869 64.1663 L465.516 64.1663 L465.516 19.4328 L470.869 19.4328 L470.869 24.3517 Q472.547 21.4582 475.093 20.0693 Q477.668 18.6515 481.227 18.6515 Q487.13 18.6515 490.805 23.339 Q494.509 28.0265 494.509 35.6653 Q494.509 43.3042 490.805 47.9916 Q487.13 52.6791 481.227 52.6791 Q477.668 52.6791 475.093 51.2902 Q472.547 49.8724 470.869 46.9789 M488.982 35.6653 Q488.982 29.7915 486.552 26.464 Q484.15 23.1075 479.925 23.1075 Q475.701 23.1075 473.27 26.464 Q470.869 29.7915 470.869 35.6653 Q470.869 41.5391 473.27 44.8956 Q475.701 48.2231 479.925 48.2231 Q484.15 48.2231 486.552 44.8956 Q488.982 41.5391 488.982 35.6653 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M500.093 6.81709 L505.417 6.81709 L505.417 51.84 L500.093 51.84 L500.093 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M523.559 23.1654 Q519.277 23.1654 516.789 26.5218 Q514.3 29.8494 514.3 35.6653 Q514.3 41.4813 516.76 44.8377 Q519.248 48.1653 523.559 48.1653 Q527.813 48.1653 530.301 44.8088 Q532.79 41.4523 532.79 35.6653 Q532.79 29.9072 530.301 26.5508 Q527.813 23.1654 523.559 23.1654 M523.559 18.6515 Q530.504 18.6515 534.468 23.1654 Q538.432 27.6792 538.432 35.6653 Q538.432 43.6225 534.468 48.1653 Q530.504 52.6791 523.559 52.6791 Q516.586 52.6791 512.622 48.1653 Q508.687 43.6225 508.687 35.6653 Q508.687 27.6792 512.622 23.1654 Q516.586 18.6515 523.559 18.6515 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M549.283 10.2314 L549.283 19.4328 L560.249 19.4328 L560.249 23.5705 L549.283 23.5705 L549.283 41.163 Q549.283 45.1271 550.353 46.2555 Q551.453 47.384 554.78 47.384 L560.249 47.384 L560.249 51.84 L554.78 51.84 Q548.617 51.84 546.273 49.5541 Q543.93 47.2393 543.93 41.163 L543.93 23.5705 L540.023 23.5705 L540.023 19.4328 L543.93 19.4328 L543.93 10.2314 L549.283 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M567.193 44.4905 L573.299 44.4905 L573.299 51.84 L567.193 51.84 L567.193 44.4905 M567.193 21.1978 L573.299 21.1978 L573.299 28.5473 L567.193 28.5473 L567.193 21.1978 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M602.986 10.2314 L602.986 19.4328 L613.952 19.4328 L613.952 23.5705 L602.986 23.5705 L602.986 41.163 Q602.986 45.1271 604.057 46.2555 Q605.156 47.384 608.484 47.384 L613.952 47.384 L613.952 51.84 L608.484 51.84 Q602.321 51.84 599.977 49.5541 Q597.633 47.2393 597.633 41.163 L597.633 23.5705 L593.727 23.5705 L593.727 19.4328 L597.633 19.4328 L597.633 10.2314 L602.986 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M616.441 19.4328 L621.765 19.4328 L628.42 44.722 L635.046 19.4328 L641.325 19.4328 L647.98 44.722 L654.606 19.4328 L659.93 19.4328 L651.452 51.84 L645.173 51.84 L638.2 25.2776 L631.198 51.84 L624.919 51.84 L616.441 19.4328 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M678.072 23.1654 Q673.79 23.1654 671.302 26.5218 Q668.813 29.8494 668.813 35.6653 Q668.813 41.4813 671.273 44.8377 Q673.761 48.1653 678.072 48.1653 Q682.326 48.1653 684.814 44.8088 Q687.303 41.4523 687.303 35.6653 Q687.303 29.9072 684.814 26.5508 Q682.326 23.1654 678.072 23.1654 M678.072 18.6515 Q685.017 18.6515 688.981 23.1654 Q692.945 27.6792 692.945 35.6653 Q692.945 43.6225 688.981 48.1653 Q685.017 52.6791 678.072 52.6791 Q671.099 52.6791 667.135 48.1653 Q663.2 43.6225 663.2 35.6653 Q663.2 27.6792 667.135 23.1654 Q671.099 18.6515 678.072 18.6515 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M742.598 25.6538 Q744.594 22.0659 747.372 20.3587 Q750.15 18.6515 753.911 18.6515 Q758.975 18.6515 761.724 22.2105 Q764.472 25.7406 764.472 32.2799 L764.472 51.84 L759.119 51.84 L759.119 32.4535 Q759.119 27.795 757.47 25.5381 Q755.821 23.2811 752.436 23.2811 Q748.298 23.2811 745.896 26.03 Q743.495 28.7788 743.495 33.5241 L743.495 51.84 L738.142 51.84 L738.142 32.4535 Q738.142 27.7661 736.492 25.5381 Q734.843 23.2811 731.4 23.2811 Q727.32 23.2811 724.918 26.0589 Q722.517 28.8077 722.517 33.5241 L722.517 51.84 L717.164 51.84 L717.164 19.4328 L722.517 19.4328 L722.517 24.4675 Q724.34 21.4872 726.886 20.0693 Q729.432 18.6515 732.933 18.6515 Q736.463 18.6515 738.923 20.4455 Q741.411 22.2395 742.598 25.6538 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M782.615 23.1654 Q778.332 23.1654 775.844 26.5218 Q773.356 29.8494 773.356 35.6653 Q773.356 41.4813 775.815 44.8377 Q778.303 48.1653 782.615 48.1653 Q786.868 48.1653 789.357 44.8088 Q791.845 41.4523 791.845 35.6653 Q791.845 29.9072 789.357 26.5508 Q786.868 23.1654 782.615 23.1654 M782.615 18.6515 Q789.559 18.6515 793.523 23.1654 Q797.487 27.6792 797.487 35.6653 Q797.487 43.6225 793.523 48.1653 Q789.559 52.6791 782.615 52.6791 Q775.641 52.6791 771.677 48.1653 Q767.742 43.6225 767.742 35.6653 Q767.742 27.6792 771.677 23.1654 Q775.641 18.6515 782.615 18.6515 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M830.01 32.2799 L830.01 51.84 L824.686 51.84 L824.686 32.4535 Q824.686 27.8529 822.892 25.567 Q821.098 23.2811 817.51 23.2811 Q813.199 23.2811 810.711 26.03 Q808.222 28.7788 808.222 33.5241 L808.222 51.84 L802.869 51.84 L802.869 19.4328 L808.222 19.4328 L808.222 24.4675 Q810.132 21.545 812.707 20.0983 Q815.311 18.6515 818.697 18.6515 Q824.281 18.6515 827.146 22.1237 Q830.01 25.567 830.01 32.2799 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M840.861 10.2314 L840.861 19.4328 L851.827 19.4328 L851.827 23.5705 L840.861 23.5705 L840.861 41.163 Q840.861 45.1271 841.932 46.2555 Q843.031 47.384 846.359 47.384 L851.827 47.384 L851.827 51.84 L846.359 51.84 Q840.195 51.84 837.852 49.5541 Q835.508 47.2393 835.508 41.163 L835.508 23.5705 L831.602 23.5705 L831.602 19.4328 L835.508 19.4328 L835.508 10.2314 L840.861 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M884.35 32.2799 L884.35 51.84 L879.026 51.84 L879.026 32.4535 Q879.026 27.8529 877.232 25.567 Q875.438 23.2811 871.85 23.2811 Q867.539 23.2811 865.051 26.03 Q862.562 28.7788 862.562 33.5241 L862.562 51.84 L857.209 51.84 L857.209 6.81709 L862.562 6.81709 L862.562 24.4675 Q864.472 21.545 867.047 20.0983 Q869.651 18.6515 873.037 18.6515 Q878.621 18.6515 881.486 22.1237 Q884.35 25.567 884.35 32.2799 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M889.935 6.81709 L895.259 6.81709 L895.259 51.84 L889.935 51.84 L889.935 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M914.327 54.8492 Q912.07 60.6362 909.929 62.4013 Q907.788 64.1663 904.2 64.1663 L899.946 64.1663 L899.946 59.7103 L903.071 59.7103 Q905.27 59.7103 906.486 58.6687 Q907.701 57.627 909.177 53.7497 L910.131 51.3192 L897.024 19.4328 L902.666 19.4328 L912.793 44.7799 L922.921 19.4328 L928.563 19.4328 L914.327 54.8492 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M971.763 24.4096 Q970.866 23.8888 969.795 23.6573 Q968.754 23.3969 967.481 23.3969 Q962.967 23.3969 960.536 26.3482 Q958.135 29.2707 958.135 34.7683 L958.135 51.84 L952.782 51.84 L952.782 19.4328 L958.135 19.4328 L958.135 24.4675 Q959.813 21.5161 962.504 20.0983 Q965.195 18.6515 969.043 18.6515 Q969.593 18.6515 970.258 18.7383 Q970.924 18.7962 971.734 18.9409 L971.763 24.4096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1003.77 34.3054 L1003.77 36.9095 L979.286 36.9095 Q979.633 42.4072 982.585 45.3007 Q985.565 48.1653 990.86 48.1653 Q993.927 48.1653 996.792 47.4129 Q999.685 46.6606 1002.52 45.156 L1002.52 50.1907 Q999.656 51.406 996.647 52.0425 Q993.638 52.6791 990.542 52.6791 Q982.787 52.6791 978.244 48.1653 Q973.731 43.6514 973.731 35.9547 Q973.731 27.9975 978.013 23.339 Q982.324 18.6515 989.616 18.6515 Q996.155 18.6515 999.946 22.876 Q1003.77 27.0716 1003.77 34.3054 M998.441 32.7429 Q998.383 28.3737 995.982 25.7695 Q993.609 23.1654 989.674 23.1654 Q985.218 23.1654 982.527 25.6827 Q979.865 28.2001 979.46 32.7718 L998.441 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1014.62 10.2314 L1014.62 19.4328 L1025.58 19.4328 L1025.58 23.5705 L1014.62 23.5705 L1014.62 41.163 Q1014.62 45.1271 1015.69 46.2555 Q1016.79 47.384 1020.11 47.384 L1025.58 47.384 L1025.58 51.84 L1020.11 51.84 Q1013.95 51.84 1011.61 49.5541 Q1009.26 47.2393 1009.26 41.163 L1009.26 23.5705 L1005.36 23.5705 L1005.36 19.4328 L1009.26 19.4328 L1009.26 10.2314 L1014.62 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1030.62 39.0507 L1030.62 19.4328 L1035.94 19.4328 L1035.94 38.8482 Q1035.94 43.4488 1037.73 45.7636 Q1039.53 48.0495 1043.12 48.0495 Q1047.43 48.0495 1049.92 45.3007 Q1052.43 42.5519 1052.43 37.8065 L1052.43 19.4328 L1057.76 19.4328 L1057.76 51.84 L1052.43 51.84 L1052.43 46.8632 Q1050.5 49.8145 1047.92 51.2613 Q1045.37 52.6791 1041.99 52.6791 Q1036.4 52.6791 1033.51 49.2069 Q1030.62 45.7347 1030.62 39.0507 M1044.01 18.6515 L1044.01 18.6515 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1082.12 24.4096 Q1081.22 23.8888 1080.15 23.6573 Q1079.11 23.3969 1077.84 23.3969 Q1073.32 23.3969 1070.89 26.3482 Q1068.49 29.2707 1068.49 34.7683 L1068.49 51.84 L1063.14 51.84 L1063.14 19.4328 L1068.49 19.4328 L1068.49 24.4675 Q1070.17 21.5161 1072.86 20.0983 Q1075.55 18.6515 1079.4 18.6515 Q1079.95 18.6515 1080.62 18.7383 Q1081.28 18.7962 1082.09 18.9409 L1082.12 24.4096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1113.6 32.2799 L1113.6 51.84 L1108.28 51.84 L1108.28 32.4535 Q1108.28 27.8529 1106.48 25.567 Q1104.69 23.2811 1101.1 23.2811 Q1096.79 23.2811 1094.3 26.03 Q1091.81 28.7788 1091.81 33.5241 L1091.81 51.84 L1086.46 51.84 L1086.46 19.4328 L1091.81 19.4328 L1091.81 24.4675 Q1093.72 21.545 1096.3 20.0983 Q1098.9 18.6515 1102.29 18.6515 Q1107.87 18.6515 1110.74 22.1237 Q1113.6 25.567 1113.6 32.2799 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1158.68 20.3876 L1158.68 25.4223 Q1156.43 24.2649 1154 23.6862 Q1151.57 23.1075 1148.96 23.1075 Q1145 23.1075 1143 24.3228 Q1141.03 25.5381 1141.03 27.9686 Q1141.03 29.8204 1142.45 30.891 Q1143.87 31.9327 1148.15 32.8876 L1149.97 33.2926 Q1155.65 34.5079 1158.02 36.7359 Q1160.42 38.935 1160.42 42.8991 Q1160.42 47.4129 1156.83 50.046 Q1153.27 52.6791 1147.02 52.6791 Q1144.42 52.6791 1141.58 52.1583 Q1138.78 51.6664 1135.65 50.6537 L1135.65 45.156 Q1138.6 46.6896 1141.47 47.4708 Q1144.33 48.2231 1147.14 48.2231 Q1150.9 48.2231 1152.93 46.95 Q1154.95 45.6479 1154.95 43.3042 Q1154.95 41.134 1153.48 39.9766 Q1152.03 38.8192 1147.08 37.7486 L1145.23 37.3146 Q1140.28 36.273 1138.08 34.1318 Q1135.88 31.9616 1135.88 28.2001 Q1135.88 23.6283 1139.12 21.1399 Q1142.36 18.6515 1148.32 18.6515 Q1151.28 18.6515 1153.88 19.0855 Q1156.48 19.5196 1158.68 20.3876 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1193.72 34.3054 L1193.72 36.9095 L1169.24 36.9095 Q1169.59 42.4072 1172.54 45.3007 Q1175.52 48.1653 1180.82 48.1653 Q1183.89 48.1653 1186.75 47.4129 Q1189.64 46.6606 1192.48 45.156 L1192.48 50.1907 Q1189.61 51.406 1186.61 52.0425 Q1183.6 52.6791 1180.5 52.6791 Q1172.75 52.6791 1168.2 48.1653 Q1163.69 43.6514 1163.69 35.9547 Q1163.69 27.9975 1167.97 23.339 Q1172.28 18.6515 1179.57 18.6515 Q1186.11 18.6515 1189.9 22.876 Q1193.72 27.0716 1193.72 34.3054 M1188.4 32.7429 Q1188.34 28.3737 1185.94 25.7695 Q1183.57 23.1654 1179.63 23.1654 Q1175.18 23.1654 1172.49 25.6827 Q1169.82 28.2001 1169.42 32.7718 L1188.4 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1218.09 24.4096 Q1217.19 23.8888 1216.12 23.6573 Q1215.08 23.3969 1213.8 23.3969 Q1209.29 23.3969 1206.86 26.3482 Q1204.46 29.2707 1204.46 34.7683 L1204.46 51.84 L1199.11 51.84 L1199.11 19.4328 L1204.46 19.4328 L1204.46 24.4675 Q1206.14 21.5161 1208.83 20.0983 Q1211.52 18.6515 1215.37 18.6515 Q1215.92 18.6515 1216.58 18.7383 Q1217.25 18.7962 1218.06 18.9409 L1218.09 24.4096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1223.67 19.4328 L1229 19.4328 L1229 51.84 L1223.67 51.84 L1223.67 19.4328 M1223.67 6.81709 L1229 6.81709 L1229 13.559 L1223.67 13.559 L1223.67 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1262.3 34.3054 L1262.3 36.9095 L1237.82 36.9095 Q1238.17 42.4072 1241.12 45.3007 Q1244.1 48.1653 1249.39 48.1653 Q1252.46 48.1653 1255.33 47.4129 Q1258.22 46.6606 1261.06 45.156 L1261.06 50.1907 Q1258.19 51.406 1255.18 52.0425 Q1252.17 52.6791 1249.08 52.6791 Q1241.32 52.6791 1236.78 48.1653 Q1232.27 43.6514 1232.27 35.9547 Q1232.27 27.9975 1236.55 23.339 Q1240.86 18.6515 1248.15 18.6515 Q1254.69 18.6515 1258.48 22.876 Q1262.3 27.0716 1262.3 34.3054 M1256.98 32.7429 Q1256.92 28.3737 1254.52 25.7695 Q1252.14 23.1654 1248.21 23.1654 Q1243.75 23.1654 1241.06 25.6827 Q1238.4 28.2001 1237.99 32.7718 L1256.98 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1288.54 20.3876 L1288.54 25.4223 Q1286.29 24.2649 1283.86 23.6862 Q1281.43 23.1075 1278.82 23.1075 Q1274.86 23.1075 1272.86 24.3228 Q1270.89 25.5381 1270.89 27.9686 Q1270.89 29.8204 1272.31 30.891 Q1273.73 31.9327 1278.01 32.8876 L1279.83 33.2926 Q1285.51 34.5079 1287.88 36.7359 Q1290.28 38.935 1290.28 42.8991 Q1290.28 47.4129 1286.69 50.046 Q1283.13 52.6791 1276.88 52.6791 Q1274.28 52.6791 1271.44 52.1583 Q1268.64 51.6664 1265.51 50.6537 L1265.51 45.156 Q1268.46 46.6896 1271.33 47.4708 Q1274.19 48.2231 1277 48.2231 Q1280.76 48.2231 1282.79 46.95 Q1284.81 45.6479 1284.81 43.3042 Q1284.81 41.134 1283.34 39.9766 Q1281.89 38.8192 1276.94 37.7486 L1275.09 37.3146 Q1270.14 36.273 1267.94 34.1318 Q1265.74 31.9616 1265.74 28.2001 Q1265.74 23.6283 1268.98 21.1399 Q1272.22 18.6515 1278.19 18.6515 Q1281.14 18.6515 1283.74 19.0855 Q1286.34 19.5196 1288.54 20.3876 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1327.49 6.87496 Q1323.61 13.53 1321.73 20.0404 Q1319.85 26.5508 1319.85 33.2348 Q1319.85 39.9188 1321.73 46.487 Q1323.64 53.0263 1327.49 59.6525 L1322.86 59.6525 Q1318.52 52.8527 1316.35 46.2845 Q1314.21 39.7162 1314.21 33.2348 Q1314.21 26.7823 1316.35 20.2429 Q1318.49 13.7036 1322.86 6.87496 L1327.49 6.87496 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1347.8 35.5496 Q1341.35 35.5496 1338.86 37.0253 Q1336.37 38.501 1336.37 42.06 Q1336.37 44.8956 1338.23 46.5738 Q1340.11 48.2231 1343.32 48.2231 Q1347.74 48.2231 1350.41 45.0981 Q1353.1 41.9442 1353.1 36.7359 L1353.1 35.5496 L1347.8 35.5496 M1358.42 33.3505 L1358.42 51.84 L1353.1 51.84 L1353.1 46.921 Q1351.27 49.8724 1348.55 51.2902 Q1345.84 52.6791 1341.9 52.6791 Q1336.92 52.6791 1333.97 49.9014 Q1331.05 47.0947 1331.05 42.4072 Q1331.05 36.9385 1334.7 34.1607 Q1338.37 31.3829 1345.63 31.3829 L1353.1 31.3829 L1353.1 30.8621 Q1353.1 27.1874 1350.67 25.1908 Q1348.27 23.1654 1343.9 23.1654 Q1341.12 23.1654 1338.49 23.8309 Q1335.85 24.4964 1333.42 25.8274 L1333.42 20.9085 Q1336.34 19.78 1339.09 19.2302 Q1341.84 18.6515 1344.45 18.6515 Q1351.48 18.6515 1354.95 22.2973 Q1358.42 25.9431 1358.42 33.3505 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1390.94 32.2799 L1390.94 51.84 L1385.62 51.84 L1385.62 32.4535 Q1385.62 27.8529 1383.83 25.567 Q1382.03 23.2811 1378.44 23.2811 Q1374.13 23.2811 1371.65 26.03 Q1369.16 28.7788 1369.16 33.5241 L1369.16 51.84 L1363.8 51.84 L1363.8 19.4328 L1369.16 19.4328 L1369.16 24.4675 Q1371.07 21.545 1373.64 20.0983 Q1376.25 18.6515 1379.63 18.6515 Q1385.22 18.6515 1388.08 22.1237 Q1390.94 25.567 1390.94 32.2799 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1417.85 24.3517 L1417.85 6.81709 L1423.18 6.81709 L1423.18 51.84 L1417.85 51.84 L1417.85 46.9789 Q1416.18 49.8724 1413.6 51.2902 Q1411.05 52.6791 1407.47 52.6791 Q1401.59 52.6791 1397.89 47.9916 Q1394.21 43.3042 1394.21 35.6653 Q1394.21 28.0265 1397.89 23.339 Q1401.59 18.6515 1407.47 18.6515 Q1411.05 18.6515 1413.6 20.0693 Q1416.18 21.4582 1417.85 24.3517 M1399.71 35.6653 Q1399.71 41.5391 1402.11 44.8956 Q1404.54 48.2231 1408.77 48.2231 Q1412.99 48.2231 1415.42 44.8956 Q1417.85 41.5391 1417.85 35.6653 Q1417.85 29.7915 1415.42 26.464 Q1412.99 23.1075 1408.77 23.1075 Q1404.54 23.1075 1402.11 26.464 Q1399.71 29.7915 1399.71 35.6653 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1464.41 13.7326 L1449.65 36.7938 L1464.41 36.7938 L1464.41 13.7326 M1462.88 8.64 L1470.23 8.64 L1470.23 36.7938 L1476.39 36.7938 L1476.39 41.6549 L1470.23 41.6549 L1470.23 51.84 L1464.41 51.84 L1464.41 41.6549 L1444.91 41.6549 L1444.91 36.0125 L1462.88 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1482.78 8.64 L1505.73 8.64 L1505.73 13.559 L1488.14 13.559 L1488.14 24.1492 Q1489.41 23.7152 1490.68 23.5126 Q1491.96 23.2811 1493.23 23.2811 Q1500.46 23.2811 1504.69 27.2452 Q1508.91 31.2093 1508.91 37.9801 Q1508.91 44.9535 1504.57 48.8308 Q1500.23 52.6791 1492.33 52.6791 Q1489.61 52.6791 1486.78 52.2162 Q1483.97 51.7532 1480.96 50.8273 L1480.96 44.9535 Q1483.57 46.3713 1486.34 47.0657 Q1489.12 47.7602 1492.22 47.7602 Q1497.22 47.7602 1500.15 45.1271 Q1503.07 42.494 1503.07 37.9801 Q1503.07 33.4663 1500.15 30.8332 Q1497.22 28.2001 1492.22 28.2001 Q1489.87 28.2001 1487.53 28.7209 Q1485.22 29.2417 1482.78 30.3413 L1482.78 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1554.66 24.3517 L1554.66 6.81709 L1559.98 6.81709 L1559.98 51.84 L1554.66 51.84 L1554.66 46.9789 Q1552.98 49.8724 1550.41 51.2902 Q1547.86 52.6791 1544.27 52.6791 Q1538.4 52.6791 1534.69 47.9916 Q1531.02 43.3042 1531.02 35.6653 Q1531.02 28.0265 1534.69 23.339 Q1538.4 18.6515 1544.27 18.6515 Q1547.86 18.6515 1550.41 20.0693 Q1552.98 21.4582 1554.66 24.3517 M1536.52 35.6653 Q1536.52 41.5391 1538.92 44.8956 Q1541.35 48.2231 1545.57 48.2231 Q1549.8 48.2231 1552.23 44.8956 Q1554.66 41.5391 1554.66 35.6653 Q1554.66 29.7915 1552.23 26.464 Q1549.8 23.1075 1545.57 23.1075 Q1541.35 23.1075 1538.92 26.464 Q1536.52 29.7915 1536.52 35.6653 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1593.29 34.3054 L1593.29 36.9095 L1568.81 36.9095 Q1569.16 42.4072 1572.11 45.3007 Q1575.09 48.1653 1580.38 48.1653 Q1583.45 48.1653 1586.31 47.4129 Q1589.21 46.6606 1592.04 45.156 L1592.04 50.1907 Q1589.18 51.406 1586.17 52.0425 Q1583.16 52.6791 1580.06 52.6791 Q1572.31 52.6791 1567.77 48.1653 Q1563.25 43.6514 1563.25 35.9547 Q1563.25 27.9975 1567.54 23.339 Q1571.85 18.6515 1579.14 18.6515 Q1585.68 18.6515 1589.47 22.876 Q1593.29 27.0716 1593.29 34.3054 M1587.96 32.7429 Q1587.91 28.3737 1585.5 25.7695 Q1583.13 23.1654 1579.2 23.1654 Q1574.74 23.1654 1572.05 25.6827 Q1569.39 28.2001 1568.98 32.7718 L1587.96 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1620.2 35.2602 Q1620.2 29.4732 1617.8 26.2904 Q1615.42 23.1075 1611.11 23.1075 Q1606.83 23.1075 1604.43 26.2904 Q1602.05 29.4732 1602.05 35.2602 Q1602.05 41.0183 1604.43 44.2012 Q1606.83 47.384 1611.11 47.384 Q1615.42 47.384 1617.8 44.2012 Q1620.2 41.0183 1620.2 35.2602 M1625.52 47.818 Q1625.52 56.0934 1621.85 60.1154 Q1618.17 64.1663 1610.59 64.1663 Q1607.78 64.1663 1605.3 63.7323 Q1602.81 63.3272 1600.46 62.4592 L1600.46 57.2798 Q1602.81 58.5529 1605.09 59.1606 Q1607.38 59.7682 1609.75 59.7682 Q1614.99 59.7682 1617.59 57.0194 Q1620.2 54.2995 1620.2 48.7729 L1620.2 46.1398 Q1618.55 49.0044 1615.97 50.4222 Q1613.4 51.84 1609.81 51.84 Q1603.85 51.84 1600.2 47.2972 Q1596.56 42.7544 1596.56 35.2602 Q1596.56 27.7371 1600.2 23.1943 Q1603.85 18.6515 1609.81 18.6515 Q1613.4 18.6515 1615.97 20.0693 Q1618.55 21.4872 1620.2 24.3517 L1620.2 19.4328 L1625.52 19.4328 L1625.52 47.818 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1649.88 24.4096 Q1648.99 23.8888 1647.92 23.6573 Q1646.88 23.3969 1645.6 23.3969 Q1641.09 23.3969 1638.66 26.3482 Q1636.26 29.2707 1636.26 34.7683 L1636.26 51.84 L1630.9 51.84 L1630.9 19.4328 L1636.26 19.4328 L1636.26 24.4675 Q1637.93 21.5161 1640.63 20.0983 Q1643.32 18.6515 1647.16 18.6515 Q1647.71 18.6515 1648.38 18.7383 Q1649.05 18.7962 1649.86 18.9409 L1649.88 24.4096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1681.89 34.3054 L1681.89 36.9095 L1657.41 36.9095 Q1657.75 42.4072 1660.71 45.3007 Q1663.69 48.1653 1668.98 48.1653 Q1672.05 48.1653 1674.91 47.4129 Q1677.81 46.6606 1680.64 45.156 L1680.64 50.1907 Q1677.78 51.406 1674.77 52.0425 Q1671.76 52.6791 1668.66 52.6791 Q1660.91 52.6791 1656.37 48.1653 Q1651.85 43.6514 1651.85 35.9547 Q1651.85 27.9975 1656.13 23.339 Q1660.45 18.6515 1667.74 18.6515 Q1674.28 18.6515 1678.07 22.876 Q1681.89 27.0716 1681.89 34.3054 M1676.56 32.7429 Q1676.5 28.3737 1674.1 25.7695 Q1671.73 23.1654 1667.8 23.1654 Q1663.34 23.1654 1660.65 25.6827 Q1657.99 28.2001 1657.58 32.7718 L1676.56 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1715.19 34.3054 L1715.19 36.9095 L1690.71 36.9095 Q1691.06 42.4072 1694.01 45.3007 Q1696.99 48.1653 1702.29 48.1653 Q1705.35 48.1653 1708.22 47.4129 Q1711.11 46.6606 1713.95 45.156 L1713.95 50.1907 Q1711.08 51.406 1708.07 52.0425 Q1705.06 52.6791 1701.97 52.6791 Q1694.21 52.6791 1689.67 48.1653 Q1685.16 43.6514 1685.16 35.9547 Q1685.16 27.9975 1689.44 23.339 Q1693.75 18.6515 1701.04 18.6515 Q1707.58 18.6515 1711.37 22.876 Q1715.19 27.0716 1715.19 34.3054 M1709.87 32.7429 Q1709.81 28.3737 1707.41 25.7695 Q1705.03 23.1654 1701.1 23.1654 Q1696.64 23.1654 1693.95 25.6827 Q1691.29 28.2001 1690.89 32.7718 L1709.87 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1739.61 6.81709 L1744.94 6.81709 L1744.94 51.84 L1739.61 51.84 L1739.61 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1750.52 19.4328 L1755.84 19.4328 L1755.84 51.84 L1750.52 51.84 L1750.52 19.4328 M1750.52 6.81709 L1755.84 6.81709 L1755.84 13.559 L1750.52 13.559 L1750.52 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1788.37 32.2799 L1788.37 51.84 L1783.04 51.84 L1783.04 32.4535 Q1783.04 27.8529 1781.25 25.567 Q1779.46 23.2811 1775.87 23.2811 Q1771.56 23.2811 1769.07 26.03 Q1766.58 28.7788 1766.58 33.5241 L1766.58 51.84 L1761.23 51.84 L1761.23 19.4328 L1766.58 19.4328 L1766.58 24.4675 Q1768.49 21.545 1771.06 20.0983 Q1773.67 18.6515 1777.05 18.6515 Q1782.64 18.6515 1785.5 22.1237 Q1788.37 25.567 1788.37 32.2799 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1821.67 34.3054 L1821.67 36.9095 L1797.19 36.9095 Q1797.54 42.4072 1800.49 45.3007 Q1803.47 48.1653 1808.77 48.1653 Q1811.83 48.1653 1814.7 47.4129 Q1817.59 46.6606 1820.43 45.156 L1820.43 50.1907 Q1817.56 51.406 1814.55 52.0425 Q1811.54 52.6791 1808.45 52.6791 Q1800.69 52.6791 1796.15 48.1653 Q1791.64 43.6514 1791.64 35.9547 Q1791.64 27.9975 1795.92 23.339 Q1800.23 18.6515 1807.52 18.6515 Q1814.06 18.6515 1817.85 22.876 Q1821.67 27.0716 1821.67 34.3054 M1816.35 32.7429 Q1816.29 28.3737 1813.89 25.7695 Q1811.52 23.1654 1807.58 23.1654 Q1803.12 23.1654 1800.43 25.6827 Q1797.77 28.2001 1797.37 32.7718 L1816.35 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip690)\" d=\"M 0 0 M1826.42 6.87496 L1831.05 6.87496 Q1835.39 13.7036 1837.53 20.2429 Q1839.7 26.7823 1839.7 33.2348 Q1839.7 39.7162 1837.53 46.2845 Q1835.39 52.8527 1831.05 59.6525 L1826.42 59.6525 Q1830.27 53.0263 1832.15 46.487 Q1834.06 39.9188 1834.06 33.2348 Q1834.06 26.5508 1832.15 20.0404 Q1830.27 13.53 1826.42 6.87496 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><circle clip-path=\"url(#clip692)\" cx=\"1131.25\" cy=\"610.841\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"974.133\" cy=\"742.652\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1163.75\" cy=\"603.648\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1045.76\" cy=\"689.056\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"999.595\" cy=\"741.537\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1125.04\" cy=\"647.314\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1059.83\" cy=\"703.949\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1162.72\" cy=\"627.457\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1030.44\" cy=\"722.895\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"876.218\" cy=\"829.884\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1155.89\" cy=\"630.395\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1083.43\" cy=\"600.71\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1163.96\" cy=\"567.377\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1028.37\" cy=\"705.165\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"770.851\" cy=\"945.686\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1126.91\" cy=\"673.757\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1152.37\" cy=\"652.076\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1110.14\" cy=\"671.934\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1177.42\" cy=\"604.965\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1080.33\" cy=\"601.621\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1090.26\" cy=\"635.46\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1066.67\" cy=\"638.399\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1242.21\" cy=\"573.456\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"946.394\" cy=\"777.504\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"940.184\" cy=\"745.894\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1054.66\" cy=\"755.417\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1115.31\" cy=\"656.534\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"998.974\" cy=\"694.223\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1049.07\" cy=\"686.928\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"995.662\" cy=\"778.213\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1012.64\" cy=\"767.98\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"901.68\" cy=\"847.715\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"886.982\" cy=\"864.837\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1144.29\" cy=\"625.734\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1117.38\" cy=\"754.708\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"968.544\" cy=\"767.879\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"973.926\" cy=\"742.955\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"919.897\" cy=\"804.859\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1003.53\" cy=\"746.805\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1110.97\" cy=\"661.194\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"964.403\" cy=\"757.443\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"975.375\" cy=\"787.939\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"980.55\" cy=\"757.342\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1275.33\" cy=\"685.814\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1068.94\" cy=\"708.711\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1278.02\" cy=\"557.448\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1139.12\" cy=\"632.826\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1060.87\" cy=\"691.488\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1117.18\" cy=\"514.491\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1094.4\" cy=\"688.955\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1103.51\" cy=\"683.686\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1183.63\" cy=\"641.641\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1057.76\" cy=\"570.011\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1109.1\" cy=\"666.058\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"963.989\" cy=\"770.918\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1036.24\" cy=\"783.887\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1062.32\" cy=\"760.179\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"971.028\" cy=\"824.919\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1091.51\" cy=\"692.906\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1007.88\" cy=\"780.847\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1002.08\" cy=\"718.336\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"949.085\" cy=\"795.335\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1057.35\" cy=\"737.181\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1033.13\" cy=\"768.588\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"920.311\" cy=\"786.622\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1077.64\" cy=\"714.79\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"985.104\" cy=\"799.59\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1260.84\" cy=\"628.774\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1027.75\" cy=\"745.184\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1023.81\" cy=\"764.637\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1007.46\" cy=\"787.838\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1080.54\" cy=\"729.075\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1208.67\" cy=\"560.386\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1067.7\" cy=\"653.292\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1028.37\" cy=\"736.471\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1025.26\" cy=\"749.338\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1146.57\" cy=\"711.447\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1068.74\" cy=\"732.013\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1031.27\" cy=\"705.874\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1023.4\" cy=\"734.344\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"949.913\" cy=\"804.859\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1123.18\" cy=\"724.415\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1175.34\" cy=\"683.382\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1120.49\" cy=\"704.557\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1053.42\" cy=\"662.005\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1183.83\" cy=\"660.181\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1143.88\" cy=\"680.85\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1017.6\" cy=\"705.57\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1139.74\" cy=\"693.615\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1063.35\" cy=\"714.587\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"910.374\" cy=\"816.814\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1172.24\" cy=\"726.036\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"871.871\" cy=\"801.515\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1137.26\" cy=\"699.694\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1067.91\" cy=\"745.184\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"979.929\" cy=\"780.949\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1302.03\" cy=\"603.04\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1134.98\" cy=\"607.498\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1084.05\" cy=\"681.052\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1000.42\" cy=\"745.286\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1047.41\" cy=\"716.715\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1125.25\" cy=\"703.747\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1126.7\" cy=\"700.809\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1111.79\" cy=\"719.957\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"992.35\" cy=\"743.766\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"565.706\" cy=\"1051.56\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"887.81\" cy=\"797.463\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1182.18\" cy=\"719.653\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1131.67\" cy=\"610.334\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1142.22\" cy=\"662.714\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1001.25\" cy=\"674.771\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1057.97\" cy=\"711.244\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1034.99\" cy=\"753.188\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1141.19\" cy=\"674.771\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1019.05\" cy=\"717.829\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"974.547\" cy=\"754.404\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1108.9\" cy=\"704.962\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1068.53\" cy=\"762.205\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"998.974\" cy=\"780.847\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1075.36\" cy=\"713.372\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1170.17\" cy=\"651.164\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"998.146\" cy=\"716.208\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1075.36\" cy=\"720.362\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1130.63\" cy=\"702.936\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1109.72\" cy=\"705.874\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1019.88\" cy=\"753.999\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1189.84\" cy=\"712.257\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1075.15\" cy=\"709.623\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1028.16\" cy=\"710.433\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"969.993\" cy=\"756.734\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1067.29\" cy=\"745.894\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1069.98\" cy=\"749.034\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"887.81\" cy=\"772.134\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1063.77\" cy=\"704.152\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1081.36\" cy=\"685.611\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"971.856\" cy=\"723.706\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1214.68\" cy=\"657.041\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1022.99\" cy=\"698.681\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1011.19\" cy=\"750.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"840.82\" cy=\"876.488\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"920.932\" cy=\"813.977\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1004.77\" cy=\"793.005\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1168.93\" cy=\"705.976\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1093.37\" cy=\"741.942\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1135.6\" cy=\"635.663\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1191.7\" cy=\"537.692\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1095.44\" cy=\"613.475\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1040.58\" cy=\"654.204\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1119.25\" cy=\"695.844\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"944.945\" cy=\"768.284\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1131.46\" cy=\"693.311\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1090.68\" cy=\"685.51\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1012.43\" cy=\"692.197\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1072.88\" cy=\"664.943\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"959.435\" cy=\"718.235\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1257.94\" cy=\"704.253\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1035.2\" cy=\"473.053\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1066.67\" cy=\"664.943\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"988.623\" cy=\"741.942\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1065.84\" cy=\"802.225\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1052.18\" cy=\"735.559\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"998.146\" cy=\"808.303\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1120.9\" cy=\"716.715\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"996.283\" cy=\"758.659\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1065.01\" cy=\"715.6\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1062.73\" cy=\"706.381\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1123.18\" cy=\"629.686\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1075.77\" cy=\"690.272\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1066.04\" cy=\"638.703\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1051.35\" cy=\"765.245\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1091.51\" cy=\"704.861\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"987.174\" cy=\"744.171\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1101.44\" cy=\"667.78\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1050.73\" cy=\"699.289\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1038.1\" cy=\"727.049\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1121.32\" cy=\"665.754\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1040.58\" cy=\"693.716\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1077.64\" cy=\"667.071\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1003.11\" cy=\"755.012\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1080.33\" cy=\"726.644\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1104.76\" cy=\"668.996\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"990.28\" cy=\"745.894\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"944.324\" cy=\"788.446\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1058.8\" cy=\"767.98\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1057.56\" cy=\"738.802\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"980.55\" cy=\"778.314\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1102.27\" cy=\"714.283\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1125.25\" cy=\"698.276\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"998.974\" cy=\"705.368\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1066.87\" cy=\"736.37\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"960.056\" cy=\"770.614\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1061.7\" cy=\"780.645\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1078.26\" cy=\"666.868\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1118.42\" cy=\"700.707\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1091.09\" cy=\"707.191\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1087.37\" cy=\"708.711\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1103.93\" cy=\"707.799\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1099.58\" cy=\"635.866\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1119.87\" cy=\"656.635\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1054.25\" cy=\"666.058\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1111.17\" cy=\"681.761\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1011.6\" cy=\"784.393\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1124.42\" cy=\"726.745\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1066.04\" cy=\"729.582\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1093.99\" cy=\"673.251\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1070.39\" cy=\"675.379\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1059.21\" cy=\"677.506\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1087.99\" cy=\"656.129\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1091.51\" cy=\"617.021\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1019.26\" cy=\"781.05\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"924.037\" cy=\"862.608\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1103.51\" cy=\"682.065\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1145.33\" cy=\"709.522\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1064.39\" cy=\"795.133\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1172.03\" cy=\"733.938\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1011.6\" cy=\"767.98\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1146.16\" cy=\"603.85\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1034.37\" cy=\"768.284\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"942.875\" cy=\"814.99\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1123.59\" cy=\"772.539\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1182.8\" cy=\"646.301\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1128.35\" cy=\"696.857\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1194.18\" cy=\"698.884\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"961.091\" cy=\"661.093\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1156.71\" cy=\"613.07\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"964.818\" cy=\"755.721\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1099.58\" cy=\"779.834\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1071.63\" cy=\"828.87\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1045.14\" cy=\"679.228\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1188.39\" cy=\"676.29\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1142.84\" cy=\"671.427\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1058.39\" cy=\"688.549\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"983.241\" cy=\"776.288\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1102.27\" cy=\"770.513\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"988.002\" cy=\"784.596\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"709.162\" cy=\"981.45\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1167.27\" cy=\"678.418\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1192.11\" cy=\"683.889\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1166.65\" cy=\"574.266\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1167.48\" cy=\"716.31\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1117.18\" cy=\"559.373\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"958.607\" cy=\"775.376\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1114.28\" cy=\"760.28\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1138.7\" cy=\"653.697\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"994.834\" cy=\"682.876\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1141.6\" cy=\"679.228\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"973.305\" cy=\"699.491\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1015.95\" cy=\"764.941\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"989.451\" cy=\"714.182\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1165.2\" cy=\"730.291\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1113.45\" cy=\"458.869\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1209.09\" cy=\"521.887\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"954.26\" cy=\"538.198\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1101.65\" cy=\"403.956\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1145.74\" cy=\"771.222\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"912.03\" cy=\"953.386\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"953.639\" cy=\"859.873\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1143.26\" cy=\"564.945\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"999.388\" cy=\"802.934\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1191.49\" cy=\"648.226\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"928.384\" cy=\"827.047\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"982.206\" cy=\"849.944\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"821.982\" cy=\"968.887\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1076.6\" cy=\"880.44\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1115.31\" cy=\"142.361\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"831.09\" cy=\"851.261\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"890.088\" cy=\"856.935\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1210.12\" cy=\"601.216\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1060.04\" cy=\"601.621\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1002.7\" cy=\"729.278\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1000.63\" cy=\"798.375\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"916.171\" cy=\"797.159\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"849.514\" cy=\"894.117\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1097.72\" cy=\"581.257\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1204.33\" cy=\"645.896\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1078.67\" cy=\"599.494\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1008.7\" cy=\"734.648\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"997.111\" cy=\"814.99\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1134.56\" cy=\"659.371\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"938.941\" cy=\"805.568\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1020.09\" cy=\"805.163\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"896.505\" cy=\"837.887\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"873.734\" cy=\"870.308\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1058.39\" cy=\"718.133\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"834.816\" cy=\"832.923\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1196.87\" cy=\"633.029\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1169.13\" cy=\"527.459\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"932.11\" cy=\"823.703\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"994.213\" cy=\"687.84\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1010.98\" cy=\"767.372\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1063.97\" cy=\"686.219\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1214.06\" cy=\"575.583\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1174.31\" cy=\"447.927\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1076.39\" cy=\"619.048\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1091.09\" cy=\"626.95\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1095.03\" cy=\"671.832\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1024.23\" cy=\"648.327\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1168.1\" cy=\"649.746\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1077.64\" cy=\"694.831\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1137.26\" cy=\"698.58\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1090.89\" cy=\"604.559\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1075.57\" cy=\"718.235\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1020.71\" cy=\"732.925\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"992.971\" cy=\"749.136\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1072.67\" cy=\"748.629\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1087.78\" cy=\"716.816\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"964.611\" cy=\"837.381\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1048.03\" cy=\"739.511\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1084.88\" cy=\"670.515\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1079.29\" cy=\"697.263\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1141.4\" cy=\"604.965\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1114.28\" cy=\"621.175\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"986.346\" cy=\"775.072\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1088.4\" cy=\"724.921\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1005.39\" cy=\"785.508\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"988.209\" cy=\"791.384\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1118.42\" cy=\"649.645\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1063.77\" cy=\"690.17\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1129.39\" cy=\"632.928\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1026.3\" cy=\"745.691\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1060.66\" cy=\"707.191\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"996.076\" cy=\"768.689\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1121.94\" cy=\"688.144\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1045.34\" cy=\"703.949\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1120.28\" cy=\"604.965\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1034.37\" cy=\"706.685\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1076.6\" cy=\"672.947\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1064.18\" cy=\"731.811\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"971.649\" cy=\"808.303\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1035.61\" cy=\"737.079\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1032.51\" cy=\"774.971\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1087.99\" cy=\"685.611\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1076.39\" cy=\"731.608\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1113.04\" cy=\"651.266\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1085.09\" cy=\"697.465\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1058.8\" cy=\"712.257\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1075.77\" cy=\"684.092\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1007.88\" cy=\"712.966\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1062.73\" cy=\"714.385\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1118.21\" cy=\"678.925\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1116.76\" cy=\"715.904\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1006.01\" cy=\"721.882\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"970.821\" cy=\"769.703\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1060.25\" cy=\"736.877\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1122.76\" cy=\"694.426\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1091.51\" cy=\"684.801\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"935.629\" cy=\"822.285\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1030.23\" cy=\"741.334\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"911.409\" cy=\"789.358\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"996.49\" cy=\"755.012\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1019.67\" cy=\"760.483\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1146.98\" cy=\"699.795\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1090.47\" cy=\"666.969\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"878.495\" cy=\"795.234\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1014.29\" cy=\"699.39\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1065.22\" cy=\"718.944\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"838.335\" cy=\"870.612\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"660.722\" cy=\"957.54\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"867.524\" cy=\"864.229\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1087.37\" cy=\"679.026\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"884.291\" cy=\"689.867\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"835.23\" cy=\"819.955\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1225.85\" cy=\"570.112\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1273.26\" cy=\"494.126\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1184.04\" cy=\"618.845\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1038.93\" cy=\"614.184\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1215.09\" cy=\"627.659\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1110.55\" cy=\"652.785\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1138.29\" cy=\"636.271\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"985.932\" cy=\"808.405\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1163.55\" cy=\"721.882\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1104.96\" cy=\"652.785\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"967.923\" cy=\"741.638\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1117.8\" cy=\"682.369\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1178.04\" cy=\"656.635\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1086.54\" cy=\"628.571\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"879.116\" cy=\"811.85\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"936.871\" cy=\"792.904\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1191.7\" cy=\"658.054\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"953.639\" cy=\"788.851\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1236\" cy=\"592.503\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1125.04\" cy=\"656.534\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1056.32\" cy=\"709.42\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1184.87\" cy=\"599.899\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1086.33\" cy=\"718.032\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1124.42\" cy=\"699.694\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1050.52\" cy=\"694.73\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<circle clip-path=\"url(#clip692)\" cx=\"1103.1\" cy=\"703.645\" r=\"14\" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\" stroke=\"#000000\" stroke-opacity=\"1\" stroke-width=\"2.56\"/>\n<polyline clip-path=\"url(#clip692)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:1; fill:none\" points=\"\n 216.69,1119.34 2286.77,106.192 \n \"/>\n</svg>\n"
},
"metadata": {}
}
],
"metadata": {}
},
{
"cell_type": "code",
"execution_count": 14,
"source": [
"xGrid = -25:0.1:15\n",
"pdfX = pdf.(Normal(mean(Rme),std(Rme)),xGrid) #\"Distributions\" wants σ, not σ^2\n",
"\n",
"p1 = histogram( Rme,bins = -25:1:15,\n",
" normalized = true, #normalized to have area=1\n",
" label = \"histogram\",\n",
" title = \"Histogram: monthly US equity market excess return\",\n",
" titlefont = font(10),\n",
" xlabel = \"Market excess return, %\",\n",
" legend = :topleft,\n",
" guidefont = font(8) ) #font size of axis labels\n",
"plot!(xGrid,pdfX,linewidth=3,label=\"fitted N()\")\n",
"display(p1)"
],
"outputs": [
{
"output_type": "display_data",
"data": {
"image/svg+xml": "<?xml version=\"1.0\" encoding=\"utf-8\"?>\n<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"480\" height=\"320\" viewBox=\"0 0 1920 1280\">\n<defs>\n <clipPath id=\"clip730\">\n <rect x=\"0\" y=\"0\" width=\"1920\" height=\"1280\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip730)\" d=\"\nM0 1280 L1920 1280 L1920 0 L0 0 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip731\">\n <rect x=\"384\" y=\"0\" width=\"1345\" height=\"1280\"/>\n </clipPath>\n</defs>\n<path clip-path=\"url(#clip730)\" d=\"\nM197.076 1119.34 L1872.76 1119.34 L1872.76 106.192 L197.076 106.192 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<defs>\n <clipPath id=\"clip732\">\n <rect x=\"197\" y=\"106\" width=\"1677\" height=\"1014\"/>\n </clipPath>\n</defs>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 475.66,1119.34 475.66,106.192 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 848.497,1119.34 848.497,106.192 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1221.33,1119.34 1221.33,106.192 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 1594.17,1119.34 1594.17,106.192 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 197.076,1119.34 1872.76,1119.34 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 475.66,1119.34 475.66,1107.18 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 848.497,1119.34 848.497,1107.18 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1221.33,1119.34 1221.33,1107.18 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1594.17,1119.34 1594.17,1107.18 \n \"/>\n<path clip-path=\"url(#clip730)\" d=\"M 0 0 M434.607 1159.34 L464.283 1159.34 L464.283 1163.28 L434.607 1163.28 L434.607 1159.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M473.38 1172.24 L489.699 1172.24 L489.699 1176.17 L467.755 1176.17 L467.755 1172.24 Q470.417 1169.48 475 1164.85 Q479.607 1160.2 480.787 1158.86 Q483.032 1156.33 483.912 1154.6 Q484.815 1152.84 484.815 1151.15 Q484.815 1148.39 482.87 1146.66 Q480.949 1144.92 477.847 1144.92 Q475.648 1144.92 473.195 1145.69 Q470.764 1146.45 467.986 1148 L467.986 1143.28 Q470.81 1142.14 473.264 1141.57 Q475.718 1140.99 477.755 1140.99 Q483.125 1140.99 486.319 1143.67 Q489.514 1146.36 489.514 1150.85 Q489.514 1152.98 488.704 1154.9 Q487.917 1156.8 485.81 1159.39 Q485.232 1160.06 482.13 1163.28 Q479.028 1166.47 473.38 1172.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M504.768 1144.69 Q501.157 1144.69 499.329 1148.26 Q497.523 1151.8 497.523 1158.93 Q497.523 1166.03 499.329 1169.6 Q501.157 1173.14 504.768 1173.14 Q508.403 1173.14 510.208 1169.6 Q512.037 1166.03 512.037 1158.93 Q512.037 1151.8 510.208 1148.26 Q508.403 1144.69 504.768 1144.69 M504.768 1140.99 Q510.579 1140.99 513.634 1145.59 Q516.713 1150.18 516.713 1158.93 Q516.713 1167.65 513.634 1172.26 Q510.579 1176.84 504.768 1176.84 Q498.958 1176.84 495.88 1172.26 Q492.824 1167.65 492.824 1158.93 Q492.824 1150.18 495.88 1145.59 Q498.958 1140.99 504.768 1140.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M807.259 1159.34 L836.935 1159.34 L836.935 1163.28 L807.259 1163.28 L807.259 1159.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M842.814 1172.24 L850.453 1172.24 L850.453 1145.87 L842.143 1147.54 L842.143 1143.28 L850.407 1141.61 L855.083 1141.61 L855.083 1172.24 L862.722 1172.24 L862.722 1176.17 L842.814 1176.17 L842.814 1172.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M877.791 1144.69 Q874.18 1144.69 872.351 1148.26 Q870.546 1151.8 870.546 1158.93 Q870.546 1166.03 872.351 1169.6 Q874.18 1173.14 877.791 1173.14 Q881.425 1173.14 883.231 1169.6 Q885.059 1166.03 885.059 1158.93 Q885.059 1151.8 883.231 1148.26 Q881.425 1144.69 877.791 1144.69 M877.791 1140.99 Q883.601 1140.99 886.657 1145.59 Q889.735 1150.18 889.735 1158.93 Q889.735 1167.65 886.657 1172.26 Q883.601 1176.84 877.791 1176.84 Q871.981 1176.84 868.902 1172.26 Q865.847 1167.65 865.847 1158.93 Q865.847 1150.18 868.902 1145.59 Q871.981 1140.99 877.791 1140.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1221.33 1144.69 Q1217.72 1144.69 1215.89 1148.26 Q1214.09 1151.8 1214.09 1158.93 Q1214.09 1166.03 1215.89 1169.6 Q1217.72 1173.14 1221.33 1173.14 Q1224.97 1173.14 1226.77 1169.6 Q1228.6 1166.03 1228.6 1158.93 Q1228.6 1151.8 1226.77 1148.26 Q1224.97 1144.69 1221.33 1144.69 M1221.33 1140.99 Q1227.14 1140.99 1230.2 1145.59 Q1233.28 1150.18 1233.28 1158.93 Q1233.28 1167.65 1230.2 1172.26 Q1227.14 1176.84 1221.33 1176.84 Q1215.52 1176.84 1212.45 1172.26 Q1209.39 1167.65 1209.39 1158.93 Q1209.39 1150.18 1212.45 1145.59 Q1215.52 1140.99 1221.33 1140.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1571.05 1172.24 L1578.69 1172.24 L1578.69 1145.87 L1570.38 1147.54 L1570.38 1143.28 L1578.64 1141.61 L1583.32 1141.61 L1583.32 1172.24 L1590.95 1172.24 L1590.95 1176.17 L1571.05 1176.17 L1571.05 1172.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1606.02 1144.69 Q1602.41 1144.69 1600.58 1148.26 Q1598.78 1151.8 1598.78 1158.93 Q1598.78 1166.03 1600.58 1169.6 Q1602.41 1173.14 1606.02 1173.14 Q1609.66 1173.14 1611.46 1169.6 Q1613.29 1166.03 1613.29 1158.93 Q1613.29 1151.8 1611.46 1148.26 Q1609.66 1144.69 1606.02 1144.69 M1606.02 1140.99 Q1611.83 1140.99 1614.89 1145.59 Q1617.97 1150.18 1617.97 1158.93 Q1617.97 1167.65 1614.89 1172.26 Q1611.83 1176.84 1606.02 1176.84 Q1600.21 1176.84 1597.13 1172.26 Q1594.08 1167.65 1594.08 1158.93 Q1594.08 1150.18 1597.13 1145.59 Q1600.21 1140.99 1606.02 1140.99 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M773.598 1206.89 L780.565 1206.89 L789.385 1230.41 L798.25 1206.89 L805.218 1206.89 L805.218 1241.45 L800.658 1241.45 L800.658 1211.1 L791.746 1234.81 L787.047 1234.81 L778.135 1211.1 L778.135 1241.45 L773.598 1241.45 L773.598 1206.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M821.468 1228.42 Q816.306 1228.42 814.315 1229.6 Q812.324 1230.78 812.324 1233.63 Q812.324 1235.9 813.806 1237.24 Q815.311 1238.56 817.88 1238.56 Q821.422 1238.56 823.551 1236.06 Q825.704 1233.54 825.704 1229.37 L825.704 1228.42 L821.468 1228.42 M829.963 1226.66 L829.963 1241.45 L825.704 1241.45 L825.704 1237.52 Q824.246 1239.88 822.07 1241.01 Q819.894 1242.12 816.746 1242.12 Q812.764 1242.12 810.403 1239.9 Q808.065 1237.66 808.065 1233.91 Q808.065 1229.53 810.982 1227.31 Q813.922 1225.09 819.732 1225.09 L825.704 1225.09 L825.704 1224.67 Q825.704 1221.73 823.76 1220.13 Q821.838 1218.51 818.343 1218.51 Q816.121 1218.51 814.014 1219.04 Q811.908 1219.58 809.963 1220.64 L809.963 1216.71 Q812.301 1215.8 814.5 1215.36 Q816.699 1214.9 818.783 1214.9 Q824.408 1214.9 827.185 1217.82 Q829.963 1220.73 829.963 1226.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M849.454 1219.51 Q848.736 1219.09 847.88 1218.91 Q847.046 1218.7 846.028 1218.7 Q842.417 1218.7 840.472 1221.06 Q838.551 1223.4 838.551 1227.79 L838.551 1241.45 L834.269 1241.45 L834.269 1215.53 L838.551 1215.53 L838.551 1219.55 Q839.894 1217.19 842.047 1216.06 Q844.199 1214.9 847.278 1214.9 Q847.718 1214.9 848.25 1214.97 Q848.783 1215.02 849.431 1215.13 L849.454 1219.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M853.759 1205.43 L858.042 1205.43 L858.042 1226.71 L870.75 1215.53 L876.19 1215.53 L862.44 1227.66 L876.769 1241.45 L871.213 1241.45 L858.042 1228.79 L858.042 1241.45 L853.759 1241.45 L853.759 1205.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M901.722 1227.42 L901.722 1229.51 L882.139 1229.51 Q882.417 1233.91 884.778 1236.22 Q887.162 1238.51 891.398 1238.51 Q893.852 1238.51 896.143 1237.91 Q898.458 1237.31 900.727 1236.1 L900.727 1240.13 Q898.435 1241.1 896.028 1241.61 Q893.62 1242.12 891.143 1242.12 Q884.94 1242.12 881.306 1238.51 Q877.694 1234.9 877.694 1228.74 Q877.694 1222.38 881.12 1218.65 Q884.569 1214.9 890.403 1214.9 Q895.634 1214.9 898.667 1218.28 Q901.722 1221.64 901.722 1227.42 M897.463 1226.17 Q897.417 1222.68 895.495 1220.6 Q893.597 1218.51 890.449 1218.51 Q886.884 1218.51 884.731 1220.53 Q882.602 1222.54 882.278 1226.2 L897.463 1226.17 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M910.403 1208.16 L910.403 1215.53 L919.176 1215.53 L919.176 1218.84 L910.403 1218.84 L910.403 1232.91 Q910.403 1236.08 911.259 1236.98 Q912.139 1237.89 914.801 1237.89 L919.176 1237.89 L919.176 1241.45 L914.801 1241.45 Q909.87 1241.45 907.995 1239.62 Q906.12 1237.77 906.12 1232.91 L906.12 1218.84 L902.995 1218.84 L902.995 1215.53 L906.12 1215.53 L906.12 1208.16 L910.403 1208.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M960.888 1227.42 L960.888 1229.51 L941.305 1229.51 Q941.583 1233.91 943.944 1236.22 Q946.328 1238.51 950.564 1238.51 Q953.018 1238.51 955.31 1237.91 Q957.625 1237.31 959.893 1236.1 L959.893 1240.13 Q957.601 1241.1 955.194 1241.61 Q952.787 1242.12 950.31 1242.12 Q944.106 1242.12 940.472 1238.51 Q936.861 1234.9 936.861 1228.74 Q936.861 1222.38 940.287 1218.65 Q943.736 1214.9 949.569 1214.9 Q954.801 1214.9 957.833 1218.28 Q960.888 1221.64 960.888 1227.42 M956.629 1226.17 Q956.583 1222.68 954.662 1220.6 Q952.764 1218.51 949.615 1218.51 Q946.051 1218.51 943.898 1220.53 Q941.768 1222.54 941.444 1226.2 L956.629 1226.17 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M986.074 1215.53 L976.699 1228.14 L986.56 1241.45 L981.536 1241.45 L973.99 1231.27 L966.444 1241.45 L961.421 1241.45 L971.49 1227.89 L962.277 1215.53 L967.3 1215.53 L974.175 1224.76 L981.05 1215.53 L986.074 1215.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1008.85 1216.52 L1008.85 1220.5 Q1007.05 1219.51 1005.22 1219.02 Q1003.41 1218.51 1001.56 1218.51 Q997.416 1218.51 995.124 1221.15 Q992.833 1223.77 992.833 1228.51 Q992.833 1233.26 995.124 1235.9 Q997.416 1238.51 1001.56 1238.51 Q1003.41 1238.51 1005.22 1238.03 Q1007.05 1237.52 1008.85 1236.52 L1008.85 1240.46 Q1007.07 1241.29 1005.15 1241.71 Q1003.25 1242.12 1001.1 1242.12 Q995.24 1242.12 991.791 1238.44 Q988.342 1234.76 988.342 1228.51 Q988.342 1222.17 991.814 1218.54 Q995.31 1214.9 1001.37 1214.9 Q1003.34 1214.9 1005.22 1215.32 Q1007.09 1215.71 1008.85 1216.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1035.49 1227.42 L1035.49 1229.51 L1015.91 1229.51 Q1016.19 1233.91 1018.55 1236.22 Q1020.93 1238.51 1025.17 1238.51 Q1027.62 1238.51 1029.92 1237.91 Q1032.23 1237.31 1034.5 1236.1 L1034.5 1240.13 Q1032.21 1241.1 1029.8 1241.61 Q1027.39 1242.12 1024.92 1242.12 Q1018.71 1242.12 1015.08 1238.51 Q1011.47 1234.9 1011.47 1228.74 Q1011.47 1222.38 1014.89 1218.65 Q1018.34 1214.9 1024.18 1214.9 Q1029.41 1214.9 1032.44 1218.28 Q1035.49 1221.64 1035.49 1227.42 M1031.24 1226.17 Q1031.19 1222.68 1029.27 1220.6 Q1027.37 1218.51 1024.22 1218.51 Q1020.66 1218.51 1018.5 1220.53 Q1016.37 1222.54 1016.05 1226.2 L1031.24 1226.17 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1056.49 1216.29 L1056.49 1220.32 Q1054.68 1219.39 1052.74 1218.93 Q1050.8 1218.47 1048.71 1218.47 Q1045.54 1218.47 1043.94 1219.44 Q1042.37 1220.41 1042.37 1222.35 Q1042.37 1223.84 1043.5 1224.69 Q1044.64 1225.53 1048.06 1226.29 L1049.52 1226.61 Q1054.06 1227.59 1055.96 1229.37 Q1057.88 1231.13 1057.88 1234.3 Q1057.88 1237.91 1055.01 1240.02 Q1052.16 1242.12 1047.16 1242.12 Q1045.08 1242.12 1042.81 1241.71 Q1040.56 1241.31 1038.06 1240.5 L1038.06 1236.1 Q1040.43 1237.33 1042.72 1237.96 Q1045.01 1238.56 1047.25 1238.56 Q1050.26 1238.56 1051.88 1237.54 Q1053.5 1236.5 1053.5 1234.62 Q1053.5 1232.89 1052.32 1231.96 Q1051.17 1231.04 1047.21 1230.18 L1045.73 1229.83 Q1041.77 1229 1040.01 1227.29 Q1038.25 1225.55 1038.25 1222.54 Q1038.25 1218.88 1040.84 1216.89 Q1043.43 1214.9 1048.2 1214.9 Q1050.56 1214.9 1052.65 1215.25 Q1054.73 1215.6 1056.49 1216.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1078.87 1216.29 L1078.87 1220.32 Q1077.07 1219.39 1075.12 1218.93 Q1073.18 1218.47 1071.1 1218.47 Q1067.92 1218.47 1066.33 1219.44 Q1064.75 1220.41 1064.75 1222.35 Q1064.75 1223.84 1065.89 1224.69 Q1067.02 1225.53 1070.45 1226.29 L1071.91 1226.61 Q1076.44 1227.59 1078.34 1229.37 Q1080.26 1231.13 1080.26 1234.3 Q1080.26 1237.91 1077.39 1240.02 Q1074.55 1242.12 1069.55 1242.12 Q1067.46 1242.12 1065.19 1241.71 Q1062.95 1241.31 1060.45 1240.5 L1060.45 1236.1 Q1062.81 1237.33 1065.1 1237.96 Q1067.39 1238.56 1069.64 1238.56 Q1072.65 1238.56 1074.27 1237.54 Q1075.89 1236.5 1075.89 1234.62 Q1075.89 1232.89 1074.71 1231.96 Q1073.55 1231.04 1069.59 1230.18 L1068.11 1229.83 Q1064.15 1229 1062.39 1227.29 Q1060.63 1225.55 1060.63 1222.54 Q1060.63 1218.88 1063.23 1216.89 Q1065.82 1214.9 1070.59 1214.9 Q1072.95 1214.9 1075.03 1215.25 Q1077.11 1215.6 1078.87 1216.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1114.82 1219.51 Q1114.11 1219.09 1113.25 1218.91 Q1112.42 1218.7 1111.4 1218.7 Q1107.79 1218.7 1105.84 1221.06 Q1103.92 1223.4 1103.92 1227.79 L1103.92 1241.45 L1099.64 1241.45 L1099.64 1215.53 L1103.92 1215.53 L1103.92 1219.55 Q1105.26 1217.19 1107.42 1216.06 Q1109.57 1214.9 1112.65 1214.9 Q1113.09 1214.9 1113.62 1214.97 Q1114.15 1215.02 1114.8 1215.13 L1114.82 1219.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1140.42 1227.42 L1140.42 1229.51 L1120.84 1229.51 Q1121.12 1233.91 1123.48 1236.22 Q1125.86 1238.51 1130.1 1238.51 Q1132.55 1238.51 1134.85 1237.91 Q1137.16 1237.31 1139.43 1236.1 L1139.43 1240.13 Q1137.14 1241.1 1134.73 1241.61 Q1132.32 1242.12 1129.85 1242.12 Q1123.64 1242.12 1120.01 1238.51 Q1116.4 1234.9 1116.4 1228.74 Q1116.4 1222.38 1119.82 1218.65 Q1123.27 1214.9 1129.11 1214.9 Q1134.34 1214.9 1137.37 1218.28 Q1140.42 1221.64 1140.42 1227.42 M1136.17 1226.17 Q1136.12 1222.68 1134.2 1220.6 Q1132.3 1218.51 1129.15 1218.51 Q1125.59 1218.51 1123.43 1220.53 Q1121.3 1222.54 1120.98 1226.2 L1136.17 1226.17 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1149.11 1208.16 L1149.11 1215.53 L1157.88 1215.53 L1157.88 1218.84 L1149.11 1218.84 L1149.11 1232.91 Q1149.11 1236.08 1149.96 1236.98 Q1150.84 1237.89 1153.5 1237.89 L1157.88 1237.89 L1157.88 1241.45 L1153.5 1241.45 Q1148.57 1241.45 1146.7 1239.62 Q1144.82 1237.77 1144.82 1232.91 L1144.82 1218.84 L1141.7 1218.84 L1141.7 1215.53 L1144.82 1215.53 L1144.82 1208.16 L1149.11 1208.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1161.91 1231.22 L1161.91 1215.53 L1166.17 1215.53 L1166.17 1231.06 Q1166.17 1234.74 1167.6 1236.59 Q1169.04 1238.42 1171.91 1238.42 Q1175.35 1238.42 1177.35 1236.22 Q1179.36 1234.02 1179.36 1230.23 L1179.36 1215.53 L1183.62 1215.53 L1183.62 1241.45 L1179.36 1241.45 L1179.36 1237.47 Q1177.81 1239.83 1175.75 1240.99 Q1173.71 1242.12 1171 1242.12 Q1166.54 1242.12 1164.22 1239.35 Q1161.91 1236.57 1161.91 1231.22 M1172.62 1214.9 L1172.62 1214.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1203.11 1219.51 Q1202.39 1219.09 1201.54 1218.91 Q1200.7 1218.7 1199.68 1218.7 Q1196.07 1218.7 1194.13 1221.06 Q1192.21 1223.4 1192.21 1227.79 L1192.21 1241.45 L1187.92 1241.45 L1187.92 1215.53 L1192.21 1215.53 L1192.21 1219.55 Q1193.55 1217.19 1195.7 1216.06 Q1197.85 1214.9 1200.93 1214.9 Q1201.37 1214.9 1201.91 1214.97 Q1202.44 1215.02 1203.09 1215.13 L1203.11 1219.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1228.29 1225.8 L1228.29 1241.45 L1224.04 1241.45 L1224.04 1225.94 Q1224.04 1222.26 1222.6 1220.43 Q1221.16 1218.6 1218.29 1218.6 Q1214.85 1218.6 1212.85 1220.8 Q1210.86 1223 1210.86 1226.8 L1210.86 1241.45 L1206.58 1241.45 L1206.58 1215.53 L1210.86 1215.53 L1210.86 1219.55 Q1212.39 1217.22 1214.45 1216.06 Q1216.54 1214.9 1219.24 1214.9 Q1223.71 1214.9 1226 1217.68 Q1228.29 1220.43 1228.29 1225.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1233.85 1235.57 L1238.73 1235.57 L1238.73 1239.55 L1234.94 1246.96 L1231.95 1246.96 L1233.85 1239.55 L1233.85 1235.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1288.27 1226.24 Q1286.26 1226.24 1285.1 1227.96 Q1283.97 1229.67 1283.97 1232.73 Q1283.97 1235.73 1285.1 1237.47 Q1286.26 1239.18 1288.27 1239.18 Q1290.24 1239.18 1291.37 1237.47 Q1292.53 1235.73 1292.53 1232.73 Q1292.53 1229.69 1291.37 1227.98 Q1290.24 1226.24 1288.27 1226.24 M1288.27 1223.3 Q1291.93 1223.3 1294.08 1225.85 Q1296.23 1228.4 1296.23 1232.73 Q1296.23 1237.05 1294.06 1239.6 Q1291.91 1242.12 1288.27 1242.12 Q1284.57 1242.12 1282.41 1239.6 Q1280.26 1237.05 1280.26 1232.73 Q1280.26 1228.37 1282.41 1225.85 Q1284.59 1223.3 1288.27 1223.3 M1264.38 1209.21 Q1262.39 1209.21 1261.23 1210.94 Q1260.1 1212.66 1260.1 1215.66 Q1260.1 1218.72 1261.23 1220.43 Q1262.37 1222.15 1264.38 1222.15 Q1266.4 1222.15 1267.53 1220.43 Q1268.69 1218.72 1268.69 1215.66 Q1268.69 1212.68 1267.53 1210.94 Q1266.37 1209.21 1264.38 1209.21 M1285.28 1206.27 L1288.99 1206.27 L1267.37 1242.12 L1263.66 1242.12 L1285.28 1206.27 M1264.38 1206.27 Q1268.04 1206.27 1270.22 1208.81 Q1272.39 1211.34 1272.39 1215.66 Q1272.39 1220.04 1270.22 1222.56 Q1268.06 1225.09 1264.38 1225.09 Q1260.7 1225.09 1258.55 1222.56 Q1256.42 1220.02 1256.42 1215.66 Q1256.42 1211.36 1258.57 1208.81 Q1260.72 1206.27 1264.38 1206.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 197.076,1090.67 1872.76,1090.67 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 197.076,864.538 1872.76,864.538 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 197.076,638.409 1872.76,638.409 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 197.076,412.281 1872.76,412.281 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n 197.076,186.153 1872.76,186.153 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 197.076,1119.34 197.076,106.192 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 197.076,1090.67 217.184,1090.67 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 197.076,864.538 217.184,864.538 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 197.076,638.409 217.184,638.409 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 197.076,412.281 217.184,412.281 \n \"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 197.076,186.153 217.184,186.153 \n \"/>\n<path clip-path=\"url(#clip730)\" d=\"M 0 0 M65.3365 1076.46 Q61.7254 1076.46 59.8967 1080.03 Q58.0912 1083.57 58.0912 1090.7 Q58.0912 1097.81 59.8967 1101.37 Q61.7254 1104.91 65.3365 1104.91 Q68.9707 1104.91 70.7763 1101.37 Q72.605 1097.81 72.605 1090.7 Q72.605 1083.57 70.7763 1080.03 Q68.9707 1076.46 65.3365 1076.46 M65.3365 1072.76 Q71.1467 1072.76 74.2022 1077.37 Q77.2809 1081.95 77.2809 1090.7 Q77.2809 1099.43 74.2022 1104.03 Q71.1467 1108.62 65.3365 1108.62 Q59.5264 1108.62 56.4477 1104.03 Q53.3921 1099.43 53.3921 1090.7 Q53.3921 1081.95 56.4477 1077.37 Q59.5264 1072.76 65.3365 1072.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M82.3503 1102.07 L87.2345 1102.07 L87.2345 1107.95 L82.3503 1107.95 L82.3503 1102.07 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M102.304 1076.46 Q98.6928 1076.46 96.8641 1080.03 Q95.0586 1083.57 95.0586 1090.7 Q95.0586 1097.81 96.8641 1101.37 Q98.6928 1104.91 102.304 1104.91 Q105.938 1104.91 107.744 1101.37 Q109.572 1097.81 109.572 1090.7 Q109.572 1083.57 107.744 1080.03 Q105.938 1076.46 102.304 1076.46 M102.304 1072.76 Q108.114 1072.76 111.17 1077.37 Q114.248 1081.95 114.248 1090.7 Q114.248 1099.43 111.17 1104.03 Q108.114 1108.62 102.304 1108.62 Q96.4937 1108.62 93.4151 1104.03 Q90.3595 1099.43 90.3595 1090.7 Q90.3595 1081.95 93.4151 1077.37 Q96.4937 1072.76 102.304 1072.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M129.318 1076.46 Q125.707 1076.46 123.878 1080.03 Q122.072 1083.57 122.072 1090.7 Q122.072 1097.81 123.878 1101.37 Q125.707 1104.91 129.318 1104.91 Q132.952 1104.91 134.757 1101.37 Q136.586 1097.81 136.586 1090.7 Q136.586 1083.57 134.757 1080.03 Q132.952 1076.46 129.318 1076.46 M129.318 1072.76 Q135.128 1072.76 138.183 1077.37 Q141.262 1081.95 141.262 1090.7 Q141.262 1099.43 138.183 1104.03 Q135.128 1108.62 129.318 1108.62 Q123.507 1108.62 120.429 1104.03 Q117.373 1099.43 117.373 1090.7 Q117.373 1081.95 120.429 1077.37 Q123.507 1072.76 129.318 1072.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M156.331 1076.46 Q152.72 1076.46 150.892 1080.03 Q149.086 1083.57 149.086 1090.7 Q149.086 1097.81 150.892 1101.37 Q152.72 1104.91 156.331 1104.91 Q159.966 1104.91 161.771 1101.37 Q163.6 1097.81 163.6 1090.7 Q163.6 1083.57 161.771 1080.03 Q159.966 1076.46 156.331 1076.46 M156.331 1072.76 Q162.142 1072.76 165.197 1077.37 Q168.276 1081.95 168.276 1090.7 Q168.276 1099.43 165.197 1104.03 Q162.142 1108.62 156.331 1108.62 Q150.521 1108.62 147.443 1104.03 Q144.387 1099.43 144.387 1090.7 Q144.387 1081.95 147.443 1077.37 Q150.521 1072.76 156.331 1072.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M67.9291 850.336 Q64.318 850.336 62.4893 853.901 Q60.6838 857.443 60.6838 864.572 Q60.6838 871.679 62.4893 875.244 Q64.318 878.785 67.9291 878.785 Q71.5633 878.785 73.3689 875.244 Q75.1976 871.679 75.1976 864.572 Q75.1976 857.443 73.3689 853.901 Q71.5633 850.336 67.9291 850.336 M67.9291 846.633 Q73.7392 846.633 76.7948 851.239 Q79.8735 855.822 79.8735 864.572 Q79.8735 873.299 76.7948 877.906 Q73.7392 882.489 67.9291 882.489 Q62.1189 882.489 59.0402 877.906 Q55.9847 873.299 55.9847 864.572 Q55.9847 855.822 59.0402 851.239 Q62.1189 846.633 67.9291 846.633 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M84.9429 875.938 L89.8271 875.938 L89.8271 881.818 L84.9429 881.818 L84.9429 875.938 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M104.896 850.336 Q101.285 850.336 99.4567 853.901 Q97.6511 857.443 97.6511 864.572 Q97.6511 871.679 99.4567 875.244 Q101.285 878.785 104.896 878.785 Q108.531 878.785 110.336 875.244 Q112.165 871.679 112.165 864.572 Q112.165 857.443 110.336 853.901 Q108.531 850.336 104.896 850.336 M104.896 846.633 Q110.707 846.633 113.762 851.239 Q116.841 855.822 116.841 864.572 Q116.841 873.299 113.762 877.906 Q110.707 882.489 104.896 882.489 Q99.0863 882.489 96.0076 877.906 Q92.9521 873.299 92.9521 864.572 Q92.9521 855.822 96.0076 851.239 Q99.0863 846.633 104.896 846.633 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M125.938 877.882 L142.257 877.882 L142.257 881.818 L120.313 881.818 L120.313 877.882 Q122.975 875.128 127.558 870.498 Q132.165 865.845 133.345 864.503 Q135.591 861.98 136.47 860.244 Q137.373 858.484 137.373 856.795 Q137.373 854.04 135.429 852.304 Q133.507 850.568 130.406 850.568 Q128.207 850.568 125.753 851.332 Q123.322 852.096 120.545 853.646 L120.545 848.924 Q123.369 847.79 125.822 847.211 Q128.276 846.633 130.313 846.633 Q135.683 846.633 138.878 849.318 Q142.072 852.003 142.072 856.494 Q142.072 858.623 141.262 860.545 Q140.475 862.443 138.369 865.035 Q137.79 865.707 134.688 868.924 Q131.586 872.119 125.938 877.882 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M147.373 847.258 L165.729 847.258 L165.729 851.193 L151.655 851.193 L151.655 859.665 Q152.674 859.318 153.693 859.156 Q154.711 858.971 155.73 858.971 Q161.517 858.971 164.896 862.142 Q168.276 865.313 168.276 870.73 Q168.276 876.308 164.804 879.41 Q161.331 882.489 155.012 882.489 Q152.836 882.489 150.568 882.119 Q148.322 881.748 145.915 881.007 L145.915 876.308 Q147.998 877.443 150.22 877.998 Q152.443 878.554 154.919 878.554 Q158.924 878.554 161.262 876.447 Q163.6 874.341 163.6 870.73 Q163.6 867.119 161.262 865.012 Q158.924 862.906 154.919 862.906 Q153.044 862.906 151.169 863.322 Q149.318 863.739 147.373 864.619 L147.373 847.258 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M66.3319 624.208 Q62.7208 624.208 60.8921 627.773 Q59.0865 631.315 59.0865 638.444 Q59.0865 645.551 60.8921 649.115 Q62.7208 652.657 66.3319 652.657 Q69.9661 652.657 71.7717 649.115 Q73.6004 645.551 73.6004 638.444 Q73.6004 631.315 71.7717 627.773 Q69.9661 624.208 66.3319 624.208 M66.3319 620.504 Q72.142 620.504 75.1976 625.111 Q78.2763 629.694 78.2763 638.444 Q78.2763 647.171 75.1976 651.777 Q72.142 656.361 66.3319 656.361 Q60.5217 656.361 57.443 651.777 Q54.3875 647.171 54.3875 638.444 Q54.3875 629.694 57.443 625.111 Q60.5217 620.504 66.3319 620.504 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M83.3457 649.81 L88.2299 649.81 L88.2299 655.689 L83.3457 655.689 L83.3457 649.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M103.299 624.208 Q99.6882 624.208 97.8595 627.773 Q96.0539 631.315 96.0539 638.444 Q96.0539 645.551 97.8595 649.115 Q99.6882 652.657 103.299 652.657 Q106.934 652.657 108.739 649.115 Q110.568 645.551 110.568 638.444 Q110.568 631.315 108.739 627.773 Q106.934 624.208 103.299 624.208 M103.299 620.504 Q109.109 620.504 112.165 625.111 Q115.244 629.694 115.244 638.444 Q115.244 647.171 112.165 651.777 Q109.109 656.361 103.299 656.361 Q97.4891 656.361 94.4104 651.777 Q91.3549 647.171 91.3549 638.444 Q91.3549 629.694 94.4104 625.111 Q97.4891 620.504 103.299 620.504 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M120.359 621.129 L138.716 621.129 L138.716 625.065 L124.642 625.065 L124.642 633.537 Q125.66 633.19 126.679 633.027 Q127.697 632.842 128.716 632.842 Q134.503 632.842 137.882 636.014 Q141.262 639.185 141.262 644.601 Q141.262 650.18 137.79 653.282 Q134.318 656.361 127.998 656.361 Q125.822 656.361 123.554 655.99 Q121.308 655.62 118.901 654.879 L118.901 650.18 Q120.984 651.314 123.207 651.87 Q125.429 652.426 127.906 652.426 Q131.91 652.426 134.248 650.319 Q136.586 648.213 136.586 644.601 Q136.586 640.99 134.248 638.884 Q131.91 636.777 127.906 636.777 Q126.031 636.777 124.156 637.194 Q122.304 637.611 120.359 638.49 L120.359 621.129 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M156.331 624.208 Q152.72 624.208 150.892 627.773 Q149.086 631.315 149.086 638.444 Q149.086 645.551 150.892 649.115 Q152.72 652.657 156.331 652.657 Q159.966 652.657 161.771 649.115 Q163.6 645.551 163.6 638.444 Q163.6 631.315 161.771 627.773 Q159.966 624.208 156.331 624.208 M156.331 620.504 Q162.142 620.504 165.197 625.111 Q168.276 629.694 168.276 638.444 Q168.276 647.171 165.197 651.777 Q162.142 656.361 156.331 656.361 Q150.521 656.361 147.443 651.777 Q144.387 647.171 144.387 638.444 Q144.387 629.694 147.443 625.111 Q150.521 620.504 156.331 620.504 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M67.2346 398.08 Q63.6236 398.08 61.7949 401.645 Q59.9893 405.186 59.9893 412.316 Q59.9893 419.422 61.7949 422.987 Q63.6236 426.529 67.2346 426.529 Q70.8689 426.529 72.6744 422.987 Q74.5031 419.422 74.5031 412.316 Q74.5031 405.186 72.6744 401.645 Q70.8689 398.08 67.2346 398.08 M67.2346 394.376 Q73.0448 394.376 76.1003 398.983 Q79.179 403.566 79.179 412.316 Q79.179 421.043 76.1003 425.649 Q73.0448 430.232 67.2346 430.232 Q61.4245 430.232 58.3458 425.649 Q55.2903 421.043 55.2903 412.316 Q55.2903 403.566 58.3458 398.983 Q61.4245 394.376 67.2346 394.376 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M84.2484 423.682 L89.1327 423.682 L89.1327 429.561 L84.2484 429.561 L84.2484 423.682 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M104.202 398.08 Q100.591 398.08 98.7623 401.645 Q96.9567 405.186 96.9567 412.316 Q96.9567 419.422 98.7623 422.987 Q100.591 426.529 104.202 426.529 Q107.836 426.529 109.642 422.987 Q111.471 419.422 111.471 412.316 Q111.471 405.186 109.642 401.645 Q107.836 398.08 104.202 398.08 M104.202 394.376 Q110.012 394.376 113.068 398.983 Q116.146 403.566 116.146 412.316 Q116.146 421.043 113.068 425.649 Q110.012 430.232 104.202 430.232 Q98.3919 430.232 95.3132 425.649 Q92.2577 421.043 92.2577 412.316 Q92.2577 403.566 95.3132 398.983 Q98.3919 394.376 104.202 394.376 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M120.035 395.001 L142.257 395.001 L142.257 396.992 L129.711 429.561 L124.827 429.561 L136.632 398.936 L120.035 398.936 L120.035 395.001 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M147.373 395.001 L165.729 395.001 L165.729 398.936 L151.655 398.936 L151.655 407.409 Q152.674 407.061 153.693 406.899 Q154.711 406.714 155.73 406.714 Q161.517 406.714 164.896 409.885 Q168.276 413.057 168.276 418.473 Q168.276 424.052 164.804 427.154 Q161.331 430.232 155.012 430.232 Q152.836 430.232 150.568 429.862 Q148.322 429.492 145.915 428.751 L145.915 424.052 Q147.998 425.186 150.22 425.742 Q152.443 426.297 154.919 426.297 Q158.924 426.297 161.262 424.191 Q163.6 422.084 163.6 418.473 Q163.6 414.862 161.262 412.756 Q158.924 410.649 154.919 410.649 Q153.044 410.649 151.169 411.066 Q149.318 411.483 147.373 412.362 L147.373 395.001 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M66.5634 171.952 Q62.9523 171.952 61.1236 175.516 Q59.318 179.058 59.318 186.188 Q59.318 193.294 61.1236 196.859 Q62.9523 200.401 66.5634 200.401 Q70.1976 200.401 72.0031 196.859 Q73.8318 193.294 73.8318 186.188 Q73.8318 179.058 72.0031 175.516 Q70.1976 171.952 66.5634 171.952 M66.5634 168.248 Q72.3735 168.248 75.429 172.854 Q78.5077 177.438 78.5077 186.188 Q78.5077 194.914 75.429 199.521 Q72.3735 204.104 66.5634 204.104 Q60.7532 204.104 57.6745 199.521 Q54.619 194.914 54.619 186.188 Q54.619 177.438 57.6745 172.854 Q60.7532 168.248 66.5634 168.248 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M83.5771 197.553 L88.4614 197.553 L88.4614 203.433 L83.5771 203.433 L83.5771 197.553 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M94.341 199.498 L101.98 199.498 L101.98 173.132 L93.6697 174.799 L93.6697 170.54 L101.934 168.873 L106.609 168.873 L106.609 199.498 L114.248 199.498 L114.248 203.433 L94.341 203.433 L94.341 199.498 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M129.318 171.952 Q125.707 171.952 123.878 175.516 Q122.072 179.058 122.072 186.188 Q122.072 193.294 123.878 196.859 Q125.707 200.401 129.318 200.401 Q132.952 200.401 134.757 196.859 Q136.586 193.294 136.586 186.188 Q136.586 179.058 134.757 175.516 Q132.952 171.952 129.318 171.952 M129.318 168.248 Q135.128 168.248 138.183 172.854 Q141.262 177.438 141.262 186.188 Q141.262 194.914 138.183 199.521 Q135.128 204.104 129.318 204.104 Q123.507 204.104 120.429 199.521 Q117.373 194.914 117.373 186.188 Q117.373 177.438 120.429 172.854 Q123.507 168.248 129.318 168.248 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M156.331 171.952 Q152.72 171.952 150.892 175.516 Q149.086 179.058 149.086 186.188 Q149.086 193.294 150.892 196.859 Q152.72 200.401 156.331 200.401 Q159.966 200.401 161.771 196.859 Q163.6 193.294 163.6 186.188 Q163.6 179.058 161.771 175.516 Q159.966 171.952 156.331 171.952 M156.331 168.248 Q162.142 168.248 165.197 172.854 Q168.276 177.438 168.276 186.188 Q168.276 194.914 165.197 199.521 Q162.142 204.104 156.331 204.104 Q150.521 204.104 147.443 199.521 Q144.387 194.914 144.387 186.188 Q144.387 177.438 147.443 172.854 Q150.521 168.248 156.331 168.248 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M339.983 8.64 L345.828 8.64 L345.828 26.3482 L367.066 26.3482 L367.066 8.64 L372.911 8.64 L372.911 51.84 L367.066 51.84 L367.066 31.2672 L345.828 31.2672 L345.828 51.84 L339.983 51.84 L339.983 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M378.496 19.4328 L383.82 19.4328 L383.82 51.84 L378.496 51.84 L378.496 19.4328 M378.496 6.81709 L383.82 6.81709 L383.82 13.559 L378.496 13.559 L378.496 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M410.064 20.3876 L410.064 25.4223 Q407.807 24.2649 405.376 23.6862 Q402.946 23.1075 400.342 23.1075 Q396.378 23.1075 394.381 24.3228 Q392.413 25.5381 392.413 27.9686 Q392.413 29.8204 393.831 30.891 Q395.249 31.9327 399.532 32.8876 L401.354 33.2926 Q407.026 34.5079 409.398 36.7359 Q411.8 38.935 411.8 42.8991 Q411.8 47.4129 408.212 50.046 Q404.653 52.6791 398.403 52.6791 Q395.799 52.6791 392.963 52.1583 Q390.157 51.6664 387.032 50.6537 L387.032 45.156 Q389.983 46.6896 392.848 47.4708 Q395.712 48.2231 398.519 48.2231 Q402.28 48.2231 404.306 46.95 Q406.331 45.6479 406.331 43.3042 Q406.331 41.134 404.856 39.9766 Q403.409 38.8192 398.461 37.7486 L396.609 37.3146 Q391.661 36.273 389.462 34.1318 Q387.263 31.9616 387.263 28.2001 Q387.263 23.6283 390.504 21.1399 Q393.745 18.6515 399.705 18.6515 Q402.656 18.6515 405.261 19.0855 Q407.865 19.5196 410.064 20.3876 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M422.651 10.2314 L422.651 19.4328 L433.617 19.4328 L433.617 23.5705 L422.651 23.5705 L422.651 41.163 Q422.651 45.1271 423.721 46.2555 Q424.821 47.384 428.148 47.384 L433.617 47.384 L433.617 51.84 L428.148 51.84 Q421.985 51.84 419.641 49.5541 Q417.298 47.2393 417.298 41.163 L417.298 23.5705 L413.391 23.5705 L413.391 19.4328 L417.298 19.4328 L417.298 10.2314 L422.651 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M451.759 23.1654 Q447.477 23.1654 444.988 26.5218 Q442.5 29.8494 442.5 35.6653 Q442.5 41.4813 444.96 44.8377 Q447.448 48.1653 451.759 48.1653 Q456.013 48.1653 458.501 44.8088 Q460.99 41.4523 460.99 35.6653 Q460.99 29.9072 458.501 26.5508 Q456.013 23.1654 451.759 23.1654 M451.759 18.6515 Q458.704 18.6515 462.668 23.1654 Q466.632 27.6792 466.632 35.6653 Q466.632 43.6225 462.668 48.1653 Q458.704 52.6791 451.759 52.6791 Q444.786 52.6791 440.822 48.1653 Q436.887 43.6225 436.887 35.6653 Q436.887 27.6792 440.822 23.1654 Q444.786 18.6515 451.759 18.6515 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M493.541 35.2602 Q493.541 29.4732 491.14 26.2904 Q488.767 23.1075 484.456 23.1075 Q480.173 23.1075 477.772 26.2904 Q475.399 29.4732 475.399 35.2602 Q475.399 41.0183 477.772 44.2012 Q480.173 47.384 484.456 47.384 Q488.767 47.384 491.14 44.2012 Q493.541 41.0183 493.541 35.2602 M498.865 47.818 Q498.865 56.0934 495.191 60.1154 Q491.516 64.1663 483.935 64.1663 Q481.128 64.1663 478.64 63.7323 Q476.151 63.3272 473.808 62.4592 L473.808 57.2798 Q476.151 58.5529 478.437 59.1606 Q480.723 59.7682 483.096 59.7682 Q488.333 59.7682 490.937 57.0194 Q493.541 54.2995 493.541 48.7729 L493.541 46.1398 Q491.892 49.0044 489.317 50.4222 Q486.742 51.84 483.154 51.84 Q477.193 51.84 473.547 47.2972 Q469.902 42.7544 469.902 35.2602 Q469.902 27.7371 473.547 23.1943 Q477.193 18.6515 483.154 18.6515 Q486.742 18.6515 489.317 20.0693 Q491.892 21.4872 493.541 24.3517 L493.541 19.4328 L498.865 19.4328 L498.865 47.818 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M523.229 24.4096 Q522.332 23.8888 521.261 23.6573 Q520.22 23.3969 518.946 23.3969 Q514.433 23.3969 512.002 26.3482 Q509.6 29.2707 509.6 34.7683 L509.6 51.84 L504.247 51.84 L504.247 19.4328 L509.6 19.4328 L509.6 24.4675 Q511.279 21.5161 513.97 20.0983 Q516.661 18.6515 520.509 18.6515 Q521.059 18.6515 521.724 18.7383 Q522.39 18.7962 523.2 18.9409 L523.229 24.4096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M543.541 35.5496 Q537.089 35.5496 534.6 37.0253 Q532.112 38.501 532.112 42.06 Q532.112 44.8956 533.964 46.5738 Q535.844 48.2231 539.056 48.2231 Q543.483 48.2231 546.145 45.0981 Q548.836 41.9442 548.836 36.7359 L548.836 35.5496 L543.541 35.5496 M554.16 33.3505 L554.16 51.84 L548.836 51.84 L548.836 46.921 Q547.013 49.8724 544.293 51.2902 Q541.574 52.6791 537.638 52.6791 Q532.662 52.6791 529.71 49.9014 Q526.788 47.0947 526.788 42.4072 Q526.788 36.9385 530.434 34.1607 Q534.108 31.3829 541.371 31.3829 L548.836 31.3829 L548.836 30.8621 Q548.836 27.1874 546.406 25.1908 Q544.004 23.1654 539.635 23.1654 Q536.857 23.1654 534.224 23.8309 Q531.591 24.4964 529.16 25.8274 L529.16 20.9085 Q532.083 19.78 534.832 19.2302 Q537.581 18.6515 540.185 18.6515 Q547.216 18.6515 550.688 22.2973 Q554.16 25.9431 554.16 33.3505 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M584.976 25.6538 Q586.973 22.0659 589.75 20.3587 Q592.528 18.6515 596.29 18.6515 Q601.353 18.6515 604.102 22.2105 Q606.851 25.7406 606.851 32.2799 L606.851 51.84 L601.498 51.84 L601.498 32.4535 Q601.498 27.795 599.849 25.5381 Q598.199 23.2811 594.814 23.2811 Q590.676 23.2811 588.275 26.03 Q585.873 28.7788 585.873 33.5241 L585.873 51.84 L580.52 51.84 L580.52 32.4535 Q580.52 27.7661 578.871 25.5381 Q577.222 23.2811 573.778 23.2811 Q569.698 23.2811 567.297 26.0589 Q564.895 28.8077 564.895 33.5241 L564.895 51.84 L559.542 51.84 L559.542 19.4328 L564.895 19.4328 L564.895 24.4675 Q566.718 21.4872 569.264 20.0693 Q571.811 18.6515 575.312 18.6515 Q578.842 18.6515 581.301 20.4455 Q583.79 22.2395 584.976 25.6538 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M613.795 44.4905 L619.901 44.4905 L619.901 51.84 L613.795 51.84 L613.795 44.4905 M613.795 21.1978 L619.901 21.1978 L619.901 28.5473 L613.795 28.5473 L613.795 21.1978 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M669.553 25.6538 Q671.55 22.0659 674.327 20.3587 Q677.105 18.6515 680.867 18.6515 Q685.93 18.6515 688.679 22.2105 Q691.428 25.7406 691.428 32.2799 L691.428 51.84 L686.075 51.84 L686.075 32.4535 Q686.075 27.795 684.426 25.5381 Q682.777 23.2811 679.391 23.2811 Q675.253 23.2811 672.852 26.03 Q670.45 28.7788 670.45 33.5241 L670.45 51.84 L665.097 51.84 L665.097 32.4535 Q665.097 27.7661 663.448 25.5381 Q661.799 23.2811 658.355 23.2811 Q654.276 23.2811 651.874 26.0589 Q649.472 28.8077 649.472 33.5241 L649.472 51.84 L644.119 51.84 L644.119 19.4328 L649.472 19.4328 L649.472 24.4675 Q651.295 21.4872 653.841 20.0693 Q656.388 18.6515 659.889 18.6515 Q663.419 18.6515 665.878 20.4455 Q668.367 22.2395 669.553 25.6538 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M709.57 23.1654 Q705.288 23.1654 702.8 26.5218 Q700.311 29.8494 700.311 35.6653 Q700.311 41.4813 702.771 44.8377 Q705.259 48.1653 709.57 48.1653 Q713.824 48.1653 716.312 44.8088 Q718.801 41.4523 718.801 35.6653 Q718.801 29.9072 716.312 26.5508 Q713.824 23.1654 709.57 23.1654 M709.57 18.6515 Q716.515 18.6515 720.479 23.1654 Q724.443 27.6792 724.443 35.6653 Q724.443 43.6225 720.479 48.1653 Q716.515 52.6791 709.57 52.6791 Q702.597 52.6791 698.633 48.1653 Q694.698 43.6225 694.698 35.6653 Q694.698 27.6792 698.633 23.1654 Q702.597 18.6515 709.57 18.6515 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M756.966 32.2799 L756.966 51.84 L751.642 51.84 L751.642 32.4535 Q751.642 27.8529 749.848 25.567 Q748.054 23.2811 744.466 23.2811 Q740.155 23.2811 737.666 26.03 Q735.178 28.7788 735.178 33.5241 L735.178 51.84 L729.825 51.84 L729.825 19.4328 L735.178 19.4328 L735.178 24.4675 Q737.088 21.545 739.663 20.0983 Q742.267 18.6515 745.652 18.6515 Q751.237 18.6515 754.101 22.1237 Q756.966 25.567 756.966 32.2799 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M767.817 10.2314 L767.817 19.4328 L778.783 19.4328 L778.783 23.5705 L767.817 23.5705 L767.817 41.163 Q767.817 45.1271 768.887 46.2555 Q769.987 47.384 773.314 47.384 L778.783 47.384 L778.783 51.84 L773.314 51.84 Q767.151 51.84 764.807 49.5541 Q762.464 47.2393 762.464 41.163 L762.464 23.5705 L758.557 23.5705 L758.557 19.4328 L762.464 19.4328 L762.464 10.2314 L767.817 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M811.306 32.2799 L811.306 51.84 L805.982 51.84 L805.982 32.4535 Q805.982 27.8529 804.188 25.567 Q802.394 23.2811 798.806 23.2811 Q794.495 23.2811 792.006 26.03 Q789.518 28.7788 789.518 33.5241 L789.518 51.84 L784.165 51.84 L784.165 6.81709 L789.518 6.81709 L789.518 24.4675 Q791.428 21.545 794.003 20.0983 Q796.607 18.6515 799.992 18.6515 Q805.577 18.6515 808.441 22.1237 Q811.306 25.567 811.306 32.2799 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M816.89 6.81709 L822.214 6.81709 L822.214 51.84 L816.89 51.84 L816.89 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M841.283 54.8492 Q839.026 60.6362 836.884 62.4013 Q834.743 64.1663 831.155 64.1663 L826.902 64.1663 L826.902 59.7103 L830.027 59.7103 Q832.226 59.7103 833.441 58.6687 Q834.656 57.627 836.132 53.7497 L837.087 51.3192 L823.979 19.4328 L829.622 19.4328 L839.749 44.7799 L849.876 19.4328 L855.519 19.4328 L841.283 54.8492 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M879.506 8.64 L885.38 8.64 L885.38 34.8841 Q885.38 41.8285 887.897 44.8956 Q890.414 47.9338 896.057 47.9338 Q901.67 47.9338 904.187 44.8956 Q906.705 41.8285 906.705 34.8841 L906.705 8.64 L912.579 8.64 L912.579 35.6074 Q912.579 44.0565 908.383 48.3678 Q904.216 52.6791 896.057 52.6791 Q887.868 52.6791 883.672 48.3678 Q879.506 44.0565 879.506 35.6074 L879.506 8.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M944.291 10.0578 L944.291 15.758 Q940.964 14.1666 938.012 13.3853 Q935.061 12.6041 932.312 12.6041 Q927.538 12.6041 924.934 14.4559 Q922.359 16.3078 922.359 19.7221 Q922.359 22.5867 924.066 24.0624 Q925.802 25.5091 930.605 26.4061 L934.135 27.1295 Q940.674 28.3737 943.77 31.5276 Q946.895 34.6526 946.895 39.9188 Q946.895 46.1977 942.671 49.4384 Q938.475 52.6791 930.345 52.6791 Q927.278 52.6791 923.805 51.9847 Q920.362 51.2902 916.658 49.9303 L916.658 43.9118 Q920.217 45.9083 923.632 46.921 Q927.046 47.9338 930.345 47.9338 Q935.35 47.9338 938.07 45.9662 Q940.79 43.9986 940.79 40.3528 Q940.79 37.1699 938.823 35.376 Q936.884 33.582 932.428 32.685 L928.869 31.9906 Q922.33 30.6885 919.407 27.9107 Q916.485 25.133 916.485 20.1851 Q916.485 14.4559 920.507 11.1573 Q924.558 7.85875 931.647 7.85875 Q934.685 7.85875 937.839 8.40852 Q940.993 8.95829 944.291 10.0578 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M999.036 34.3054 L999.036 36.9095 L974.557 36.9095 Q974.905 42.4072 977.856 45.3007 Q980.836 48.1653 986.131 48.1653 Q989.198 48.1653 992.063 47.4129 Q994.957 46.6606 997.792 45.156 L997.792 50.1907 Q994.928 51.406 991.918 52.0425 Q988.909 52.6791 985.813 52.6791 Q978.059 52.6791 973.516 48.1653 Q969.002 43.6514 969.002 35.9547 Q969.002 27.9975 973.284 23.339 Q977.596 18.6515 984.887 18.6515 Q991.426 18.6515 995.217 22.876 Q999.036 27.0716 999.036 34.3054 M993.712 32.7429 Q993.654 28.3737 991.253 25.7695 Q988.88 23.1654 984.945 23.1654 Q980.489 23.1654 977.798 25.6827 Q975.136 28.2001 974.731 32.7718 L993.712 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1007.8 35.6653 Q1007.8 41.5391 1010.21 44.8956 Q1012.64 48.2231 1016.86 48.2231 Q1021.08 48.2231 1023.52 44.8956 Q1025.95 41.5391 1025.95 35.6653 Q1025.95 29.7915 1023.52 26.464 Q1021.08 23.1075 1016.86 23.1075 Q1012.64 23.1075 1010.21 26.464 Q1007.8 29.7915 1007.8 35.6653 M1025.95 46.9789 Q1024.27 49.8724 1021.69 51.2902 Q1019.15 52.6791 1015.56 52.6791 Q1009.68 52.6791 1005.98 47.9916 Q1002.31 43.3042 1002.31 35.6653 Q1002.31 28.0265 1005.98 23.339 Q1009.68 18.6515 1015.56 18.6515 Q1019.15 18.6515 1021.69 20.0693 Q1024.27 21.4582 1025.95 24.3517 L1025.95 19.4328 L1031.27 19.4328 L1031.27 64.1663 L1025.95 64.1663 L1025.95 46.9789 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1036.3 39.0507 L1036.3 19.4328 L1041.63 19.4328 L1041.63 38.8482 Q1041.63 43.4488 1043.42 45.7636 Q1045.22 48.0495 1048.8 48.0495 Q1053.12 48.0495 1055.6 45.3007 Q1058.12 42.5519 1058.12 37.8065 L1058.12 19.4328 L1063.45 19.4328 L1063.45 51.84 L1058.12 51.84 L1058.12 46.8632 Q1056.18 49.8145 1053.61 51.2613 Q1051.06 52.6791 1047.68 52.6791 Q1042.09 52.6791 1039.2 49.2069 Q1036.3 45.7347 1036.3 39.0507 M1049.7 18.6515 L1049.7 18.6515 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1069.03 19.4328 L1074.35 19.4328 L1074.35 51.84 L1069.03 51.84 L1069.03 19.4328 M1069.03 6.81709 L1074.35 6.81709 L1074.35 13.559 L1069.03 13.559 L1069.03 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1085.2 10.2314 L1085.2 19.4328 L1096.17 19.4328 L1096.17 23.5705 L1085.2 23.5705 L1085.2 41.163 Q1085.2 45.1271 1086.28 46.2555 Q1087.38 47.384 1090.7 47.384 L1096.17 47.384 L1096.17 51.84 L1090.7 51.84 Q1084.54 51.84 1082.2 49.5541 Q1079.85 47.2393 1079.85 41.163 L1079.85 23.5705 L1075.95 23.5705 L1075.95 19.4328 L1079.85 19.4328 L1079.85 10.2314 L1085.2 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1115.24 54.8492 Q1112.98 60.6362 1110.84 62.4013 Q1108.7 64.1663 1105.11 64.1663 L1100.86 64.1663 L1100.86 59.7103 L1103.98 59.7103 Q1106.18 59.7103 1107.4 58.6687 Q1108.61 57.627 1110.09 53.7497 L1111.04 51.3192 L1097.94 19.4328 L1103.58 19.4328 L1113.71 44.7799 L1123.83 19.4328 L1129.48 19.4328 L1115.24 54.8492 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1179.13 25.6538 Q1181.12 22.0659 1183.9 20.3587 Q1186.68 18.6515 1190.44 18.6515 Q1195.51 18.6515 1198.25 22.2105 Q1201 25.7406 1201 32.2799 L1201 51.84 L1195.65 51.84 L1195.65 32.4535 Q1195.65 27.795 1194 25.5381 Q1192.35 23.2811 1188.97 23.2811 Q1184.83 23.2811 1182.43 26.03 Q1180.03 28.7788 1180.03 33.5241 L1180.03 51.84 L1174.67 51.84 L1174.67 32.4535 Q1174.67 27.7661 1173.02 25.5381 Q1171.37 23.2811 1167.93 23.2811 Q1163.85 23.2811 1161.45 26.0589 Q1159.05 28.8077 1159.05 33.5241 L1159.05 51.84 L1153.69 51.84 L1153.69 19.4328 L1159.05 19.4328 L1159.05 24.4675 Q1160.87 21.4872 1163.42 20.0693 Q1165.96 18.6515 1169.46 18.6515 Q1172.99 18.6515 1175.45 20.4455 Q1177.94 22.2395 1179.13 25.6538 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1221.32 35.5496 Q1214.86 35.5496 1212.37 37.0253 Q1209.89 38.501 1209.89 42.06 Q1209.89 44.8956 1211.74 46.5738 Q1213.62 48.2231 1216.83 48.2231 Q1221.26 48.2231 1223.92 45.0981 Q1226.61 41.9442 1226.61 36.7359 L1226.61 35.5496 L1221.32 35.5496 M1231.93 33.3505 L1231.93 51.84 L1226.61 51.84 L1226.61 46.921 Q1224.79 49.8724 1222.07 51.2902 Q1219.35 52.6791 1215.41 52.6791 Q1210.44 52.6791 1207.48 49.9014 Q1204.56 47.0947 1204.56 42.4072 Q1204.56 36.9385 1208.21 34.1607 Q1211.88 31.3829 1219.15 31.3829 L1226.61 31.3829 L1226.61 30.8621 Q1226.61 27.1874 1224.18 25.1908 Q1221.78 23.1654 1217.41 23.1654 Q1214.63 23.1654 1212 23.8309 Q1209.37 24.4964 1206.93 25.8274 L1206.93 20.9085 Q1209.86 19.78 1212.61 19.2302 Q1215.35 18.6515 1217.96 18.6515 Q1224.99 18.6515 1228.46 22.2973 Q1231.93 25.9431 1231.93 33.3505 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1256.3 24.4096 Q1255.4 23.8888 1254.33 23.6573 Q1253.29 23.3969 1252.02 23.3969 Q1247.5 23.3969 1245.07 26.3482 Q1242.67 29.2707 1242.67 34.7683 L1242.67 51.84 L1237.32 51.84 L1237.32 19.4328 L1242.67 19.4328 L1242.67 24.4675 Q1244.35 21.5161 1247.04 20.0983 Q1249.73 18.6515 1253.58 18.6515 Q1254.13 18.6515 1254.79 18.7383 Q1255.46 18.7962 1256.27 18.9409 L1256.3 24.4096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1261.68 6.81709 L1267.03 6.81709 L1267.03 33.4084 L1282.92 19.4328 L1289.72 19.4328 L1272.53 34.5947 L1290.44 51.84 L1283.5 51.84 L1267.03 36.0125 L1267.03 51.84 L1261.68 51.84 L1261.68 6.81709 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1321.63 34.3054 L1321.63 36.9095 L1297.15 36.9095 Q1297.5 42.4072 1300.45 45.3007 Q1303.43 48.1653 1308.73 48.1653 Q1311.8 48.1653 1314.66 47.4129 Q1317.55 46.6606 1320.39 45.156 L1320.39 50.1907 Q1317.52 51.406 1314.52 52.0425 Q1311.51 52.6791 1308.41 52.6791 Q1300.66 52.6791 1296.11 48.1653 Q1291.6 43.6514 1291.6 35.9547 Q1291.6 27.9975 1295.88 23.339 Q1300.19 18.6515 1307.48 18.6515 Q1314.02 18.6515 1317.81 22.876 Q1321.63 27.0716 1321.63 34.3054 M1316.31 32.7429 Q1316.25 28.3737 1313.85 25.7695 Q1311.48 23.1654 1307.54 23.1654 Q1303.09 23.1654 1300.39 25.6827 Q1297.73 28.2001 1297.33 32.7718 L1316.31 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1332.48 10.2314 L1332.48 19.4328 L1343.45 19.4328 L1343.45 23.5705 L1332.48 23.5705 L1332.48 41.163 Q1332.48 45.1271 1333.55 46.2555 Q1334.65 47.384 1337.98 47.384 L1343.45 47.384 L1343.45 51.84 L1337.98 51.84 Q1331.82 51.84 1329.47 49.5541 Q1327.13 47.2393 1327.13 41.163 L1327.13 23.5705 L1323.22 23.5705 L1323.22 19.4328 L1327.13 19.4328 L1327.13 10.2314 L1332.48 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1395.59 34.3054 L1395.59 36.9095 L1371.11 36.9095 Q1371.46 42.4072 1374.41 45.3007 Q1377.39 48.1653 1382.69 48.1653 Q1385.75 48.1653 1388.62 47.4129 Q1391.51 46.6606 1394.35 45.156 L1394.35 50.1907 Q1391.48 51.406 1388.47 52.0425 Q1385.46 52.6791 1382.37 52.6791 Q1374.61 52.6791 1370.07 48.1653 Q1365.56 43.6514 1365.56 35.9547 Q1365.56 27.9975 1369.84 23.339 Q1374.15 18.6515 1381.44 18.6515 Q1387.98 18.6515 1391.77 22.876 Q1395.59 27.0716 1395.59 34.3054 M1390.27 32.7429 Q1390.21 28.3737 1387.81 25.7695 Q1385.43 23.1654 1381.5 23.1654 Q1377.04 23.1654 1374.35 25.6827 Q1371.69 28.2001 1371.29 32.7718 L1390.27 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1427.07 19.4328 L1415.35 35.2024 L1427.68 51.84 L1421.4 51.84 L1411.97 39.1086 L1402.54 51.84 L1396.26 51.84 L1408.84 34.8841 L1397.33 19.4328 L1403.61 19.4328 L1412.2 30.9778 L1420.79 19.4328 L1427.07 19.4328 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1455.54 20.677 L1455.54 25.6538 Q1453.29 24.4096 1451 23.802 Q1448.74 23.1654 1446.43 23.1654 Q1441.25 23.1654 1438.39 26.464 Q1435.52 29.7336 1435.52 35.6653 Q1435.52 41.597 1438.39 44.8956 Q1441.25 48.1653 1446.43 48.1653 Q1448.74 48.1653 1451 47.5576 Q1453.29 46.921 1455.54 45.6768 L1455.54 50.5958 Q1453.32 51.6375 1450.91 52.1583 Q1448.54 52.6791 1445.85 52.6791 Q1438.53 52.6791 1434.22 48.0784 Q1429.91 43.4778 1429.91 35.6653 Q1429.91 27.7371 1434.25 23.1943 Q1438.62 18.6515 1446.2 18.6515 Q1448.66 18.6515 1451 19.1724 Q1453.35 19.6642 1455.54 20.677 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1488.85 34.3054 L1488.85 36.9095 L1464.37 36.9095 Q1464.72 42.4072 1467.67 45.3007 Q1470.65 48.1653 1475.94 48.1653 Q1479.01 48.1653 1481.88 47.4129 Q1484.77 46.6606 1487.6 45.156 L1487.6 50.1907 Q1484.74 51.406 1481.73 52.0425 Q1478.72 52.6791 1475.63 52.6791 Q1467.87 52.6791 1463.33 48.1653 Q1458.81 43.6514 1458.81 35.9547 Q1458.81 27.9975 1463.1 23.339 Q1467.41 18.6515 1474.7 18.6515 Q1481.24 18.6515 1485.03 22.876 Q1488.85 27.0716 1488.85 34.3054 M1483.52 32.7429 Q1483.47 28.3737 1481.07 25.7695 Q1478.69 23.1654 1474.76 23.1654 Q1470.3 23.1654 1467.61 25.6827 Q1464.95 28.2001 1464.54 32.7718 L1483.52 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1515.09 20.3876 L1515.09 25.4223 Q1512.84 24.2649 1510.41 23.6862 Q1507.97 23.1075 1505.37 23.1075 Q1501.41 23.1075 1499.41 24.3228 Q1497.44 25.5381 1497.44 27.9686 Q1497.44 29.8204 1498.86 30.891 Q1500.28 31.9327 1504.56 32.8876 L1506.38 33.2926 Q1512.05 34.5079 1514.43 36.7359 Q1516.83 38.935 1516.83 42.8991 Q1516.83 47.4129 1513.24 50.046 Q1509.68 52.6791 1503.43 52.6791 Q1500.83 52.6791 1497.99 52.1583 Q1495.19 51.6664 1492.06 50.6537 L1492.06 45.156 Q1495.01 46.6896 1497.88 47.4708 Q1500.74 48.2231 1503.55 48.2231 Q1507.31 48.2231 1509.33 46.95 Q1511.36 45.6479 1511.36 43.3042 Q1511.36 41.134 1509.88 39.9766 Q1508.44 38.8192 1503.49 37.7486 L1501.64 37.3146 Q1496.69 36.273 1494.49 34.1318 Q1492.29 31.9616 1492.29 28.2001 Q1492.29 23.6283 1495.53 21.1399 Q1498.77 18.6515 1504.73 18.6515 Q1507.69 18.6515 1510.29 19.0855 Q1512.89 19.5196 1515.09 20.3876 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1543.07 20.3876 L1543.07 25.4223 Q1540.82 24.2649 1538.39 23.6862 Q1535.95 23.1075 1533.35 23.1075 Q1529.39 23.1075 1527.39 24.3228 Q1525.42 25.5381 1525.42 27.9686 Q1525.42 29.8204 1526.84 30.891 Q1528.26 31.9327 1532.54 32.8876 L1534.36 33.2926 Q1540.03 34.5079 1542.41 36.7359 Q1544.81 38.935 1544.81 42.8991 Q1544.81 47.4129 1541.22 50.046 Q1537.66 52.6791 1531.41 52.6791 Q1528.81 52.6791 1525.97 52.1583 Q1523.17 51.6664 1520.04 50.6537 L1520.04 45.156 Q1522.99 46.6896 1525.86 47.4708 Q1528.72 48.2231 1531.53 48.2231 Q1535.29 48.2231 1537.31 46.95 Q1539.34 45.6479 1539.34 43.3042 Q1539.34 41.134 1537.86 39.9766 Q1536.42 38.8192 1531.47 37.7486 L1529.62 37.3146 Q1524.67 36.273 1522.47 34.1318 Q1520.27 31.9616 1520.27 28.2001 Q1520.27 23.6283 1523.51 21.1399 Q1526.75 18.6515 1532.71 18.6515 Q1535.67 18.6515 1538.27 19.0855 Q1540.87 19.5196 1543.07 20.3876 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1588.01 24.4096 Q1587.11 23.8888 1586.04 23.6573 Q1585 23.3969 1583.73 23.3969 Q1579.21 23.3969 1576.78 26.3482 Q1574.38 29.2707 1574.38 34.7683 L1574.38 51.84 L1569.03 51.84 L1569.03 19.4328 L1574.38 19.4328 L1574.38 24.4675 Q1576.06 21.5161 1578.75 20.0983 Q1581.44 18.6515 1585.29 18.6515 Q1585.84 18.6515 1586.5 18.7383 Q1587.17 18.7962 1587.98 18.9409 L1588.01 24.4096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1620.01 34.3054 L1620.01 36.9095 L1595.53 36.9095 Q1595.88 42.4072 1598.83 45.3007 Q1601.81 48.1653 1607.11 48.1653 Q1610.17 48.1653 1613.04 47.4129 Q1615.93 46.6606 1618.77 45.156 L1618.77 50.1907 Q1615.9 51.406 1612.89 52.0425 Q1609.88 52.6791 1606.79 52.6791 Q1599.03 52.6791 1594.49 48.1653 Q1589.98 43.6514 1589.98 35.9547 Q1589.98 27.9975 1594.26 23.339 Q1598.57 18.6515 1605.86 18.6515 Q1612.4 18.6515 1616.19 22.876 Q1620.01 27.0716 1620.01 34.3054 M1614.69 32.7429 Q1614.63 28.3737 1612.23 25.7695 Q1609.85 23.1654 1605.92 23.1654 Q1601.46 23.1654 1598.77 25.6827 Q1596.11 28.2001 1595.71 32.7718 L1614.69 32.7429 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1630.86 10.2314 L1630.86 19.4328 L1641.83 19.4328 L1641.83 23.5705 L1630.86 23.5705 L1630.86 41.163 Q1630.86 45.1271 1631.93 46.2555 Q1633.03 47.384 1636.36 47.384 L1641.83 47.384 L1641.83 51.84 L1636.36 51.84 Q1630.2 51.84 1627.85 49.5541 Q1625.51 47.2393 1625.51 41.163 L1625.51 23.5705 L1621.6 23.5705 L1621.6 19.4328 L1625.51 19.4328 L1625.51 10.2314 L1630.86 10.2314 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1646.86 39.0507 L1646.86 19.4328 L1652.19 19.4328 L1652.19 38.8482 Q1652.19 43.4488 1653.98 45.7636 Q1655.77 48.0495 1659.36 48.0495 Q1663.67 48.0495 1666.16 45.3007 Q1668.68 42.5519 1668.68 37.8065 L1668.68 19.4328 L1674 19.4328 L1674 51.84 L1668.68 51.84 L1668.68 46.8632 Q1666.74 49.8145 1664.17 51.2613 Q1661.62 52.6791 1658.23 52.6791 Q1652.65 52.6791 1649.76 49.2069 Q1646.86 45.7347 1646.86 39.0507 M1660.26 18.6515 L1660.26 18.6515 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1698.37 24.4096 Q1697.47 23.8888 1696.4 23.6573 Q1695.36 23.3969 1694.08 23.3969 Q1689.57 23.3969 1687.14 26.3482 Q1684.74 29.2707 1684.74 34.7683 L1684.74 51.84 L1679.39 51.84 L1679.39 19.4328 L1684.74 19.4328 L1684.74 24.4675 Q1686.42 21.5161 1689.11 20.0983 Q1691.8 18.6515 1695.65 18.6515 Q1696.2 18.6515 1696.86 18.7383 Q1697.53 18.7962 1698.34 18.9409 L1698.37 24.4096 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M1729.85 32.2799 L1729.85 51.84 L1724.52 51.84 L1724.52 32.4535 Q1724.52 27.8529 1722.73 25.567 Q1720.94 23.2811 1717.35 23.2811 Q1713.04 23.2811 1710.55 26.03 Q1708.06 28.7788 1708.06 33.5241 L1708.06 51.84 L1702.71 51.84 L1702.71 19.4328 L1708.06 19.4328 L1708.06 24.4675 Q1709.97 21.545 1712.55 20.0983 Q1715.15 18.6515 1718.53 18.6515 Q1724.12 18.6515 1726.98 22.1237 Q1729.85 25.567 1729.85 32.2799 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip732)\" d=\"\nM289.241 1090.67 L289.241 1090.67 L326.525 1090.67 L326.525 1090.67 L289.241 1090.67 L289.241 1090.67 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 289.241,1090.67 289.241,1090.67 326.525,1090.67 289.241,1090.67 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM326.525 1067.35 L326.525 1090.67 L363.809 1090.67 L363.809 1067.35 L326.525 1067.35 L326.525 1067.35 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 326.525,1067.35 326.525,1090.67 363.809,1090.67 363.809,1067.35 326.525,1067.35 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM363.809 1090.67 L363.809 1090.67 L401.092 1090.67 L401.092 1090.67 L363.809 1090.67 L363.809 1090.67 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 363.809,1090.67 363.809,1090.67 401.092,1090.67 363.809,1090.67 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM401.092 1090.67 L401.092 1090.67 L438.376 1090.67 L438.376 1090.67 L401.092 1090.67 L401.092 1090.67 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 401.092,1090.67 401.092,1090.67 438.376,1090.67 401.092,1090.67 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM438.376 1090.67 L438.376 1090.67 L475.66 1090.67 L475.66 1090.67 L438.376 1090.67 L438.376 1090.67 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 438.376,1090.67 438.376,1090.67 475.66,1090.67 438.376,1090.67 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM475.66 1090.67 L475.66 1090.67 L512.944 1090.67 L512.944 1090.67 L475.66 1090.67 L475.66 1090.67 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 475.66,1090.67 475.66,1090.67 512.944,1090.67 475.66,1090.67 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM512.944 1067.35 L512.944 1090.67 L550.227 1090.67 L550.227 1067.35 L512.944 1067.35 L512.944 1067.35 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 512.944,1067.35 512.944,1090.67 550.227,1090.67 550.227,1067.35 512.944,1067.35 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM550.227 1090.67 L550.227 1090.67 L587.511 1090.67 L587.511 1090.67 L550.227 1090.67 L550.227 1090.67 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 550.227,1090.67 550.227,1090.67 587.511,1090.67 550.227,1090.67 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM587.511 1067.35 L587.511 1090.67 L624.795 1090.67 L624.795 1067.35 L587.511 1067.35 L587.511 1067.35 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 587.511,1067.35 587.511,1090.67 624.795,1090.67 624.795,1067.35 587.511,1067.35 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM624.795 1090.67 L624.795 1090.67 L662.078 1090.67 L662.078 1090.67 L624.795 1090.67 L624.795 1090.67 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 624.795,1090.67 624.795,1090.67 662.078,1090.67 624.795,1090.67 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM662.078 1090.67 L662.078 1090.67 L699.362 1090.67 L699.362 1090.67 L662.078 1090.67 L662.078 1090.67 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 662.078,1090.67 662.078,1090.67 699.362,1090.67 662.078,1090.67 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM699.362 1067.35 L699.362 1090.67 L736.646 1090.67 L736.646 1067.35 L699.362 1067.35 L699.362 1067.35 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 699.362,1067.35 699.362,1090.67 736.646,1090.67 736.646,1067.35 699.362,1067.35 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM736.646 1090.67 L736.646 1090.67 L773.93 1090.67 L773.93 1090.67 L736.646 1090.67 L736.646 1090.67 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 736.646,1090.67 736.646,1090.67 773.93,1090.67 736.646,1090.67 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM773.93 1090.67 L773.93 1090.67 L811.213 1090.67 L811.213 1090.67 L773.93 1090.67 L773.93 1090.67 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 773.93,1090.67 773.93,1090.67 811.213,1090.67 773.93,1090.67 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM811.213 997.417 L811.213 1090.67 L848.497 1090.67 L848.497 997.417 L811.213 997.417 L811.213 997.417 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 811.213,997.417 811.213,1090.67 848.497,1090.67 848.497,997.417 811.213,997.417 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM848.497 1020.73 L848.497 1090.67 L885.781 1090.67 L885.781 1020.73 L848.497 1020.73 L848.497 1020.73 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 848.497,1020.73 848.497,1090.67 885.781,1090.67 885.781,1020.73 848.497,1020.73 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM885.781 974.105 L885.781 1090.67 L923.065 1090.67 L923.065 974.105 L885.781 974.105 L885.781 974.105 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 885.781,974.105 885.781,1090.67 923.065,1090.67 923.065,974.105 885.781,974.105 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM923.065 927.481 L923.065 1090.67 L960.348 1090.67 L960.348 927.481 L923.065 927.481 L923.065 927.481 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 923.065,927.481 923.065,1090.67 960.348,1090.67 960.348,927.481 923.065,927.481 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM960.348 927.481 L960.348 1090.67 L997.632 1090.67 L997.632 927.481 L960.348 927.481 L960.348 927.481 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 960.348,927.481 960.348,1090.67 997.632,1090.67 997.632,927.481 960.348,927.481 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM997.632 904.168 L997.632 1090.67 L1034.92 1090.67 L1034.92 904.168 L997.632 904.168 L997.632 904.168 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 997.632,904.168 997.632,1090.67 1034.92,1090.67 1034.92,904.168 997.632,904.168 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM1034.92 787.607 L1034.92 1090.67 L1072.2 1090.67 L1072.2 787.607 L1034.92 787.607 L1034.92 787.607 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1034.92,787.607 1034.92,1090.67 1072.2,1090.67 1072.2,787.607 1034.92,787.607 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM1072.2 624.422 L1072.2 1090.67 L1109.48 1090.67 L1109.48 624.422 L1072.2 624.422 L1072.2 624.422 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1072.2,624.422 1072.2,1090.67 1109.48,1090.67 1109.48,624.422 1072.2,624.422 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM1109.48 344.676 L1109.48 1090.67 L1146.77 1090.67 L1146.77 344.676 L1109.48 344.676 L1109.48 344.676 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1109.48,344.676 1109.48,1090.67 1146.77,1090.67 1146.77,344.676 1109.48,344.676 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM1146.77 484.549 L1146.77 1090.67 L1184.05 1090.67 L1184.05 484.549 L1146.77 484.549 L1146.77 484.549 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1146.77,484.549 1146.77,1090.67 1184.05,1090.67 1184.05,484.549 1146.77,484.549 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM1184.05 577.798 L1184.05 1090.67 L1221.33 1090.67 L1221.33 577.798 L1184.05 577.798 L1184.05 577.798 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1184.05,577.798 1184.05,1090.67 1221.33,1090.67 1221.33,577.798 1184.05,577.798 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM1221.33 158.178 L1221.33 1090.67 L1258.62 1090.67 L1258.62 158.178 L1221.33 158.178 L1221.33 158.178 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1221.33,158.178 1221.33,1090.67 1258.62,1090.67 1258.62,158.178 1221.33,158.178 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM1258.62 134.866 L1258.62 1090.67 L1295.9 1090.67 L1295.9 134.866 L1258.62 134.866 L1258.62 134.866 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1258.62,134.866 1258.62,1090.67 1295.9,1090.67 1295.9,134.866 1258.62,134.866 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM1295.9 251.427 L1295.9 1090.67 L1333.19 1090.67 L1333.19 251.427 L1295.9 251.427 L1295.9 251.427 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1295.9,251.427 1295.9,1090.67 1333.19,1090.67 1333.19,251.427 1295.9,251.427 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM1333.19 134.866 L1333.19 1090.67 L1370.47 1090.67 L1370.47 134.866 L1333.19 134.866 L1333.19 134.866 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1333.19,134.866 1333.19,1090.67 1370.47,1090.67 1370.47,134.866 1333.19,134.866 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM1370.47 437.925 L1370.47 1090.67 L1407.75 1090.67 L1407.75 437.925 L1370.47 437.925 L1370.47 437.925 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1370.47,437.925 1370.47,1090.67 1407.75,1090.67 1407.75,437.925 1370.47,437.925 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM1407.75 810.92 L1407.75 1090.67 L1445.04 1090.67 L1445.04 810.92 L1407.75 810.92 L1407.75 810.92 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1407.75,810.92 1407.75,1090.67 1445.04,1090.67 1445.04,810.92 1407.75,810.92 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM1445.04 717.671 L1445.04 1090.67 L1482.32 1090.67 L1482.32 717.671 L1445.04 717.671 L1445.04 717.671 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1445.04,717.671 1445.04,1090.67 1482.32,1090.67 1482.32,717.671 1445.04,717.671 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM1482.32 834.232 L1482.32 1090.67 L1519.6 1090.67 L1519.6 834.232 L1482.32 834.232 L1482.32 834.232 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1482.32,834.232 1482.32,1090.67 1519.6,1090.67 1519.6,834.232 1482.32,834.232 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM1519.6 997.417 L1519.6 1090.67 L1556.89 1090.67 L1556.89 997.417 L1519.6 997.417 L1519.6 997.417 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1519.6,997.417 1519.6,1090.67 1556.89,1090.67 1556.89,997.417 1519.6,997.417 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM1556.89 1044.04 L1556.89 1090.67 L1594.17 1090.67 L1594.17 1044.04 L1556.89 1044.04 L1556.89 1044.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1556.89,1044.04 1556.89,1090.67 1594.17,1090.67 1594.17,1044.04 1556.89,1044.04 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM1594.17 1044.04 L1594.17 1090.67 L1631.46 1090.67 L1631.46 1044.04 L1594.17 1044.04 L1594.17 1044.04 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1594.17,1044.04 1594.17,1090.67 1631.46,1090.67 1631.46,1044.04 1594.17,1044.04 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM1631.46 1020.73 L1631.46 1090.67 L1668.74 1090.67 L1668.74 1020.73 L1631.46 1020.73 L1631.46 1020.73 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1631.46,1020.73 1631.46,1090.67 1668.74,1090.67 1668.74,1020.73 1631.46,1020.73 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM1668.74 1067.35 L1668.74 1090.67 L1706.02 1090.67 L1706.02 1067.35 L1668.74 1067.35 L1668.74 1067.35 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1668.74,1067.35 1668.74,1090.67 1706.02,1090.67 1706.02,1067.35 1668.74,1067.35 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM1706.02 1090.67 L1706.02 1090.67 L1743.31 1090.67 L1743.31 1090.67 L1706.02 1090.67 L1706.02 1090.67 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1706.02,1090.67 1706.02,1090.67 1743.31,1090.67 1706.02,1090.67 \n \"/>\n<path clip-path=\"url(#clip732)\" d=\"\nM1743.31 1090.67 L1743.31 1090.67 L1780.59 1090.67 L1780.59 1090.67 L1743.31 1090.67 L1743.31 1090.67 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 1743.31,1090.67 1743.31,1090.67 1780.59,1090.67 1743.31,1090.67 \n \"/>\n<polyline clip-path=\"url(#clip732)\" style=\"stroke:#e26f46; stroke-width:12; stroke-opacity:1; fill:none\" points=\"\n 289.241,1090.67 292.97,1090.67 296.698,1090.67 300.426,1090.67 304.155,1090.67 307.883,1090.67 311.611,1090.67 315.34,1090.67 319.068,1090.67 322.797,1090.67 \n 326.525,1090.67 330.253,1090.67 333.982,1090.67 337.71,1090.67 341.438,1090.67 345.167,1090.66 348.895,1090.66 352.624,1090.66 356.352,1090.66 360.08,1090.66 \n 363.809,1090.66 367.537,1090.66 371.265,1090.66 374.994,1090.66 378.722,1090.66 382.45,1090.66 386.179,1090.66 389.907,1090.66 393.636,1090.66 397.364,1090.66 \n 401.092,1090.66 404.821,1090.66 408.549,1090.66 412.277,1090.66 416.006,1090.66 419.734,1090.66 423.463,1090.66 427.191,1090.66 430.919,1090.66 434.648,1090.65 \n 438.376,1090.65 442.104,1090.65 445.833,1090.65 449.561,1090.65 453.29,1090.65 457.018,1090.64 460.746,1090.64 464.475,1090.64 468.203,1090.64 471.931,1090.63 \n 475.66,1090.63 479.388,1090.63 483.117,1090.62 486.845,1090.62 490.573,1090.61 494.302,1090.61 498.03,1090.6 501.758,1090.6 505.487,1090.59 509.215,1090.58 \n 512.944,1090.58 516.672,1090.57 520.4,1090.56 524.129,1090.55 527.857,1090.53 531.585,1090.52 535.314,1090.51 539.042,1090.49 542.771,1090.48 546.499,1090.46 \n 550.227,1090.44 553.956,1090.42 557.684,1090.4 561.412,1090.38 565.141,1090.35 568.869,1090.32 572.598,1090.29 576.326,1090.26 580.054,1090.22 583.783,1090.18 \n 587.511,1090.14 591.239,1090.1 594.968,1090.05 598.696,1089.99 602.425,1089.94 606.153,1089.88 609.881,1089.81 613.61,1089.74 617.338,1089.66 621.066,1089.58 \n 624.795,1089.49 628.523,1089.39 632.252,1089.29 635.98,1089.18 639.708,1089.06 643.437,1088.94 647.165,1088.8 650.893,1088.65 654.622,1088.5 658.35,1088.33 \n 662.078,1088.15 665.807,1087.96 669.535,1087.75 673.264,1087.54 676.992,1087.3 680.72,1087.05 684.449,1086.79 688.177,1086.5 691.905,1086.2 695.634,1085.88 \n 699.362,1085.54 703.091,1085.17 706.819,1084.79 710.547,1084.37 714.276,1083.94 718.004,1083.47 721.732,1082.98 725.461,1082.46 729.189,1081.9 732.918,1081.31 \n 736.646,1080.69 740.374,1080.03 744.103,1079.34 747.831,1078.6 751.559,1077.82 755.288,1077 759.016,1076.13 762.745,1075.22 766.473,1074.25 770.201,1073.23 \n 773.93,1072.16 777.658,1071.03 781.386,1069.84 785.115,1068.59 788.843,1067.28 792.572,1065.9 796.3,1064.45 800.028,1062.93 803.757,1061.34 807.485,1059.66 \n 811.213,1057.91 814.942,1056.08 818.67,1054.16 822.399,1052.15 826.127,1050.05 829.855,1047.85 833.584,1045.56 837.312,1043.17 841.04,1040.68 844.769,1038.08 \n 848.497,1035.37 852.226,1032.54 855.954,1029.6 859.682,1026.55 863.411,1023.37 867.139,1020.07 870.867,1016.64 874.596,1013.08 878.324,1009.39 882.053,1005.57 \n 885.781,1001.6 889.509,997.496 893.238,993.248 896.966,988.853 900.694,984.311 904.423,979.619 908.151,974.774 911.88,969.775 915.608,964.619 919.336,959.306 \n 923.065,953.833 926.793,948.2 930.521,942.405 934.25,936.446 937.978,930.324 941.707,924.038 945.435,917.586 949.163,910.97 952.892,904.189 956.62,897.243 \n 960.348,890.133 964.077,882.86 967.805,875.424 971.533,867.828 975.262,860.072 978.99,852.159 982.719,844.091 986.447,835.87 990.175,827.499 993.904,818.982 \n 997.632,810.321 1001.36,801.52 1005.09,792.584 1008.82,783.516 1012.55,774.322 1016.27,765.007 1020,755.575 1023.73,746.032 1027.46,736.386 1031.19,726.64 \n 1034.92,716.803 1038.64,706.882 1042.37,696.883 1046.1,686.814 1049.83,676.683 1053.56,666.498 1057.29,656.267 1061.01,645.999 1064.74,635.704 1068.47,625.389 \n 1072.2,615.066 1075.93,604.742 1079.66,594.428 1083.38,584.135 1087.11,573.872 1090.84,563.65 1094.57,553.479 1098.3,543.369 1102.03,533.333 1105.75,523.38 \n 1109.48,513.522 1113.21,503.77 1116.94,494.134 1120.67,484.626 1124.4,475.257 1128.13,466.038 1131.85,456.979 1135.58,448.093 1139.31,439.389 1143.04,430.879 \n 1146.77,422.573 1150.5,414.481 1154.22,406.614 1157.95,398.982 1161.68,391.595 1165.41,384.462 1169.14,377.592 1172.87,370.996 1176.59,364.681 1180.32,358.656 \n 1184.05,352.929 1187.78,347.508 1191.51,342.4 1195.24,337.613 1198.96,333.152 1202.69,329.024 1206.42,325.235 1210.15,321.79 1213.88,318.694 1217.61,315.951 \n 1221.33,313.565 1225.06,311.539 1228.79,309.876 1232.52,308.579 1236.25,307.649 1239.98,307.088 1243.7,306.896 1247.43,307.074 1251.16,307.621 1254.89,308.537 \n 1258.62,309.821 1262.35,311.47 1266.07,313.482 1269.8,315.855 1273.53,318.584 1277.26,321.667 1280.99,325.099 1284.72,328.876 1288.45,332.991 1292.17,337.439 \n 1295.9,342.214 1299.63,347.31 1303.36,352.719 1307.09,358.435 1310.82,364.449 1314.54,370.753 1318.27,377.339 1322,384.198 1325.73,391.322 1329.46,398.699 \n 1333.19,406.323 1336.91,414.181 1340.64,422.264 1344.37,430.563 1348.1,439.065 1351.83,447.762 1355.56,456.642 1359.28,465.694 1363.01,474.907 1366.74,484.271 \n 1370.47,493.774 1374.2,503.405 1377.93,513.153 1381.65,523.008 1385.38,532.957 1389.11,542.99 1392.84,553.097 1396.57,563.266 1400.3,573.486 1404.02,583.748 \n 1407.75,594.041 1411.48,604.354 1415.21,614.677 1418.94,625.001 1422.67,635.316 1426.4,645.613 1430.12,655.881 1433.85,666.114 1437.58,676.301 1441.31,686.434 \n 1445.04,696.505 1448.77,706.507 1452.49,716.432 1456.22,726.272 1459.95,736.021 1463.68,745.671 1467.41,755.218 1471.14,764.654 1474.86,773.974 1478.59,783.173 \n 1482.32,792.245 1486.05,801.186 1489.78,809.992 1493.51,818.659 1497.23,827.182 1500.96,835.558 1504.69,843.785 1508.42,851.859 1512.15,859.777 1515.88,867.539 \n 1519.6,875.141 1523.33,882.583 1527.06,889.862 1530.79,896.978 1534.52,903.93 1538.25,910.718 1541.97,917.34 1545.7,923.798 1549.43,930.091 1553.16,936.219 \n 1556.89,942.183 1560.62,947.985 1564.34,953.624 1568.07,959.103 1571.8,964.422 1575.53,969.583 1579.26,974.588 1582.99,979.439 1586.72,984.137 1590.44,988.685 \n 1594.17,993.085 1597.9,997.339 1601.63,1001.45 1605.36,1005.42 1609.09,1009.25 1612.81,1012.95 1616.54,1016.51 1620.27,1019.94 1624,1023.25 1627.73,1026.43 \n 1631.46,1029.49 1635.18,1032.43 1638.91,1035.26 1642.64,1037.98 1646.37,1040.58 1650.1,1043.08 1653.83,1045.47 1657.55,1047.77 1661.28,1049.97 1665.01,1052.07 \n 1668.74,1054.08 1672.47,1056.01 1676.2,1057.84 1679.92,1059.6 1683.65,1061.27 1687.38,1062.87 1691.11,1064.4 1694.84,1065.85 1698.57,1067.23 1702.29,1068.54 \n 1706.02,1069.8 1709.75,1070.99 1713.48,1072.12 1717.21,1073.19 1720.94,1074.21 1724.66,1075.18 1728.39,1076.1 1732.12,1076.97 1735.85,1077.79 1739.58,1078.57 \n 1743.31,1079.31 1747.04,1080.01 1750.76,1080.67 1754.49,1081.29 1758.22,1081.88 1761.95,1082.44 1765.68,1082.96 1769.41,1083.45 1773.13,1083.92 1776.86,1084.36 \n 1780.59,1084.77 \n \"/>\n<path clip-path=\"url(#clip730)\" d=\"\nM252.932 321.404 L647.983 321.404 L647.983 139.964 L252.932 139.964 Z\n \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 252.932,321.404 647.983,321.404 647.983,139.964 252.932,139.964 252.932,321.404 \n \"/>\n<path clip-path=\"url(#clip730)\" d=\"\nM271.55 224.636 L383.262 224.636 L383.262 176.252 L271.55 176.252 L271.55 224.636 Z\n \" fill=\"#009af9\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n<polyline clip-path=\"url(#clip730)\" style=\"stroke:#000000; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 271.55,224.636 383.262,224.636 383.262,176.252 271.55,176.252 271.55,224.636 \n \"/>\n<path clip-path=\"url(#clip730)\" d=\"M 0 0 M423.594 202.076 L423.594 217.724 L419.335 217.724 L419.335 202.215 Q419.335 198.534 417.9 196.705 Q416.464 194.877 413.594 194.877 Q410.145 194.877 408.154 197.076 Q406.164 199.275 406.164 203.071 L406.164 217.724 L401.881 217.724 L401.881 181.705 L406.164 181.705 L406.164 195.826 Q407.691 193.488 409.751 192.33 Q411.835 191.173 414.543 191.173 Q419.011 191.173 421.302 193.951 Q423.594 196.705 423.594 202.076 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M428.062 191.798 L432.321 191.798 L432.321 217.724 L428.062 217.724 L428.062 191.798 M428.062 181.705 L432.321 181.705 L432.321 187.099 L428.062 187.099 L428.062 181.705 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M453.316 192.562 L453.316 196.59 Q451.51 195.664 449.566 195.201 Q447.622 194.738 445.538 194.738 Q442.367 194.738 440.77 195.71 Q439.196 196.682 439.196 198.627 Q439.196 200.108 440.33 200.965 Q441.464 201.798 444.89 202.562 L446.348 202.886 Q450.885 203.858 452.784 205.64 Q454.705 207.4 454.705 210.571 Q454.705 214.182 451.835 216.289 Q448.987 218.395 443.987 218.395 Q441.904 218.395 439.636 217.978 Q437.39 217.585 434.89 216.775 L434.89 212.377 Q437.251 213.603 439.543 214.228 Q441.835 214.83 444.08 214.83 Q447.089 214.83 448.71 213.812 Q450.33 212.77 450.33 210.895 Q450.33 209.159 449.149 208.233 Q447.992 207.307 444.034 206.451 L442.552 206.103 Q438.594 205.27 436.835 203.557 Q435.075 201.821 435.075 198.812 Q435.075 195.154 437.668 193.164 Q440.261 191.173 445.029 191.173 Q447.39 191.173 449.473 191.52 Q451.557 191.867 453.316 192.562 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M463.385 184.437 L463.385 191.798 L472.159 191.798 L472.159 195.108 L463.385 195.108 L463.385 209.182 Q463.385 212.353 464.242 213.256 Q465.122 214.159 467.784 214.159 L472.159 214.159 L472.159 217.724 L467.784 217.724 Q462.853 217.724 460.978 215.895 Q459.103 214.043 459.103 209.182 L459.103 195.108 L455.978 195.108 L455.978 191.798 L459.103 191.798 L459.103 184.437 L463.385 184.437 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M486.672 194.784 Q483.246 194.784 481.256 197.469 Q479.265 200.131 479.265 204.784 Q479.265 209.437 481.233 212.122 Q483.223 214.784 486.672 214.784 Q490.075 214.784 492.066 212.099 Q494.057 209.414 494.057 204.784 Q494.057 200.178 492.066 197.492 Q490.075 194.784 486.672 194.784 M486.672 191.173 Q492.228 191.173 495.399 194.784 Q498.57 198.395 498.57 204.784 Q498.57 211.15 495.399 214.784 Q492.228 218.395 486.672 218.395 Q481.094 218.395 477.922 214.784 Q474.774 211.15 474.774 204.784 Q474.774 198.395 477.922 194.784 Q481.094 191.173 486.672 191.173 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M520.098 204.46 Q520.098 199.83 518.177 197.284 Q516.279 194.738 512.83 194.738 Q509.404 194.738 507.482 197.284 Q505.584 199.83 505.584 204.46 Q505.584 209.066 507.482 211.613 Q509.404 214.159 512.83 214.159 Q516.279 214.159 518.177 211.613 Q520.098 209.066 520.098 204.46 M524.357 214.506 Q524.357 221.126 521.418 224.344 Q518.478 227.585 512.413 227.585 Q510.168 227.585 508.177 227.238 Q506.186 226.913 504.311 226.219 L504.311 222.076 Q506.186 223.094 508.015 223.58 Q509.844 224.066 511.742 224.066 Q515.931 224.066 518.015 221.867 Q520.098 219.691 520.098 215.27 L520.098 213.164 Q518.779 215.455 516.718 216.589 Q514.658 217.724 511.788 217.724 Q507.019 217.724 504.103 214.089 Q501.186 210.455 501.186 204.46 Q501.186 198.441 504.103 194.807 Q507.019 191.173 511.788 191.173 Q514.658 191.173 516.718 192.307 Q518.779 193.441 520.098 195.733 L520.098 191.798 L524.357 191.798 L524.357 214.506 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M543.848 195.779 Q543.13 195.363 542.274 195.178 Q541.441 194.969 540.422 194.969 Q536.811 194.969 534.867 197.33 Q532.945 199.668 532.945 204.066 L532.945 217.724 L528.663 217.724 L528.663 191.798 L532.945 191.798 L532.945 195.826 Q534.288 193.465 536.441 192.33 Q538.593 191.173 541.672 191.173 Q542.112 191.173 542.644 191.242 Q543.177 191.289 543.825 191.404 L543.848 195.779 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M560.098 204.691 Q554.936 204.691 552.945 205.872 Q550.954 207.052 550.954 209.9 Q550.954 212.168 552.436 213.511 Q553.94 214.83 556.51 214.83 Q560.052 214.83 562.181 212.33 Q564.334 209.807 564.334 205.64 L564.334 204.691 L560.098 204.691 M568.593 202.932 L568.593 217.724 L564.334 217.724 L564.334 213.789 Q562.876 216.15 560.7 217.284 Q558.524 218.395 555.376 218.395 Q551.394 218.395 549.033 216.173 Q546.695 213.927 546.695 210.177 Q546.695 205.802 549.612 203.58 Q552.552 201.358 558.362 201.358 L564.334 201.358 L564.334 200.941 Q564.334 198.002 562.39 196.404 Q560.468 194.784 556.973 194.784 Q554.751 194.784 552.644 195.316 Q550.538 195.849 548.593 196.914 L548.593 192.978 Q550.931 192.076 553.13 191.636 Q555.329 191.173 557.413 191.173 Q563.038 191.173 565.815 194.09 Q568.593 197.006 568.593 202.932 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M593.246 196.775 Q594.843 193.904 597.065 192.539 Q599.287 191.173 602.297 191.173 Q606.348 191.173 608.547 194.02 Q610.746 196.844 610.746 202.076 L610.746 217.724 L606.463 217.724 L606.463 202.215 Q606.463 198.488 605.144 196.682 Q603.824 194.877 601.116 194.877 Q597.806 194.877 595.885 197.076 Q593.963 199.275 593.963 203.071 L593.963 217.724 L589.681 217.724 L589.681 202.215 Q589.681 198.465 588.362 196.682 Q587.042 194.877 584.288 194.877 Q581.024 194.877 579.102 197.099 Q577.181 199.298 577.181 203.071 L577.181 217.724 L572.899 217.724 L572.899 191.798 L577.181 191.798 L577.181 195.826 Q578.639 193.441 580.676 192.307 Q582.713 191.173 585.514 191.173 Q588.338 191.173 590.306 192.608 Q592.297 194.043 593.246 196.775 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip730)\" style=\"stroke:#e26f46; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n 271.55,260.924 383.262,260.924 \n \"/>\n<path clip-path=\"url(#clip730)\" d=\"M 0 0 M418.386 242.185 L418.386 245.727 L414.312 245.727 Q412.02 245.727 411.117 246.653 Q410.238 247.579 410.238 249.986 L410.238 252.278 L417.251 252.278 L417.251 255.588 L410.238 255.588 L410.238 278.204 L405.955 278.204 L405.955 255.588 L401.881 255.588 L401.881 252.278 L405.955 252.278 L405.955 250.472 Q405.955 246.144 407.969 244.176 Q409.983 242.185 414.358 242.185 L418.386 242.185 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M422.853 252.278 L427.112 252.278 L427.112 278.204 L422.853 278.204 L422.853 252.278 M422.853 242.185 L427.112 242.185 L427.112 247.579 L422.853 247.579 L422.853 242.185 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M435.793 244.917 L435.793 252.278 L444.566 252.278 L444.566 255.588 L435.793 255.588 L435.793 269.662 Q435.793 272.833 436.649 273.736 Q437.529 274.639 440.191 274.639 L444.566 274.639 L444.566 278.204 L440.191 278.204 Q435.261 278.204 433.386 276.375 Q431.511 274.523 431.511 269.662 L431.511 255.588 L428.386 255.588 L428.386 252.278 L431.511 252.278 L431.511 244.917 L435.793 244.917 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M453.247 244.917 L453.247 252.278 L462.02 252.278 L462.02 255.588 L453.247 255.588 L453.247 269.662 Q453.247 272.833 454.103 273.736 Q454.983 274.639 457.645 274.639 L462.02 274.639 L462.02 278.204 L457.645 278.204 Q452.714 278.204 450.839 276.375 Q448.964 274.523 448.964 269.662 L448.964 255.588 L445.839 255.588 L445.839 252.278 L448.964 252.278 L448.964 244.917 L453.247 244.917 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M488.663 264.176 L488.663 266.259 L469.08 266.259 Q469.358 270.657 471.719 272.972 Q474.103 275.264 478.339 275.264 Q480.793 275.264 483.084 274.662 Q485.399 274.06 487.668 272.857 L487.668 276.884 Q485.376 277.856 482.969 278.366 Q480.561 278.875 478.084 278.875 Q471.881 278.875 468.247 275.264 Q464.635 271.653 464.635 265.495 Q464.635 259.13 468.061 255.403 Q471.51 251.653 477.344 251.653 Q482.575 251.653 485.608 255.033 Q488.663 258.389 488.663 264.176 M484.404 262.926 Q484.358 259.431 482.436 257.347 Q480.538 255.264 477.39 255.264 Q473.825 255.264 471.672 257.278 Q469.543 259.292 469.219 262.949 L484.404 262.926 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M510.191 256.213 L510.191 242.185 L514.45 242.185 L514.45 278.204 L510.191 278.204 L510.191 274.315 Q508.848 276.63 506.788 277.764 Q504.751 278.875 501.881 278.875 Q497.182 278.875 494.219 275.125 Q491.279 271.375 491.279 265.264 Q491.279 259.153 494.219 255.403 Q497.182 251.653 501.881 251.653 Q504.751 251.653 506.788 252.787 Q508.848 253.898 510.191 256.213 M495.677 265.264 Q495.677 269.963 497.598 272.648 Q499.543 275.31 502.922 275.31 Q506.302 275.31 508.246 272.648 Q510.191 269.963 510.191 265.264 Q510.191 260.565 508.246 257.903 Q506.302 255.218 502.922 255.218 Q499.543 255.218 497.598 257.903 Q495.677 260.565 495.677 265.264 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M534.172 243.644 L540.468 243.644 L555.792 272.556 L555.792 243.644 L560.329 243.644 L560.329 278.204 L554.033 278.204 L538.709 249.292 L538.709 278.204 L534.172 278.204 L534.172 243.644 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M575.028 242.232 Q571.927 247.556 570.422 252.764 Q568.917 257.972 568.917 263.32 Q568.917 268.667 570.422 273.921 Q571.95 279.153 575.028 284.454 L571.325 284.454 Q567.852 279.014 566.116 273.759 Q564.403 268.505 564.403 263.32 Q564.403 258.158 566.116 252.926 Q567.829 247.695 571.325 242.232 L575.028 242.232 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip730)\" d=\"M 0 0 M578.825 242.232 L582.528 242.232 Q586.001 247.695 587.713 252.926 Q589.45 258.158 589.45 263.32 Q589.45 268.505 587.713 273.759 Q586.001 279.014 582.528 284.454 L578.825 284.454 Q581.903 279.153 583.408 273.921 Q584.936 268.667 584.936 263.32 Q584.936 257.972 583.408 252.764 Q581.903 247.556 578.825 242.232 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
},
"metadata": {}
}
],
"metadata": {}
},
{
"cell_type": "code",
"execution_count": null,
"source": [],
"outputs": [],
"metadata": {}
}
],
"metadata": {
"@webio": {
"lastCommId": null,
"lastKernelId": null
},
"anaconda-cloud": {},
"kernelspec": {
"display_name": "Julia 1.6.2",
"language": "julia",
"name": "julia-1.6"
},
"language_info": {
"file_extension": ".jl",
"mimetype": "application/julia",
"name": "julia",
"version": "1.6.2"
}
},
"nbformat": 4,
"nbformat_minor": 1
}