Skip to content

Instantly share code, notes, and snippets.

@srikumarks
Created April 15, 2023 09:25
Show Gist options
  • Save srikumarks/22a8cc629449856b7201aff56fa4f778 to your computer and use it in GitHub Desktop.
Save srikumarks/22a8cc629449856b7201aff56fa4f778 to your computer and use it in GitHub Desktop.
Trying to understand what "measurement" means in quantum mechanics.
Display the source blob
Display the rendered blob
Raw
{
"cells": [
{
"cell_type": "markdown",
"id": "fed75000",
"metadata": {},
"source": [
"# Exploring measurement\n",
"\n",
"(Srikumar K. S., 15 Apr 2023)\n",
"\n",
"The goal of this exploratory notebook is to examine measurement as a process of\n",
"interaction between a high dimensional system and a qubit being measured."
]
},
{
"cell_type": "code",
"execution_count": 11,
"id": "33e17d3a-418a-4c7a-a9a2-745a9e08ebb1",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"MersenneTwister(1234)"
]
},
"execution_count": 11,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"using Random, LinearAlgebra\n",
"rng = MersenneTwister(1234)"
]
},
{
"cell_type": "markdown",
"id": "fffc7288-54dd-4d5a-b09d-f4a6b5c33f4b",
"metadata": {},
"source": [
"\n",
"$$\n",
"\\newcommand{\\ket}[1]{\\left|{#1}\\right\\rangle}\n",
"\\newcommand{\\bra}[1]{\\left\\langle{#1}\\right|}\n",
"\\newcommand{\\braket}[1]{\\left\\langle{#1}\\right\\rangle}\n",
"$$\n"
]
},
{
"cell_type": "markdown",
"id": "b24e2c32",
"metadata": {},
"source": [
"## Approach\n",
"\n",
"The idea is to see how a qubit in a random superposition of its two possibilities evolves when \"measured\" by a random observer that can distinguish between the two qubit states. Towards this, we need the ability to construct a random state, a random observable and a random observer. In this exploration, we're not initially concerned with the nature of the distribution when creating random states/observables and observers. We'll get to that later on ... if necessary.\n",
"\n",
"## Random states\n",
"\n",
"We can make any N-dimensional random vector with complex components such that $\\sum_{i}|c_i|^2 = 1$ where $c_i$ are the amplitudes of the basis states that make up the random state vector. Note that the constraint implies $|c_i|^2 \\leq 1$ for all $i$."
]
},
{
"cell_type": "code",
"execution_count": 12,
"id": "4d495dfd-43e6-4ebd-9241-5958da11c9c2",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"4-element Vector{ComplexF64}:\n",
" 0.13894291414503196 + 0.4080544353672953im\n",
" 0.10130724069115052 - 0.06104772848254118im\n",
" 0.44969950485897653 + 0.5416517697082908im\n",
" -0.4579406055551145 - 0.30801068114907093im"
]
},
"execution_count": 12,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"function random_state(rng, N)\n",
" @assert N >= 2\n",
" z = zeros(Complex, N)\n",
" for i in 1:N\n",
" a = 2.0 * (rand(rng, Float64) - 0.5)\n",
" b = 2.0 * (rand(rng, Float64) - 0.5)\n",
" z[i] = a+b*im\n",
" end\n",
" return z / sqrt(sum(abs2, z))\n",
"end\n",
"\n",
"random_state(rng, 4)"
]
},
{
"cell_type": "markdown",
"id": "1f111eee",
"metadata": {},
"source": [
"## Random density matrix\n",
"\n",
"A random density matrix must meet the criterion that its eigenvalues must be real and they must sum to unity."
]
},
{
"cell_type": "code",
"execution_count": 13,
"id": "573165b7",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"4×4 Matrix{ComplexF64}:\n",
" 0.0981778-3.46945e-18im … -0.011408+0.0348368im\n",
" -0.0607316-0.00682211im 0.0594336-0.180245im\n",
" 0.00579272-0.0772894im -0.00395489+0.00300028im\n",
" -0.011408-0.0348368im 0.191688-8.90799e-18im"
]
},
"execution_count": 13,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"\n",
"function random_ρ(rng, N; noise_floor=1e-10/N, bias=ones(Float64,N))\n",
" m = 2.0 * (rand(rng, Float64, (N,N)) + im * rand(rng, Float64, (N,N)) .- (0.5 + im*0.5))\n",
" m = 0.5*(m+m')\n",
" e = eigen(m)\n",
" eva = abs2.(e.values)\n",
" evam = maximum(eva)\n",
" ev = (eva .+ noise_floor * evam) .* bias\n",
" ev /= sum(ev)\n",
" e.vectors * Diagonal(ev) * inv(e.vectors)\n",
"end\n",
"\n",
"random_ρ(rng, 4)"
]
},
{
"cell_type": "markdown",
"id": "987b9bef",
"metadata": {},
"source": [
"## Random observers\n",
"\n",
"What is a random observer? Let's focus on observers for single qubits. A single qubit can be either in the $\\ket{0}$ state or in the $\\ket{1}$ state or in general in a superposition of the form $\\ket{q} = q_0\\ket{0}+q_1\\ket{1}$ where $|q_0|^2 + |q_1|^2 = 1$. Let's consider an \"ideal observer\" represented by a unitary operator $\\Omega$ and with $n$ dimensional internal state $\\ket{\\omega}$ which behaves like this -\n",
"\n",
"$$\\Omega\\ket{\\omega}\\ket{0} = \\ket{\\omega_0}\\ket{0}$$\n",
"and\n",
"$$\\Omega\\ket{\\omega}\\ket{1} = \\ket{\\omega_1}\\ket{1}$$\n",
"\n",
"Therefore such an $\\Omega$ will transform an arbitrary $\\ket{q}$ according to --\n",
"\n",
"$$\\Omega\\ket{\\omega}\\ket{q} = q_0\\ket{\\omega_0}\\ket{0} + q_1\\ket{\\omega_1}\\ket{1}$$\n",
"\n",
"Such an $\\Omega$ can be thought of as a combination of $\\Omega_0$ and $\\Omega_1$ where --\n",
"\n",
"$$\\Omega_0\\ket{\\omega}\\ket{q} = q_0\\ket{\\omega_0}\\ket{0} + q_1\\ket{\\omega}\\ket{1}$$\n",
"and\n",
"$$\\Omega_1\\ket{\\omega}\\ket{q} = q_0\\ket{\\omega}\\ket{0} + q_1\\ket{\\omega_1}\\ket{1}$$\n",
"\n",
"and we can write -\n",
"\n",
"$$\\Omega = \\Omega_1\\Omega_0 = \\Omega_0\\Omega_1$$\n",
"\n",
"We can therefore pick $\\Omega_0$ and $\\Omega_1$ to be unitary transformations due to random commuting observables $H_0$ and $H_1$.\n",
"\n",
"The combined observable (a self adjoint matrix) can therefore be written as --\n",
"\n",
"$$H = \\begin{bmatrix}\n",
"H_0 & \\mathbb{0} \\\\\n",
"\\mathbb{0} & H_1\n",
"\\end{bmatrix}$$"
]
},
{
"cell_type": "code",
"execution_count": 14,
"id": "7e3630af",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"Eigen{ComplexF64, ComplexF64, Matrix{ComplexF64}, Vector{ComplexF64}}\n",
"values:\n",
"4-element Vector{ComplexF64}:\n",
" -1.0000000000000004 + 2.511783216587311e-18im\n",
" -0.8508733840007167 - 9.308839331308716e-17im\n",
" -0.4816167585468012 - 3.077092716616459e-17im\n",
" -1.157401475209869e-16 - 1.7430340815480004e-17im\n",
"vectors:\n",
"4×4 Matrix{ComplexF64}:\n",
" 0.645644+0.0im -0.140488+0.620761im … -0.144119-0.257587im\n",
" 0.134682+0.435929im 0.666776+0.0im -0.133027-0.275052im\n",
" 0.288964+0.0572762im 0.313974-0.137567im 0.830699+0.0im\n",
" 0.535022+0.0440478im -0.144123-0.109784im -0.0465203+0.356796im"
]
},
"execution_count": 14,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"\n",
"function random_observable(rng, N; minmax=(-1.0,1.0))\n",
" m = 2.0 * (rand(rng, Float64, (N,N)) + im * rand(rng, Float64, (N,N)) .- (0.5 + im*0.5))\n",
" m = 0.5*(m+m')\n",
" e = eigen(m)\n",
" emin = minimum(real.(e.values))\n",
" emax = maximum(real.(e.values))\n",
" ev = minmax[1] .+ (e.values .- emin) * (minmax[2] / (emax - emin))\n",
" e.vectors * Diagonal(ev) * inv(e.vectors)\n",
"end\n",
"\n",
"eigen(random_observable(rng, 4))"
]
},
{
"cell_type": "code",
"execution_count": 21,
"id": "a4060de9",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"4×4 Matrix{Complex}:\n",
" -0.788404-5.55112e-17im 0.175255-0.368929im … 0+0im\n",
" 0.175255+0.368929im -0.211596+2.87947e-17im 0+0im\n",
" 0+0im 0+0im -0.499198-0.0166176im\n",
" 0+0im 0+0im -0.477093-1.19695e-18im"
]
},
"execution_count": 21,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"\n",
"function random_observer(rng, n; minmax=(-1.0,1.0))\n",
" H0 = random_observable(rng, n; minmax)\n",
" H1 = random_observable(rng, n; minmax)\n",
" Z = zeros(Complex, (n,n))\n",
" H = vcat(hcat(H0, Z), hcat(Z, H1))\n",
"end\n",
"\n",
"random_observer(rng, 2)"
]
},
{
"cell_type": "markdown",
"id": "9fdd5928",
"metadata": {},
"source": [
"## Utilities\n",
"\n",
"We need some utilities like ability to make pure state vectors, take scalar products, tensor products and such."
]
},
{
"cell_type": "code",
"execution_count": 22,
"id": "b51b4716",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"rot (generic function with 1 method)"
]
},
"execution_count": 22,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"\n",
"function pure_state(N, m)\n",
" z = zeros(Complex, N)\n",
" m = mod(m, N)\n",
" z[m+1] = 1.0 + 0im\n",
" return z\n",
"end\n",
"\n",
"function bra(state)\n",
" state'\n",
"end\n",
"\n",
"function braket(state1, state2)\n",
" bra(state1) * state2\n",
"end\n",
"\n",
"function ketbra(state1, state2)\n",
" state1 * bra(state2)\n",
"end\n",
"\n",
"function ρ(probs)\n",
" aprobs = abs.(probs)\n",
" nprobs = aprobs / sum(aprobs)\n",
" return Diagonal{Complex,Vector{Complex}}(nprobs)\n",
"end\n",
"\n",
"# The purity of the state represented by a sensity matrix is\n",
"# the trace of its square. The purity will be 1 if it represents\n",
"# a pure state and less than 1 if the state is a mixed state.\n",
"function purity(density)\n",
" tr(density * density)\n",
"end\n",
"\n",
"# We extend that notion of purity of a density matrix to that\n",
"# of a state, relative of the chosen set of basis states as well.\n",
"# Straightforward extension ... and I'm not even sure I'll be using it.\n",
"function spurity(state)\n",
" s = state .* conj.(state)\n",
" sum(abs2, s)\n",
"end\n",
"\n",
"# Tensor product of states is just the kron operator.\n",
"⊗ = kron\n",
"\n",
"# Exepectation of an operator given the density matrix.\n",
"function E(densityop, op)\n",
" tr(densityop * op)\n",
"end\n",
"\n",
"# Pauli matrices and identity matrices.\n",
"σx = Complex.([0 1; 1 0])\n",
"σy = Complex.([0 (-im); (im) 0])\n",
"σz = Complex.([1 0; 0 -1])\n",
"Ik(k) = Diagonal(ones(Complex, k))\n",
"I = Ik(2)\n",
"\n",
"# Pauli rotation. Computes e^{iPa}\n",
"# Assumes that pauli * pauli = I, i.e. pauli is its own inverse.\n",
"function rot(pauli, alpha)\n",
" id = Ik(size(pauli)[1])\n",
" cos(alpha) * id + im * sin(alpha) * pauli\n",
"end"
]
},
{
"cell_type": "code",
"execution_count": 23,
"id": "dc2216d0",
"metadata": {},
"outputs": [
{
"data": {
"text/plain": [
"2-element Vector{Complex}:\n",
" 1.0 + 0.0im\n",
" 0 + 0im"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/plain": [
"4×4 Diagonal{Complex, Vector{Complex}}:\n",
" 1+0im ⋅ ⋅ ⋅ \n",
" ⋅ 1+0im ⋅ ⋅ \n",
" ⋅ ⋅ 1+0im ⋅ \n",
" ⋅ ⋅ ⋅ 1+0im"
]
},
"metadata": {},
"output_type": "display_data"
},
{
"data": {
"text/plain": [
"4×4 Matrix{ComplexF64}:\n",
" 0.809017+0.0im 0.0+0.0im … 0.0+0.0im\n",
" 0.0+0.0im 0.809017+0.0im 0.0+0.587785im\n",
" 0.0+0.587785im 0.0+0.0im 0.0+0.0im\n",
" 0.0+0.0im 0.0+0.587785im 0.809017+0.0im"
]
},
"metadata": {},
"output_type": "display_data"
}
],
"source": [
"display(pure_state(2,0))\n",
"display(Ik(4))\n",
"display(rot(kron(σx,I), pi/5))"
]
},
{
"cell_type": "markdown",
"id": "221b0d6f",
"metadata": {},
"source": [
"## Evolution due to a random observable\n",
"\n",
"We take a random observable $H$ and evolve a random state $\\ket{r}$ over time\n",
"using the unitary operation $\\ket{r(t)} = e^{i2\\pi Ht}\\ket{r}$. Then we compare the result state to the\n",
"original random state as a function of time using the dot product of the two\n",
"states $\\braket{r(t)|r}$. We use $2\\pi$ as a convenience so the H makes sense as a spectrum."
]
},
{
"cell_type": "code",
"execution_count": 24,
"id": "23104103",
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip000\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip000)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip001\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip000)\" d=\"\n",
"M192.941 1486.45 L2352.76 1486.45 L2352.76 47.2441 L192.941 47.2441 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip002\">\n",
" <rect x=\"192\" y=\"47\" width=\"2161\" height=\"1440\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 253.864,1486.45 253.864,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 763.254,1486.45 763.254,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1272.64,1486.45 1272.64,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1782.03,1486.45 1782.03,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2291.43,1486.45 2291.43,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 192.941,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 253.864,1486.45 253.864,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 763.254,1486.45 763.254,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1272.64,1486.45 1272.64,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1782.03,1486.45 1782.03,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2291.43,1486.45 2291.43,1467.55 \n",
" \"/>\n",
"<path clip-path=\"url(#clip000)\" d=\"M253.864 1517.37 Q250.253 1517.37 248.424 1520.93 Q246.618 1524.47 246.618 1531.6 Q246.618 1538.71 248.424 1542.27 Q250.253 1545.82 253.864 1545.82 Q257.498 1545.82 259.304 1542.27 Q261.132 1538.71 261.132 1531.6 Q261.132 1524.47 259.304 1520.93 Q257.498 1517.37 253.864 1517.37 M253.864 1513.66 Q259.674 1513.66 262.729 1518.27 Q265.808 1522.85 265.808 1531.6 Q265.808 1540.33 262.729 1544.94 Q259.674 1549.52 253.864 1549.52 Q248.054 1549.52 244.975 1544.94 Q241.919 1540.33 241.919 1531.6 Q241.919 1522.85 244.975 1518.27 Q248.054 1513.66 253.864 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M711.866 1544.91 L728.185 1544.91 L728.185 1548.85 L706.241 1548.85 L706.241 1544.91 Q708.903 1542.16 713.486 1537.53 Q718.092 1532.88 719.273 1531.53 Q721.518 1529.01 722.398 1527.27 Q723.301 1525.51 723.301 1523.82 Q723.301 1521.07 721.356 1519.33 Q719.435 1517.6 716.333 1517.6 Q714.134 1517.6 711.68 1518.36 Q709.25 1519.13 706.472 1520.68 L706.472 1515.95 Q709.296 1514.82 711.75 1514.24 Q714.203 1513.66 716.24 1513.66 Q721.611 1513.66 724.805 1516.35 Q728 1519.03 728 1523.52 Q728 1525.65 727.189 1527.57 Q726.402 1529.47 724.296 1532.07 Q723.717 1532.74 720.615 1535.95 Q717.514 1539.15 711.866 1544.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M738.046 1514.29 L756.402 1514.29 L756.402 1518.22 L742.328 1518.22 L742.328 1526.7 Q743.347 1526.35 744.365 1526.19 Q745.384 1526 746.402 1526 Q752.189 1526 755.569 1529.17 Q758.949 1532.34 758.949 1537.76 Q758.949 1543.34 755.476 1546.44 Q752.004 1549.52 745.685 1549.52 Q743.509 1549.52 741.24 1549.15 Q738.995 1548.78 736.588 1548.04 L736.588 1543.34 Q738.671 1544.47 740.893 1545.03 Q743.115 1545.58 745.592 1545.58 Q749.597 1545.58 751.935 1543.48 Q754.273 1541.37 754.273 1537.76 Q754.273 1534.15 751.935 1532.04 Q749.597 1529.94 745.592 1529.94 Q743.717 1529.94 741.842 1530.35 Q739.99 1530.77 738.046 1531.65 L738.046 1514.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M778.161 1517.37 Q774.55 1517.37 772.722 1520.93 Q770.916 1524.47 770.916 1531.6 Q770.916 1538.71 772.722 1542.27 Q774.55 1545.82 778.161 1545.82 Q781.796 1545.82 783.601 1542.27 Q785.43 1538.71 785.43 1531.6 Q785.43 1524.47 783.601 1520.93 Q781.796 1517.37 778.161 1517.37 M778.161 1513.66 Q783.972 1513.66 787.027 1518.27 Q790.106 1522.85 790.106 1531.6 Q790.106 1540.33 787.027 1544.94 Q783.972 1549.52 778.161 1549.52 Q772.351 1549.52 769.273 1544.94 Q766.217 1540.33 766.217 1531.6 Q766.217 1522.85 769.273 1518.27 Q772.351 1513.66 778.161 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M808.323 1517.37 Q804.712 1517.37 802.884 1520.93 Q801.078 1524.47 801.078 1531.6 Q801.078 1538.71 802.884 1542.27 Q804.712 1545.82 808.323 1545.82 Q811.958 1545.82 813.763 1542.27 Q815.592 1538.71 815.592 1531.6 Q815.592 1524.47 813.763 1520.93 Q811.958 1517.37 808.323 1517.37 M808.323 1513.66 Q814.133 1513.66 817.189 1518.27 Q820.268 1522.85 820.268 1531.6 Q820.268 1540.33 817.189 1544.94 Q814.133 1549.52 808.323 1549.52 Q802.513 1549.52 799.434 1544.94 Q796.379 1540.33 796.379 1531.6 Q796.379 1522.85 799.434 1518.27 Q802.513 1513.66 808.323 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M1217.18 1514.29 L1235.54 1514.29 L1235.54 1518.22 L1221.46 1518.22 L1221.46 1526.7 Q1222.48 1526.35 1223.5 1526.19 Q1224.52 1526 1225.54 1526 Q1231.33 1526 1234.7 1529.17 Q1238.08 1532.34 1238.08 1537.76 Q1238.08 1543.34 1234.61 1546.44 Q1231.14 1549.52 1224.82 1549.52 Q1222.64 1549.52 1220.38 1549.15 Q1218.13 1548.78 1215.72 1548.04 L1215.72 1543.34 Q1217.81 1544.47 1220.03 1545.03 Q1222.25 1545.58 1224.73 1545.58 Q1228.73 1545.58 1231.07 1543.48 Q1233.41 1541.37 1233.41 1537.76 Q1233.41 1534.15 1231.07 1532.04 Q1228.73 1529.94 1224.73 1529.94 Q1222.85 1529.94 1220.98 1530.35 Q1219.13 1530.77 1217.18 1531.65 L1217.18 1514.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M1257.3 1517.37 Q1253.69 1517.37 1251.86 1520.93 Q1250.05 1524.47 1250.05 1531.6 Q1250.05 1538.71 1251.86 1542.27 Q1253.69 1545.82 1257.3 1545.82 Q1260.93 1545.82 1262.74 1542.27 Q1264.57 1538.71 1264.57 1531.6 Q1264.57 1524.47 1262.74 1520.93 Q1260.93 1517.37 1257.3 1517.37 M1257.3 1513.66 Q1263.11 1513.66 1266.16 1518.27 Q1269.24 1522.85 1269.24 1531.6 Q1269.24 1540.33 1266.16 1544.94 Q1263.11 1549.52 1257.3 1549.52 Q1251.49 1549.52 1248.41 1544.94 Q1245.35 1540.33 1245.35 1531.6 Q1245.35 1522.85 1248.41 1518.27 Q1251.49 1513.66 1257.3 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M1287.46 1517.37 Q1283.85 1517.37 1282.02 1520.93 Q1280.21 1524.47 1280.21 1531.6 Q1280.21 1538.71 1282.02 1542.27 Q1283.85 1545.82 1287.46 1545.82 Q1291.09 1545.82 1292.9 1542.27 Q1294.73 1538.71 1294.73 1531.6 Q1294.73 1524.47 1292.9 1520.93 Q1291.09 1517.37 1287.46 1517.37 M1287.46 1513.66 Q1293.27 1513.66 1296.32 1518.27 Q1299.4 1522.85 1299.4 1531.6 Q1299.4 1540.33 1296.32 1544.94 Q1293.27 1549.52 1287.46 1549.52 Q1281.65 1549.52 1278.57 1544.94 Q1275.51 1540.33 1275.51 1531.6 Q1275.51 1522.85 1278.57 1518.27 Q1281.65 1513.66 1287.46 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M1317.62 1517.37 Q1314.01 1517.37 1312.18 1520.93 Q1310.38 1524.47 1310.38 1531.6 Q1310.38 1538.71 1312.18 1542.27 Q1314.01 1545.82 1317.62 1545.82 Q1321.26 1545.82 1323.06 1542.27 Q1324.89 1538.71 1324.89 1531.6 Q1324.89 1524.47 1323.06 1520.93 Q1321.26 1517.37 1317.62 1517.37 M1317.62 1513.66 Q1323.43 1513.66 1326.49 1518.27 Q1329.57 1522.85 1329.57 1531.6 Q1329.57 1540.33 1326.49 1544.94 Q1323.43 1549.52 1317.62 1549.52 Q1311.81 1549.52 1308.73 1544.94 Q1305.68 1540.33 1305.68 1531.6 Q1305.68 1522.85 1308.73 1518.27 Q1311.81 1513.66 1317.62 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M1725.23 1514.29 L1747.45 1514.29 L1747.45 1516.28 L1734.91 1548.85 L1730.02 1548.85 L1741.83 1518.22 L1725.23 1518.22 L1725.23 1514.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M1756.62 1514.29 L1774.97 1514.29 L1774.97 1518.22 L1760.9 1518.22 L1760.9 1526.7 Q1761.92 1526.35 1762.94 1526.19 Q1763.96 1526 1764.97 1526 Q1770.76 1526 1774.14 1529.17 Q1777.52 1532.34 1777.52 1537.76 Q1777.52 1543.34 1774.05 1546.44 Q1770.58 1549.52 1764.26 1549.52 Q1762.08 1549.52 1759.81 1549.15 Q1757.57 1548.78 1755.16 1548.04 L1755.16 1543.34 Q1757.24 1544.47 1759.47 1545.03 Q1761.69 1545.58 1764.16 1545.58 Q1768.17 1545.58 1770.51 1543.48 Q1772.85 1541.37 1772.85 1537.76 Q1772.85 1534.15 1770.51 1532.04 Q1768.17 1529.94 1764.16 1529.94 Q1762.29 1529.94 1760.41 1530.35 Q1758.56 1530.77 1756.62 1531.65 L1756.62 1514.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M1796.73 1517.37 Q1793.12 1517.37 1791.29 1520.93 Q1789.49 1524.47 1789.49 1531.6 Q1789.49 1538.71 1791.29 1542.27 Q1793.12 1545.82 1796.73 1545.82 Q1800.37 1545.82 1802.17 1542.27 Q1804 1538.71 1804 1531.6 Q1804 1524.47 1802.17 1520.93 Q1800.37 1517.37 1796.73 1517.37 M1796.73 1513.66 Q1802.54 1513.66 1805.6 1518.27 Q1808.68 1522.85 1808.68 1531.6 Q1808.68 1540.33 1805.6 1544.94 Q1802.54 1549.52 1796.73 1549.52 Q1790.92 1549.52 1787.85 1544.94 Q1784.79 1540.33 1784.79 1531.6 Q1784.79 1522.85 1787.85 1518.27 Q1790.92 1513.66 1796.73 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M1826.9 1517.37 Q1823.28 1517.37 1821.46 1520.93 Q1819.65 1524.47 1819.65 1531.6 Q1819.65 1538.71 1821.46 1542.27 Q1823.28 1545.82 1826.9 1545.82 Q1830.53 1545.82 1832.34 1542.27 Q1834.16 1538.71 1834.16 1531.6 Q1834.16 1524.47 1832.34 1520.93 Q1830.53 1517.37 1826.9 1517.37 M1826.9 1513.66 Q1832.71 1513.66 1835.76 1518.27 Q1838.84 1522.85 1838.84 1531.6 Q1838.84 1540.33 1835.76 1544.94 Q1832.71 1549.52 1826.9 1549.52 Q1821.09 1549.52 1818.01 1544.94 Q1814.95 1540.33 1814.95 1531.6 Q1814.95 1522.85 1818.01 1518.27 Q1821.09 1513.66 1826.9 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M2220.87 1544.91 L2228.51 1544.91 L2228.51 1518.55 L2220.2 1520.21 L2220.2 1515.95 L2228.46 1514.29 L2233.14 1514.29 L2233.14 1544.91 L2240.78 1544.91 L2240.78 1548.85 L2220.87 1548.85 L2220.87 1544.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M2260.22 1517.37 Q2256.61 1517.37 2254.78 1520.93 Q2252.98 1524.47 2252.98 1531.6 Q2252.98 1538.71 2254.78 1542.27 Q2256.61 1545.82 2260.22 1545.82 Q2263.86 1545.82 2265.66 1542.27 Q2267.49 1538.71 2267.49 1531.6 Q2267.49 1524.47 2265.66 1520.93 Q2263.86 1517.37 2260.22 1517.37 M2260.22 1513.66 Q2266.03 1513.66 2269.09 1518.27 Q2272.17 1522.85 2272.17 1531.6 Q2272.17 1540.33 2269.09 1544.94 Q2266.03 1549.52 2260.22 1549.52 Q2254.41 1549.52 2251.33 1544.94 Q2248.28 1540.33 2248.28 1531.6 Q2248.28 1522.85 2251.33 1518.27 Q2254.41 1513.66 2260.22 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M2290.38 1517.37 Q2286.77 1517.37 2284.94 1520.93 Q2283.14 1524.47 2283.14 1531.6 Q2283.14 1538.71 2284.94 1542.27 Q2286.77 1545.82 2290.38 1545.82 Q2294.02 1545.82 2295.82 1542.27 Q2297.65 1538.71 2297.65 1531.6 Q2297.65 1524.47 2295.82 1520.93 Q2294.02 1517.37 2290.38 1517.37 M2290.38 1513.66 Q2296.19 1513.66 2299.25 1518.27 Q2302.33 1522.85 2302.33 1531.6 Q2302.33 1540.33 2299.25 1544.94 Q2296.19 1549.52 2290.38 1549.52 Q2284.57 1549.52 2281.49 1544.94 Q2278.44 1540.33 2278.44 1531.6 Q2278.44 1522.85 2281.49 1518.27 Q2284.57 1513.66 2290.38 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M2320.55 1517.37 Q2316.93 1517.37 2315.11 1520.93 Q2313.3 1524.47 2313.3 1531.6 Q2313.3 1538.71 2315.11 1542.27 Q2316.93 1545.82 2320.55 1545.82 Q2324.18 1545.82 2325.99 1542.27 Q2327.81 1538.71 2327.81 1531.6 Q2327.81 1524.47 2325.99 1520.93 Q2324.18 1517.37 2320.55 1517.37 M2320.55 1513.66 Q2326.36 1513.66 2329.41 1518.27 Q2332.49 1522.85 2332.49 1531.6 Q2332.49 1540.33 2329.41 1544.94 Q2326.36 1549.52 2320.55 1549.52 Q2314.74 1549.52 2311.66 1544.94 Q2308.6 1540.33 2308.6 1531.6 Q2308.6 1522.85 2311.66 1518.27 Q2314.74 1513.66 2320.55 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M2350.71 1517.37 Q2347.1 1517.37 2345.27 1520.93 Q2343.46 1524.47 2343.46 1531.6 Q2343.46 1538.71 2345.27 1542.27 Q2347.1 1545.82 2350.71 1545.82 Q2354.34 1545.82 2356.15 1542.27 Q2357.98 1538.71 2357.98 1531.6 Q2357.98 1524.47 2356.15 1520.93 Q2354.34 1517.37 2350.71 1517.37 M2350.71 1513.66 Q2356.52 1513.66 2359.57 1518.27 Q2362.65 1522.85 2362.65 1531.6 Q2362.65 1540.33 2359.57 1544.94 Q2356.52 1549.52 2350.71 1549.52 Q2344.9 1549.52 2341.82 1544.94 Q2338.76 1540.33 2338.76 1531.6 Q2338.76 1522.85 2341.82 1518.27 Q2344.9 1513.66 2350.71 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 192.941,1180.39 2352.76,1180.39 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 192.941,816.254 2352.76,816.254 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 192.941,452.115 2352.76,452.115 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip002)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 192.941,87.9763 2352.76,87.9763 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 192.941,1486.45 192.941,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 192.941,1180.39 211.838,1180.39 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 192.941,816.254 211.838,816.254 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 192.941,452.115 211.838,452.115 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 192.941,87.9763 211.838,87.9763 \n",
" \"/>\n",
"<path clip-path=\"url(#clip000)\" d=\"M50.9921 1180.84 L80.6679 1180.84 L80.6679 1184.78 L50.9921 1184.78 L50.9921 1180.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M100.76 1166.19 Q97.1493 1166.19 95.3206 1169.76 Q93.515 1173.3 93.515 1180.43 Q93.515 1187.53 95.3206 1191.1 Q97.1493 1194.64 100.76 1194.64 Q104.395 1194.64 106.2 1191.1 Q108.029 1187.53 108.029 1180.43 Q108.029 1173.3 106.2 1169.76 Q104.395 1166.19 100.76 1166.19 M100.76 1162.49 Q106.571 1162.49 109.626 1167.09 Q112.705 1171.68 112.705 1180.43 Q112.705 1189.15 109.626 1193.76 Q106.571 1198.34 100.76 1198.34 Q94.9502 1198.34 91.8715 1193.76 Q88.816 1189.15 88.816 1180.43 Q88.816 1171.68 91.8715 1167.09 Q94.9502 1162.49 100.76 1162.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M120.922 1191.79 L125.807 1191.79 L125.807 1197.67 L120.922 1197.67 L120.922 1191.79 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M136.038 1163.11 L154.394 1163.11 L154.394 1167.05 L140.32 1167.05 L140.32 1175.52 Q141.339 1175.17 142.357 1175.01 Q143.376 1174.83 144.394 1174.83 Q150.181 1174.83 153.561 1178 Q156.941 1181.17 156.941 1186.58 Q156.941 1192.16 153.468 1195.27 Q149.996 1198.34 143.677 1198.34 Q141.501 1198.34 139.232 1197.97 Q136.987 1197.6 134.58 1196.86 L134.58 1192.16 Q136.663 1193.3 138.885 1193.85 Q141.107 1194.41 143.584 1194.41 Q147.589 1194.41 149.927 1192.3 Q152.265 1190.2 152.265 1186.58 Q152.265 1182.97 149.927 1180.87 Q147.589 1178.76 143.584 1178.76 Q141.709 1178.76 139.834 1179.18 Q137.982 1179.59 136.038 1180.47 L136.038 1163.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M99.765 802.052 Q96.1539 802.052 94.3252 805.617 Q92.5197 809.159 92.5197 816.288 Q92.5197 823.395 94.3252 826.96 Q96.1539 830.501 99.765 830.501 Q103.399 830.501 105.205 826.96 Q107.033 823.395 107.033 816.288 Q107.033 809.159 105.205 805.617 Q103.399 802.052 99.765 802.052 M99.765 798.349 Q105.575 798.349 108.631 802.955 Q111.709 807.539 111.709 816.288 Q111.709 825.015 108.631 829.622 Q105.575 834.205 99.765 834.205 Q93.9549 834.205 90.8762 829.622 Q87.8206 825.015 87.8206 816.288 Q87.8206 807.539 90.8762 802.955 Q93.9549 798.349 99.765 798.349 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M119.927 827.654 L124.811 827.654 L124.811 833.534 L119.927 833.534 L119.927 827.654 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M144.996 802.052 Q141.385 802.052 139.556 805.617 Q137.751 809.159 137.751 816.288 Q137.751 823.395 139.556 826.96 Q141.385 830.501 144.996 830.501 Q148.63 830.501 150.436 826.96 Q152.265 823.395 152.265 816.288 Q152.265 809.159 150.436 805.617 Q148.63 802.052 144.996 802.052 M144.996 798.349 Q150.806 798.349 153.862 802.955 Q156.941 807.539 156.941 816.288 Q156.941 825.015 153.862 829.622 Q150.806 834.205 144.996 834.205 Q139.186 834.205 136.107 829.622 Q133.052 825.015 133.052 816.288 Q133.052 807.539 136.107 802.955 Q139.186 798.349 144.996 798.349 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M100.76 437.914 Q97.1493 437.914 95.3206 441.478 Q93.515 445.02 93.515 452.15 Q93.515 459.256 95.3206 462.821 Q97.1493 466.363 100.76 466.363 Q104.395 466.363 106.2 462.821 Q108.029 459.256 108.029 452.15 Q108.029 445.02 106.2 441.478 Q104.395 437.914 100.76 437.914 M100.76 434.21 Q106.571 434.21 109.626 438.816 Q112.705 443.4 112.705 452.15 Q112.705 460.877 109.626 465.483 Q106.571 470.066 100.76 470.066 Q94.9502 470.066 91.8715 465.483 Q88.816 460.877 88.816 452.15 Q88.816 443.4 91.8715 438.816 Q94.9502 434.21 100.76 434.21 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M120.922 463.515 L125.807 463.515 L125.807 469.395 L120.922 469.395 L120.922 463.515 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M136.038 434.835 L154.394 434.835 L154.394 438.77 L140.32 438.77 L140.32 447.242 Q141.339 446.895 142.357 446.733 Q143.376 446.548 144.394 446.548 Q150.181 446.548 153.561 449.719 Q156.941 452.89 156.941 458.307 Q156.941 463.886 153.468 466.988 Q149.996 470.066 143.677 470.066 Q141.501 470.066 139.232 469.696 Q136.987 469.326 134.58 468.585 L134.58 463.886 Q136.663 465.02 138.885 465.576 Q141.107 466.131 143.584 466.131 Q147.589 466.131 149.927 464.025 Q152.265 461.918 152.265 458.307 Q152.265 454.696 149.927 452.59 Q147.589 450.483 143.584 450.483 Q141.709 450.483 139.834 450.9 Q137.982 451.316 136.038 452.196 L136.038 434.835 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M90.5752 101.321 L98.2141 101.321 L98.2141 74.9555 L89.904 76.6222 L89.904 72.3629 L98.1678 70.6963 L102.844 70.6963 L102.844 101.321 L110.483 101.321 L110.483 105.256 L90.5752 105.256 L90.5752 101.321 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M119.927 99.3767 L124.811 99.3767 L124.811 105.256 L119.927 105.256 L119.927 99.3767 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M144.996 73.775 Q141.385 73.775 139.556 77.3398 Q137.751 80.8814 137.751 88.011 Q137.751 95.1174 139.556 98.6822 Q141.385 102.224 144.996 102.224 Q148.63 102.224 150.436 98.6822 Q152.265 95.1174 152.265 88.011 Q152.265 80.8814 150.436 77.3398 Q148.63 73.775 144.996 73.775 M144.996 70.0713 Q150.806 70.0713 153.862 74.6777 Q156.941 79.261 156.941 88.011 Q156.941 96.7378 153.862 101.344 Q150.806 105.928 144.996 105.928 Q139.186 105.928 136.107 101.344 Q133.052 96.7378 133.052 88.011 Q133.052 79.261 136.107 74.6777 Q139.186 70.0713 144.996 70.0713 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip002)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 254.067,87.9763 254.271,88.5122 254.475,90.1186 254.679,92.7919 254.883,96.5255 255.086,101.311 255.29,107.136 255.494,113.988 255.698,121.851 255.901,130.705 \n",
" 256.105,140.53 256.309,151.303 256.513,162.998 256.716,175.589 256.92,189.045 257.124,203.336 257.328,218.427 257.531,234.284 257.735,250.871 257.939,268.148 \n",
" 258.143,286.076 258.346,304.614 258.55,323.719 258.754,343.348 258.958,363.456 259.161,383.998 259.365,404.927 259.569,426.196 259.773,447.758 259.976,469.566 \n",
" 260.18,491.57 260.384,513.723 260.588,535.976 260.791,558.282 260.995,580.592 261.199,602.859 261.403,625.036 261.606,647.075 261.81,668.932 262.014,690.562 \n",
" 262.218,711.92 262.421,732.964 262.625,753.652 262.829,773.943 263.033,793.798 263.237,813.18 263.44,832.052 263.644,850.38 263.848,868.131 264.052,885.274 \n",
" 264.255,901.78 264.459,917.621 264.663,932.772 264.867,947.209 265.07,960.912 265.274,973.861 265.478,986.038 265.682,997.429 265.885,1008.02 266.089,1017.8 \n",
" 266.293,1026.76 266.497,1034.9 266.7,1042.21 266.904,1048.68 267.108,1054.33 267.312,1059.14 267.515,1063.12 267.719,1066.29 267.923,1068.65 268.127,1070.2 \n",
" 268.33,1070.96 268.534,1070.94 268.738,1070.17 268.942,1068.65 269.145,1066.4 269.349,1063.45 269.553,1059.81 269.757,1055.51 269.96,1050.58 270.164,1045.03 \n",
" 270.368,1038.9 270.572,1032.22 270.775,1025.01 270.979,1017.3 271.183,1009.12 271.387,1000.5 271.591,991.483 271.794,982.092 271.998,972.36 272.202,962.321 \n",
" 272.406,952.008 272.609,941.455 272.813,930.694 273.017,919.76 273.221,908.684 273.424,897.5 273.628,886.241 273.832,874.938 274.036,863.624 274.239,852.329 \n",
" 274.443,841.085 274.647,829.922 274.851,818.868 275.054,807.952 275.258,797.202 275.462,786.645 275.666,776.307 275.869,766.211 276.073,756.383 276.277,746.845 \n",
" 276.481,737.618 276.684,728.724 276.888,720.181 277.092,712.008 277.296,704.222 277.499,696.839 277.703,689.874 277.907,683.34 278.111,677.249 278.314,671.612 \n",
" 278.518,666.44 278.722,661.741 278.926,657.522 279.129,653.791 279.333,650.552 279.537,647.809 279.741,645.566 279.945,643.824 280.148,642.585 280.352,641.848 \n",
" 280.556,641.612 280.76,641.875 280.963,642.635 281.167,643.887 281.371,645.627 281.575,647.85 281.778,650.549 281.982,653.718 282.186,657.349 282.39,661.433 \n",
" 282.593,665.962 282.797,670.927 283.001,676.317 283.205,682.122 283.408,688.332 283.612,694.935 283.816,701.919 284.02,709.272 284.223,716.982 284.427,725.037 \n",
" 284.631,733.423 284.835,742.127 285.038,751.137 285.242,760.438 285.446,770.016 285.65,779.859 285.853,789.952 286.057,800.281 286.261,810.832 286.465,821.591 \n",
" 286.668,832.544 286.872,843.675 287.076,854.972 287.28,866.419 287.483,878.002 287.687,889.707 287.891,901.52 288.095,913.425 288.299,925.408 288.502,937.455 \n",
" 288.706,949.551 288.91,961.682 289.114,973.833 289.317,985.99 289.521,998.137 289.725,1010.26 289.929,1022.34 290.132,1034.37 290.336,1046.34 290.54,1058.22 \n",
" 290.744,1070 290.947,1081.66 291.151,1093.2 291.355,1104.6 291.559,1115.83 291.762,1126.89 291.966,1137.76 292.17,1148.43 292.374,1158.87 292.577,1169.08 \n",
" 292.781,1179.03 292.985,1188.72 293.189,1198.12 293.392,1207.22 293.596,1216.01 293.8,1224.47 294.004,1232.57 294.207,1240.32 294.411,1247.69 294.615,1254.66 \n",
" 294.819,1261.22 295.022,1267.36 295.226,1273.06 295.43,1278.3 295.634,1283.08 295.837,1287.37 296.041,1291.16 296.245,1294.45 296.449,1297.2 296.653,1299.42 \n",
" 296.856,1301.09 297.06,1302.2 297.264,1302.74 297.468,1302.69 297.671,1302.05 297.875,1300.8 298.079,1298.94 298.283,1296.47 298.486,1293.37 298.69,1289.63 \n",
" 298.894,1285.26 299.098,1280.25 299.301,1274.59 299.505,1268.28 299.709,1261.33 299.913,1253.73 300.116,1245.48 300.32,1236.59 300.524,1227.06 300.728,1216.89 \n",
" 300.931,1206.09 301.135,1194.67 301.339,1182.64 301.543,1170.01 301.746,1156.78 301.95,1142.98 302.154,1128.61 302.358,1113.69 302.561,1098.24 302.765,1082.27 \n",
" 302.969,1065.82 303.173,1048.88 303.376,1031.5 303.58,1013.69 303.784,995.482 303.988,976.895 304.191,957.958 304.395,938.701 304.599,919.152 304.803,899.343 \n",
" 305.007,879.305 305.21,859.07 305.414,838.672 305.618,818.144 305.822,797.523 306.025,776.844 306.229,756.142 306.433,735.455 306.637,714.82 306.84,694.274 \n",
" 307.044,673.855 307.248,653.602 307.452,633.552 307.655,613.743 307.859,594.214 308.063,575.002 308.267,556.145 308.47,537.679 308.674,519.642 308.878,502.069 \n",
" 309.082,484.996 309.285,468.456 309.489,452.485 309.693,437.114 309.897,422.374 310.1,408.297 310.304,394.912 310.508,382.245 310.712,370.323 310.915,359.171 \n",
" 311.119,348.813 311.323,339.269 311.527,330.559 311.73,322.701 311.934,315.711 312.138,309.603 312.342,304.388 312.545,300.078 312.749,296.679 312.953,294.198 \n",
" 313.157,292.637 313.361,291.999 313.564,292.281 313.768,293.482 313.972,295.595 314.176,298.614 314.379,302.527 314.583,307.323 314.787,312.987 314.991,319.504 \n",
" 315.194,326.853 315.398,335.015 315.602,343.967 315.806,353.683 316.009,364.136 316.213,375.298 316.417,387.137 316.621,399.622 316.824,412.718 317.028,426.389 \n",
" 317.232,440.598 317.436,455.305 317.639,470.472 317.843,486.055 318.047,502.014 318.251,518.303 318.454,534.88 318.658,551.697 318.862,568.71 319.066,585.872 \n",
" 319.269,603.136 319.473,620.454 319.677,637.78 319.881,655.065 320.084,672.263 320.288,689.326 320.492,706.208 320.696,722.861 320.899,739.241 321.103,755.302 \n",
" 321.307,771 321.511,786.291 321.715,801.135 321.918,815.488 322.122,829.313 322.326,842.571 322.53,855.224 322.733,867.239 322.937,878.582 323.141,889.221 \n",
" 323.345,899.126 323.548,908.271 323.752,916.629 323.956,924.178 324.16,930.896 324.363,936.764 324.567,941.766 324.771,945.887 324.975,949.116 325.178,951.443 \n",
" 325.382,952.862 325.586,953.368 325.79,952.958 325.993,951.634 326.197,949.398 326.401,946.256 326.605,942.216 326.808,937.289 327.012,931.486 327.216,924.823 \n",
" 327.42,917.317 327.623,908.989 327.827,899.859 328.031,889.953 328.235,879.295 328.438,867.915 328.642,855.842 328.846,843.107 329.05,829.745 329.254,815.791 \n",
" 329.457,801.281 329.661,786.253 329.865,770.748 330.069,754.805 330.272,738.466 330.476,721.775 330.68,704.774 330.884,687.508 331.087,670.023 331.291,652.363 \n",
" 331.495,634.574 331.699,616.703 331.902,598.796 332.106,580.899 332.31,563.057 332.514,545.318 332.717,527.725 332.921,510.325 333.125,493.162 333.329,476.278 \n",
" 333.532,459.718 333.736,443.523 333.94,427.733 334.144,412.388 334.347,397.528 334.551,383.188 334.755,369.404 334.959,356.211 335.162,343.641 335.366,331.726 \n",
" 335.57,320.493 335.774,309.971 335.977,300.184 336.181,291.158 336.385,282.912 336.589,275.468 336.792,268.842 336.996,263.05 337.2,258.106 337.404,254.021 \n",
" 337.608,250.804 337.811,248.464 338.015,247.004 338.219,246.428 338.423,246.737 338.626,247.93 338.83,250.005 339.034,252.955 339.238,256.773 339.441,261.452 \n",
" 339.645,266.98 339.849,273.345 340.053,280.532 340.256,288.525 340.46,297.307 340.664,306.857 340.868,317.156 341.071,328.182 341.275,339.91 341.479,352.315 \n",
" 341.683,365.372 341.886,379.054 342.09,393.332 342.294,408.178 342.498,423.56 342.701,439.449 342.905,455.813 343.109,472.62 343.313,489.838 343.516,507.432 \n",
" 343.72,525.372 343.924,543.622 344.128,562.148 344.331,580.919 344.535,599.898 344.739,619.054 344.943,638.352 345.146,657.759 345.35,677.242 345.554,696.769 \n",
" 345.758,716.307 345.962,735.826 346.165,755.293 346.369,774.679 346.573,793.954 346.777,813.089 346.98,832.056 347.184,850.827 347.388,869.377 347.592,887.679 \n",
" 347.795,905.71 347.999,923.445 348.203,940.862 348.407,957.939 348.61,974.656 348.814,990.994 349.018,1006.93 349.222,1022.46 349.425,1037.55 349.629,1052.2 \n",
" 349.833,1066.38 350.037,1080.09 350.24,1093.32 350.444,1106.05 350.648,1118.27 350.852,1129.98 351.055,1141.16 351.259,1151.81 351.463,1161.93 351.667,1171.51 \n",
" 351.87,1180.54 352.074,1189.02 352.278,1196.96 352.482,1204.34 352.685,1211.17 352.889,1217.44 353.093,1223.17 353.297,1228.34 353.5,1232.97 353.704,1237.05 \n",
" 353.908,1240.59 354.112,1243.59 354.316,1246.06 354.519,1248 354.723,1249.42 354.927,1250.32 355.131,1250.72 355.334,1250.6 355.538,1250 355.742,1248.9 \n",
" 355.946,1247.33 356.149,1245.28 356.353,1242.77 356.557,1239.81 356.761,1236.4 356.964,1232.55 357.168,1228.28 357.372,1223.59 357.576,1218.5 357.779,1213.01 \n",
" 357.983,1207.13 358.187,1200.88 358.391,1194.26 358.594,1187.29 358.798,1179.98 359.002,1172.34 359.206,1164.38 359.409,1156.11 359.613,1147.54 359.817,1138.7 \n",
" 360.021,1129.58 360.224,1120.2 360.428,1110.58 360.632,1100.73 360.836,1090.66 361.039,1080.39 361.243,1069.92 361.447,1059.28 361.651,1048.47 361.854,1037.52 \n",
" 362.058,1026.43 362.262,1015.22 362.466,1003.91 362.67,992.519 362.873,981.053 363.077,969.532 363.281,957.973 363.485,946.392 363.688,934.807 363.892,923.234 \n",
" 364.096,911.692 364.3,900.197 364.503,888.769 364.707,877.425 364.911,866.183 365.115,855.062 365.318,844.08 365.522,833.256 365.726,822.609 365.93,812.158 \n",
" 366.133,801.922 366.337,791.919 366.541,782.168 366.745,772.688 366.948,763.497 367.152,754.615 367.356,746.058 367.56,737.845 367.763,729.993 367.967,722.52 \n",
" 368.171,715.443 368.375,708.777 368.578,702.539 368.782,696.745 368.986,691.408 369.19,686.543 369.393,682.164 369.597,678.282 369.801,674.91 370.005,672.058 \n",
" 370.208,669.737 370.412,667.955 370.616,666.72 370.82,666.04 371.024,665.921 371.227,666.366 371.431,667.379 371.635,668.962 371.839,671.118 372.042,673.844 \n",
" 372.246,677.139 372.45,681.001 372.654,685.425 372.857,690.405 373.061,695.934 373.265,702.002 373.469,708.6 373.672,715.717 373.876,723.338 374.08,731.449 \n",
" 374.284,740.035 374.487,749.078 374.691,758.559 374.895,768.457 375.099,778.751 375.302,789.418 375.506,800.433 375.71,811.771 375.914,823.405 376.117,835.307 \n",
" 376.321,847.447 376.525,859.796 376.729,872.321 376.932,884.991 377.136,897.773 377.34,910.632 377.544,923.533 377.747,936.443 377.951,949.323 378.155,962.139 \n",
" 378.359,974.853 378.562,987.428 378.766,999.827 378.97,1012.01 379.174,1023.95 379.378,1035.59 379.581,1046.91 379.785,1057.87 379.989,1068.43 380.193,1078.56 \n",
" 380.396,1088.21 380.6,1097.36 380.804,1105.97 381.008,1114.01 381.211,1121.45 381.415,1128.25 381.619,1134.39 381.823,1139.83 382.026,1144.56 382.23,1148.54 \n",
" 382.434,1151.76 382.638,1154.18 382.841,1155.8 383.045,1156.58 383.249,1156.52 383.453,1155.6 383.656,1153.81 383.86,1151.13 384.064,1147.56 384.268,1143.09 \n",
" 384.471,1137.71 384.675,1131.43 384.879,1124.25 385.083,1116.16 385.286,1107.18 385.49,1097.3 385.694,1086.55 385.898,1074.92 386.101,1062.44 386.305,1049.12 \n",
" 386.509,1034.98 386.713,1020.04 386.916,1004.32 387.12,987.856 387.324,970.663 387.528,952.774 387.732,934.221 387.935,915.036 388.139,895.255 388.343,874.913 \n",
" 388.547,854.05 388.75,832.704 388.954,810.918 389.158,788.733 389.362,766.194 389.565,743.344 389.769,720.232 389.973,696.902 390.177,673.403 390.38,649.784 \n",
" 390.584,626.093 390.788,602.38 390.992,578.694 391.195,555.084 391.399,531.602 391.603,508.297 391.807,485.217 392.01,462.413 392.214,439.933 392.418,417.826 \n",
" 392.622,396.137 392.825,374.915 393.029,354.203 393.233,334.048 393.437,314.491 393.64,295.575 393.844,277.34 394.048,259.825 394.252,243.066 394.455,227.1 \n",
" 394.659,211.959 394.863,197.675 395.067,184.278 395.27,171.795 395.474,160.251 395.678,149.669 395.882,140.07 396.086,131.473 396.289,123.892 396.493,117.343 \n",
" 396.697,111.835 396.901,107.378 397.104,103.977 397.308,101.637 397.512,100.357 397.716,100.137 397.919,100.973 398.123,102.858 398.327,105.783 398.531,109.737 \n",
" 398.734,114.707 398.938,120.675 399.142,127.625 399.346,135.534 399.549,144.381 399.753,154.141 399.957,164.786 400.161,176.288 400.364,188.616 400.568,201.738 \n",
" 400.772,215.619 400.976,230.224 401.179,245.516 401.383,261.456 401.587,278.004 401.791,295.119 401.994,312.759 402.198,330.882 402.402,349.443 402.606,368.398 \n",
" 402.809,387.703 403.013,407.312 403.217,427.178 403.421,447.258 403.624,467.503 403.828,487.87 404.032,508.311 404.236,528.782 404.44,549.237 404.643,569.633 \n",
" 404.847,589.925 405.051,610.07 405.255,630.026 405.458,649.752 405.662,669.207 405.866,688.353 406.07,707.152 406.273,725.566 406.477,743.562 406.681,761.105 \n",
" 406.885,778.163 407.088,794.706 407.292,810.705 407.496,826.134 407.7,840.966 407.903,855.178 408.107,868.749 408.311,881.659 408.515,893.89 408.718,905.427 \n",
" 408.922,916.255 409.126,926.363 409.33,935.74 409.533,944.379 409.737,952.274 409.941,959.421 410.145,965.817 410.348,971.462 410.552,976.358 410.756,980.509 \n",
" 410.96,983.919 411.163,986.595 411.367,988.547 411.571,989.785 411.775,990.32 411.979,990.167 412.182,989.339 412.386,987.854 412.59,985.73 412.794,982.985 \n",
" 412.997,979.64 413.201,975.715 413.405,971.234 413.609,966.22 413.812,960.697 414.016,954.69 414.22,948.224 414.424,941.328 414.627,934.026 414.831,926.348 \n",
" 415.035,918.32 415.239,909.972 415.442,901.331 415.646,892.426 415.85,883.286 416.054,873.94 416.257,864.416 416.461,854.743 416.665,844.95 416.869,835.064 \n",
" 417.072,825.113 417.276,815.125 417.48,805.127 417.684,795.144 417.887,785.204 418.091,775.331 418.295,765.551 418.499,755.886 418.702,746.361 418.906,736.997 \n",
" 419.11,727.817 419.314,718.842 419.517,710.091 419.721,701.583 419.925,693.338 420.129,685.372 420.333,677.702 420.536,670.344 420.74,663.312 420.944,656.62 \n",
" 421.148,650.281 421.351,644.307 421.555,638.708 421.759,633.495 421.963,628.677 422.166,624.262 422.37,620.258 422.574,616.672 422.778,613.508 422.981,610.773 \n",
" 423.185,608.47 423.389,606.602 423.593,605.173 423.796,604.184 424,603.637 424.204,603.531 424.408,603.867 424.611,604.645 424.815,605.863 425.019,607.518 \n",
" 425.223,609.61 425.426,612.134 425.63,615.088 425.834,618.468 426.038,622.269 426.241,626.487 426.445,631.116 426.649,636.151 426.853,641.587 427.056,647.417 \n",
" 427.26,653.634 427.464,660.232 427.668,667.203 427.871,674.541 428.075,682.237 428.279,690.284 428.483,698.673 428.687,707.395 428.89,716.443 429.094,725.807 \n",
" 429.298,735.478 429.502,745.446 429.705,755.701 429.909,766.234 430.113,777.034 430.317,788.091 430.52,799.394 430.724,810.931 430.928,822.692 431.132,834.665 \n",
" 431.335,846.838 431.539,859.198 431.743,871.733 431.947,884.429 432.15,897.275 432.354,910.256 432.558,923.358 432.762,936.566 432.965,949.867 433.169,963.245 \n",
" 433.373,976.684 433.577,990.169 433.78,1003.68 433.984,1017.21 434.188,1030.74 434.392,1044.24 434.595,1057.7 434.799,1071.11 435.003,1084.44 435.207,1097.68 \n",
" 435.41,1110.8 435.614,1123.79 435.818,1136.63 436.022,1149.3 436.225,1161.77 436.429,1174.03 436.633,1186.06 436.837,1197.83 437.041,1209.33 437.244,1220.52 \n",
" 437.448,1231.4 437.652,1241.94 437.856,1252.12 438.059,1261.92 438.263,1271.31 438.467,1280.28 438.671,1288.81 438.874,1296.87 439.078,1304.44 439.282,1311.51 \n",
" 439.486,1318.05 439.689,1324.05 439.893,1329.49 440.097,1334.34 440.301,1338.6 440.504,1342.24 440.708,1345.25 440.912,1347.61 441.116,1349.32 441.319,1350.35 \n",
" 441.523,1350.7 441.727,1350.35 441.931,1349.29 442.134,1347.51 442.338,1345.01 442.542,1341.79 442.746,1337.82 442.949,1333.12 443.153,1327.67 443.357,1321.48 \n",
" 443.561,1314.55 443.764,1306.87 443.968,1298.46 444.172,1289.32 444.376,1279.44 444.579,1268.85 444.783,1257.55 444.987,1245.56 445.191,1232.88 445.395,1219.53 \n",
" 445.598,1205.52 445.802,1190.88 446.006,1175.62 446.21,1159.77 446.413,1143.34 446.617,1126.37 446.821,1108.87 447.025,1090.87 447.228,1072.41 447.432,1053.5 \n",
" 447.636,1034.2 447.84,1014.51 448.043,994.485 448.247,974.153 448.451,953.55 448.655,932.713 448.858,911.68 449.062,890.489 449.266,869.18 449.47,847.791 \n",
" 449.673,826.365 449.877,804.941 450.081,783.562 450.285,762.268 450.488,741.101 450.692,720.103 450.896,699.317 451.1,678.782 451.303,658.541 451.507,638.635 \n",
" 451.711,619.104 451.915,599.988 452.118,581.326 452.322,563.157 452.526,545.517 452.73,528.443 452.933,511.971 453.137,496.135 453.341,480.967 453.545,466.498 \n",
" 453.749,452.759 453.952,439.777 454.156,427.579 454.36,416.19 454.564,405.632 454.767,395.927 454.971,387.093 455.175,379.148 455.379,372.105 455.582,365.978 \n",
" 455.786,360.776 455.99,356.509 456.194,353.181 456.397,350.797 456.601,349.357 456.805,348.86 457.009,349.303 457.212,350.679 457.416,352.981 457.62,356.197 \n",
" 457.824,360.315 458.027,365.319 458.231,371.193 458.435,377.915 458.639,385.464 458.842,393.815 459.046,402.944 459.25,412.82 459.454,423.415 459.657,434.695 \n",
" 459.861,446.627 460.065,459.176 460.269,472.304 460.472,485.973 460.676,500.141 460.88,514.769 461.084,529.812 461.287,545.228 461.491,560.972 461.695,576.998 \n",
" 461.899,593.259 462.103,609.709 462.306,626.301 462.51,642.987 462.714,659.718 462.918,676.447 463.121,693.125 463.325,709.705 463.529,726.14 463.733,742.382 \n",
" 463.936,758.385 464.14,774.103 464.344,789.49 464.548,804.503 464.751,819.1 464.955,833.237 465.159,846.874 465.363,859.973 465.566,872.496 465.77,884.406 \n",
" 465.974,895.669 466.178,906.254 466.381,916.128 466.585,925.264 466.789,933.635 466.993,941.217 467.196,947.986 467.4,953.923 467.604,959.011 467.808,963.233 \n",
" 468.011,966.577 468.215,969.032 468.419,970.589 468.623,971.243 468.826,970.99 469.03,969.829 469.234,967.762 469.438,964.793 469.641,960.927 469.845,956.175 \n",
" 470.049,950.546 470.253,944.054 470.457,936.714 470.66,928.546 470.864,919.568 471.068,909.803 471.272,899.275 471.475,888.01 471.679,876.036 471.883,863.383 \n",
" 472.087,850.083 472.29,836.168 472.494,821.673 472.698,806.635 472.902,791.09 473.105,775.078 473.309,758.638 473.513,741.81 473.717,724.636 473.92,707.158 \n",
" 474.124,689.42 474.328,671.465 474.532,653.336 474.735,635.077 474.939,616.734 475.143,598.349 475.347,579.968 475.55,561.634 475.754,543.391 475.958,525.283 \n",
" 476.162,507.351 476.365,489.639 476.569,472.187 476.773,455.037 476.977,438.227 477.18,421.796 477.384,405.782 477.588,390.22 477.792,375.147 477.995,360.595 \n",
" 478.199,346.596 478.403,333.181 478.607,320.379 478.811,308.218 479.014,296.722 479.218,285.916 479.422,275.823 479.626,266.462 479.829,257.852 480.033,250.01 \n",
" 480.237,242.95 480.441,236.685 480.644,231.227 480.848,226.584 481.052,222.764 481.256,219.771 481.459,217.61 481.663,216.281 481.867,215.785 482.071,216.12 \n",
" 482.274,217.281 482.478,219.262 482.682,222.058 482.886,225.657 483.089,230.051 483.293,235.227 483.497,241.171 483.701,247.868 483.904,255.302 484.108,263.455 \n",
" 484.312,272.308 484.516,281.841 484.719,292.033 484.923,302.861 485.127,314.303 485.331,326.334 485.534,338.929 485.738,352.062 485.942,365.708 486.146,379.84 \n",
" 486.349,394.429 486.553,409.449 486.757,424.872 486.961,440.668 487.165,456.809 487.368,473.266 487.572,490.012 487.776,507.016 487.98,524.25 488.183,541.685 \n",
" 488.387,559.293 488.591,577.046 488.795,594.916 488.998,612.874 489.202,630.895 489.406,648.951 489.61,667.016 489.813,685.065 490.017,703.071 490.221,721.011 \n",
" 490.425,738.861 490.628,756.598 490.832,774.198 491.036,791.64 491.24,808.904 491.443,825.967 491.647,842.812 491.851,859.419 492.055,875.769 492.258,891.847 \n",
" 492.462,907.634 492.666,923.116 492.87,938.276 493.073,953.102 493.277,967.58 493.481,981.696 493.685,995.439 493.888,1008.8 494.092,1021.76 494.296,1034.32 \n",
" 494.5,1046.47 494.704,1058.19 494.907,1069.48 495.111,1080.34 495.315,1090.75 495.519,1100.71 495.722,1110.22 495.926,1119.27 496.13,1127.85 496.334,1135.96 \n",
" 496.537,1143.6 496.741,1150.77 496.945,1157.46 497.149,1163.68 497.352,1169.41 497.556,1174.66 497.76,1179.43 497.964,1183.71 498.167,1187.52 498.371,1190.84 \n",
" 498.575,1193.68 498.779,1196.04 498.982,1197.92 499.186,1199.33 499.39,1200.26 499.594,1200.72 499.797,1200.71 500.001,1200.24 500.205,1199.3 500.409,1197.91 \n",
" 500.612,1196.06 500.816,1193.76 501.02,1191.02 501.224,1187.83 501.427,1184.22 501.631,1180.18 501.835,1175.72 502.039,1170.84 502.242,1165.56 502.446,1159.88 \n",
" 502.65,1153.81 502.854,1147.36 503.058,1140.54 503.261,1133.36 503.465,1125.83 503.669,1117.95 503.873,1109.75 504.076,1101.23 504.28,1092.41 504.484,1083.29 \n",
" 504.688,1073.9 504.891,1064.24 505.095,1054.33 505.299,1044.19 505.503,1033.84 505.706,1023.28 505.91,1012.54 506.114,1001.63 506.318,990.575 506.521,979.39 \n",
" 506.725,968.095 506.929,956.711 507.133,945.256 507.336,933.753 507.54,922.222 507.744,910.684 507.948,899.162 508.151,887.679 508.355,876.256 508.559,864.918 \n",
" 508.763,853.686 508.966,842.585 509.17,831.638 509.374,820.869 509.578,810.301 509.781,799.958 509.985,789.864 510.189,780.043 510.393,770.517 510.596,761.31 \n",
" 510.8,752.445 511.004,743.945 511.208,735.83 511.412,728.124 511.615,720.847 511.819,714.019 512.023,707.66 512.227,701.79 512.43,696.426 512.634,691.587 \n",
" 512.838,687.287 513.042,683.543 513.245,680.369 513.449,677.778 513.653,675.782 513.857,674.393 514.06,673.618 514.264,673.467 514.468,673.947 514.672,675.062 \n",
" 514.875,676.816 515.079,679.213 515.283,682.251 515.487,685.931 515.69,690.25 515.894,695.203 516.098,700.785 516.302,706.989 516.505,713.805 516.709,721.222 \n",
" 516.913,729.228 517.117,737.808 517.32,746.947 517.524,756.626 517.728,766.826 517.932,777.527 518.135,788.705 518.339,800.337 518.543,812.396 518.747,824.856 \n",
" 518.95,837.689 519.154,850.863 519.358,864.348 519.562,878.111 519.766,892.119 519.969,906.336 520.173,920.727 520.377,935.255 520.581,949.882 520.784,964.57 \n",
" 520.988,979.279 521.192,993.97 521.396,1008.6 521.599,1023.14 521.803,1037.53 522.007,1051.74 522.211,1065.73 522.414,1079.46 522.618,1092.88 522.822,1105.96 \n",
" 523.026,1118.65 523.229,1130.92 523.433,1142.73 523.637,1154.03 523.841,1164.79 524.044,1174.97 524.248,1184.55 524.452,1193.47 524.656,1201.72 524.859,1209.26 \n",
" 525.063,1216.05 525.267,1222.07 525.471,1227.3 525.674,1231.7 525.878,1235.25 526.082,1237.94 526.286,1239.74 526.489,1240.63 526.693,1240.6 526.897,1239.64 \n",
" 527.101,1237.73 527.304,1234.87 527.508,1231.04 527.712,1226.25 527.916,1220.49 528.12,1213.77 528.323,1206.08 528.527,1197.44 528.731,1187.85 528.935,1177.31 \n",
" 529.138,1165.85 529.342,1153.47 529.546,1140.2 529.75,1126.06 529.953,1111.06 530.157,1095.23 530.361,1078.6 530.565,1061.19 530.768,1043.04 530.972,1024.18 \n",
" 531.176,1004.64 531.38,984.461 531.583,963.679 531.787,942.333 531.991,920.466 532.195,898.119 532.398,875.336 532.602,852.163 532.806,828.645 533.01,804.831 \n",
" 533.213,780.768 533.417,756.504 533.621,732.09 533.825,707.575 534.028,683.01 534.232,658.444 534.436,633.929 534.64,609.514 534.843,585.251 535.047,561.19 \n",
" 535.251,537.379 535.455,513.868 535.658,490.705 535.862,467.938 536.066,445.614 536.27,423.777 536.474,402.472 536.677,381.742 536.881,361.629 537.085,342.172 \n",
" 537.289,323.411 537.492,305.381 537.696,288.118 537.9,271.655 538.104,256.023 538.307,241.251 538.511,227.366 538.715,214.392 538.919,202.353 539.122,191.267 \n",
" 539.326,181.154 539.53,172.028 539.734,163.903 539.937,156.789 540.141,150.694 540.345,145.625 540.549,141.585 540.752,138.573 540.956,136.59 541.16,135.63 \n",
" 541.364,135.688 541.567,136.755 541.771,138.819 541.975,141.868 542.179,145.885 542.382,150.853 542.586,156.752 542.79,163.56 542.994,171.253 543.197,179.805 \n",
" 543.401,189.189 543.605,199.376 543.809,210.333 544.012,222.03 544.216,234.431 544.42,247.502 544.624,261.205 544.828,275.504 545.031,290.36 545.235,305.732 \n",
" 545.439,321.581 545.643,337.865 545.846,354.543 546.05,371.572 546.254,388.91 546.458,406.515 546.661,424.344 546.865,442.353 547.069,460.5 547.273,478.743 \n",
" 547.476,497.04 547.68,515.348 547.884,533.627 548.088,551.837 548.291,569.937 548.495,587.888 548.699,605.653 548.903,623.195 549.106,640.477 549.31,657.466 \n",
" 549.514,674.127 549.718,690.428 549.921,706.339 550.125,721.831 550.329,736.875 550.533,751.446 550.736,765.518 550.94,779.069 551.144,792.077 551.348,804.523 \n",
" 551.551,816.388 551.755,827.657 551.959,838.314 552.163,848.348 552.366,857.746 552.57,866.501 552.774,874.604 552.978,882.05 553.182,888.834 553.385,894.954 \n",
" 553.589,900.41 553.793,905.203 553.997,909.334 554.2,912.808 554.404,915.632 554.608,917.811 554.812,919.354 555.015,920.271 555.219,920.574 555.423,920.275 \n",
" 555.627,919.387 555.83,917.925 556.034,915.905 556.238,913.344 556.442,910.26 556.645,906.672 556.849,902.598 557.053,898.06 557.257,893.077 557.46,887.673 \n",
" 557.664,881.867 557.868,875.684 558.072,869.146 558.275,862.276 558.479,855.097 558.683,847.634 558.887,839.911 559.09,831.95 559.294,823.777 559.498,815.414 \n",
" 559.702,806.887 559.905,798.217 560.109,789.43 560.313,780.548 560.517,771.594 560.72,762.591 560.924,753.561 561.128,744.526 561.332,735.507 561.536,726.525 \n",
" 561.739,717.601 561.943,708.754 562.147,700.005 562.351,691.371 562.554,682.871 562.758,674.523 562.962,666.343 563.166,658.348 563.369,650.555 563.573,642.977 \n",
" 563.777,635.63 563.981,628.527 564.184,621.681 564.388,615.106 564.592,608.813 564.796,602.814 564.999,597.119 565.203,591.739 565.407,586.684 565.611,581.961 \n",
" 565.814,577.58 566.018,573.549 566.222,569.876 566.426,566.566 566.629,563.627 566.833,561.064 567.037,558.883 567.241,557.09 567.444,555.687 567.648,554.68 \n",
" 567.852,554.073 568.056,553.868 568.259,554.069 568.463,554.679 568.667,555.698 568.871,557.13 569.074,558.976 569.278,561.237 569.482,563.914 569.686,567.007 \n",
" 569.89,570.516 570.093,574.442 570.297,578.784 570.501,583.54 570.705,588.711 570.908,594.293 571.112,600.287 571.316,606.688 571.52,613.495 571.723,620.705 \n",
" 571.927,628.314 572.131,636.319 572.335,644.715 572.538,653.497 572.742,662.662 572.946,672.203 573.15,682.114 573.353,692.389 573.557,703.021 573.761,714.003 \n",
" 573.965,725.325 574.168,736.981 574.372,748.96 574.576,761.252 574.78,773.848 574.983,786.736 575.187,799.905 575.391,813.342 575.595,827.035 575.798,840.969 \n",
" 576.002,855.131 576.206,869.505 576.41,884.076 576.613,898.828 576.817,913.742 577.021,928.802 577.225,943.99 577.429,959.285 577.632,974.668 577.836,990.12 \n",
" 578.04,1005.62 578.244,1021.14 578.447,1036.67 578.651,1052.17 578.855,1067.63 579.059,1083.03 579.262,1098.33 579.466,1113.51 579.67,1128.56 579.874,1143.43 \n",
" 580.077,1158.11 580.281,1172.57 580.485,1186.79 580.689,1200.73 580.892,1214.37 581.096,1227.68 581.3,1240.65 581.504,1253.23 581.707,1265.4 581.911,1277.14 \n",
" 582.115,1288.42 582.319,1299.21 582.522,1309.5 582.726,1319.24 582.93,1328.43 583.134,1337.03 583.337,1345.03 583.541,1352.39 583.745,1359.11 583.949,1365.15 \n",
" 584.152,1370.5 584.356,1375.14 584.56,1379.05 584.764,1382.22 584.967,1384.63 585.171,1386.26 585.375,1387.11 585.579,1387.16 585.783,1386.41 585.986,1384.84 \n",
" 586.19,1382.45 586.394,1379.24 586.598,1375.2 586.801,1370.33 587.005,1364.63 587.209,1358.1 587.413,1350.75 587.616,1342.59 587.82,1333.61 588.024,1323.83 \n",
" 588.228,1313.27 588.431,1301.93 588.635,1289.83 588.839,1276.98 589.043,1263.41 589.246,1249.14 589.45,1234.18 589.654,1218.57 589.858,1202.33 590.061,1185.48 \n",
" 590.265,1168.05 590.469,1150.08 590.673,1131.6 590.876,1112.64 591.08,1093.24 591.284,1073.42 591.488,1053.24 591.691,1032.73 591.895,1011.92 592.099,990.864 \n",
" 592.303,969.598 592.506,948.163 592.71,926.605 592.914,904.966 593.118,883.289 593.321,861.621 593.525,840.004 593.729,818.484 593.933,797.106 594.137,775.914 \n",
" 594.34,754.952 594.544,734.265 594.748,713.896 594.952,693.887 595.155,674.283 595.359,655.122 595.563,636.448 595.767,618.297 595.97,600.711 596.174,583.724 \n",
" 596.378,567.373 596.582,551.693 596.785,536.715 596.989,522.472 597.193,508.992 597.397,496.303 597.6,484.43 597.804,473.396 598.008,463.225 598.212,453.933 \n",
" 598.415,445.54 598.619,438.06 598.823,431.504 599.027,425.885 599.23,421.209 599.434,417.482 599.638,414.708 599.842,412.886 600.045,412.015 600.249,412.091 \n",
" 600.453,413.107 600.657,415.054 600.86,417.921 601.064,421.693 601.268,426.354 601.472,431.885 601.675,438.267 601.879,445.475 602.083,453.485 602.287,462.269 \n",
" 602.491,471.798 602.694,482.041 602.898,492.964 603.102,504.532 603.306,516.71 603.509,529.459 603.713,542.739 603.917,556.509 604.121,570.728 604.324,585.351 \n",
" 604.528,600.335 604.732,615.635 604.936,631.203 605.139,646.994 605.343,662.961 605.547,679.055 605.751,695.23 605.954,711.436 606.158,727.627 606.362,743.754 \n",
" 606.566,759.77 606.769,775.627 606.973,791.279 607.177,806.681 607.381,821.786 607.584,836.551 607.788,850.933 607.992,864.888 608.196,878.377 608.399,891.36 \n",
" 608.603,903.799 608.807,915.656 609.011,926.899 609.214,937.492 609.418,947.406 609.622,956.61 609.826,965.077 610.029,972.782 610.233,979.702 610.437,985.816 \n",
" 610.641,991.105 610.845,995.552 611.048,999.142 611.252,1001.87 611.456,1003.71 611.66,1004.67 611.863,1004.74 612.067,1003.92 612.271,1002.21 612.475,999.604 \n",
" 612.678,996.116 612.882,991.748 613.086,986.511 613.29,980.416 613.493,973.477 613.697,965.709 613.901,957.13 614.105,947.761 614.308,937.622 614.512,926.738 \n",
" 614.716,915.134 614.92,902.838 615.123,889.879 615.327,876.286 615.531,862.093 615.735,847.333 615.938,832.039 616.142,816.249 616.346,799.999 616.55,783.326 \n",
" 616.753,766.27 616.957,748.87 617.161,731.167 617.365,713.2 617.568,695.012 617.772,676.642 617.976,658.134 618.18,639.528 618.383,620.867 618.587,602.191 \n",
" 618.791,583.542 618.995,564.962 619.199,546.489 619.402,528.166 619.606,510.03 619.81,492.12 620.014,474.474 620.217,457.129 620.421,440.121 620.625,423.485 \n",
" 620.829,407.253 621.032,391.46 621.236,376.135 621.44,361.309 621.644,347.01 621.847,333.265 622.051,320.099 622.255,307.537 622.459,295.601 622.662,284.311 \n",
" 622.866,273.687 623.07,263.746 623.274,254.505 623.477,245.977 623.681,238.174 623.885,231.108 624.089,224.788 624.292,219.221 624.496,214.413 624.7,210.367 \n",
" 624.904,207.088 625.107,204.574 625.311,202.827 625.515,201.843 625.719,201.62 625.922,202.151 626.126,203.431 626.33,205.451 626.534,208.202 626.737,211.674 \n",
" 626.941,215.854 627.145,220.731 627.349,226.291 627.553,232.517 627.756,239.394 627.96,246.906 628.164,255.034 628.368,263.76 628.571,273.065 628.775,282.928 \n",
" 628.979,293.329 629.183,304.246 629.386,315.659 629.59,327.545 629.794,339.881 629.998,352.646 630.201,365.815 630.405,379.365 630.609,393.274 630.813,407.518 \n",
" 631.016,422.073 631.22,436.916 631.424,452.023 631.628,467.372 631.831,482.938 632.035,498.699 632.239,514.632 632.443,530.715 632.646,546.925 632.85,563.24 \n",
" 633.054,579.639 633.258,596.1 633.461,612.603 633.665,629.126 633.869,645.651 634.073,662.156 634.276,678.624 634.48,695.034 634.684,711.369 634.888,727.612 \n",
" 635.091,743.744 635.295,759.748 635.499,775.609 635.703,791.31 635.907,806.835 636.11,822.17 636.314,837.3 636.518,852.211 636.722,866.888 636.925,881.32 \n",
" 637.129,895.491 637.333,909.391 637.537,923.007 637.74,936.327 637.944,949.34 638.148,962.035 638.352,974.401 638.555,986.428 638.759,998.106 638.963,1009.43 \n",
" 639.167,1020.38 639.37,1030.95 639.574,1041.14 639.778,1050.94 639.982,1060.33 640.185,1069.31 640.389,1077.88 640.593,1086.02 640.797,1093.73 641,1101 \n",
" 641.204,1107.83 641.408,1114.21 641.612,1120.13 641.815,1125.6 642.019,1130.59 642.223,1135.12 642.427,1139.17 642.63,1142.75 642.834,1145.84 643.038,1148.45 \n",
" 643.242,1150.58 643.445,1152.21 643.649,1153.36 643.853,1154.01 644.057,1154.18 644.261,1153.85 644.464,1153.03 644.668,1151.72 644.872,1149.92 645.076,1147.64 \n",
" 645.279,1144.88 645.483,1141.64 645.687,1137.93 645.891,1133.75 646.094,1129.11 646.298,1124.01 646.502,1118.47 646.706,1112.49 646.909,1106.08 647.113,1099.25 \n",
" 647.317,1092.01 647.521,1084.38 647.724,1076.37 647.928,1067.98 648.132,1059.24 648.336,1050.17 648.539,1040.76 648.743,1031.06 648.947,1021.06 649.151,1010.8 \n",
" 649.354,1000.28 649.558,989.542 649.762,978.592 649.966,967.457 650.169,956.159 650.373,944.721 650.577,933.169 650.781,921.526 650.984,909.818 651.188,898.072 \n",
" 651.392,886.313 651.596,874.568 651.799,862.865 652.003,851.232 652.207,839.696 652.411,828.285 652.615,817.028 652.818,805.953 653.022,795.089 653.226,784.464 \n",
" 653.43,774.105 653.633,764.042 653.837,754.302 654.041,744.912 654.245,735.9 654.448,727.291 654.652,719.113 654.856,711.389 655.06,704.144 655.263,697.403 \n",
" 655.467,691.188 655.671,685.52 655.875,680.421 656.078,675.91 656.282,672.006 656.486,668.725 656.69,666.084 656.893,664.097 657.097,662.777 657.301,662.136 \n",
" 657.505,662.182 657.708,662.925 657.912,664.372 658.116,666.526 658.32,669.391 658.523,672.968 658.727,677.257 658.931,682.255 659.135,687.958 659.338,694.359 \n",
" 659.542,701.451 659.746,709.224 659.95,717.665 660.154,726.76 660.357,736.495 660.561,746.85 660.765,757.808 660.969,769.345 661.172,781.44 661.376,794.067 \n",
" 661.58,807.199 661.784,820.809 661.987,834.866 662.191,849.338 662.395,864.194 662.599,879.398 662.802,894.915 663.006,910.708 663.21,926.738 663.414,942.968 \n",
" 663.617,959.355 663.821,975.86 664.025,992.44 664.229,1009.05 664.432,1025.66 664.636,1042.21 664.84,1058.66 665.044,1074.97 665.247,1091.09 665.451,1106.98 \n",
" 665.655,1122.6 665.859,1137.9 666.062,1152.84 666.266,1167.38 666.47,1181.46 666.674,1195.06 666.877,1208.13 667.081,1220.63 667.285,1232.52 667.489,1243.77 \n",
" 667.692,1254.33 667.896,1264.17 668.1,1273.27 668.304,1281.58 668.508,1289.07 668.711,1295.73 668.915,1301.52 669.119,1306.42 669.323,1310.4 669.526,1313.45 \n",
" 669.73,1315.55 669.934,1316.68 670.138,1316.82 670.341,1315.97 670.545,1314.12 670.749,1311.26 670.953,1307.39 671.156,1302.51 671.36,1296.61 671.564,1289.7 \n",
" 671.768,1281.78 671.971,1272.87 672.175,1262.98 672.379,1252.11 672.583,1240.29 672.786,1227.53 672.99,1213.86 673.194,1199.29 673.398,1183.85 673.601,1167.57 \n",
" 673.805,1150.48 674.009,1132.6 674.213,1113.98 674.416,1094.65 674.62,1074.64 674.824,1053.99 675.028,1032.75 675.231,1010.95 675.435,988.645 675.639,965.871 \n",
" 675.843,942.675 676.046,919.105 676.25,895.207 676.454,871.031 676.658,846.626 676.862,822.041 677.065,797.325 677.269,772.53 677.473,747.705 677.677,722.901 \n",
" 677.88,698.168 678.084,673.556 678.288,649.114 678.492,624.892 678.695,600.939 678.899,577.301 679.103,554.026 679.307,531.159 679.51,508.746 679.714,486.829 \n",
" 679.918,465.45 680.122,444.651 680.325,424.47 680.529,404.945 680.733,386.112 680.937,368.004 681.14,350.654 681.344,334.091 681.548,318.344 681.752,303.439 \n",
" 681.955,289.399 682.159,276.247 682.363,264.001 682.567,252.679 682.77,242.295 682.974,232.862 683.178,224.39 683.382,216.887 683.585,210.358 683.789,204.807 \n",
" 683.993,200.234 684.197,196.637 684.4,194.014 684.604,192.357 684.808,191.659 685.012,191.908 685.216,193.093 685.419,195.199 685.623,198.208 685.827,202.102 \n",
" 686.031,206.861 686.234,212.462 686.438,218.881 686.642,226.092 686.846,234.068 687.049,242.779 687.253,252.196 687.457,262.287 687.661,273.02 687.864,284.36 \n",
" 688.068,296.272 688.272,308.722 688.476,321.672 688.679,335.085 688.883,348.923 689.087,363.149 689.291,377.723 689.494,392.607 689.698,407.762 689.902,423.148 \n",
" 690.106,438.727 690.309,454.459 690.513,470.307 690.717,486.232 690.921,502.196 691.124,518.162 691.328,534.093 691.532,549.954 691.736,565.709 691.939,581.323 \n",
" 692.143,596.764 692.347,612 692.551,626.999 692.754,641.73 692.958,656.166 693.162,670.278 693.366,684.04 693.57,697.427 693.773,710.415 693.977,722.982 \n",
" 694.181,735.108 694.385,746.773 694.588,757.959 694.792,768.65 694.996,778.83 695.2,788.488 695.403,797.61 695.607,806.186 695.811,814.209 696.015,821.67 \n",
" 696.218,828.563 696.422,834.884 696.626,840.631 696.83,845.802 697.033,850.396 697.237,854.414 697.441,857.86 697.645,860.737 697.848,863.05 698.052,864.805 \n",
" 698.256,866.009 698.46,866.671 698.663,866.799 698.867,866.406 699.071,865.501 699.275,864.096 699.478,862.206 699.682,859.843 699.886,857.023 700.09,853.76 \n",
" 700.293,850.069 700.497,845.968 700.701,841.474 700.905,836.602 701.108,831.371 701.312,825.799 701.516,819.904 701.72,813.705 701.924,807.22 702.127,800.467 \n",
" 702.331,793.467 702.535,786.237 702.739,778.797 702.942,771.165 703.146,763.362 703.35,755.404 703.554,747.311 703.757,739.102 703.961,730.794 704.165,722.407 \n",
" 704.369,713.957 704.572,705.462 704.776,696.941 704.98,688.409 705.184,679.885 705.387,671.383 705.591,662.921 705.795,654.514 705.999,646.179 706.202,637.929 \n",
" 706.406,629.78 706.61,621.747 706.814,613.844 707.017,606.085 707.221,598.482 707.425,591.051 707.629,583.803 707.832,576.751 708.036,569.907 708.24,563.284 \n",
" 708.444,556.893 708.647,550.746 708.851,544.853 709.055,539.227 709.259,533.877 709.462,528.814 709.666,524.047 709.87,519.588 710.074,515.446 710.278,511.63 \n",
" 710.481,508.149 710.685,505.013 710.889,502.23 711.093,499.809 711.296,497.758 711.5,496.085 711.704,494.799 711.908,493.906 712.111,493.415 712.315,493.332 \n",
" 712.519,493.664 712.723,494.417 712.926,495.599 713.13,497.215 713.334,499.27 713.538,501.77 713.741,504.721 713.945,508.125 714.149,511.988 714.353,516.313 \n",
" 714.556,521.103 714.76,526.361 714.964,532.09 715.168,538.29 715.371,544.963 715.575,552.11 715.779,559.73 715.983,567.823 716.186,576.387 716.39,585.419 \n",
" 716.594,594.918 716.798,604.878 717.001,615.296 717.205,626.167 717.409,637.484 717.613,649.24 717.816,661.427 718.02,674.037 718.224,687.059 718.428,700.483 \n",
" 718.632,714.298 718.835,728.49 719.039,743.046 719.243,757.951 719.447,773.19 719.65,788.746 719.854,804.601 720.058,820.737 720.262,837.135 720.465,853.774 \n",
" 720.669,870.631 720.873,887.686 721.077,904.914 721.28,922.291 721.484,939.793 721.688,957.393 721.892,975.065 722.095,992.781 722.299,1010.51 722.503,1028.23 \n",
" 722.707,1045.91 722.91,1063.51 723.114,1081.02 723.318,1098.39 723.522,1115.59 723.725,1132.6 723.929,1149.38 724.133,1165.9 724.337,1182.12 724.54,1198.03 \n",
" 724.744,1213.57 724.948,1228.73 725.152,1243.47 725.355,1257.76 725.559,1271.57 725.763,1284.86 725.967,1297.61 726.17,1309.79 726.374,1321.36 726.578,1332.31 \n",
" 726.782,1342.61 726.986,1352.22 727.189,1361.13 727.393,1369.3 727.597,1376.73 727.801,1383.38 728.004,1389.24 728.208,1394.29 728.412,1398.51 728.616,1401.88 \n",
" 728.819,1404.4 729.023,1406.05 729.227,1406.82 729.431,1406.7 729.634,1405.69 729.838,1403.78 730.042,1400.98 730.246,1397.26 730.449,1392.65 730.653,1387.15 \n",
" 730.857,1380.75 731.061,1373.46 731.264,1365.31 731.468,1356.29 731.672,1346.42 731.876,1335.72 732.079,1324.2 732.283,1311.89 732.487,1298.81 732.691,1284.97 \n",
" 732.894,1270.41 733.098,1255.15 733.302,1239.23 733.506,1222.67 733.709,1205.5 733.913,1187.76 734.117,1169.49 734.321,1150.73 734.524,1131.5 734.728,1111.86 \n",
" 734.932,1091.83 735.136,1071.47 735.34,1050.82 735.543,1029.93 735.747,1008.82 735.951,987.562 736.155,966.188 736.358,944.748 736.562,923.289 736.766,901.857 \n",
" 736.97,880.5 737.173,859.263 737.377,838.194 737.581,817.339 737.785,796.744 737.988,776.455 738.192,756.515 738.396,736.968 738.6,717.859 738.803,699.228 \n",
" 739.007,681.116 739.211,663.563 739.415,646.607 739.618,630.284 739.822,614.629 740.026,599.677 740.23,585.457 740.433,572.001 740.637,559.335 740.841,547.486 \n",
" 741.045,536.477 741.248,526.329 741.452,517.062 741.656,508.693 741.86,501.236 742.063,494.703 742.267,489.105 742.471,484.447 742.675,480.737 742.879,477.975 \n",
" 743.082,476.162 743.286,475.295 743.49,475.369 743.694,476.376 743.897,478.307 744.101,481.149 744.305,484.887 744.509,489.505 744.712,494.982 744.916,501.297 \n",
" 745.12,508.426 745.324,516.343 745.527,525.02 745.731,534.427 745.935,544.531 746.139,555.301 746.342,566.699 746.546,578.689 746.75,591.233 746.954,604.29 \n",
" 747.157,617.819 747.361,631.778 747.565,646.124 747.769,660.812 747.972,675.798 748.176,691.035 748.38,706.477 748.584,722.078 748.787,737.79 748.991,753.566 \n",
" 749.195,769.359 749.399,785.122 749.602,800.807 749.806,816.37 750.01,831.762 750.214,846.939 750.417,861.857 750.621,876.471 750.825,890.738 751.029,904.617 \n",
" 751.233,918.066 751.436,931.047 751.64,943.521 751.844,955.452 752.048,966.805 752.251,977.547 752.455,987.646 752.659,997.073 752.863,1005.8 753.066,1013.8 \n",
" 753.27,1021.05 753.474,1027.53 753.678,1033.22 753.881,1038.09 754.085,1042.15 754.289,1045.37 754.493,1047.74 754.696,1049.25 754.9,1049.9 755.104,1049.68 \n",
" 755.308,1048.6 755.511,1046.64 755.715,1043.82 755.919,1040.15 756.123,1035.61 756.326,1030.23 756.53,1024.02 756.734,1016.99 756.938,1009.16 757.141,1000.54 \n",
" 757.345,991.145 757.549,981.007 757.753,970.145 757.956,958.583 758.16,946.346 758.364,933.463 758.568,919.962 758.771,905.873 758.975,891.228 759.179,876.058 \n",
" 759.383,860.398 759.587,844.282 759.79,827.746 759.994,810.825 760.198,793.556 760.402,775.976 760.605,758.123 760.809,740.035 761.013,721.751 761.217,703.308 \n",
" 761.42,684.745 761.624,666.1 761.828,647.411 762.032,628.717 762.235,610.055 762.439,591.462 762.643,572.974 762.847,554.628 763.05,536.459 763.254,518.501 \n",
" 763.458,500.789 763.662,483.355 763.865,466.23 764.069,449.446 764.273,433.032 764.477,417.018 764.68,401.43 764.884,386.294 765.088,371.636 765.292,357.479 \n",
" 765.495,343.845 765.699,330.755 765.903,318.228 766.107,306.284 766.31,294.937 766.514,284.205 766.718,274.099 766.922,264.634 767.125,255.819 767.329,247.664 \n",
" 767.533,240.177 767.737,233.366 767.941,227.235 768.144,221.788 768.348,217.028 768.552,212.956 768.756,209.573 768.959,206.877 769.163,204.866 769.367,203.536 \n",
" 769.571,202.883 769.774,202.9 769.978,203.582 770.182,204.921 770.386,206.907 770.589,209.531 770.793,212.783 770.997,216.651 771.201,221.124 771.404,226.188 \n",
" 771.608,231.831 771.812,238.038 772.016,244.795 772.219,252.087 772.423,259.898 772.627,268.212 772.831,277.013 773.034,286.284 773.238,296.009 773.442,306.17 \n",
" 773.646,316.75 773.849,327.731 774.053,339.095 774.257,350.824 774.461,362.901 774.664,375.308 774.868,388.027 775.072,401.039 775.276,414.326 775.479,427.872 \n",
" 775.683,441.657 775.887,455.664 776.091,469.875 776.295,484.274 776.498,498.841 776.702,513.561 776.906,528.415 777.11,543.387 777.313,558.46 777.517,573.616 \n",
" 777.721,588.841 777.925,604.116 778.128,619.426 778.332,634.754 778.536,650.085 778.74,665.402 778.943,680.691 779.147,695.934 779.351,711.118 779.555,726.226 \n",
" 779.758,741.243 779.962,756.154 780.166,770.944 780.37,785.599 780.573,800.103 780.777,814.442 780.981,828.6 781.185,842.565 781.388,856.32 781.592,869.852 \n",
" 781.796,883.147 782,896.191 782.203,908.969 782.407,921.467 782.611,933.673 782.815,945.571 783.018,957.149 783.222,968.394 783.426,979.292 783.63,989.83 \n",
" 783.833,999.995 784.037,1009.78 784.241,1019.16 784.445,1028.13 784.649,1036.68 784.852,1044.8 785.056,1052.48 785.26,1059.7 785.464,1066.46 785.667,1072.74 \n",
" 785.871,1078.54 786.075,1083.85 786.279,1088.65 786.482,1092.95 786.686,1096.73 786.89,1099.99 787.094,1102.72 787.297,1104.92 787.501,1106.58 787.705,1107.69 \n",
" 787.909,1108.27 788.112,1108.3 788.316,1107.78 788.52,1106.72 788.724,1105.11 788.927,1102.96 789.131,1100.27 789.335,1097.04 789.539,1093.28 789.742,1089 \n",
" 789.946,1084.2 790.15,1078.88 790.354,1073.07 790.557,1066.77 790.761,1059.99 790.965,1052.74 791.169,1045.04 791.372,1036.91 791.576,1028.36 791.78,1019.41 \n",
" 791.984,1010.08 792.187,1000.38 792.391,990.338 792.595,979.978 792.799,969.322 793.003,958.392 793.206,947.214 793.41,935.814 793.614,924.218 793.818,912.455 \n",
" 794.021,900.553 794.225,888.541 794.429,876.448 794.633,864.306 794.836,852.145 795.04,839.996 795.244,827.892 795.448,815.865 795.651,803.947 795.855,792.172 \n",
" 796.059,780.57 796.263,769.177 796.466,758.023 796.67,747.142 796.874,736.566 797.078,726.327 797.281,716.456 797.485,706.984 797.689,697.942 797.893,689.359 \n",
" 798.096,681.264 798.3,673.686 798.504,666.651 798.708,660.184 798.911,654.312 799.115,649.057 799.319,644.442 799.523,640.488 799.726,637.213 799.93,634.637 \n",
" 800.134,632.775 800.338,631.641 800.541,631.249 800.745,631.61 800.949,632.733 801.153,634.624 801.357,637.291 801.56,640.735 801.764,644.959 801.968,649.961 \n",
" 802.172,655.739 802.375,662.288 802.579,669.602 802.783,677.67 802.987,686.482 803.19,696.025 803.394,706.284 803.598,717.24 803.802,728.876 804.005,741.168 \n",
" 804.209,754.094 804.413,767.629 804.617,781.744 804.82,796.413 805.024,811.602 805.228,827.281 805.432,843.414 805.635,859.966 805.839,876.901 806.043,894.179 \n",
" 806.247,911.76 806.45,929.605 806.654,947.67 806.858,965.913 807.062,984.289 807.265,1002.76 807.469,1021.26 807.673,1039.77 807.877,1058.23 808.08,1076.59 \n",
" 808.284,1094.82 808.488,1112.85 808.692,1130.65 808.895,1148.16 809.099,1165.35 809.303,1182.17 809.507,1198.56 809.711,1214.5 809.914,1229.93 810.118,1244.8 \n",
" 810.322,1259.09 810.526,1272.75 810.729,1285.73 810.933,1298.01 811.137,1309.55 811.341,1320.31 811.544,1330.25 811.748,1339.36 811.952,1347.59 812.156,1354.93 \n",
" 812.359,1361.35 812.563,1366.82 812.767,1371.32 812.971,1374.84 813.174,1377.36 813.378,1378.86 813.582,1379.34 813.786,1378.79 813.989,1377.2 814.193,1374.56 \n",
" 814.397,1370.88 814.601,1366.16 814.804,1360.4 815.008,1353.6 815.212,1345.78 815.416,1336.95 815.619,1327.12 815.823,1316.3 816.027,1304.53 816.231,1291.8 \n",
" 816.434,1278.16 816.638,1263.63 816.842,1248.23 817.046,1231.99 817.249,1214.95 817.453,1197.13 817.657,1178.58 817.861,1159.33 818.065,1139.42 818.268,1118.88 \n",
" 818.472,1097.77 818.676,1076.13 818.88,1053.99 819.083,1031.41 819.287,1008.43 819.491,985.092 819.695,961.452 819.898,937.555 820.102,913.45 820.306,889.186 \n",
" 820.51,864.812 820.713,840.378 820.917,815.932 821.121,791.524 821.325,767.203 821.528,743.016 821.732,719.011 821.936,695.236 822.14,671.737 822.343,648.558 \n",
" 822.547,625.745 822.751,603.339 822.955,581.383 823.158,559.918 823.362,538.983 823.566,518.614 823.77,498.848 823.973,479.719 824.177,461.26 824.381,443.501 \n",
" 824.585,426.47 824.788,410.195 824.992,394.7 825.196,380.007 825.4,366.138 825.604,353.11 825.807,340.94 826.011,329.642 826.215,319.228 826.419,309.707 \n",
" 826.622,301.086 826.826,293.372 827.03,286.566 827.234,280.67 827.437,275.683 827.641,271.601 827.845,268.418 828.049,266.127 828.252,264.719 828.456,264.181 \n",
" 828.66,264.501 828.864,265.664 829.067,267.651 829.271,270.445 829.475,274.025 829.679,278.369 829.882,283.454 830.086,289.255 830.29,295.746 830.494,302.899 \n",
" 830.697,310.686 830.901,319.078 831.105,328.044 831.309,337.552 831.512,347.571 831.716,358.068 831.92,369.01 832.124,380.362 832.327,392.091 832.531,404.162 \n",
" 832.735,416.541 832.939,429.192 833.142,442.082 833.346,455.174 833.55,468.436 833.754,481.833 833.958,495.33 834.161,508.894 834.365,522.493 834.569,536.094 \n",
" 834.773,549.665 834.976,563.176 835.18,576.595 835.384,589.893 835.588,603.043 835.791,616.016 835.995,628.785 836.199,641.326 836.403,653.613 836.606,665.623 \n",
" 836.81,677.335 837.014,688.726 837.218,699.778 837.421,710.471 837.625,720.787 837.829,730.712 838.033,740.229 838.236,749.326 838.44,757.989 838.644,766.207 \n",
" 838.848,773.972 839.051,781.273 839.255,788.103 839.459,794.457 839.663,800.328 839.866,805.714 840.07,810.61 840.274,815.016 840.478,818.931 840.681,822.354 \n",
" 840.885,825.288 841.089,827.735 841.293,829.698 841.496,831.181 841.7,832.19 841.904,832.73 842.108,832.807 842.312,832.429 842.515,831.605 842.719,830.342 \n",
" 842.923,828.651 843.127,826.54 843.33,824.02 843.534,821.103 843.738,817.799 843.942,814.121 844.145,810.08 844.349,805.688 844.553,800.959 844.757,795.905 \n",
" 844.96,790.539 845.164,784.876 845.368,778.928 845.572,772.71 845.775,766.235 845.979,759.517 846.183,752.57 846.387,745.409 846.59,738.047 846.794,730.499 \n",
" 846.998,722.779 847.202,714.9 847.405,706.878 847.609,698.726 847.813,690.459 848.017,682.09 848.22,673.635 848.424,665.105 848.628,656.517 848.832,647.883 \n",
" 849.035,639.218 849.239,630.535 849.443,621.848 849.647,613.172 849.85,604.52 850.054,595.905 850.258,587.342 850.462,578.845 850.666,570.426 850.869,562.1 \n",
" 851.073,553.881 851.277,545.782 851.481,537.817 851.684,530.001 851.888,522.346 852.092,514.866 852.296,507.576 852.499,500.489 852.703,493.619 852.907,486.981 \n",
" 853.111,480.587 853.314,474.452 853.518,468.59 853.722,463.015 853.926,457.739 854.129,452.778 854.333,448.145 854.537,443.854 854.741,439.917 854.944,436.349 \n",
" 855.148,433.163 855.352,430.371 855.556,427.987 855.759,426.023 855.963,424.492 856.167,423.406 856.371,422.776 856.574,422.615 856.778,422.932 856.982,423.739 \n",
" 857.186,425.046 857.389,426.862 857.593,429.196 857.797,432.058 858.001,435.454 858.204,439.392 858.408,443.878 858.612,448.918 858.816,454.517 859.02,460.679 \n",
" 859.223,467.407 859.427,474.703 859.631,482.569 859.835,491.004 860.038,500.008 860.242,509.58 860.446,519.716 860.65,530.412 860.853,541.662 861.057,553.462 \n",
" 861.261,565.802 861.465,578.674 861.668,592.068 861.872,605.972 862.076,620.375 862.28,635.261 862.483,650.616 862.687,666.423 862.891,682.665 863.095,699.323 \n",
" 863.298,716.376 863.502,733.802 863.706,751.579 863.91,769.684 864.113,788.09 864.317,806.772 864.521,825.702 864.725,844.852 864.928,864.193 865.132,883.693 \n",
" 865.336,903.322 865.54,923.047 865.743,942.836 865.947,962.655 866.151,982.469 866.355,1002.24 866.558,1021.94 866.762,1041.53 866.966,1060.97 867.17,1080.23 \n",
" 867.374,1099.27 867.577,1118.05 867.781,1136.53 867.985,1154.69 868.189,1172.47 868.392,1189.86 868.596,1206.8 868.8,1223.27 869.004,1239.22 869.207,1254.64 \n",
" 869.411,1269.47 869.615,1283.69 869.819,1297.27 870.022,1310.18 870.226,1322.39 870.43,1333.86 870.634,1344.58 870.837,1354.51 871.041,1363.63 871.245,1371.93 \n",
" 871.449,1379.37 871.652,1385.94 871.856,1391.63 872.06,1396.41 872.264,1400.27 872.467,1403.21 872.671,1405.2 872.875,1406.25 873.079,1406.35 873.282,1405.49 \n",
" 873.486,1403.68 873.69,1400.91 873.894,1397.19 874.097,1392.52 874.301,1386.91 874.505,1380.38 874.709,1372.92 874.912,1364.57 875.116,1355.32 875.32,1345.21 \n",
" 875.524,1334.25 875.728,1322.47 875.931,1309.89 876.135,1296.54 876.339,1282.44 876.543,1267.63 876.746,1252.14 876.95,1236 877.154,1219.26 877.358,1201.94 \n",
" 877.561,1184.09 877.765,1165.74 877.969,1146.95 878.173,1127.74 878.376,1108.17 878.58,1088.28 878.784,1068.12 878.988,1047.73 879.191,1027.16 879.395,1006.46 \n",
" 879.599,985.666 879.803,964.84 880.006,944.025 880.21,923.269 880.414,902.621 880.618,882.129 880.821,861.84 881.025,841.8 881.229,822.056 881.433,802.654 \n",
" 881.636,783.638 881.84,765.052 882.044,746.938 882.248,729.336 882.451,712.288 882.655,695.831 882.859,680.002 883.063,664.835 883.266,650.365 883.47,636.622 \n",
" 883.674,623.636 883.878,611.434 884.082,600.042 884.285,589.482 884.489,579.776 884.693,570.942 884.897,562.996 885.1,555.953 885.304,549.822 885.508,544.615 \n",
" 885.712,540.336 885.915,536.99 886.119,534.579 886.323,533.101 886.527,532.553 886.73,532.93 886.934,534.222 887.138,536.419 887.342,539.508 887.545,543.472 \n",
" 887.749,548.295 887.953,553.957 888.157,560.434 888.36,567.702 888.564,575.736 888.768,584.506 888.972,593.982 889.175,604.133 889.379,614.923 889.583,626.319 \n",
" 889.787,638.283 889.99,650.777 890.194,663.76 890.398,677.193 890.602,691.034 890.805,705.239 891.009,719.766 891.213,734.57 891.417,749.605 891.62,764.828 \n",
" 891.824,780.192 892.028,795.651 892.232,811.16 892.436,826.673 892.639,842.144 892.843,857.528 893.047,872.78 893.251,887.855 893.454,902.71 893.658,917.303 \n",
" 893.862,931.59 894.066,945.532 894.269,959.088 894.473,972.219 894.677,984.888 894.881,997.058 895.084,1008.7 895.288,1019.77 895.492,1030.25 895.696,1040.09 \n",
" 895.899,1049.29 896.103,1057.8 896.307,1065.61 896.511,1072.69 896.714,1079.03 896.918,1084.6 897.122,1089.39 897.326,1093.38 897.529,1096.57 897.733,1098.94 \n",
" 897.937,1100.48 898.141,1101.19 898.344,1101.07 898.548,1100.11 898.752,1098.32 898.956,1095.7 899.159,1092.24 899.363,1087.97 899.567,1082.89 899.771,1077 \n",
" 899.975,1070.32 900.178,1062.87 900.382,1054.66 900.586,1045.71 900.79,1036.04 900.993,1025.67 901.197,1014.61 901.401,1002.91 901.605,990.571 901.808,977.631 \n",
" 902.012,964.115 902.216,950.052 902.42,935.471 902.623,920.403 902.827,904.878 903.031,888.93 903.235,872.59 903.438,855.892 903.642,838.869 903.846,821.555 \n",
" 904.05,803.984 904.253,786.191 904.457,768.21 904.661,750.076 904.865,731.823 905.068,713.485 905.272,695.096 905.476,676.69 905.68,658.3 905.883,639.958 \n",
" 906.087,621.698 906.291,603.551 906.495,585.548 906.698,567.718 906.902,550.092 907.106,532.699 907.31,515.565 907.513,498.718 907.717,482.184 907.921,465.988 \n",
" 908.125,450.153 908.329,434.702 908.532,419.658 908.736,405.04 908.94,390.868 909.144,377.161 909.347,363.935 909.551,351.207 909.755,338.992 909.959,327.302 \n",
" 910.162,316.152 910.366,305.552 910.57,295.513 910.774,286.043 910.977,277.151 911.181,268.844 911.385,261.127 911.589,254.006 911.792,247.485 911.996,241.565 \n",
" 912.2,236.25 912.404,231.539 912.607,227.433 912.811,223.932 913.015,221.032 913.219,218.733 913.422,217.03 913.626,215.92 913.83,215.398 914.034,215.458 \n",
" 914.237,216.095 914.441,217.302 914.645,219.072 914.849,221.396 915.052,224.267 915.256,227.677 915.46,231.615 915.664,236.073 915.867,241.041 916.071,246.508 \n",
" 916.275,252.464 916.479,258.897 916.683,265.798 916.886,273.154 917.09,280.953 917.294,289.184 917.498,297.835 917.701,306.894 917.905,316.347 918.109,326.183 \n",
" 918.313,336.389 918.516,346.951 918.72,357.856 918.924,369.092 919.128,380.645 919.331,392.501 919.535,404.646 919.739,417.068 919.943,429.751 920.146,442.683 \n",
" 920.35,455.848 920.554,469.232 920.758,482.821 920.961,496.6 921.165,510.555 921.369,524.669 921.573,538.928 921.776,553.317 921.98,567.82 922.184,582.421 \n",
" 922.388,597.104 922.591,611.853 922.795,626.652 922.999,641.484 923.203,656.333 923.406,671.181 923.61,686.011 923.814,700.806 924.018,715.549 924.221,730.222 \n",
" 924.425,744.807 924.629,759.286 924.833,773.64 925.037,787.852 925.24,801.904 925.444,815.776 925.648,829.45 925.852,842.907 926.055,856.13 926.259,869.099 \n",
" 926.463,881.796 926.667,894.202 926.87,906.299 927.074,918.068 927.278,929.492 927.482,940.553 927.685,951.233 927.889,961.515 928.093,971.382 928.297,980.817 \n",
" 928.5,989.804 928.704,998.328 928.908,1006.37 929.112,1013.92 929.315,1020.97 929.519,1027.49 929.723,1033.48 929.927,1038.93 930.13,1043.82 930.334,1048.15 \n",
" 930.538,1051.9 930.742,1055.07 930.945,1057.64 931.149,1059.63 931.353,1061.01 931.557,1061.78 931.76,1061.95 931.964,1061.51 932.168,1060.46 932.372,1058.8 \n",
" 932.575,1056.54 932.779,1053.67 932.983,1050.21 933.187,1046.15 933.391,1041.52 933.594,1036.31 933.798,1030.53 934.002,1024.21 934.206,1017.35 934.409,1009.97 \n",
" 934.613,1002.09 934.817,993.711 935.021,984.869 935.224,975.579 935.428,965.862 935.632,955.743 935.836,945.246 936.039,934.396 936.243,923.22 936.447,911.746 \n",
" 936.651,900.003 936.854,888.023 937.058,875.834 937.262,863.47 937.466,850.964 937.669,838.348 937.873,825.658 938.077,812.928 938.281,800.193 938.484,787.49 \n",
" 938.688,774.855 938.892,762.324 939.096,749.933 939.299,737.72 939.503,725.721 939.707,713.973 939.911,702.511 940.114,691.373 940.318,680.593 940.522,670.207 \n",
" 940.726,660.249 940.929,650.752 941.133,641.75 941.337,633.274 941.541,625.355 941.745,618.023 941.948,611.307 942.152,605.233 942.356,599.828 942.56,595.115 \n",
" 942.763,591.118 942.967,587.857 943.171,585.353 943.375,583.622 943.578,582.679 943.782,582.54 943.986,583.215 944.19,584.715 944.393,587.047 944.597,590.216 \n",
" 944.801,594.226 945.005,599.077 945.208,604.77 945.412,611.299 945.616,618.661 945.82,626.847 946.023,635.846 946.227,645.647 946.431,656.235 946.635,667.593 \n",
" 946.838,679.703 947.042,692.542 947.246,706.088 947.45,720.315 947.653,735.197 947.857,750.703 948.061,766.803 948.265,783.464 948.468,800.65 948.672,818.326 \n",
" 948.876,836.454 949.08,854.994 949.283,873.905 949.487,893.145 949.691,912.67 949.895,932.438 950.099,952.401 950.302,972.514 950.506,992.731 950.71,1013 \n",
" 950.914,1033.28 951.117,1053.52 951.321,1073.67 951.525,1093.68 951.729,1113.51 951.932,1133.1 952.136,1152.41 952.34,1171.39 952.544,1189.99 952.747,1208.17 \n",
" 952.951,1225.88 953.155,1243.07 953.359,1259.71 953.562,1275.74 953.766,1291.14 953.97,1305.85 954.174,1319.84 954.377,1333.08 954.581,1345.53 954.785,1357.16 \n",
" 954.989,1367.93 955.192,1377.82 955.396,1386.79 955.6,1394.83 955.804,1401.91 956.007,1408.01 956.211,1413.12 956.415,1417.21 956.619,1420.28 956.822,1422.31 \n",
" 957.026,1423.29 957.23,1423.22 957.434,1422.1 957.637,1419.92 957.841,1416.68 958.045,1412.4 958.249,1407.08 958.453,1400.72 958.656,1393.33 958.86,1384.94 \n",
" 959.064,1375.56 959.268,1365.2 959.471,1353.89 959.675,1341.65 959.879,1328.51 960.083,1314.49 960.286,1299.63 960.49,1283.95 960.694,1267.48 960.898,1250.27 \n",
" 961.101,1232.35 961.305,1213.75 961.509,1194.52 961.713,1174.69 961.916,1154.32 962.12,1133.43 962.324,1112.08 962.528,1090.32 962.731,1068.17 962.935,1045.7 \n",
" 963.139,1022.95 963.343,999.968 963.546,976.795 963.75,953.483 963.954,930.079 964.158,906.629 964.361,883.181 964.565,859.781 964.769,836.475 964.973,813.31 \n",
" 965.176,790.328 965.38,767.575 965.584,745.094 965.788,722.925 965.991,701.111 966.195,679.69 966.399,658.701 966.603,638.18 966.807,618.164 967.01,598.685 \n",
" 967.214,579.776 967.418,561.468 967.622,543.788 967.825,526.765 968.029,510.422 968.233,494.784 968.437,479.87 968.64,465.702 968.844,452.295 969.048,439.665 \n",
" 969.252,427.826 969.455,416.787 969.659,406.56 969.863,397.15 970.067,388.563 970.27,380.802 970.474,373.868 970.678,367.76 970.882,362.476 971.085,358.01 \n",
" 971.289,354.358 971.493,351.509 971.697,349.455 971.9,348.184 972.104,347.682 972.308,347.934 972.512,348.925 972.715,350.636 972.919,353.048 973.123,356.141 \n",
" 973.327,359.893 973.53,364.281 973.734,369.282 973.938,374.871 974.142,381.021 974.345,387.708 974.549,394.902 974.753,402.577 974.957,410.704 975.161,419.254 \n",
" 975.364,428.198 975.568,437.506 975.772,447.149 975.976,457.096 976.179,467.318 976.383,477.785 976.587,488.466 976.791,499.332 976.994,510.354 977.198,521.502 \n",
" 977.402,532.747 977.606,544.062 977.809,555.417 978.013,566.787 978.217,578.143 978.421,589.46 978.624,600.713 978.828,611.876 979.032,622.926 979.236,633.84 \n",
" 979.439,644.595 979.643,655.17 979.847,665.545 980.051,675.699 980.254,685.614 980.458,695.273 980.662,704.658 980.866,713.754 981.069,722.546 981.273,731.021 \n",
" 981.477,739.164 981.681,746.965 981.884,754.413 982.088,761.497 982.292,768.208 982.496,774.538 982.7,780.481 982.903,786.029 983.107,791.177 983.311,795.921 \n",
" 983.515,800.256 983.718,804.181 983.922,807.692 984.126,810.787 984.33,813.468 984.533,815.732 984.737,817.581 984.941,819.016 985.145,820.039 985.348,820.653 \n",
" 985.552,820.859 985.756,820.662 985.96,820.066 986.163,819.075 986.367,817.694 986.571,815.928 986.775,813.783 986.978,811.265 987.182,808.38 987.386,805.136 \n",
" 987.59,801.539 987.793,797.596 987.997,793.315 988.201,788.704 988.405,783.772 988.608,778.525 988.812,772.974 989.016,767.127 989.22,760.993 989.423,754.58 \n",
" 989.627,747.9 989.831,740.961 990.035,733.773 990.238,726.346 990.442,718.69 990.646,710.817 990.85,702.736 991.054,694.459 991.257,685.997 991.461,677.361 \n",
" 991.665,668.563 991.869,659.614 992.072,650.528 992.276,641.316 992.48,631.99 992.684,622.565 992.887,613.052 993.091,603.466 993.295,593.821 993.499,584.13 \n",
" 993.702,574.408 993.906,564.67 994.11,554.93 994.314,545.205 994.517,535.509 994.721,525.86 994.925,516.272 995.129,506.763 995.332,497.35 995.536,488.049 \n",
" 995.74,478.879 995.944,469.857 996.147,461 996.351,452.328 996.555,443.858 996.759,435.608 996.962,427.599 997.166,419.848 997.37,412.375 997.574,405.198 \n",
" 997.777,398.337 997.981,391.811 998.185,385.638 998.389,379.837 998.592,374.428 998.796,369.43 999,364.859 999.204,360.735 999.408,357.076 999.611,353.899 \n",
" 999.815,351.22 1000.02,349.058 1000.22,347.427 1000.43,346.343 1000.63,345.821 1000.83,345.876 1001.04,346.52 1001.24,347.767 1001.45,349.628 1001.65,352.114 \n",
" 1001.85,355.235 1002.06,359 1002.26,363.417 1002.46,368.492 1002.67,374.231 1002.87,380.639 1003.08,387.718 1003.28,395.47 1003.48,403.896 1003.69,412.994 \n",
" 1003.89,422.763 1004.09,433.199 1004.3,444.296 1004.5,456.048 1004.71,468.446 1004.91,481.48 1005.11,495.141 1005.32,509.413 1005.52,524.283 1005.72,539.736 \n",
" 1005.93,555.753 1006.13,572.316 1006.34,589.403 1006.54,606.994 1006.74,625.064 1006.95,643.588 1007.15,662.54 1007.35,681.892 1007.56,701.615 1007.76,721.679 \n",
" 1007.97,742.052 1008.17,762.701 1008.37,783.593 1008.58,804.692 1008.78,825.962 1008.98,847.367 1009.19,868.869 1009.39,890.43 1009.6,912.01 1009.8,933.57 \n",
" 1010,955.07 1010.21,976.47 1010.41,997.728 1010.61,1018.8 1010.82,1039.66 1011.02,1060.24 1011.23,1080.53 1011.43,1100.47 1011.63,1120.02 1011.84,1139.14 \n",
" 1012.04,1157.8 1012.24,1175.96 1012.45,1193.58 1012.65,1210.61 1012.86,1227.04 1013.06,1242.81 1013.26,1257.9 1013.47,1272.28 1013.67,1285.9 1013.87,1298.76 \n",
" 1014.08,1310.8 1014.28,1322.02 1014.49,1332.38 1014.69,1341.87 1014.89,1350.45 1015.1,1358.12 1015.3,1364.85 1015.5,1370.63 1015.71,1375.45 1015.91,1379.29 \n",
" 1016.12,1382.16 1016.32,1384.03 1016.52,1384.92 1016.73,1384.81 1016.93,1383.71 1017.13,1381.62 1017.34,1378.55 1017.54,1374.5 1017.75,1369.49 1017.95,1363.53 \n",
" 1018.15,1356.62 1018.36,1348.8 1018.56,1340.08 1018.76,1330.48 1018.97,1320.03 1019.17,1308.74 1019.38,1296.66 1019.58,1283.8 1019.78,1270.21 1019.99,1255.91 \n",
" 1020.19,1240.94 1020.39,1225.34 1020.6,1209.14 1020.8,1192.39 1021.01,1175.14 1021.21,1157.41 1021.41,1139.25 1021.62,1120.72 1021.82,1101.86 1022.02,1082.7 \n",
" 1022.23,1063.31 1022.43,1043.73 1022.64,1024 1022.84,1004.18 1023.04,984.312 1023.25,964.448 1023.45,944.637 1023.65,924.926 1023.86,905.365 1024.06,885.999 \n",
" 1024.27,866.878 1024.47,848.046 1024.67,829.55 1024.88,811.433 1025.08,793.74 1025.28,776.511 1025.49,759.789 1025.69,743.612 1025.9,728.019 1026.1,713.044 \n",
" 1026.3,698.723 1026.51,685.087 1026.71,672.169 1026.91,659.995 1027.12,648.593 1027.32,637.987 1027.53,628.198 1027.73,619.248 1027.93,611.153 1028.14,603.928 \n",
" 1028.34,597.587 1028.54,592.14 1028.75,587.594 1028.95,583.956 1029.16,581.227 1029.36,579.41 1029.56,578.501 1029.77,578.497 1029.97,579.39 1030.17,581.172 \n",
" 1030.38,583.832 1030.58,587.355 1030.79,591.725 1030.99,596.924 1031.19,602.932 1031.4,609.727 1031.6,617.282 1031.8,625.573 1032.01,634.571 1032.21,644.246 \n",
" 1032.42,654.566 1032.62,665.497 1032.82,677.005 1033.03,689.054 1033.23,701.606 1033.43,714.623 1033.64,728.064 1033.84,741.89 1034.05,756.058 1034.25,770.527 \n",
" 1034.45,785.254 1034.66,800.196 1034.86,815.309 1035.06,830.549 1035.27,845.873 1035.47,861.236 1035.68,876.596 1035.88,891.908 1036.08,907.129 1036.29,922.217 \n",
" 1036.49,937.13 1036.69,951.826 1036.9,966.265 1037.1,980.407 1037.31,994.213 1037.51,1007.65 1037.71,1020.67 1037.92,1033.25 1038.12,1045.35 1038.32,1056.94 \n",
" 1038.53,1067.99 1038.73,1078.47 1038.94,1088.35 1039.14,1097.61 1039.34,1106.22 1039.55,1114.16 1039.75,1121.41 1039.95,1127.94 1040.16,1133.75 1040.36,1138.82 \n",
" 1040.57,1143.13 1040.77,1146.68 1040.97,1149.45 1041.18,1151.44 1041.38,1152.64 1041.59,1153.06 1041.79,1152.67 1041.99,1151.5 1042.2,1149.54 1042.4,1146.79 \n",
" 1042.6,1143.26 1042.81,1138.95 1043.01,1133.89 1043.22,1128.07 1043.42,1121.51 1043.62,1114.23 1043.83,1106.24 1044.03,1097.55 1044.23,1088.19 1044.44,1078.18 \n",
" 1044.64,1067.53 1044.85,1056.26 1045.05,1044.41 1045.25,1032 1045.46,1019.04 1045.66,1005.57 1045.86,991.613 1046.07,977.194 1046.27,962.344 1046.48,947.089 \n",
" 1046.68,931.459 1046.88,915.483 1047.09,899.191 1047.29,882.612 1047.49,865.776 1047.7,848.714 1047.9,831.455 1048.11,814.029 1048.31,796.465 1048.51,778.794 \n",
" 1048.72,761.045 1048.92,743.247 1049.12,725.428 1049.33,707.616 1049.53,689.839 1049.74,672.125 1049.94,654.5 1050.14,636.99 1050.35,619.62 1050.55,602.415 \n",
" 1050.75,585.399 1050.96,568.594 1051.16,552.025 1051.37,535.711 1051.57,519.674 1051.77,503.933 1051.98,488.509 1052.18,473.418 1052.38,458.679 1052.59,444.308 \n",
" 1052.79,430.321 1053,416.732 1053.2,403.556 1053.4,390.805 1053.61,378.492 1053.81,366.629 1054.01,355.225 1054.22,344.291 1054.42,333.836 1054.63,323.867 \n",
" 1054.83,314.393 1055.03,305.42 1055.24,296.954 1055.44,289.001 1055.64,281.565 1055.85,274.65 1056.05,268.259 1056.26,262.396 1056.46,257.063 1056.66,252.26 \n",
" 1056.87,247.99 1057.07,244.252 1057.27,241.048 1057.48,238.376 1057.68,236.235 1057.89,234.625 1058.09,233.544 1058.29,232.988 1058.5,232.957 1058.7,233.447 \n",
" 1058.9,234.454 1059.11,235.975 1059.31,238.007 1059.52,240.544 1059.72,243.582 1059.92,247.116 1060.13,251.14 1060.33,255.649 1060.53,260.638 1060.74,266.098 \n",
" 1060.94,272.025 1061.15,278.41 1061.35,285.247 1061.55,292.528 1061.76,300.244 1061.96,308.387 1062.16,316.949 1062.37,325.92 1062.57,335.29 1062.78,345.051 \n",
" 1062.98,355.19 1063.18,365.698 1063.39,376.563 1063.59,387.773 1063.79,399.316 1064,411.18 1064.2,423.352 1064.41,435.817 1064.61,448.562 1064.81,461.572 \n",
" 1065.02,474.833 1065.22,488.327 1065.42,502.041 1065.63,515.956 1065.83,530.055 1066.04,544.322 1066.24,558.737 1066.44,573.283 1066.65,587.94 1066.85,602.688 \n",
" 1067.05,617.508 1067.26,632.378 1067.46,647.279 1067.67,662.189 1067.87,677.086 1068.07,691.947 1068.28,706.752 1068.48,721.476 1068.68,736.097 1068.89,750.593 \n",
" 1069.09,764.939 1069.3,779.112 1069.5,793.088 1069.7,806.845 1069.91,820.357 1070.11,833.603 1070.31,846.558 1070.52,859.199 1070.72,871.502 1070.93,883.446 \n",
" 1071.13,895.008 1071.33,906.164 1071.54,916.895 1071.74,927.179 1071.94,936.994 1072.15,946.322 1072.35,955.143 1072.56,963.438 1072.76,971.191 1072.96,978.383 \n",
" 1073.17,985 1073.37,991.027 1073.57,996.449 1073.78,1001.26 1073.98,1005.43 1074.19,1008.97 1074.39,1011.87 1074.59,1014.1 1074.8,1015.68 1075,1016.59 \n",
" 1075.2,1016.84 1075.41,1016.41 1075.61,1015.31 1075.82,1013.55 1076.02,1011.11 1076.22,1008.02 1076.43,1004.27 1076.63,999.873 1076.83,994.839 1077.04,989.178 \n",
" 1077.24,982.904 1077.45,976.031 1077.65,968.575 1077.85,960.555 1078.06,951.988 1078.26,942.898 1078.46,933.305 1078.67,923.235 1078.87,912.713 1079.08,901.766 \n",
" 1079.28,890.423 1079.48,878.713 1079.69,866.667 1079.89,854.317 1080.09,841.697 1080.3,828.842 1080.5,815.786 1080.71,802.566 1080.91,789.22 1081.11,775.784 \n",
" 1081.32,762.298 1081.52,748.801 1081.72,735.331 1081.93,721.929 1082.13,708.635 1082.34,695.489 1082.54,682.531 1082.74,669.801 1082.95,657.339 1083.15,645.185 \n",
" 1083.36,633.377 1083.56,621.955 1083.76,610.956 1083.97,600.418 1084.17,590.377 1084.37,580.868 1084.58,571.926 1084.78,563.583 1084.99,555.872 1085.19,548.823 \n",
" 1085.39,542.465 1085.6,536.826 1085.8,531.931 1086,527.804 1086.21,524.468 1086.41,521.942 1086.62,520.245 1086.82,519.394 1087.02,519.402 1087.23,520.282 \n",
" 1087.43,522.043 1087.63,524.693 1087.84,528.237 1088.04,532.678 1088.25,538.018 1088.45,544.253 1088.65,551.38 1088.86,559.392 1089.06,568.282 1089.26,578.036 \n",
" 1089.47,588.642 1089.67,600.084 1089.88,612.344 1090.08,625.401 1090.28,639.233 1090.49,653.814 1090.69,669.117 1090.89,685.115 1091.1,701.774 1091.3,719.064 \n",
" 1091.51,736.948 1091.71,755.39 1091.91,774.353 1092.12,793.796 1092.32,813.678 1092.52,833.957 1092.73,854.588 1092.93,875.527 1093.14,896.728 1093.34,918.144 \n",
" 1093.54,939.727 1093.75,961.429 1093.95,983.201 1094.15,1004.99 1094.36,1026.76 1094.56,1048.45 1094.77,1070 1094.97,1091.38 1095.17,1112.54 1095.38,1133.42 \n",
" 1095.58,1153.97 1095.78,1174.16 1095.99,1193.92 1096.19,1213.22 1096.4,1232.01 1096.6,1250.25 1096.8,1267.89 1097.01,1284.89 1097.21,1301.22 1097.41,1316.83 \n",
" 1097.62,1331.69 1097.82,1345.77 1098.03,1359.02 1098.23,1371.43 1098.43,1382.96 1098.64,1393.58 1098.84,1403.27 1099.04,1412.01 1099.25,1419.77 1099.45,1426.55 \n",
" 1099.66,1432.32 1099.86,1437.07 1100.06,1440.79 1100.27,1443.48 1100.47,1445.12 1100.67,1445.72 1100.88,1445.27 1101.08,1443.77 1101.29,1441.24 1101.49,1437.67 \n",
" 1101.69,1433.07 1101.9,1427.47 1102.1,1420.86 1102.3,1413.27 1102.51,1404.72 1102.71,1395.22 1102.92,1384.79 1103.12,1373.48 1103.32,1361.29 1103.53,1348.26 \n",
" 1103.73,1334.41 1103.93,1319.79 1104.14,1304.42 1104.34,1288.33 1104.55,1271.57 1104.75,1254.18 1104.95,1236.18 1105.16,1217.63 1105.36,1198.56 1105.56,1179.01 \n",
" 1105.77,1159.03 1105.97,1138.66 1106.18,1117.94 1106.38,1096.92 1106.58,1075.64 1106.79,1054.15 1106.99,1032.49 1107.19,1010.7 1107.4,988.837 1107.6,966.935 \n",
" 1107.81,945.04 1108.01,923.195 1108.21,901.443 1108.42,879.826 1108.62,858.384 1108.82,837.157 1109.03,816.185 1109.23,795.505 1109.44,775.153 1109.64,755.167 \n",
" 1109.84,735.578 1110.05,716.421 1110.25,697.726 1110.45,679.524 1110.66,661.842 1110.86,644.707 1111.07,628.144 1111.27,612.175 1111.47,596.823 1111.68,582.107 \n",
" 1111.88,568.046 1112.08,554.654 1112.29,541.946 1112.49,529.935 1112.7,518.632 1112.9,508.045 1113.1,498.181 1113.31,489.045 1113.51,480.641 1113.71,472.971 \n",
" 1113.92,466.035 1114.12,459.83 1114.33,454.354 1114.53,449.602 1114.73,445.567 1114.94,442.241 1115.14,439.615 1115.34,437.678 1115.55,436.418 1115.75,435.82 \n",
" 1115.96,435.872 1116.16,436.556 1116.36,437.856 1116.57,439.753 1116.77,442.23 1116.97,445.265 1117.18,448.839 1117.38,452.93 1117.59,457.516 1117.79,462.574 \n",
" 1117.99,468.082 1118.2,474.015 1118.4,480.35 1118.6,487.062 1118.81,494.127 1119.01,501.52 1119.22,509.217 1119.42,517.191 1119.62,525.419 1119.83,533.876 \n",
" 1120.03,542.536 1120.23,551.375 1120.44,560.369 1120.64,569.495 1120.85,578.727 1121.05,588.043 1121.25,597.42 1121.46,606.835 1121.66,616.267 1121.86,625.693 \n",
" 1122.07,635.093 1122.27,644.447 1122.48,653.735 1122.68,662.937 1122.88,672.035 1123.09,681.012 1123.29,689.849 1123.5,698.53 1123.7,707.04 1123.9,715.363 \n",
" 1124.11,723.485 1124.31,731.392 1124.51,739.07 1124.72,746.508 1124.92,753.693 1125.13,760.614 1125.33,767.261 1125.53,773.623 1125.74,779.692 1125.94,785.459 \n",
" 1126.14,790.916 1126.35,796.055 1126.55,800.87 1126.76,805.353 1126.96,809.5 1127.16,813.305 1127.37,816.762 1127.57,819.869 1127.77,822.62 1127.98,825.013 \n",
" 1128.18,827.045 1128.39,828.712 1128.59,830.013 1128.79,830.945 1129,831.508 1129.2,831.701 1129.4,831.522 1129.61,830.971 1129.81,830.048 1130.02,828.754 \n",
" 1130.22,827.089 1130.42,825.054 1130.63,822.651 1130.83,819.88 1131.03,816.744 1131.24,813.245 1131.44,809.385 1131.65,805.168 1131.85,800.596 1132.05,795.673 \n",
" 1132.26,790.403 1132.46,784.791 1132.66,778.84 1132.87,772.556 1133.07,765.944 1133.28,759.011 1133.48,751.762 1133.68,744.203 1133.89,736.343 1134.09,728.189 \n",
" 1134.29,719.748 1134.5,711.03 1134.7,702.043 1134.91,692.798 1135.11,683.304 1135.31,673.572 1135.52,663.614 1135.72,653.44 1135.92,643.065 1136.13,632.501 \n",
" 1136.33,621.761 1136.54,610.86 1136.74,599.812 1136.94,588.634 1137.15,577.342 1137.35,565.952 1137.55,554.481 1137.76,542.948 1137.96,531.371 1138.17,519.769 \n",
" 1138.37,508.163 1138.57,496.572 1138.78,485.017 1138.98,473.519 1139.18,462.101 1139.39,450.784 1139.59,439.591 1139.8,428.545 1140,417.67 1140.2,406.99 \n",
" 1140.41,396.527 1140.61,386.307 1140.81,376.354 1141.02,366.691 1141.22,357.345 1141.43,348.339 1141.63,339.699 1141.83,331.447 1142.04,323.609 1142.24,316.208 \n",
" 1142.44,309.269 1142.65,302.815 1142.85,296.868 1143.06,291.451 1143.26,286.587 1143.46,282.295 1143.67,278.598 1143.87,275.514 1144.07,273.062 1144.28,271.261 \n",
" 1144.48,270.128 1144.69,269.678 1144.89,269.927 1145.09,270.888 1145.3,272.574 1145.5,274.997 1145.7,278.165 1145.91,282.088 1146.11,286.772 1146.32,292.223 \n",
" 1146.52,298.445 1146.72,305.44 1146.93,313.209 1147.13,321.751 1147.33,331.064 1147.54,341.142 1147.74,351.98 1147.95,363.57 1148.15,375.902 1148.35,388.965 \n",
" 1148.56,402.745 1148.76,417.228 1148.96,432.396 1149.17,448.23 1149.37,464.711 1149.58,481.817 1149.78,499.522 1149.98,517.803 1150.19,536.631 1150.39,555.978 \n",
" 1150.59,575.814 1150.8,596.107 1151,616.824 1151.21,637.93 1151.41,659.39 1151.61,681.166 1151.82,703.22 1152.02,725.512 1152.22,748.004 1152.43,770.654 \n",
" 1152.63,793.419 1152.84,816.257 1153.04,839.126 1153.24,861.981 1153.45,884.778 1153.65,907.474 1153.85,930.024 1154.06,952.383 1154.26,974.508 1154.47,996.353 \n",
" 1154.67,1017.88 1154.87,1039.03 1155.08,1059.78 1155.28,1080.07 1155.48,1099.88 1155.69,1119.15 1155.89,1137.84 1156.1,1155.93 1156.3,1173.36 1156.5,1190.11 \n",
" 1156.71,1206.15 1156.91,1221.42 1157.11,1235.92 1157.32,1249.6 1157.52,1262.44 1157.73,1274.41 1157.93,1285.5 1158.13,1295.66 1158.34,1304.9 1158.54,1313.18 \n",
" 1158.74,1320.5 1158.95,1326.84 1159.15,1332.18 1159.36,1336.53 1159.56,1339.87 1159.76,1342.2 1159.97,1343.52 1160.17,1343.84 1160.37,1343.14 1160.58,1341.45 \n",
" 1160.78,1338.76 1160.99,1335.09 1161.19,1330.46 1161.39,1324.87 1161.6,1318.35 1161.8,1310.91 1162,1302.59 1162.21,1293.4 1162.41,1283.37 1162.62,1272.52 \n",
" 1162.82,1260.9 1163.02,1248.53 1163.23,1235.45 1163.43,1221.69 1163.63,1207.3 1163.84,1192.31 1164.04,1176.76 1164.25,1160.69 1164.45,1144.15 1164.65,1127.19 \n",
" 1164.86,1109.84 1165.06,1092.16 1165.27,1074.19 1165.47,1055.97 1165.67,1037.57 1165.88,1019.02 1166.08,1000.38 1166.28,981.691 1166.49,963.004 1166.69,944.367 \n",
" 1166.9,925.829 1167.1,907.438 1167.3,889.24 1167.51,871.283 1167.71,853.611 1167.91,836.269 1168.12,819.301 1168.32,802.75 1168.53,786.656 1168.73,771.059 \n",
" 1168.93,755.998 1169.14,741.508 1169.34,727.625 1169.54,714.382 1169.75,701.809 1169.95,689.937 1170.16,678.793 1170.36,668.401 1170.56,658.784 1170.77,649.964 \n",
" 1170.97,641.959 1171.17,634.786 1171.38,628.457 1171.58,622.985 1171.79,618.379 1171.99,614.645 1172.19,611.789 1172.4,609.812 1172.6,608.714 1172.8,608.493 \n",
" 1173.01,609.143 1173.21,610.656 1173.42,613.024 1173.62,616.234 1173.82,620.273 1174.03,625.124 1174.23,630.769 1174.43,637.187 1174.64,644.357 1174.84,652.253 \n",
" 1175.05,660.852 1175.25,670.123 1175.45,680.039 1175.66,690.569 1175.86,701.68 1176.06,713.339 1176.27,725.51 1176.47,738.158 1176.68,751.246 1176.88,764.736 \n",
" 1177.08,778.59 1177.29,792.767 1177.49,807.227 1177.69,821.931 1177.9,836.837 1178.1,851.905 1178.31,867.092 1178.51,882.358 1178.71,897.661 1178.92,912.961 \n",
" 1179.12,928.216 1179.32,943.386 1179.53,958.433 1179.73,973.315 1179.94,987.995 1180.14,1002.44 1180.34,1016.6 1180.55,1030.45 1180.75,1043.95 1180.95,1057.08 \n",
" 1181.16,1069.78 1181.36,1082.05 1181.57,1093.84 1181.77,1105.12 1181.97,1115.88 1182.18,1126.08 1182.38,1135.7 1182.58,1144.72 1182.79,1153.11 1182.99,1160.87 \n",
" 1183.2,1167.96 1183.4,1174.38 1183.6,1180.11 1183.81,1185.14 1184.01,1189.46 1184.21,1193.06 1184.42,1195.92 1184.62,1198.06 1184.83,1199.46 1185.03,1200.12 \n",
" 1185.23,1200.04 1185.44,1199.22 1185.64,1197.67 1185.84,1195.39 1186.05,1192.38 1186.25,1188.65 1186.46,1184.22 1186.66,1179.08 1186.86,1173.26 1187.07,1166.76 \n",
" 1187.27,1159.61 1187.47,1151.8 1187.68,1143.37 1187.88,1134.33 1188.09,1124.69 1188.29,1114.48 1188.49,1103.71 1188.7,1092.41 1188.9,1080.59 1189.1,1068.28 \n",
" 1189.31,1055.51 1189.51,1042.29 1189.72,1028.65 1189.92,1014.61 1190.12,1000.2 1190.33,985.439 1190.53,970.355 1190.73,954.971 1190.94,939.314 1191.14,923.408 \n",
" 1191.35,907.277 1191.55,890.948 1191.75,874.444 1191.96,857.79 1192.16,841.011 1192.36,824.13 1192.57,807.173 1192.77,790.161 1192.98,773.119 1193.18,756.069 \n",
" 1193.38,739.033 1193.59,722.034 1193.79,705.093 1193.99,688.231 1194.2,671.468 1194.4,654.825 1194.61,638.32 1194.81,621.973 1195.01,605.802 1195.22,589.825 \n",
" 1195.42,574.058 1195.62,558.52 1195.83,543.225 1196.03,528.19 1196.24,513.43 1196.44,498.958 1196.64,484.79 1196.85,470.938 1197.05,457.415 1197.25,444.234 \n",
" 1197.46,431.406 1197.66,418.944 1197.87,406.857 1198.07,395.158 1198.27,383.854 1198.48,372.957 1198.68,362.475 1198.88,352.417 1199.09,342.792 1199.29,333.607 \n",
" 1199.5,324.87 1199.7,316.588 1199.9,308.768 1200.11,301.417 1200.31,294.54 1200.51,288.144 1200.72,282.233 1200.92,276.813 1201.13,271.889 1201.33,267.465 \n",
" 1201.53,263.544 1201.74,260.132 1201.94,257.23 1202.14,254.843 1202.35,252.972 1202.55,251.62 1202.76,250.788 1202.96,250.479 1203.16,250.693 1203.37,251.43 \n",
" 1203.57,252.692 1203.77,254.477 1203.98,256.784 1204.18,259.614 1204.39,262.962 1204.59,266.828 1204.79,271.209 1205,276.1 1205.2,281.498 1205.4,287.398 \n",
" 1205.61,293.794 1205.81,300.682 1206.02,308.053 1206.22,315.901 1206.42,324.217 1206.63,332.994 1206.83,342.22 1207.04,351.886 1207.24,361.981 1207.44,372.492 \n",
" 1207.65,383.407 1207.85,394.713 1208.05,406.395 1208.26,418.439 1208.46,430.827 1208.67,443.543 1208.87,456.57 1209.07,469.89 1209.28,483.483 1209.48,497.329 \n",
" 1209.68,511.407 1209.89,525.696 1210.09,540.174 1210.3,554.818 1210.5,569.604 1210.7,584.509 1210.91,599.506 1211.11,614.571 1211.31,629.679 1211.52,644.801 \n",
" 1211.72,659.912 1211.93,674.985 1212.13,689.991 1212.33,704.903 1212.54,719.693 1212.74,734.332 1212.94,748.793 1213.15,763.046 1213.35,777.063 1213.56,790.816 \n",
" 1213.76,804.277 1213.96,817.418 1214.17,830.211 1214.37,842.629 1214.57,854.646 1214.78,866.235 1214.98,877.371 1215.19,888.029 1215.39,898.184 1215.59,907.813 \n",
" 1215.8,916.895 1216,925.407 1216.2,933.33 1216.41,940.643 1216.61,947.33 1216.82,953.374 1217.02,958.759 1217.22,963.471 1217.43,967.497 1217.63,970.828 \n",
" 1217.83,973.453 1218.04,975.364 1218.24,976.556 1218.45,977.024 1218.65,976.766 1218.85,975.78 1219.06,974.068 1219.26,971.632 1219.46,968.477 1219.67,964.609 \n",
" 1219.87,960.038 1220.08,954.772 1220.28,948.825 1220.48,942.21 1220.69,934.943 1220.89,927.042 1221.09,918.527 1221.3,909.418 1221.5,899.739 1221.71,889.515 \n",
" 1221.91,878.772 1222.11,867.539 1222.32,855.844 1222.52,843.719 1222.72,831.197 1222.93,818.311 1223.13,805.097 1223.34,791.592 1223.54,777.832 1223.74,763.856 \n",
" 1223.95,749.704 1224.15,735.416 1224.35,721.033 1224.56,706.597 1224.76,692.15 1224.97,677.734 1225.17,663.393 1225.37,649.169 1225.58,635.106 1225.78,621.247 \n",
" 1225.98,607.634 1226.19,594.311 1226.39,581.319 1226.6,568.7 1226.8,556.495 1227,544.745 1227.21,533.489 1227.41,522.765 1227.61,512.611 1227.82,503.062 \n",
" 1228.02,494.154 1228.23,485.92 1228.43,478.391 1228.63,471.599 1228.84,465.57 1229.04,460.333 1229.24,455.912 1229.45,452.329 1229.65,449.605 1229.86,447.76 \n",
" 1230.06,446.809 1230.26,446.766 1230.47,447.645 1230.67,449.453 1230.87,452.2 1231.08,455.888 1231.28,460.521 1231.49,466.1 1231.69,472.62 1231.89,480.078 \n",
" 1232.1,488.465 1232.3,497.773 1232.5,507.989 1232.71,519.098 1232.91,531.082 1233.12,543.924 1233.32,557.6 1233.52,572.087 1233.73,587.36 1233.93,603.388 \n",
" 1234.13,620.143 1234.34,637.592 1234.54,655.701 1234.75,674.433 1234.95,693.751 1235.15,713.616 1235.36,733.986 1235.56,754.82 1235.76,776.074 1235.97,797.703 \n",
" 1236.17,819.661 1236.38,841.901 1236.58,864.376 1236.78,887.038 1236.99,909.837 1237.19,932.724 1237.39,955.649 1237.6,978.563 1237.8,1001.42 1238.01,1024.16 \n",
" 1238.21,1046.74 1238.41,1069.11 1238.62,1091.22 1238.82,1113.03 1239.02,1134.48 1239.23,1155.52 1239.43,1176.13 1239.64,1196.24 1239.84,1215.81 1240.04,1234.81 \n",
" 1240.25,1253.19 1240.45,1270.92 1240.65,1287.95 1240.86,1304.25 1241.06,1319.79 1241.27,1334.53 1241.47,1348.44 1241.67,1361.5 1241.88,1373.68 1242.08,1384.96 \n",
" 1242.28,1395.3 1242.49,1404.71 1242.69,1413.15 1242.9,1420.61 1243.1,1427.09 1243.3,1432.56 1243.51,1437.03 1243.71,1440.48 1243.91,1442.92 1244.12,1444.33 \n",
" 1244.32,1444.74 1244.53,1444.13 1244.73,1442.52 1244.93,1439.92 1245.14,1436.33 1245.34,1431.77 1245.54,1426.25 1245.75,1419.79 1245.95,1412.41 1246.16,1404.14 \n",
" 1246.36,1394.99 1246.56,1384.99 1246.77,1374.16 1246.97,1362.55 1247.17,1350.16 1247.38,1337.05 1247.58,1323.23 1247.79,1308.75 1247.99,1293.64 1248.19,1277.93 \n",
" 1248.4,1261.66 1248.6,1244.87 1248.81,1227.6 1249.01,1209.9 1249.21,1191.78 1249.42,1173.31 1249.62,1154.52 1249.82,1135.45 1250.03,1116.14 1250.23,1096.63 \n",
" 1250.44,1076.97 1250.64,1057.19 1250.84,1037.33 1251.05,1017.44 1251.25,997.554 1251.45,977.709 1251.66,957.944 1251.86,938.298 1252.07,918.805 1252.27,899.503 \n",
" 1252.47,880.425 1252.68,861.605 1252.88,843.074 1253.08,824.865 1253.29,807.006 1253.49,789.527 1253.7,772.454 1253.9,755.814 1254.1,739.629 1254.31,723.923 \n",
" 1254.51,708.718 1254.71,694.032 1254.92,679.885 1255.12,666.292 1255.33,653.268 1255.53,640.828 1255.73,628.982 1255.94,617.741 1256.14,607.114 1256.34,597.108 \n",
" 1256.55,587.728 1256.75,578.979 1256.96,570.862 1257.16,563.381 1257.36,556.533 1257.57,550.317 1257.77,544.731 1257.97,539.77 1258.18,535.429 1258.38,531.7 \n",
" 1258.59,528.575 1258.79,526.047 1258.99,524.104 1259.2,522.736 1259.4,521.929 1259.6,521.672 1259.81,521.951 1260.01,522.751 1260.22,524.056 1260.42,525.851 \n",
" 1260.62,528.118 1260.83,530.842 1261.03,534.004 1261.23,537.586 1261.44,541.57 1261.64,545.937 1261.85,550.667 1262.05,555.742 1262.25,561.143 1262.46,566.849 \n",
" 1262.66,572.841 1262.86,579.099 1263.07,585.604 1263.27,592.336 1263.48,599.275 1263.68,606.402 1263.88,613.699 1264.09,621.145 1264.29,628.722 1264.49,636.411 \n",
" 1264.7,644.195 1264.9,652.055 1265.11,659.972 1265.31,667.931 1265.51,675.914 1265.72,683.903 1265.92,691.884 1266.12,699.839 1266.33,707.754 1266.53,715.612 \n",
" 1266.74,723.4 1266.94,731.102 1267.14,738.705 1267.35,746.194 1267.55,753.558 1267.75,760.782 1267.96,767.853 1268.16,774.761 1268.37,781.492 1268.57,788.036 \n",
" 1268.77,794.381 1268.98,800.516 1269.18,806.431 1269.38,812.115 1269.59,817.558 1269.79,822.751 1270,827.685 1270.2,832.35 1270.4,836.737 1270.61,840.837 \n",
" 1270.81,844.643 1271.01,848.147 1271.22,851.339 1271.42,854.214 1271.63,856.763 1271.83,858.979 1272.03,860.856 1272.24,862.387 1272.44,863.565 1272.64,864.385 \n",
" 1272.85,864.84 1273.05,864.926 1273.26,864.636 1273.46,863.967 1273.66,862.913 1273.87,861.469 1274.07,859.634 1274.27,857.401 1274.48,854.77 1274.68,851.736 \n",
" 1274.89,848.298 1275.09,844.453 1275.29,840.201 1275.5,835.541 1275.7,830.471 1275.9,824.993 1276.11,819.108 1276.31,812.816 1276.52,806.12 1276.72,799.023 \n",
" 1276.92,791.528 1277.13,783.639 1277.33,775.361 1277.53,766.7 1277.74,757.662 1277.94,748.254 1278.15,738.485 1278.35,728.364 1278.55,717.899 1278.76,707.103 \n",
" 1278.96,695.986 1279.16,684.561 1279.37,672.841 1279.57,660.84 1279.78,648.574 1279.98,636.059 1280.18,623.312 1280.39,610.35 1280.59,597.193 1280.79,583.859 \n",
" 1281,570.371 1281.2,556.749 1281.41,543.015 1281.61,529.193 1281.81,515.307 1282.02,501.38 1282.22,487.439 1282.42,473.509 1282.63,459.617 1282.83,445.79 \n",
" 1283.04,432.056 1283.24,418.443 1283.44,404.98 1283.65,391.696 1283.85,378.62 1284.05,365.781 1284.26,353.21 1284.46,340.937 1284.67,328.99 1284.87,317.401 \n",
" 1285.07,306.199 1285.28,295.413 1285.48,285.073 1285.68,275.207 1285.89,265.845 1286.09,257.013 1286.3,248.741 1286.5,241.053 1286.7,233.978 1286.91,227.538 \n",
" 1287.11,221.76 1287.31,216.665 1287.52,212.277 1287.72,208.615 1287.93,205.701 1288.13,203.552 1288.33,202.186 1288.54,201.617 1288.74,201.861 1288.95,202.93 \n",
" 1289.15,204.834 1289.35,207.584 1289.56,211.185 1289.76,215.645 1289.96,220.967 1290.17,227.153 1290.37,234.203 1290.58,242.114 1290.78,250.885 1290.98,260.507 \n",
" 1291.19,270.974 1291.39,282.276 1291.59,294.401 1291.8,307.335 1292,321.063 1292.21,335.565 1292.41,350.824 1292.61,366.816 1292.82,383.518 1293.02,400.905 \n",
" 1293.22,418.95 1293.43,437.622 1293.63,456.893 1293.84,476.728 1294.04,497.093 1294.24,517.954 1294.45,539.273 1294.65,561.012 1294.85,583.131 1295.06,605.588 \n",
" 1295.26,628.343 1295.47,651.352 1295.67,674.571 1295.87,697.955 1296.08,721.459 1296.28,745.038 1296.48,768.644 1296.69,792.231 1296.89,815.752 1297.1,839.16 \n",
" 1297.3,862.408 1297.5,885.449 1297.71,908.237 1297.91,930.724 1298.11,952.866 1298.32,974.618 1298.52,995.934 1298.73,1016.77 1298.93,1037.09 1299.13,1056.84 \n",
" 1299.34,1076 1299.54,1094.51 1299.74,1112.34 1299.95,1129.46 1300.15,1145.83 1300.36,1161.42 1300.56,1176.2 1300.76,1190.14 1300.97,1203.21 1301.17,1215.39 \n",
" 1301.37,1226.65 1301.58,1236.98 1301.78,1246.36 1301.99,1254.77 1302.19,1262.2 1302.39,1268.64 1302.6,1274.08 1302.8,1278.51 1303,1281.94 1303.21,1284.35 \n",
" 1303.41,1285.75 1303.62,1286.15 1303.82,1285.55 1304.02,1283.96 1304.23,1281.39 1304.43,1277.85 1304.63,1273.37 1304.84,1267.96 1305.04,1261.64 1305.25,1254.44 \n",
" 1305.45,1246.37 1305.65,1237.47 1305.86,1227.77 1306.06,1217.3 1306.26,1206.08 1306.47,1194.17 1306.67,1181.58 1306.88,1168.37 1307.08,1154.57 1307.28,1140.22 \n",
" 1307.49,1125.36 1307.69,1110.04 1307.89,1094.31 1308.1,1078.2 1308.3,1061.76 1308.51,1045.04 1308.71,1028.09 1308.91,1010.96 1309.12,993.686 1309.32,976.322 \n",
" 1309.52,958.917 1309.73,941.518 1309.93,924.171 1310.14,906.925 1310.34,889.826 1310.54,872.919 1310.75,856.249 1310.95,839.862 1311.15,823.799 1311.36,808.103 \n",
" 1311.56,792.815 1311.77,777.974 1311.97,763.618 1312.17,749.784 1312.38,736.507 1312.58,723.819 1312.78,711.752 1312.99,700.336 1313.19,689.598 1313.4,679.564 \n",
" 1313.6,670.257 1313.8,661.699 1314.01,653.908 1314.21,646.902 1314.41,640.696 1314.62,635.303 1314.82,630.732 1315.03,626.992 1315.23,624.089 1315.43,622.026 \n",
" 1315.64,620.804 1315.84,620.422 1316.04,620.878 1316.25,622.165 1316.45,624.276 1316.66,627.201 1316.86,630.929 1317.06,635.445 1317.27,640.734 1317.47,646.778 \n",
" 1317.67,653.556 1317.88,661.049 1318.08,669.231 1318.29,678.08 1318.49,687.567 1318.69,697.667 1318.9,708.348 1319.1,719.581 1319.3,731.334 1319.51,743.575 \n",
" 1319.71,756.269 1319.92,769.381 1320.12,782.877 1320.32,796.72 1320.53,810.874 1320.73,825.301 1320.93,839.963 1321.14,854.823 1321.34,869.842 1321.55,884.983 \n",
" 1321.75,900.207 1321.95,915.477 1322.16,930.754 1322.36,946.001 1322.56,961.181 1322.77,976.258 1322.97,991.195 1323.18,1005.96 1323.38,1020.51 1323.58,1034.82 \n",
" 1323.79,1048.86 1323.99,1062.58 1324.19,1075.97 1324.4,1088.99 1324.6,1101.62 1324.81,1113.82 1325.01,1125.57 1325.21,1136.85 1325.42,1147.62 1325.62,1157.88 \n",
" 1325.82,1167.6 1326.03,1176.76 1326.23,1185.34 1326.44,1193.32 1326.64,1200.7 1326.84,1207.45 1327.05,1213.57 1327.25,1219.05 1327.45,1223.87 1327.66,1228.03 \n",
" 1327.86,1231.52 1328.07,1234.34 1328.27,1236.49 1328.47,1237.96 1328.68,1238.76 1328.88,1238.88 1329.08,1238.32 1329.29,1237.1 1329.49,1235.21 1329.7,1232.66 \n",
" 1329.9,1229.46 1330.1,1225.62 1330.31,1221.14 1330.51,1216.03 1330.72,1210.31 1330.92,1203.99 1331.12,1197.09 1331.33,1189.6 1331.53,1181.56 1331.73,1172.97 \n",
" 1331.94,1163.85 1332.14,1154.22 1332.35,1144.1 1332.55,1133.49 1332.75,1122.42 1332.96,1110.91 1333.16,1098.98 1333.36,1086.64 1333.57,1073.91 1333.77,1060.82 \n",
" 1333.98,1047.38 1334.18,1033.61 1334.38,1019.53 1334.59,1005.17 1334.79,990.531 1334.99,975.648 1335.2,960.535 1335.4,945.212 1335.61,929.699 1335.81,914.016 \n",
" 1336.01,898.18 1336.22,882.213 1336.42,866.132 1336.62,849.956 1336.83,833.704 1337.03,817.395 1337.24,801.046 1337.44,784.675 1337.64,768.3 1337.85,751.938 \n",
" 1338.05,735.607 1338.25,719.323 1338.46,703.103 1338.66,686.964 1338.87,670.922 1339.07,654.993 1339.27,639.193 1339.48,623.537 1339.68,608.04 1339.88,592.718 \n",
" 1340.09,577.586 1340.29,562.658 1340.5,547.949 1340.7,533.474 1340.9,519.245 1341.11,505.278 1341.31,491.587 1341.51,478.184 1341.72,465.083 1341.92,452.298 \n",
" 1342.13,439.841 1342.33,427.726 1342.53,415.966 1342.74,404.572 1342.94,393.558 1343.14,382.935 1343.35,372.715 1343.55,362.911 1343.76,353.534 1343.96,344.595 \n",
" 1344.16,336.105 1344.37,328.075 1344.57,320.515 1344.77,313.436 1344.98,306.848 1345.18,300.76 1345.39,295.18 1345.59,290.119 1345.79,285.584 1346,281.583 \n",
" 1346.2,278.123 1346.4,275.212 1346.61,272.854 1346.81,271.057 1347.02,269.825 1347.22,269.162 1347.42,269.073 1347.63,269.56 1347.83,270.626 1348.03,272.271 \n",
" 1348.24,274.498 1348.44,277.305 1348.65,280.691 1348.85,284.655 1349.05,289.193 1349.26,294.303 1349.46,299.979 1349.66,306.214 1349.87,313.004 1350.07,320.338 \n",
" 1350.28,328.21 1350.48,336.608 1350.68,345.521 1350.89,354.937 1351.09,364.844 1351.29,375.225 1351.5,386.067 1351.7,397.352 1351.91,409.062 1352.11,421.179 \n",
" 1352.31,433.683 1352.52,446.552 1352.72,459.765 1352.92,473.3 1353.13,487.13 1353.33,501.233 1353.54,515.582 1353.74,530.15 1353.94,544.91 1354.15,559.834 \n",
" 1354.35,574.891 1354.55,590.054 1354.76,605.291 1354.96,620.571 1355.17,635.863 1355.37,651.136 1355.57,666.356 1355.78,681.493 1355.98,696.512 1356.18,711.381 \n",
" 1356.39,726.068 1356.59,740.539 1356.8,754.762 1357,768.705 1357.2,782.335 1357.41,795.62 1357.61,808.529 1357.81,821.032 1358.02,833.098 1358.22,844.699 \n",
" 1358.43,855.804 1358.63,866.387 1358.83,876.421 1359.04,885.88 1359.24,894.741 1359.44,902.979 1359.65,910.573 1359.85,917.502 1360.06,923.748 1360.26,929.293 \n",
" 1360.46,934.121 1360.67,938.218 1360.87,941.572 1361.07,944.172 1361.28,946.009 1361.48,947.076 1361.69,947.368 1361.89,946.882 1362.09,945.617 1362.3,943.575 \n",
" 1362.5,940.757 1362.7,937.17 1362.91,932.82 1363.11,927.717 1363.32,921.872 1363.52,915.298 1363.72,908.01 1363.93,900.027 1364.13,891.367 1364.33,882.051 \n",
" 1364.54,872.104 1364.74,861.55 1364.95,850.416 1365.15,838.732 1365.35,826.527 1365.56,813.833 1365.76,800.685 1365.96,787.118 1366.17,773.167 1366.37,758.872 \n",
" 1366.58,744.271 1366.78,729.405 1366.98,714.315 1367.19,699.042 1367.39,683.631 1367.59,668.124 1367.8,652.567 1368,637.004 1368.21,621.48 1368.41,606.041 \n",
" 1368.61,590.732 1368.82,575.599 1369.02,560.687 1369.22,546.041 1369.43,531.706 1369.63,517.726 1369.84,504.145 1370.04,491.006 1370.24,478.349 1370.45,466.218 \n",
" 1370.65,454.65 1370.85,443.686 1371.06,433.361 1371.26,423.713 1371.47,414.774 1371.67,406.579 1371.87,399.157 1372.08,392.537 1372.28,386.748 1372.49,381.813 \n",
" 1372.69,377.756 1372.89,374.598 1373.1,372.356 1373.3,371.049 1373.5,370.689 1373.71,371.288 1373.91,372.855 1374.12,375.397 1374.32,378.919 1374.52,383.422 \n",
" 1374.73,388.906 1374.93,395.366 1375.13,402.799 1375.34,411.194 1375.54,420.542 1375.75,430.83 1375.95,442.041 1376.15,454.159 1376.36,467.162 1376.56,481.028 \n",
" 1376.76,495.733 1376.97,511.249 1377.17,527.547 1377.38,544.597 1377.58,562.365 1377.78,580.816 1377.99,599.914 1378.19,619.621 1378.39,639.896 1378.6,660.699 \n",
" 1378.8,681.986 1379.01,703.715 1379.21,725.84 1379.41,748.315 1379.62,771.093 1379.82,794.127 1380.02,817.369 1380.23,840.77 1380.43,864.281 1380.64,887.853 \n",
" 1380.84,911.437 1381.04,934.983 1381.25,958.442 1381.45,981.765 1381.65,1004.9 1381.86,1027.81 1382.06,1050.44 1382.27,1072.74 1382.47,1094.67 1382.67,1116.19 \n",
" 1382.88,1137.24 1383.08,1157.8 1383.28,1177.81 1383.49,1197.24 1383.69,1216.05 1383.9,1234.2 1384.1,1251.67 1384.3,1268.41 1384.51,1284.39 1384.71,1299.59 \n",
" 1384.91,1313.99 1385.12,1327.54 1385.32,1340.24 1385.53,1352.06 1385.73,1362.98 1385.93,1372.99 1386.14,1382.07 1386.34,1390.2 1386.54,1397.39 1386.75,1403.62 \n",
" 1386.95,1408.89 1387.16,1413.19 1387.36,1416.52 1387.56,1418.89 1387.77,1420.3 1387.97,1420.75 1388.17,1420.25 1388.38,1418.82 1388.58,1416.45 1388.79,1413.18 \n",
" 1388.99,1409.01 1389.19,1403.97 1389.4,1398.06 1389.6,1391.32 1389.8,1383.76 1390.01,1375.41 1390.21,1366.3 1390.42,1356.45 1390.62,1345.9 1390.82,1334.66 \n",
" 1391.03,1322.78 1391.23,1310.28 1391.43,1297.2 1391.64,1283.57 1391.84,1269.43 1392.05,1254.8 1392.25,1239.73 1392.45,1224.26 1392.66,1208.41 1392.86,1192.22 \n",
" 1393.06,1175.74 1393.27,1159 1393.47,1142.03 1393.68,1124.88 1393.88,1107.57 1394.08,1090.15 1394.29,1072.65 1394.49,1055.1 1394.69,1037.54 1394.9,1020.01 \n",
" 1395.1,1002.53 1395.31,985.141 1395.51,967.874 1395.71,950.76 1395.92,933.828 1396.12,917.106 1396.32,900.622 1396.53,884.403 1396.73,868.475 1396.94,852.861 \n",
" 1397.14,837.585 1397.34,822.669 1397.55,808.133 1397.75,793.996 1397.95,780.277 1398.16,766.992 1398.36,754.157 1398.57,741.785 1398.77,729.889 1398.97,718.482 \n",
" 1399.18,707.572 1399.38,697.168 1399.58,687.279 1399.79,677.911 1399.99,669.068 1400.2,660.755 1400.4,652.974 1400.6,645.726 1400.81,639.013 1401.01,632.833 \n",
" 1401.21,627.185 1401.42,622.066 1401.62,617.472 1401.83,613.399 1402.03,609.841 1402.23,606.792 1402.44,604.244 1402.64,602.191 1402.84,600.623 1403.05,599.53 \n",
" 1403.25,598.904 1403.46,598.733 1403.66,599.007 1403.86,599.714 1404.07,600.842 1404.27,602.378 1404.47,604.311 1404.68,606.627 1404.88,609.312 1405.09,612.353 \n",
" 1405.29,615.737 1405.49,619.449 1405.7,623.475 1405.9,627.8 1406.1,632.411 1406.31,637.293 1406.51,642.431 1406.72,647.811 1406.92,653.418 1407.12,659.238 \n",
" 1407.33,665.256 1407.53,671.457 1407.73,677.828 1407.94,684.354 1408.14,691.02 1408.35,697.812 1408.55,704.717 1408.75,711.719 1408.96,718.806 1409.16,725.963 \n",
" 1409.36,733.175 1409.57,740.431 1409.77,747.715 1409.98,755.015 1410.18,762.316 1410.38,769.605 1410.59,776.87 1410.79,784.096 1410.99,791.271 1411.2,798.381 \n",
" 1411.4,805.412 1411.61,812.353 1411.81,819.19 1412.01,825.909 1412.22,832.498 1412.42,838.944 1412.62,845.234 1412.83,851.354 1413.03,857.293 1413.24,863.036 \n",
" 1413.44,868.572 1413.64,873.887 1413.85,878.969 1414.05,883.805 1414.26,888.382 1414.46,892.688 1414.66,896.71 1414.87,900.435 1415.07,903.853 1415.27,906.95 \n",
" 1415.48,909.714 1415.68,912.135 1415.89,914.199 1416.09,915.897 1416.29,917.216 1416.5,918.147 1416.7,918.678 1416.9,918.8 1417.11,918.502 1417.31,917.777 \n",
" 1417.52,916.614 1417.72,915.005 1417.92,912.943 1418.13,910.421 1418.33,907.431 1418.53,903.968 1418.74,900.027 1418.94,895.603 1419.15,890.692 1419.35,885.291 \n",
" 1419.55,879.399 1419.76,873.013 1419.96,866.134 1420.16,858.761 1420.37,850.898 1420.57,842.545 1420.78,833.708 1420.98,824.389 1421.18,814.597 1421.39,804.336 \n",
" 1421.59,793.616 1421.79,782.445 1422,770.834 1422.2,758.794 1422.41,746.339 1422.61,733.482 1422.81,720.238 1423.02,706.624 1423.22,692.658 1423.42,678.357 \n",
" 1423.63,663.743 1423.83,648.835 1424.04,633.658 1424.24,618.232 1424.44,602.585 1424.65,586.739 1424.85,570.724 1425.05,554.565 1425.26,538.291 1425.46,521.932 \n",
" 1425.67,505.517 1425.87,489.079 1426.07,472.647 1426.28,456.255 1426.48,439.936 1426.68,423.723 1426.89,407.65 1427.09,391.75 1427.3,376.06 1427.5,360.612 \n",
" 1427.7,345.443 1427.91,330.586 1428.11,316.078 1428.31,301.951 1428.52,288.242 1428.72,274.984 1428.93,262.21 1429.13,249.955 1429.33,238.249 1429.54,227.126 \n",
" 1429.74,216.617 1429.94,206.751 1430.15,197.558 1430.35,189.065 1430.56,181.3 1430.76,174.289 1430.96,168.056 1431.17,162.623 1431.37,158.013 1431.57,154.245 \n",
" 1431.78,151.337 1431.98,149.306 1432.19,148.167 1432.39,147.933 1432.59,148.613 1432.8,150.218 1433,152.755 1433.2,156.228 1433.41,160.64 1433.61,165.993 \n",
" 1433.82,172.284 1434.02,179.51 1434.22,187.666 1434.43,196.743 1434.63,206.731 1434.83,217.618 1435.04,229.39 1435.24,242.03 1435.45,255.519 1435.65,269.836 \n",
" 1435.85,284.958 1436.06,300.86 1436.26,317.516 1436.46,334.896 1436.67,352.969 1436.87,371.703 1437.08,391.064 1437.28,411.014 1437.48,431.518 1437.69,452.536 \n",
" 1437.89,474.026 1438.09,495.948 1438.3,518.258 1438.5,540.913 1438.71,563.866 1438.91,587.072 1439.11,610.485 1439.32,634.056 1439.52,657.738 1439.72,681.483 \n",
" 1439.93,705.241 1440.13,728.964 1440.34,752.604 1440.54,776.11 1440.74,799.436 1440.95,822.531 1441.15,845.35 1441.35,867.845 1441.56,889.969 1441.76,911.677 \n",
" 1441.97,932.924 1442.17,953.667 1442.37,973.864 1442.58,993.474 1442.78,1012.46 1442.98,1030.78 1443.19,1048.39 1443.39,1065.28 1443.6,1081.39 1443.8,1096.71 \n",
" 1444,1111.19 1444.21,1124.83 1444.41,1137.58 1444.61,1149.44 1444.82,1160.37 1445.02,1170.36 1445.23,1179.4 1445.43,1187.48 1445.63,1194.57 1445.84,1200.68 \n",
" 1446.04,1205.8 1446.24,1209.93 1446.45,1213.06 1446.65,1215.2 1446.86,1216.35 1447.06,1216.53 1447.26,1215.73 1447.47,1213.97 1447.67,1211.27 1447.87,1207.64 \n",
" 1448.08,1203.1 1448.28,1197.68 1448.49,1191.39 1448.69,1184.26 1448.89,1176.32 1449.1,1167.6 1449.3,1158.13 1449.5,1147.94 1449.71,1137.07 1449.91,1125.55 \n",
" 1450.12,1113.43 1450.32,1100.74 1450.52,1087.52 1450.73,1073.81 1450.93,1059.66 1451.13,1045.11 1451.34,1030.2 1451.54,1014.99 1451.75,999.504 1451.95,983.802 \n",
" 1452.15,967.927 1452.36,951.924 1452.56,935.841 1452.76,919.724 1452.97,903.618 1453.17,887.569 1453.38,871.623 1453.58,855.824 1453.78,840.215 1453.99,824.841 \n",
" 1454.19,809.743 1454.4,794.962 1454.6,780.537 1454.8,766.509 1455.01,752.914 1455.21,739.787 1455.41,727.164 1455.62,715.076 1455.82,703.556 1456.03,692.632 \n",
" 1456.23,682.332 1456.43,672.681 1456.64,663.704 1456.84,655.421 1457.04,647.853 1457.25,641.017 1457.45,634.929 1457.66,629.603 1457.86,625.048 1458.06,621.276 \n",
" 1458.27,618.292 1458.47,616.102 1458.67,614.709 1458.88,614.113 1459.08,614.313 1459.29,615.305 1459.49,617.084 1459.69,619.642 1459.9,622.97 1460.1,627.057 \n",
" 1460.3,631.888 1460.51,637.451 1460.71,643.726 1460.92,650.697 1461.12,658.342 1461.32,666.642 1461.53,675.571 1461.73,685.106 1461.93,695.222 1462.14,705.89 \n",
" 1462.34,717.084 1462.55,728.775 1462.75,740.931 1462.95,753.522 1463.16,766.517 1463.36,779.883 1463.56,793.588 1463.77,807.597 1463.97,821.878 1464.18,836.395 \n",
" 1464.38,851.115 1464.58,866.004 1464.79,881.026 1464.99,896.148 1465.19,911.335 1465.4,926.553 1465.6,941.769 1465.81,956.949 1466.01,972.06 1466.21,987.071 \n",
" 1466.42,1001.95 1466.62,1016.66 1466.82,1031.18 1467.03,1045.48 1467.23,1059.52 1467.44,1073.29 1467.64,1086.75 1467.84,1099.87 1468.05,1112.64 1468.25,1125.03 \n",
" 1468.45,1137.01 1468.66,1148.57 1468.86,1159.68 1469.07,1170.33 1469.27,1180.5 1469.47,1190.17 1469.68,1199.32 1469.88,1207.95 1470.08,1216.03 1470.29,1223.56 \n",
" 1470.49,1230.52 1470.7,1236.91 1470.9,1242.72 1471.1,1247.94 1471.31,1252.57 1471.51,1256.59 1471.71,1260.01 1471.92,1262.83 1472.12,1265.04 1472.33,1266.64 \n",
" 1472.53,1267.63 1472.73,1268.02 1472.94,1267.81 1473.14,1266.99 1473.34,1265.58 1473.55,1263.58 1473.75,1260.99 1473.96,1257.83 1474.16,1254.1 1474.36,1249.8 \n",
" 1474.57,1244.95 1474.77,1239.55 1474.97,1233.62 1475.18,1227.16 1475.38,1220.19 1475.59,1212.71 1475.79,1204.75 1475.99,1196.3 1476.2,1187.39 1476.4,1178.03 \n",
" 1476.6,1168.22 1476.81,1157.98 1477.01,1147.34 1477.22,1136.29 1477.42,1124.85 1477.62,1113.04 1477.83,1100.88 1478.03,1088.37 1478.23,1075.53 1478.44,1062.38 \n",
" 1478.64,1048.93 1478.85,1035.19 1479.05,1021.18 1479.25,1006.92 1479.46,992.419 1479.66,977.694 1479.86,962.759 1480.07,947.63 1480.27,932.323 1480.48,916.853 \n",
" 1480.68,901.235 1480.88,885.485 1481.09,869.619 1481.29,853.652 1481.49,837.6 1481.7,821.479 1481.9,805.305 1482.11,789.094 1482.31,772.862 1482.51,756.625 \n",
" 1482.72,740.401 1482.92,724.204 1483.12,708.053 1483.33,691.963 1483.53,675.951 1483.74,660.035 1483.94,644.23 1484.14,628.556 1484.35,613.028 1484.55,597.664 \n",
" 1484.75,582.481 1484.96,567.497 1485.16,552.73 1485.37,538.196 1485.57,523.915 1485.77,509.902 1485.98,496.177 1486.18,482.756 1486.38,469.657 1486.59,456.898 \n",
" 1486.79,444.496 1487,432.469 1487.2,420.833 1487.4,409.605 1487.61,398.803 1487.81,388.442 1488.01,378.539 1488.22,369.109 1488.42,360.168 1488.63,351.732 \n",
" 1488.83,343.813 1489.03,336.427 1489.24,329.587 1489.44,323.306 1489.64,317.596 1489.85,312.469 1490.05,307.934 1490.26,304.003 1490.46,300.685 1490.66,297.987 \n",
" 1490.87,295.917 1491.07,294.481 1491.27,293.686 1491.48,293.535 1491.68,294.031 1491.89,295.176 1492.09,296.972 1492.29,299.419 1492.5,302.514 1492.7,306.255 \n",
" 1492.9,310.638 1493.11,315.657 1493.31,321.306 1493.52,327.578 1493.72,334.462 1493.92,341.947 1494.13,350.022 1494.33,358.673 1494.53,367.886 1494.74,377.643 \n",
" 1494.94,387.928 1495.15,398.721 1495.35,410.001 1495.55,421.748 1495.76,433.939 1495.96,446.549 1496.17,459.552 1496.37,472.923 1496.57,486.633 1496.78,500.654 \n",
" 1496.98,514.957 1497.18,529.509 1497.39,544.28 1497.59,559.236 1497.8,574.345 1498,589.573 1498.2,604.885 1498.41,620.245 1498.61,635.618 1498.81,650.968 \n",
" 1499.02,666.259 1499.22,681.453 1499.43,696.515 1499.63,711.407 1499.83,726.092 1500.04,740.535 1500.24,754.699 1500.44,768.549 1500.65,782.048 1500.85,795.162 \n",
" 1501.06,807.857 1501.26,820.099 1501.46,831.856 1501.67,843.096 1501.87,853.79 1502.07,863.907 1502.28,873.419 1502.48,882.299 1502.69,890.523 1502.89,898.066 \n",
" 1503.09,904.906 1503.3,911.023 1503.5,916.397 1503.7,921.011 1503.91,924.851 1504.11,927.902 1504.32,930.154 1504.52,931.598 1504.72,932.225 1504.93,932.031 \n",
" 1505.13,931.014 1505.33,929.171 1505.54,926.506 1505.74,923.02 1505.95,918.721 1506.15,913.617 1506.35,907.716 1506.56,901.034 1506.76,893.582 1506.96,885.38 \n",
" 1507.17,876.446 1507.37,866.8 1507.58,856.467 1507.78,845.471 1507.98,833.839 1508.19,821.602 1508.39,808.788 1508.59,795.433 1508.8,781.569 1509,767.232 \n",
" 1509.21,752.461 1509.41,737.294 1509.61,721.771 1509.82,705.934 1510.02,689.826 1510.22,673.489 1510.43,656.969 1510.63,640.311 1510.84,623.56 1511.04,606.763 \n",
" 1511.24,589.967 1511.45,573.22 1511.65,556.567 1511.85,540.058 1512.06,523.738 1512.26,507.655 1512.47,491.855 1512.67,476.385 1512.87,461.29 1513.08,446.615 \n",
" 1513.28,432.404 1513.48,418.7 1513.69,405.544 1513.89,392.978 1514.1,381.04 1514.3,369.768 1514.5,359.198 1514.71,349.366 1514.91,340.304 1515.11,332.043 \n",
" 1515.32,324.611 1515.52,318.037 1515.73,312.345 1515.93,307.557 1516.13,303.695 1516.34,300.777 1516.54,298.818 1516.74,297.832 1516.95,297.831 1517.15,298.822 \n",
" 1517.36,300.812 1517.56,303.805 1517.76,307.802 1517.97,312.802 1518.17,318.8 1518.37,325.791 1518.58,333.766 1518.78,342.713 1518.99,352.618 1519.19,363.466 \n",
" 1519.39,375.238 1519.6,387.914 1519.8,401.47 1520,415.881 1520.21,431.121 1520.41,447.159 1520.62,463.965 1520.82,481.506 1521.02,499.747 1521.23,518.652 \n",
" 1521.43,538.182 1521.63,558.298 1521.84,578.959 1522.04,600.124 1522.25,621.748 1522.45,643.789 1522.65,666.199 1522.86,688.935 1523.06,711.949 1523.26,735.194 \n",
" 1523.47,758.623 1523.67,782.188 1523.88,805.841 1524.08,829.535 1524.28,853.221 1524.49,876.853 1524.69,900.382 1524.89,923.762 1525.1,946.947 1525.3,969.892 \n",
" 1525.51,992.551 1525.71,1014.88 1525.91,1036.84 1526.12,1058.39 1526.32,1079.48 1526.52,1100.08 1526.73,1120.15 1526.93,1139.65 1527.14,1158.55 1527.34,1176.82 \n",
" 1527.54,1194.42 1527.75,1211.33 1527.95,1227.52 1528.15,1242.96 1528.36,1257.62 1528.56,1271.5 1528.77,1284.56 1528.97,1296.79 1529.17,1308.17 1529.38,1318.7 \n",
" 1529.58,1328.35 1529.78,1337.12 1529.99,1345 1530.19,1351.99 1530.4,1358.08 1530.6,1363.27 1530.8,1367.57 1531.01,1370.97 1531.21,1373.48 1531.41,1375.1 \n",
" 1531.62,1375.86 1531.82,1375.75 1532.03,1374.79 1532.23,1372.99 1532.43,1370.36 1532.64,1366.94 1532.84,1362.72 1533.04,1357.74 1533.25,1352.02 1533.45,1345.57 \n",
" 1533.66,1338.42 1533.86,1330.6 1534.06,1322.14 1534.27,1313.05 1534.47,1303.37 1534.67,1293.13 1534.88,1282.36 1535.08,1271.08 1535.29,1259.33 1535.49,1247.14 \n",
" 1535.69,1234.53 1535.9,1221.55 1536.1,1208.22 1536.3,1194.58 1536.51,1180.65 1536.71,1166.47 1536.92,1152.07 1537.12,1137.49 1537.32,1122.75 1537.53,1107.88 \n",
" 1537.73,1092.92 1537.94,1077.9 1538.14,1062.84 1538.34,1047.77 1538.55,1032.73 1538.75,1017.74 1538.95,1002.82 1539.16,988.003 1539.36,973.316 1539.57,958.781 \n",
" 1539.77,944.422 1539.97,930.261 1540.18,916.319 1540.38,902.618 1540.58,889.176 1540.79,876.012 1540.99,863.144 1541.2,850.588 1541.4,838.36 1541.6,826.474 \n",
" 1541.81,814.943 1542.01,803.779 1542.21,792.995 1542.42,782.6 1542.62,772.604 1542.83,763.015 1543.03,753.84 1543.23,745.086 1543.44,736.758 1543.64,728.861 \n",
" 1543.84,721.399 1544.05,714.374 1544.25,707.789 1544.46,701.645 1544.66,695.942 1544.86,690.681 1545.07,685.86 1545.27,681.478 1545.47,677.532 1545.68,674.021 \n",
" 1545.88,670.94 1546.09,668.285 1546.29,666.053 1546.49,664.239 1546.7,662.836 1546.9,661.839 1547.1,661.243 1547.31,661.04 1547.51,661.223 1547.72,661.786 \n",
" 1547.92,662.721 1548.12,664.02 1548.33,665.675 1548.53,667.678 1548.73,670.019 1548.94,672.691 1549.14,675.684 1549.35,678.99 1549.55,682.597 1549.75,686.499 \n",
" 1549.96,690.683 1550.16,695.141 1550.36,699.862 1550.57,704.836 1550.77,710.053 1550.98,715.502 1551.18,721.172 1551.38,727.052 1551.59,733.131 1551.79,739.398 \n",
" 1551.99,745.841 1552.2,752.449 1552.4,759.209 1552.61,766.109 1552.81,773.138 1553.01,780.282 1553.22,787.528 1553.42,794.864 1553.62,802.277 1553.83,809.752 \n",
" 1554.03,817.276 1554.24,824.834 1554.44,832.414 1554.64,839.999 1554.85,847.575 1555.05,855.127 1555.25,862.64 1555.46,870.097 1555.66,877.484 1555.87,884.784 \n",
" 1556.07,891.981 1556.27,899.057 1556.48,905.998 1556.68,912.784 1556.88,919.401 1557.09,925.829 1557.29,932.053 1557.5,938.054 1557.7,943.815 1557.9,949.318 \n",
" 1558.11,954.546 1558.31,959.482 1558.51,964.108 1558.72,968.406 1558.92,972.359 1559.13,975.951 1559.33,979.165 1559.53,981.983 1559.74,984.39 1559.94,986.371 \n",
" 1560.14,987.908 1560.35,988.988 1560.55,989.597 1560.76,989.719 1560.96,989.343 1561.16,988.455 1561.37,987.043 1561.57,985.097 1561.77,982.606 1561.98,979.56 \n",
" 1562.18,975.952 1562.39,971.774 1562.59,967.02 1562.79,961.683 1563,955.76 1563.2,949.248 1563.4,942.145 1563.61,934.451 1563.81,926.165 1564.02,917.291 \n",
" 1564.22,907.83 1564.42,897.789 1564.63,887.173 1564.83,875.99 1565.03,864.249 1565.24,851.96 1565.44,839.135 1565.65,825.788 1565.85,811.934 1566.05,797.588 \n",
" 1566.26,782.769 1566.46,767.496 1566.66,751.789 1566.87,735.671 1567.07,719.166 1567.28,702.298 1567.48,685.093 1567.68,667.579 1567.89,649.785 1568.09,631.74 \n",
" 1568.29,613.476 1568.5,595.025 1568.7,576.42 1568.91,557.695 1569.11,538.886 1569.31,520.027 1569.52,501.157 1569.72,482.311 1569.92,463.528 1570.13,444.846 \n",
" 1570.33,426.305 1570.54,407.942 1570.74,389.797 1570.94,371.909 1571.15,354.318 1571.35,337.063 1571.55,320.183 1571.76,303.717 1571.96,287.703 1572.17,272.178 \n",
" 1572.37,257.181 1572.57,242.747 1572.78,228.912 1572.98,215.711 1573.18,203.178 1573.39,191.344 1573.59,180.243 1573.8,169.902 1574,160.352 1574.2,151.62 \n",
" 1574.41,143.729 1574.61,136.706 1574.81,130.571 1575.02,125.345 1575.22,121.046 1575.43,117.691 1575.63,115.294 1575.83,113.867 1576.04,113.42 1576.24,113.961 \n",
" 1576.44,115.496 1576.65,118.028 1576.85,121.559 1577.06,126.087 1577.26,131.609 1577.46,138.119 1577.67,145.609 1577.87,154.067 1578.07,163.483 1578.28,173.839 \n",
" 1578.48,185.119 1578.69,197.304 1578.89,210.371 1579.09,224.296 1579.3,239.054 1579.5,254.615 1579.71,270.95 1579.91,288.027 1580.11,305.811 1580.32,324.267 \n",
" 1580.52,343.358 1580.72,363.043 1580.93,383.284 1581.13,404.036 1581.34,425.259 1581.54,446.906 1581.74,468.932 1581.95,491.291 1582.15,513.936 1582.35,536.818 \n",
" 1582.56,559.888 1582.76,583.098 1582.97,606.398 1583.17,629.738 1583.37,653.069 1583.58,676.34 1583.78,699.503 1583.98,722.507 1584.19,745.305 1584.39,767.847 \n",
" 1584.6,790.086 1584.8,811.976 1585,833.471 1585.21,854.525 1585.41,875.096 1585.61,895.142 1585.82,914.62 1586.02,933.493 1586.23,951.722 1586.43,969.271 \n",
" 1586.63,986.106 1586.84,1002.2 1587.04,1017.51 1587.24,1032.02 1587.45,1045.7 1587.65,1058.52 1587.86,1070.47 1588.06,1081.52 1588.26,1091.66 1588.47,1100.87 \n",
" 1588.67,1109.14 1588.87,1116.47 1589.08,1122.84 1589.28,1128.25 1589.49,1132.69 1589.69,1136.17 1589.89,1138.7 1590.1,1140.26 1590.3,1140.88 1590.5,1140.57 \n",
" 1590.71,1139.32 1590.91,1137.17 1591.12,1134.13 1591.32,1130.21 1591.52,1125.43 1591.73,1119.83 1591.93,1113.42 1592.13,1106.24 1592.34,1098.31 1592.54,1089.66 \n",
" 1592.75,1080.33 1592.95,1070.35 1593.15,1059.75 1593.36,1048.58 1593.56,1036.86 1593.76,1024.65 1593.97,1011.98 1594.17,998.884 1594.38,985.415 1594.58,971.613 \n",
" 1594.78,957.519 1594.99,943.179 1595.19,928.636 1595.39,913.935 1595.6,899.118 1595.8,884.231 1596.01,869.317 1596.21,854.42 1596.41,839.584 1596.62,824.85 \n",
" 1596.82,810.262 1597.02,795.86 1597.23,781.684 1597.43,767.776 1597.64,754.172 1597.84,740.91 1598.04,728.026 1598.25,715.556 1598.45,703.531 1598.65,691.985 \n",
" 1598.86,680.948 1599.06,670.448 1599.27,660.513 1599.47,651.167 1599.67,642.435 1599.88,634.338 1600.08,626.896 1600.28,620.126 1600.49,614.046 1600.69,608.669 \n",
" 1600.9,604.007 1601.1,600.071 1601.3,596.869 1601.51,594.407 1601.71,592.69 1601.91,591.72 1602.12,591.497 1602.32,592.02 1602.53,593.286 1602.73,595.29 \n",
" 1602.93,598.025 1603.14,601.482 1603.34,605.652 1603.54,610.521 1603.75,616.076 1603.95,622.303 1604.16,629.185 1604.36,636.704 1604.56,644.839 1604.77,653.572 \n",
" 1604.97,662.88 1605.17,672.74 1605.38,683.128 1605.58,694.02 1605.79,705.389 1605.99,717.209 1606.19,729.452 1606.4,742.091 1606.6,755.097 1606.8,768.442 \n",
" 1607.01,782.094 1607.21,796.026 1607.42,810.207 1607.62,824.606 1607.82,839.194 1608.03,853.94 1608.23,868.815 1608.43,883.788 1608.64,898.829 1608.84,913.909 \n",
" 1609.05,928.998 1609.25,944.068 1609.45,959.09 1609.66,974.037 1609.86,988.88 1610.06,1003.59 1610.27,1018.15 1610.47,1032.53 1610.68,1046.7 1610.88,1060.64 \n",
" 1611.08,1074.33 1611.29,1087.74 1611.49,1100.86 1611.69,1113.66 1611.9,1126.13 1612.1,1138.23 1612.31,1149.97 1612.51,1161.31 1612.71,1172.25 1612.92,1182.77 \n",
" 1613.12,1192.85 1613.32,1202.49 1613.53,1211.66 1613.73,1220.36 1613.94,1228.58 1614.14,1236.31 1614.34,1243.54 1614.55,1250.26 1614.75,1256.46 1614.95,1262.14 \n",
" 1615.16,1267.3 1615.36,1271.93 1615.57,1276.02 1615.77,1279.57 1615.97,1282.59 1616.18,1285.06 1616.38,1286.99 1616.58,1288.38 1616.79,1289.23 1616.99,1289.53 \n",
" 1617.2,1289.3 1617.4,1288.53 1617.6,1287.22 1617.81,1285.38 1618.01,1283.02 1618.21,1280.13 1618.42,1276.72 1618.62,1272.79 1618.83,1268.36 1619.03,1263.42 \n",
" 1619.23,1257.98 1619.44,1252.05 1619.64,1245.63 1619.85,1238.74 1620.05,1231.38 1620.25,1223.55 1620.46,1215.27 1620.66,1206.54 1620.86,1197.37 1621.07,1187.77 \n",
" 1621.27,1177.75 1621.48,1167.32 1621.68,1156.49 1621.88,1145.27 1622.09,1133.66 1622.29,1121.68 1622.49,1109.35 1622.7,1096.66 1622.9,1083.64 1623.11,1070.29 \n",
" 1623.31,1056.63 1623.51,1042.67 1623.72,1028.42 1623.92,1013.9 1624.12,999.116 1624.33,984.086 1624.53,968.825 1624.74,953.346 1624.94,937.667 1625.14,921.801 \n",
" 1625.35,905.765 1625.55,889.577 1625.75,873.252 1625.96,856.809 1626.16,840.265 1626.37,823.639 1626.57,806.948 1626.77,790.213 1626.98,773.453 1627.18,756.687 \n",
" 1627.38,739.936 1627.59,723.221 1627.79,706.563 1628,689.982 1628.2,673.501 1628.4,657.141 1628.61,640.924 1628.81,624.874 1629.01,609.011 1629.22,593.36 \n",
" 1629.42,577.942 1629.63,562.781 1629.83,547.9 1630.03,533.321 1630.24,519.067 1630.44,505.161 1630.64,491.625 1630.85,478.482 1631.05,465.754 1631.26,453.462 \n",
" 1631.46,441.628 1631.66,430.273 1631.87,419.417 1632.07,409.081 1632.27,399.283 1632.48,390.042 1632.68,381.375 1632.89,373.301 1633.09,365.835 1633.29,358.993 \n",
" 1633.5,352.788 1633.7,347.235 1633.9,342.345 1634.11,338.13 1634.31,334.599 1634.52,331.761 1634.72,329.624 1634.92,328.194 1635.13,327.474 1635.33,327.47 \n",
" 1635.53,328.181 1635.74,329.61 1635.94,331.753 1636.15,334.609 1636.35,338.174 1636.55,342.441 1636.76,347.402 1636.96,353.049 1637.16,359.37 1637.37,366.354 \n",
" 1637.57,373.986 1637.78,382.251 1637.98,391.13 1638.18,400.606 1638.39,410.658 1638.59,421.264 1638.79,432.399 1639,444.04 1639.2,456.16 1639.41,468.731 \n",
" 1639.61,481.723 1639.81,495.107 1640.02,508.851 1640.22,522.922 1640.42,537.285 1640.63,551.907 1640.83,566.751 1641.04,581.781 1641.24,596.96 1641.44,612.248 \n",
" 1641.65,627.608 1641.85,643 1642.05,658.385 1642.26,673.722 1642.46,688.973 1642.67,704.096 1642.87,719.052 1643.07,733.801 1643.28,748.303 1643.48,762.518 \n",
" 1643.68,776.408 1643.89,789.935 1644.09,803.06 1644.3,815.747 1644.5,827.96 1644.7,839.664 1644.91,850.825 1645.11,861.41 1645.31,871.389 1645.52,880.73 \n",
" 1645.72,889.406 1645.93,897.39 1646.13,904.657 1646.33,911.182 1646.54,916.945 1646.74,921.926 1646.94,926.107 1647.15,929.472 1647.35,932.007 1647.56,933.702 \n",
" 1647.76,934.547 1647.96,934.534 1648.17,933.66 1648.37,931.921 1648.57,929.318 1648.78,925.852 1648.98,921.529 1649.19,916.354 1649.39,910.338 1649.59,903.492 \n",
" 1649.8,895.829 1650,887.367 1650.2,878.122 1650.41,868.117 1650.61,857.373 1650.82,845.916 1651.02,833.772 1651.22,820.972 1651.43,807.545 1651.63,793.524 \n",
" 1651.83,778.944 1652.04,763.842 1652.24,748.255 1652.45,732.222 1652.65,715.784 1652.85,698.984 1653.06,681.864 1653.26,664.47 1653.46,646.845 1653.67,629.037 \n",
" 1653.87,611.091 1654.08,593.056 1654.28,574.98 1654.48,556.91 1654.69,538.894 1654.89,520.982 1655.09,503.222 1655.3,485.662 1655.5,468.349 1655.71,451.332 \n",
" 1655.91,434.657 1656.11,418.37 1656.32,402.516 1656.52,387.14 1656.72,372.285 1656.93,357.994 1657.13,344.306 1657.34,331.261 1657.54,318.897 1657.74,307.25 \n",
" 1657.95,296.354 1658.15,286.243 1658.35,276.946 1658.56,268.492 1658.76,260.909 1658.97,254.22 1659.17,248.448 1659.37,243.613 1659.58,239.732 1659.78,236.822 \n",
" 1659.98,234.894 1660.19,233.959 1660.39,234.026 1660.6,235.101 1660.8,237.185 1661,240.281 1661.21,244.386 1661.41,249.496 1661.62,255.604 1661.82,262.701 \n",
" 1662.02,270.776 1662.23,279.815 1662.43,289.801 1662.63,300.717 1662.84,312.541 1663.04,325.252 1663.25,338.823 1663.45,353.229 1663.65,368.44 1663.86,384.426 \n",
" 1664.06,401.155 1664.26,418.592 1664.47,436.703 1664.67,455.45 1664.88,474.795 1665.08,494.699 1665.28,515.12 1665.49,536.018 1665.69,557.349 1665.89,579.071 \n",
" 1666.1,601.139 1666.3,623.508 1666.51,646.134 1666.71,668.971 1666.91,691.974 1667.12,715.097 1667.32,738.295 1667.52,761.522 1667.73,784.733 1667.93,807.883 \n",
" 1668.14,830.928 1668.34,853.825 1668.54,876.531 1668.75,899.002 1668.95,921.199 1669.15,943.082 1669.36,964.609 1669.56,985.745 1669.77,1006.45 1669.97,1026.7 \n",
" 1670.17,1046.44 1670.38,1065.66 1670.58,1084.31 1670.78,1102.37 1670.99,1119.82 1671.19,1136.62 1671.4,1152.76 1671.6,1168.2 1671.8,1182.93 1672.01,1196.94 \n",
" 1672.21,1210.19 1672.41,1222.69 1672.62,1234.41 1672.82,1245.34 1673.03,1255.48 1673.23,1264.82 1673.43,1273.35 1673.64,1281.07 1673.84,1287.97 1674.04,1294.07 \n",
" 1674.25,1299.35 1674.45,1303.82 1674.66,1307.48 1674.86,1310.35 1675.06,1312.44 1675.27,1313.74 1675.47,1314.28 1675.67,1314.06 1675.88,1313.1 1676.08,1311.42 \n",
" 1676.29,1309.03 1676.49,1305.95 1676.69,1302.2 1676.9,1297.8 1677.1,1292.77 1677.3,1287.13 1677.51,1280.9 1677.71,1274.11 1677.92,1266.79 1678.12,1258.95 \n",
" 1678.32,1250.62 1678.53,1241.83 1678.73,1232.61 1678.93,1222.97 1679.14,1212.95 1679.34,1202.58 1679.55,1191.87 1679.75,1180.86 1679.95,1169.58 1680.16,1158.04 \n",
" 1680.36,1146.28 1680.56,1134.33 1680.77,1122.2 1680.97,1109.93 1681.18,1097.54 1681.38,1085.05 1681.58,1072.49 1681.79,1059.89 1681.99,1047.26 1682.19,1034.63 \n",
" 1682.4,1022.02 1682.6,1009.46 1682.81,996.959 1683.01,984.544 1683.21,972.233 1683.42,960.046 1683.62,947.999 1683.82,936.111 1684.03,924.399 1684.23,912.878 \n",
" 1684.44,901.563 1684.64,890.469 1684.84,879.611 1685.05,868.999 1685.25,858.649 1685.45,848.569 1685.66,838.773 1685.86,829.269 1686.07,820.067 1686.27,811.176 \n",
" 1686.47,802.605 1686.68,794.36 1686.88,786.449 1687.08,778.879 1687.29,771.654 1687.49,764.78 1687.7,758.262 1687.9,752.105 1688.1,746.311 1688.31,740.884 \n",
" 1688.51,735.826 1688.71,731.141 1688.92,726.83 1689.12,722.893 1689.33,719.334 1689.53,716.151 1689.73,713.346 1689.94,710.918 1690.14,708.867 1690.34,707.192 \n",
" 1690.55,705.893 1690.75,704.968 1690.96,704.415 1691.16,704.232 1691.36,704.417 1691.57,704.968 1691.77,705.881 1691.97,707.153 1692.18,708.781 1692.38,710.761 \n",
" 1692.59,713.088 1692.79,715.758 1692.99,718.766 1693.2,722.108 1693.4,725.776 1693.6,729.766 1693.81,734.071 1694.01,738.684 1694.22,743.598 1694.42,748.806 \n",
" 1694.62,754.299 1694.83,760.068 1695.03,766.106 1695.23,772.401 1695.44,778.946 1695.64,785.728 1695.85,792.737 1696.05,799.962 1696.25,807.39 1696.46,815.009 \n",
" 1696.66,822.805 1696.86,830.766 1697.07,838.877 1697.27,847.123 1697.48,855.488 1697.68,863.957 1697.88,872.514 1698.09,881.14 1698.29,889.82 1698.49,898.534 \n",
" 1698.7,907.264 1698.9,915.99 1699.11,924.695 1699.31,933.356 1699.51,941.955 1699.72,950.47 1699.92,958.879 1700.12,967.162 1700.33,975.296 1700.53,983.259 \n",
" 1700.74,991.029 1700.94,998.584 1701.14,1005.9 1701.35,1012.96 1701.55,1019.73 1701.75,1026.19 1701.96,1032.33 1702.16,1038.11 1702.37,1043.52 1702.57,1048.53 \n",
" 1702.77,1053.13 1702.98,1057.28 1703.18,1060.98 1703.39,1064.19 1703.59,1066.9 1703.79,1069.09 1704,1070.75 1704.2,1071.84 1704.4,1072.36 1704.61,1072.29 \n",
" 1704.81,1071.62 1705.02,1070.32 1705.22,1068.4 1705.42,1065.83 1705.63,1062.6 1705.83,1058.71 1706.03,1054.15 1706.24,1048.9 1706.44,1042.98 1706.65,1036.36 \n",
" 1706.85,1029.05 1707.05,1021.05 1707.26,1012.36 1707.46,1002.98 1707.66,992.917 1707.87,982.174 1708.07,970.759 1708.28,958.681 1708.48,945.952 1708.68,932.583 \n",
" 1708.89,918.59 1709.09,903.987 1709.29,888.793 1709.5,873.028 1709.7,856.711 1709.91,839.867 1710.11,822.518 1710.31,804.692 1710.52,786.416 1710.72,767.718 \n",
" 1710.92,748.63 1711.13,729.182 1711.33,709.408 1711.54,689.343 1711.74,669.023 1711.94,648.483 1712.15,627.762 1712.35,606.899 1712.55,585.932 1712.76,564.904 \n",
" 1712.96,543.854 1713.17,522.826 1713.37,501.859 1713.57,480.999 1713.78,460.287 1713.98,439.766 1714.18,419.48 1714.39,399.472 1714.59,379.784 1714.8,360.46 \n",
" 1715,341.542 1715.2,323.071 1715.41,305.089 1715.61,287.637 1715.81,270.753 1716.02,254.478 1716.22,238.847 1716.43,223.899 1716.63,209.667 1716.83,196.187 \n",
" 1717.04,183.489 1717.24,171.606 1717.44,160.566 1717.65,150.397 1717.85,141.124 1718.06,132.771 1718.26,125.36 1718.46,118.91 1718.67,113.438 1718.87,108.961 \n",
" 1719.07,105.49 1719.28,103.037 1719.48,101.611 1719.69,101.216 1719.89,101.858 1720.09,103.537 1720.3,106.251 1720.5,109.998 1720.7,114.772 1720.91,120.563 \n",
" 1721.11,127.361 1721.32,135.153 1721.52,143.923 1721.72,153.653 1721.93,164.322 1722.13,175.907 1722.33,188.385 1722.54,201.728 1722.74,215.906 1722.95,230.89 \n",
" 1723.15,246.645 1723.35,263.136 1723.56,280.328 1723.76,298.181 1723.96,316.657 1724.17,335.712 1724.37,355.305 1724.58,375.392 1724.78,395.927 1724.98,416.864 \n",
" 1725.19,438.156 1725.39,459.755 1725.59,481.612 1725.8,503.679 1726,525.906 1726.21,548.243 1726.41,570.641 1726.61,593.049 1726.82,615.417 1727.02,637.697 \n",
" 1727.22,659.839 1727.43,681.795 1727.63,703.516 1727.84,724.955 1728.04,746.067 1728.24,766.807 1728.45,787.129 1728.65,806.991 1728.85,826.352 1729.06,845.172 \n",
" 1729.26,863.412 1729.47,881.035 1729.67,898.007 1729.87,914.295 1730.08,929.866 1730.28,944.693 1730.48,958.748 1730.69,972.005 1730.89,984.443 1731.1,996.04 \n",
" 1731.3,1006.78 1731.5,1016.64 1731.71,1025.62 1731.91,1033.7 1732.11,1040.86 1732.32,1047.12 1732.52,1052.45 1732.73,1056.87 1732.93,1060.37 1733.13,1062.95 \n",
" 1733.34,1064.62 1733.54,1065.39 1733.74,1065.26 1733.95,1064.26 1734.15,1062.4 1734.36,1059.68 1734.56,1056.14 1734.76,1051.78 1734.97,1046.65 1735.17,1040.75 \n",
" 1735.37,1034.12 1735.58,1026.78 1735.78,1018.77 1735.99,1010.12 1736.19,1000.85 1736.39,991.006 1736.6,980.62 1736.8,969.729 1737,958.369 1737.21,946.581 \n",
" 1737.41,934.402 1737.62,921.873 1737.82,909.033 1738.02,895.924 1738.23,882.587 1738.43,869.063 1738.63,855.394 1738.84,841.621 1739.04,827.784 1739.25,813.927 \n",
" 1739.45,800.088 1739.65,786.308 1739.86,772.628 1740.06,759.085 1740.26,745.719 1740.47,732.567 1740.67,719.665 1740.88,707.049 1741.08,694.752 1741.28,682.81 \n",
" 1741.49,671.252 1741.69,660.111 1741.89,649.415 1742.1,639.192 1742.3,629.468 1742.51,620.268 1742.71,611.616 1742.91,603.532 1743.12,596.036 1743.32,589.148 \n",
" 1743.52,582.882 1743.73,577.255 1743.93,572.278 1744.14,567.963 1744.34,564.32 1744.54,561.355 1744.75,559.076 1744.95,557.486 1745.16,556.588 1745.36,556.382 \n",
" 1745.56,556.868 1745.77,558.043 1745.97,559.903 1746.17,562.443 1746.38,565.655 1746.58,569.53 1746.79,574.059 1746.99,579.23 1747.19,585.03 1747.4,591.445 \n",
" 1747.6,598.46 1747.8,606.059 1748.01,614.223 1748.21,622.936 1748.42,632.177 1748.62,641.925 1748.82,652.161 1749.03,662.861 1749.23,674.005 1749.43,685.567 \n",
" 1749.64,697.525 1749.84,709.855 1750.05,722.532 1750.25,735.531 1750.45,748.828 1750.66,762.396 1750.86,776.21 1751.06,790.245 1751.27,804.475 1751.47,818.875 \n",
" 1751.68,833.419 1751.88,848.082 1752.08,862.839 1752.29,877.664 1752.49,892.533 1752.69,907.423 1752.9,922.308 1753.1,937.166 1753.31,951.973 1753.51,966.707 \n",
" 1753.71,981.346 1753.92,995.868 1754.12,1010.25 1754.32,1024.48 1754.53,1038.52 1754.73,1052.37 1754.94,1066.01 1755.14,1079.4 1755.34,1092.55 1755.55,1105.43 \n",
" 1755.75,1118.02 1755.95,1130.32 1756.16,1142.29 1756.36,1153.94 1756.57,1165.25 1756.77,1176.2 1756.97,1186.78 1757.18,1196.98 1757.38,1206.79 1757.58,1216.19 \n",
" 1757.79,1225.19 1757.99,1233.76 1758.2,1241.9 1758.4,1249.61 1758.6,1256.86 1758.81,1263.66 1759.01,1270 1759.21,1275.87 1759.42,1281.27 1759.62,1286.19 \n",
" 1759.83,1290.62 1760.03,1294.56 1760.23,1298.01 1760.44,1300.96 1760.64,1303.41 1760.84,1305.36 1761.05,1306.8 1761.25,1307.73 1761.46,1308.14 1761.66,1308.05 \n",
" 1761.86,1307.43 1762.07,1306.31 1762.27,1304.66 1762.47,1302.5 1762.68,1299.82 1762.88,1296.63 1763.09,1292.92 1763.29,1288.7 1763.49,1283.96 1763.7,1278.71 \n",
" 1763.9,1272.96 1764.1,1266.7 1764.31,1259.94 1764.51,1252.68 1764.72,1244.93 1764.92,1236.69 1765.12,1227.97 1765.33,1218.76 1765.53,1209.09 1765.73,1198.96 \n",
" 1765.94,1188.37 1766.14,1177.33 1766.35,1165.85 1766.55,1153.94 1766.75,1141.61 1766.96,1128.87 1767.16,1115.74 1767.36,1102.22 1767.57,1088.33 1767.77,1074.08 \n",
" 1767.98,1059.49 1768.18,1044.56 1768.38,1029.32 1768.59,1013.79 1768.79,997.975 1768.99,981.899 1769.2,965.581 1769.4,949.038 1769.61,932.292 1769.81,915.364 \n",
" 1770.01,898.275 1770.22,881.047 1770.42,863.704 1770.62,846.268 1770.83,828.764 1771.03,811.216 1771.24,793.65 1771.44,776.092 1771.64,758.566 1771.85,741.101 \n",
" 1772.05,723.723 1772.25,706.458 1772.46,689.336 1772.66,672.383 1772.87,655.627 1773.07,639.096 1773.27,622.818 1773.48,606.822 1773.68,591.134 1773.88,575.784 \n",
" 1774.09,560.798 1774.29,546.203 1774.5,532.027 1774.7,518.296 1774.9,505.035 1775.11,492.271 1775.31,480.027 1775.51,468.329 1775.72,457.198 1775.92,446.657 \n",
" 1776.13,436.728 1776.33,427.43 1776.53,418.784 1776.74,410.807 1776.94,403.515 1777.14,396.925 1777.35,391.051 1777.55,385.905 1777.76,381.499 1777.96,377.842 \n",
" 1778.16,374.943 1778.37,372.809 1778.57,371.444 1778.77,370.851 1778.98,371.033 1779.18,371.988 1779.39,373.715 1779.59,376.21 1779.79,379.467 1780,383.479 \n",
" 1780.2,388.236 1780.4,393.727 1780.61,399.938 1780.81,406.856 1781.02,414.462 1781.22,422.739 1781.42,431.666 1781.63,441.221 1781.83,451.38 1782.03,462.118 \n",
" 1782.24,473.408 1782.44,485.22 1782.65,497.524 1782.85,510.29 1783.05,523.484 1783.26,537.071 1783.46,551.016 1783.66,565.282 1783.87,579.832 1784.07,594.626 \n",
" 1784.28,609.626 1784.48,624.79 1784.68,640.077 1784.89,655.446 1785.09,670.855 1785.3,686.261 1785.5,701.621 1785.7,716.892 1785.91,732.032 1786.11,746.998 \n",
" 1786.31,761.747 1786.52,776.237 1786.72,790.425 1786.93,804.272 1787.13,817.735 1787.33,830.776 1787.54,843.355 1787.74,855.435 1787.94,866.979 1788.15,877.951 \n",
" 1788.35,888.317 1788.56,898.045 1788.76,907.104 1788.96,915.463 1789.17,923.096 1789.37,929.976 1789.57,936.08 1789.78,941.384 1789.98,945.87 1790.19,949.519 \n",
" 1790.39,952.316 1790.59,954.247 1790.8,955.301 1791,955.469 1791.2,954.744 1791.41,953.123 1791.61,950.603 1791.82,947.186 1792.02,942.875 1792.22,937.674 \n",
" 1792.43,931.592 1792.63,924.64 1792.83,916.831 1793.04,908.178 1793.24,898.701 1793.45,888.418 1793.65,877.353 1793.85,865.528 1794.06,852.971 1794.26,839.71 \n",
" 1794.46,825.775 1794.67,811.2 1794.87,796.017 1795.08,780.264 1795.28,763.977 1795.48,747.197 1795.69,729.963 1795.89,712.318 1796.09,694.305 1796.3,675.969 \n",
" 1796.5,657.354 1796.71,638.507 1796.91,619.475 1797.11,600.306 1797.32,581.048 1797.52,561.749 1797.72,542.458 1797.93,523.225 1798.13,504.097 1798.34,485.124 \n",
" 1798.54,466.354 1798.74,447.835 1798.95,429.614 1799.15,411.739 1799.35,394.255 1799.56,377.207 1799.76,360.64 1799.97,344.596 1800.17,329.117 1800.37,314.243 \n",
" 1800.58,300.013 1800.78,286.464 1800.98,273.632 1801.19,261.551 1801.39,250.252 1801.6,239.765 1801.8,230.118 1802,221.338 1802.21,213.447 1802.41,206.468 \n",
" 1802.61,200.42 1802.82,195.32 1803.02,191.182 1803.23,188.019 1803.43,185.841 1803.63,184.655 1803.84,184.467 1804.04,185.279 1804.24,187.093 1804.45,189.905 \n",
" 1804.65,193.711 1804.86,198.506 1805.06,204.279 1805.26,211.019 1805.47,218.714 1805.67,227.347 1805.87,236.9 1806.08,247.353 1806.28,258.685 1806.49,270.871 \n",
" 1806.69,283.887 1806.89,297.704 1807.1,312.293 1807.3,327.624 1807.5,343.664 1807.71,360.379 1807.91,377.735 1808.12,395.695 1808.32,414.222 1808.52,433.277 \n",
" 1808.73,452.821 1808.93,472.815 1809.13,493.217 1809.34,513.986 1809.54,535.08 1809.75,556.458 1809.95,578.076 1810.15,599.893 1810.36,621.866 1810.56,643.952 \n",
" 1810.76,666.11 1810.97,688.296 1811.17,710.471 1811.38,732.593 1811.58,754.621 1811.78,776.516 1811.99,798.238 1812.19,819.751 1812.39,841.016 1812.6,861.997 \n",
" 1812.8,882.66 1813.01,902.971 1813.21,922.897 1813.41,942.407 1813.62,961.471 1813.82,980.06 1814.02,998.148 1814.23,1015.71 1814.43,1032.72 1814.64,1049.15 \n",
" 1814.84,1065 1815.04,1080.22 1815.25,1094.82 1815.45,1108.77 1815.65,1122.06 1815.86,1134.67 1816.06,1146.6 1816.27,1157.83 1816.47,1168.37 1816.67,1178.19 \n",
" 1816.88,1187.3 1817.08,1195.7 1817.28,1203.38 1817.49,1210.34 1817.69,1216.58 1817.9,1222.12 1818.1,1226.94 1818.3,1231.07 1818.51,1234.49 1818.71,1237.24 \n",
" 1818.91,1239.3 1819.12,1240.7 1819.32,1241.44 1819.53,1241.55 1819.73,1241.02 1819.93,1239.88 1820.14,1238.14 1820.34,1235.82 1820.54,1232.94 1820.75,1229.51 \n",
" 1820.95,1225.56 1821.16,1221.09 1821.36,1216.13 1821.56,1210.71 1821.77,1204.83 1821.97,1198.53 1822.17,1191.81 1822.38,1184.71 1822.58,1177.25 1822.79,1169.44 \n",
" 1822.99,1161.3 1823.19,1152.87 1823.4,1144.15 1823.6,1135.17 1823.8,1125.95 1824.01,1116.52 1824.21,1106.89 1824.42,1097.08 1824.62,1087.12 1824.82,1077.02 \n",
" 1825.03,1066.8 1825.23,1056.49 1825.43,1046.1 1825.64,1035.65 1825.84,1025.15 1826.05,1014.64 1826.25,1004.11 1826.45,993.599 1826.66,983.112 1826.86,972.669 \n",
" 1827.07,962.284 1827.27,951.972 1827.47,941.75 1827.68,931.63 1827.88,921.628 1828.08,911.755 1828.29,902.026 1828.49,892.453 1828.7,883.048 1828.9,873.823 \n",
" 1829.1,864.79 1829.31,855.96 1829.51,847.343 1829.71,838.95 1829.92,830.79 1830.12,822.874 1830.33,815.211 1830.53,807.81 1830.73,800.679 1830.94,793.828 \n",
" 1831.14,787.263 1831.34,780.994 1831.55,775.028 1831.75,769.371 1831.96,764.032 1832.16,759.017 1832.36,754.332 1832.57,749.983 1832.77,745.977 1832.97,742.319 \n",
" 1833.18,739.015 1833.38,736.069 1833.59,733.487 1833.79,731.273 1833.99,729.431 1834.2,727.965 1834.4,726.878 1834.6,726.173 1834.81,725.854 1835.01,725.922 \n",
" 1835.22,726.379 1835.42,727.227 1835.62,728.468 1835.83,730.1 1836.03,732.125 1836.23,734.541 1836.44,737.348 1836.64,740.544 1836.85,744.127 1837.05,748.093 \n",
" 1837.25,752.44 1837.46,757.163 1837.66,762.257 1837.86,767.717 1838.07,773.536 1838.27,779.707 1838.48,786.222 1838.68,793.073 1838.88,800.249 1839.09,807.742 \n",
" 1839.29,815.539 1839.49,823.628 1839.7,831.997 1839.9,840.633 1840.11,849.52 1840.31,858.643 1840.51,867.986 1840.72,877.531 1840.92,887.262 1841.12,897.159 \n",
" 1841.33,907.202 1841.53,917.371 1841.74,927.646 1841.94,938.003 1842.14,948.421 1842.35,958.877 1842.55,969.345 1842.75,979.803 1842.96,990.224 1843.16,1000.58 \n",
" 1843.37,1010.85 1843.57,1021.01 1843.77,1031.02 1843.98,1040.87 1844.18,1050.52 1844.38,1059.94 1844.59,1069.11 1844.79,1078.01 1845,1086.59 1845.2,1094.84 \n",
" 1845.4,1102.72 1845.61,1110.22 1845.81,1117.29 1846.01,1123.92 1846.22,1130.08 1846.42,1135.74 1846.63,1140.88 1846.83,1145.47 1847.03,1149.49 1847.24,1152.92 \n",
" 1847.44,1155.73 1847.64,1157.9 1847.85,1159.42 1848.05,1160.26 1848.26,1160.4 1848.46,1159.84 1848.66,1158.55 1848.87,1156.53 1849.07,1153.75 1849.27,1150.21 \n",
" 1849.48,1145.91 1849.68,1140.82 1849.89,1134.96 1850.09,1128.31 1850.29,1120.87 1850.5,1112.64 1850.7,1103.62 1850.9,1093.83 1851.11,1083.25 1851.31,1071.91 \n",
" 1851.52,1059.81 1851.72,1046.96 1851.92,1033.37 1852.13,1019.06 1852.33,1004.05 1852.53,988.357 1852.74,972 1852.94,955.002 1853.15,937.389 1853.35,919.187 \n",
" 1853.55,900.425 1853.76,881.131 1853.96,861.339 1854.16,841.08 1854.37,820.39 1854.57,799.304 1854.78,777.861 1854.98,756.098 1855.18,734.056 1855.39,711.776 \n",
" 1855.59,689.299 1855.79,666.669 1856,643.929 1856.2,621.124 1856.41,598.299 1856.61,575.499 1856.81,552.771 1857.02,530.16 1857.22,507.712 1857.42,485.474 \n",
" 1857.63,463.493 1857.83,441.813 1858.04,420.481 1858.24,399.541 1858.44,379.039 1858.65,359.017 1858.85,339.52 1859.05,320.589 1859.26,302.264 1859.46,284.587 \n",
" 1859.67,267.594 1859.87,251.324 1860.07,235.812 1860.28,221.093 1860.48,207.197 1860.68,194.156 1860.89,181.998 1861.09,170.751 1861.3,160.438 1861.5,151.083 \n",
" 1861.7,142.705 1861.91,135.322 1862.11,128.951 1862.31,123.605 1862.52,119.294 1862.72,116.028 1862.93,113.813 1863.13,112.651 1863.33,112.545 1863.54,113.493 \n",
" 1863.74,115.491 1863.94,118.533 1864.15,122.609 1864.35,127.71 1864.56,133.82 1864.76,140.924 1864.96,149.003 1865.17,158.036 1865.37,168 1865.57,178.87 \n",
" 1865.78,190.619 1865.98,203.216 1866.19,216.63 1866.39,230.828 1866.59,245.774 1866.8,261.432 1867,277.762 1867.2,294.725 1867.41,312.279 1867.61,330.381 \n",
" 1867.82,348.987 1868.02,368.051 1868.22,387.529 1868.43,407.372 1868.63,427.534 1868.84,447.966 1869.04,468.619 1869.24,489.445 1869.45,510.394 1869.65,531.418 \n",
" 1869.85,552.467 1870.06,573.492 1870.26,594.445 1870.47,615.277 1870.67,635.942 1870.87,656.393 1871.08,676.584 1871.28,696.469 1871.48,716.005 1871.69,735.15 \n",
" 1871.89,753.861 1872.1,772.1 1872.3,789.827 1872.5,807.005 1872.71,823.6 1872.91,839.579 1873.11,854.908 1873.32,869.56 1873.52,883.506 1873.73,896.72 \n",
" 1873.93,909.179 1874.13,920.862 1874.34,931.75 1874.54,941.825 1874.74,951.074 1874.95,959.483 1875.15,967.042 1875.36,973.744 1875.56,979.583 1875.76,984.557 \n",
" 1875.97,988.663 1876.17,991.905 1876.37,994.284 1876.58,995.808 1876.78,996.484 1876.99,996.323 1877.19,995.337 1877.39,993.539 1877.6,990.948 1877.8,987.581 \n",
" 1878,983.457 1878.21,978.6 1878.41,973.033 1878.62,966.781 1878.82,959.87 1879.02,952.33 1879.23,944.19 1879.43,935.481 1879.63,926.234 1879.84,916.483 \n",
" 1880.04,906.263 1880.25,895.608 1880.45,884.553 1880.65,873.136 1880.86,861.394 1881.06,849.363 1881.26,837.081 1881.47,824.587 1881.67,811.919 1881.88,799.114 \n",
" 1882.08,786.212 1882.28,773.249 1882.49,760.263 1882.69,747.292 1882.89,734.373 1883.1,721.541 1883.3,708.833 1883.51,696.283 1883.71,683.925 1883.91,671.793 \n",
" 1884.12,659.919 1884.32,648.334 1884.52,637.068 1884.73,626.15 1884.93,615.608 1885.14,605.468 1885.34,595.756 1885.54,586.496 1885.75,577.709 1885.95,569.418 \n",
" 1886.15,561.641 1886.36,554.397 1886.56,547.702 1886.77,541.571 1886.97,536.019 1887.17,531.057 1887.38,526.696 1887.58,522.944 1887.78,519.809 1887.99,517.298 \n",
" 1888.19,515.414 1888.4,514.162 1888.6,513.541 1888.8,513.554 1889.01,514.198 1889.21,515.47 1889.41,517.368 1889.62,519.886 1889.82,523.017 1890.03,526.755 \n",
" 1890.23,531.09 1890.43,536.012 1890.64,541.512 1890.84,547.576 1891.04,554.193 1891.25,561.348 1891.45,569.027 1891.66,577.215 1891.86,585.896 1892.06,595.053 \n",
" 1892.27,604.669 1892.47,614.726 1892.67,625.206 1892.88,636.09 1893.08,647.359 1893.29,658.993 1893.49,670.973 1893.69,683.278 1893.9,695.889 1894.1,708.784 \n",
" 1894.3,721.943 1894.51,735.346 1894.71,748.972 1894.92,762.801 1895.12,776.811 1895.32,790.983 1895.53,805.296 1895.73,819.729 1895.93,834.263 1896.14,848.878 \n",
" 1896.34,863.554 1896.55,878.272 1896.75,893.012 1896.95,907.756 1897.16,922.485 1897.36,937.181 1897.56,951.826 1897.77,966.401 1897.97,980.89 1898.18,995.276 \n",
" 1898.38,1009.54 1898.58,1023.67 1898.79,1037.65 1898.99,1051.45 1899.19,1065.08 1899.4,1078.5 1899.6,1091.71 1899.81,1104.7 1900.01,1117.44 1900.21,1129.92 \n",
" 1900.42,1142.13 1900.62,1154.06 1900.82,1165.7 1901.03,1177.02 1901.23,1188.03 1901.44,1198.69 1901.64,1209.02 1901.84,1218.98 1902.05,1228.58 1902.25,1237.79 \n",
" 1902.45,1246.61 1902.66,1255.03 1902.86,1263.04 1903.07,1270.62 1903.27,1277.77 1903.47,1284.47 1903.68,1290.72 1903.88,1296.51 1904.08,1301.82 1904.29,1306.66 \n",
" 1904.49,1311 1904.7,1314.85 1904.9,1318.19 1905.1,1321.02 1905.31,1323.33 1905.51,1325.11 1905.71,1326.35 1905.92,1327.06 1906.12,1327.22 1906.33,1326.83 \n",
" 1906.53,1325.89 1906.73,1324.38 1906.94,1322.32 1907.14,1319.68 1907.34,1316.48 1907.55,1312.71 1907.75,1308.36 1907.96,1303.44 1908.16,1297.96 1908.36,1291.9 \n",
" 1908.57,1285.27 1908.77,1278.07 1908.97,1270.32 1909.18,1262 1909.38,1253.13 1909.59,1243.71 1909.79,1233.76 1909.99,1223.27 1910.2,1212.25 1910.4,1200.73 \n",
" 1910.61,1188.7 1910.81,1176.18 1911.01,1163.19 1911.22,1149.73 1911.42,1135.82 1911.62,1121.48 1911.83,1106.72 1912.03,1091.57 1912.24,1076.04 1912.44,1060.16 \n",
" 1912.64,1043.93 1912.85,1027.4 1913.05,1010.57 1913.25,993.474 1913.46,976.138 1913.66,958.586 1913.87,940.845 1914.07,922.943 1914.27,904.907 1914.48,886.767 \n",
" 1914.68,868.553 1914.88,850.294 1915.09,832.021 1915.29,813.766 1915.5,795.56 1915.7,777.436 1915.9,759.425 1916.11,741.56 1916.31,723.874 1916.51,706.4 \n",
" 1916.72,689.169 1916.92,672.216 1917.13,655.572 1917.33,639.269 1917.53,623.339 1917.74,607.814 1917.94,592.725 1918.14,578.101 1918.35,563.973 1918.55,550.369 \n",
" 1918.76,537.316 1918.96,524.843 1919.16,512.975 1919.37,501.737 1919.57,491.153 1919.77,481.244 1919.98,472.032 1920.18,463.537 1920.39,455.777 1920.59,448.768 \n",
" 1920.79,442.526 1921,437.063 1921.2,432.391 1921.4,428.52 1921.61,425.458 1921.81,423.211 1922.02,421.783 1922.22,421.176 1922.42,421.39 1922.63,422.424 \n",
" 1922.83,424.273 1923.03,426.932 1923.24,430.392 1923.44,434.644 1923.65,439.676 1923.85,445.473 1924.05,452.02 1924.26,459.299 1924.46,467.288 1924.66,475.967 \n",
" 1924.87,485.312 1925.07,495.296 1925.28,505.893 1925.48,517.073 1925.68,528.806 1925.89,541.058 1926.09,553.795 1926.29,566.984 1926.5,580.585 1926.7,594.562 \n",
" 1926.91,608.876 1927.11,623.485 1927.31,638.349 1927.52,653.425 1927.72,668.67 1927.92,684.041 1928.13,699.494 1928.33,714.983 1928.54,730.465 1928.74,745.894 \n",
" 1928.94,761.224 1929.15,776.411 1929.35,791.411 1929.55,806.177 1929.76,820.667 1929.96,834.836 1930.17,848.641 1930.37,862.041 1930.57,874.995 1930.78,887.461 \n",
" 1930.98,899.401 1931.18,910.778 1931.39,921.554 1931.59,931.695 1931.8,941.168 1932,949.94 1932.2,957.983 1932.41,965.267 1932.61,971.767 1932.81,977.459 \n",
" 1933.02,982.32 1933.22,986.331 1933.43,989.475 1933.63,991.735 1933.83,993.1 1934.04,993.557 1934.24,993.1 1934.44,991.723 1934.65,989.421 1934.85,986.195 \n",
" 1935.06,982.045 1935.26,976.977 1935.46,970.996 1935.67,964.112 1935.87,956.336 1936.07,947.682 1936.28,938.167 1936.48,927.809 1936.69,916.629 1936.89,904.65 \n",
" 1937.09,891.898 1937.3,878.401 1937.5,864.187 1937.7,849.288 1937.91,833.738 1938.11,817.572 1938.32,800.826 1938.52,783.539 1938.72,765.752 1938.93,747.505 \n",
" 1939.13,728.841 1939.33,709.803 1939.54,690.437 1939.74,670.789 1939.95,650.904 1940.15,630.83 1940.35,610.614 1940.56,590.306 1940.76,569.952 1940.96,549.602 \n",
" 1941.17,529.304 1941.37,509.107 1941.58,489.059 1941.78,469.208 1941.98,449.601 1942.19,430.285 1942.39,411.306 1942.59,392.709 1942.8,374.538 1943,356.837 \n",
" 1943.21,339.648 1943.41,323.01 1943.61,306.963 1943.82,291.545 1944.02,276.793 1944.22,262.739 1944.43,249.418 1944.63,236.86 1944.84,225.094 1945.04,214.146 \n",
" 1945.24,204.042 1945.45,194.805 1945.65,186.455 1945.85,179.01 1946.06,172.488 1946.26,166.901 1946.47,162.262 1946.67,158.58 1946.87,155.863 1947.08,154.115 \n",
" 1947.28,153.34 1947.48,153.536 1947.69,154.704 1947.89,156.837 1948.1,159.931 1948.3,163.977 1948.5,168.963 1948.71,174.878 1948.91,181.706 1949.11,189.431 \n",
" 1949.32,198.035 1949.52,207.497 1949.73,217.794 1949.93,228.903 1950.13,240.799 1950.34,253.454 1950.54,266.839 1950.75,280.926 1950.95,295.682 1951.15,311.076 \n",
" 1951.36,327.074 1951.56,343.642 1951.76,360.744 1951.97,378.345 1952.17,396.408 1952.38,414.895 1952.58,433.769 1952.78,452.992 1952.99,472.526 1953.19,492.331 \n",
" 1953.39,512.37 1953.6,532.603 1953.8,552.992 1954.01,573.498 1954.21,594.085 1954.41,614.713 1954.62,635.347 1954.82,655.949 1955.02,676.483 1955.23,696.915 \n",
" 1955.43,717.21 1955.64,737.334 1955.84,757.254 1956.04,776.94 1956.25,796.36 1956.45,815.485 1956.65,834.286 1956.86,852.737 1957.06,870.811 1957.27,888.484 \n",
" 1957.47,905.732 1957.67,922.533 1957.88,938.867 1958.08,954.714 1958.28,970.056 1958.49,984.877 1958.69,999.161 1958.9,1012.9 1959.1,1026.07 1959.3,1038.66 \n",
" 1959.51,1050.68 1959.71,1062.1 1959.91,1072.92 1960.12,1083.14 1960.32,1092.76 1960.53,1101.75 1960.73,1110.14 1960.93,1117.91 1961.14,1125.07 1961.34,1131.62 \n",
" 1961.54,1137.56 1961.75,1142.89 1961.95,1147.62 1962.16,1151.76 1962.36,1155.31 1962.56,1158.29 1962.77,1160.69 1962.97,1162.52 1963.17,1163.81 1963.38,1164.55 \n",
" 1963.58,1164.77 1963.79,1164.46 1963.99,1163.65 1964.19,1162.35 1964.4,1160.57 1964.6,1158.32 1964.8,1155.62 1965.01,1152.49 1965.21,1148.93 1965.42,1144.97 \n",
" 1965.62,1140.61 1965.82,1135.88 1966.03,1130.79 1966.23,1125.35 1966.43,1119.59 1966.64,1113.51 1966.84,1107.13 1967.05,1100.48 1967.25,1093.55 1967.45,1086.38 \n",
" 1967.66,1078.98 1967.86,1071.35 1968.06,1063.53 1968.27,1055.51 1968.47,1047.33 1968.68,1038.99 1968.88,1030.5 1969.08,1021.89 1969.29,1013.17 1969.49,1004.36 \n",
" 1969.69,995.459 1969.9,986.493 1970.1,977.474 1970.31,968.416 1970.51,959.333 1970.71,950.24 1970.92,941.15 1971.12,932.077 1971.32,923.034 1971.53,914.035 \n",
" 1971.73,905.094 1971.94,896.224 1972.14,887.437 1972.34,878.748 1972.55,870.17 1972.75,861.714 1972.95,853.395 1973.16,845.226 1973.36,837.218 1973.57,829.385 \n",
" 1973.77,821.739 1973.97,814.294 1974.18,807.061 1974.38,800.053 1974.58,793.282 1974.79,786.76 1974.99,780.5 1975.2,774.514 1975.4,768.813 1975.6,763.408 \n",
" 1975.81,758.312 1976.01,753.536 1976.21,749.09 1976.42,744.986 1976.62,741.233 1976.83,737.843 1977.03,734.825 1977.23,732.188 1977.44,729.942 1977.64,728.096 \n",
" 1977.84,726.657 1978.05,725.634 1978.25,725.034 1978.46,724.863 1978.66,725.127 1978.86,725.833 1979.07,726.985 1979.27,728.587 1979.47,730.642 1979.68,733.154 \n",
" 1979.88,736.123 1980.09,739.552 1980.29,743.439 1980.49,747.785 1980.7,752.587 1980.9,757.843 1981.1,763.549 1981.31,769.701 1981.51,776.292 1981.72,783.316 \n",
" 1981.92,790.765 1982.12,798.63 1982.33,806.901 1982.53,815.566 1982.73,824.613 1982.94,834.029 1983.14,843.799 1983.35,853.907 1983.55,864.337 1983.75,875.069 \n",
" 1983.96,886.085 1984.16,897.365 1984.36,908.887 1984.57,920.629 1984.77,932.567 1984.98,944.678 1985.18,956.935 1985.38,969.313 1985.59,981.784 1985.79,994.32 \n",
" 1985.99,1006.89 1986.2,1019.47 1986.4,1032.03 1986.61,1044.53 1986.81,1056.95 1987.01,1069.25 1987.22,1081.41 1987.42,1093.38 1987.62,1105.14 1987.83,1116.65 \n",
" 1988.03,1127.88 1988.24,1138.8 1988.44,1149.38 1988.64,1159.58 1988.85,1169.37 1989.05,1178.72 1989.25,1187.59 1989.46,1195.96 1989.66,1203.8 1989.87,1211.08 \n",
" 1990.07,1217.76 1990.27,1223.82 1990.48,1229.23 1990.68,1233.97 1990.88,1238.02 1991.09,1241.34 1991.29,1243.92 1991.5,1245.74 1991.7,1246.78 1991.9,1247.02 \n",
" 1992.11,1246.44 1992.31,1245.03 1992.52,1242.79 1992.72,1239.68 1992.92,1235.72 1993.13,1230.89 1993.33,1225.19 1993.53,1218.61 1993.74,1211.16 1993.94,1202.84 \n",
" 1994.15,1193.64 1994.35,1183.58 1994.55,1172.66 1994.76,1160.89 1994.96,1148.28 1995.16,1134.86 1995.37,1120.63 1995.57,1105.62 1995.78,1089.83 1995.98,1073.31 \n",
" 1996.18,1056.06 1996.39,1038.13 1996.59,1019.53 1996.79,1000.29 1997,980.453 1997.2,960.047 1997.41,939.109 1997.61,917.675 1997.81,895.784 1998.02,873.476 \n",
" 1998.22,850.792 1998.42,827.775 1998.63,804.468 1998.83,780.915 1999.04,757.163 1999.24,733.257 1999.44,709.245 1999.65,685.175 1999.85,661.093 2000.05,637.049 \n",
" 2000.26,613.091 2000.46,589.268 2000.67,565.627 2000.87,542.218 2001.07,519.089 2001.28,496.287 2001.48,473.859 2001.68,451.852 2001.89,430.31 2002.09,409.28 \n",
" 2002.3,388.803 2002.5,368.923 2002.7,349.681 2002.91,331.116 2003.11,313.267 2003.31,296.17 2003.52,279.86 2003.72,264.369 2003.93,249.73 2004.13,235.972 \n",
" 2004.33,223.121 2004.54,211.202 2004.74,200.239 2004.94,190.251 2005.15,181.257 2005.35,173.273 2005.56,166.313 2005.76,160.386 2005.96,155.502 2006.17,151.666 \n",
" 2006.37,148.882 2006.57,147.151 2006.78,146.471 2006.98,146.839 2007.19,148.246 2007.39,150.685 2007.59,154.143 2007.8,158.607 2008,164.06 2008.2,170.483 \n",
" 2008.41,177.855 2008.61,186.153 2008.82,195.352 2009.02,205.423 2009.22,216.337 2009.43,228.064 2009.63,240.568 2009.83,253.816 2010.04,267.77 2010.24,282.393 \n",
" 2010.45,297.644 2010.65,313.483 2010.85,329.867 2011.06,346.753 2011.26,364.097 2011.46,381.853 2011.67,399.975 2011.87,418.418 2012.08,437.134 2012.28,456.075 \n",
" 2012.48,475.194 2012.69,494.445 2012.89,513.778 2013.09,533.146 2013.3,552.503 2013.5,571.802 2013.71,590.996 2013.91,610.04 2014.11,628.889 2014.32,647.499 \n",
" 2014.52,665.828 2014.72,683.834 2014.93,701.475 2015.13,718.713 2015.34,735.51 2015.54,751.83 2015.74,767.638 2015.95,782.9 2016.15,797.586 2016.35,811.665 \n",
" 2016.56,825.11 2016.76,837.896 2016.97,849.998 2017.17,861.395 2017.37,872.066 2017.58,881.996 2017.78,891.167 2017.98,899.566 2018.19,907.183 2018.39,914.008 \n",
" 2018.6,920.035 2018.8,925.259 2019,929.677 2019.21,933.289 2019.41,936.097 2019.61,938.104 2019.82,939.317 2020.02,939.743 2020.23,939.392 2020.43,938.276 \n",
" 2020.63,936.409 2020.84,933.806 2021.04,930.484 2021.24,926.462 2021.45,921.761 2021.65,916.402 2021.86,910.409 2022.06,903.808 2022.26,896.623 2022.47,888.882 \n",
" 2022.67,880.615 2022.87,871.849 2023.08,862.616 2023.28,852.946 2023.49,842.872 2023.69,832.425 2023.89,821.64 2024.1,810.55 2024.3,799.188 2024.5,787.589 \n",
" 2024.71,775.786 2024.91,763.816 2025.12,751.711 2025.32,739.506 2025.52,727.235 2025.73,714.932 2025.93,702.63 2026.13,690.363 2026.34,678.163 2026.54,666.061 \n",
" 2026.75,654.089 2026.95,642.277 2027.15,630.656 2027.36,619.254 2027.56,608.098 2027.76,597.217 2027.97,586.635 2028.17,576.378 2028.38,566.469 2028.58,556.932 \n",
" 2028.78,547.788 2028.99,539.057 2029.19,530.758 2029.39,522.91 2029.6,515.528 2029.8,508.628 2030.01,502.225 2030.21,496.332 2030.41,490.959 2030.62,486.117 \n",
" 2030.82,481.815 2031.02,478.062 2031.23,474.863 2031.43,472.225 2031.64,470.15 2031.84,468.643 2032.04,467.706 2032.25,467.337 2032.45,467.539 2032.65,468.309 \n",
" 2032.86,469.644 2033.06,471.542 2033.27,473.998 2033.47,477.006 2033.67,480.561 2033.88,484.656 2034.08,489.283 2034.29,494.433 2034.49,500.097 2034.69,506.265 \n",
" 2034.9,512.927 2035.1,520.072 2035.3,527.688 2035.51,535.762 2035.71,544.283 2035.92,553.237 2036.12,562.611 2036.32,572.391 2036.53,582.563 2036.73,593.113 \n",
" 2036.93,604.025 2037.14,615.286 2037.34,626.879 2037.55,638.79 2037.75,651.004 2037.95,663.505 2038.16,676.277 2038.36,689.304 2038.56,702.572 2038.77,716.063 \n",
" 2038.97,729.763 2039.18,743.656 2039.38,757.725 2039.58,771.955 2039.79,786.33 2039.99,800.834 2040.19,815.451 2040.4,830.166 2040.6,844.963 2040.81,859.826 \n",
" 2041.01,874.739 2041.21,889.686 2041.42,904.653 2041.62,919.622 2041.82,934.579 2042.03,949.507 2042.23,964.392 2042.44,979.217 2042.64,993.967 2042.84,1008.63 \n",
" 2043.05,1023.18 2043.25,1037.61 2043.45,1051.9 2043.66,1066.04 2043.86,1080 2044.07,1093.78 2044.27,1107.36 2044.47,1120.73 2044.68,1133.85 2044.88,1146.73 \n",
" 2045.08,1159.35 2045.29,1171.68 2045.49,1183.72 2045.7,1195.44 2045.9,1206.83 2046.1,1217.88 2046.31,1228.57 2046.51,1238.88 2046.71,1248.8 2046.92,1258.31 \n",
" 2047.12,1267.4 2047.33,1276.05 2047.53,1284.25 2047.73,1291.98 2047.94,1299.23 2048.14,1305.98 2048.34,1312.23 2048.55,1317.95 2048.75,1323.13 2048.96,1327.77 \n",
" 2049.16,1331.85 2049.36,1335.35 2049.57,1338.27 2049.77,1340.6 2049.97,1342.32 2050.18,1343.43 2050.38,1343.93 2050.59,1343.79 2050.79,1343.02 2050.99,1341.61 \n",
" 2051.2,1339.55 2051.4,1336.85 2051.6,1333.49 2051.81,1329.48 2052.01,1324.81 2052.22,1319.5 2052.42,1313.52 2052.62,1306.9 2052.83,1299.63 2053.03,1291.72 \n",
" 2053.23,1283.18 2053.44,1274 2053.64,1264.21 2053.85,1253.81 2054.05,1242.82 2054.25,1231.23 2054.46,1219.08 2054.66,1206.37 2054.86,1193.13 2055.07,1179.36 \n",
" 2055.27,1165.09 2055.48,1150.34 2055.68,1135.14 2055.88,1119.49 2056.09,1103.44 2056.29,1087 2056.49,1070.2 2056.7,1053.07 2056.9,1035.64 2057.11,1017.93 \n",
" 2057.31,999.988 2057.51,981.832 2057.72,963.499 2057.92,945.021 2058.12,926.433 2058.33,907.77 2058.53,889.066 2058.74,870.358 2058.94,851.683 2059.14,833.075 \n",
" 2059.35,814.572 2059.55,796.211 2059.75,778.028 2059.96,760.061 2060.16,742.347 2060.37,724.921 2060.57,707.819 2060.77,691.079 2060.98,674.734 2061.18,658.82 \n",
" 2061.38,643.371 2061.59,628.418 2061.79,613.996 2062,600.134 2062.2,586.863 2062.4,574.213 2062.61,562.209 2062.81,550.88 2063.01,540.248 2063.22,530.339 \n",
" 2063.42,521.174 2063.63,512.772 2063.83,505.152 2064.03,498.33 2064.24,492.321 2064.44,487.137 2064.64,482.79 2064.85,479.288 2065.05,476.636 2065.26,474.841 \n",
" 2065.46,473.903 2065.66,473.824 2065.87,474.601 2066.07,476.229 2066.27,478.703 2066.48,482.013 2066.68,486.149 2066.89,491.098 2067.09,496.845 2067.29,503.371 \n",
" 2067.5,510.658 2067.7,518.684 2067.9,527.425 2068.11,536.856 2068.31,546.949 2068.52,557.675 2068.72,569.003 2068.92,580.9 2069.13,593.331 2069.33,606.26 \n",
" 2069.53,619.65 2069.74,633.462 2069.94,647.655 2070.15,662.189 2070.35,677.02 2070.55,692.106 2070.76,707.401 2070.96,722.862 2071.16,738.442 2071.37,754.096 \n",
" 2071.57,769.777 2071.78,785.439 2071.98,801.034 2072.18,816.517 2072.39,831.839 2072.59,846.956 2072.79,861.821 2073,876.39 2073.2,890.616 2073.41,904.457 \n",
" 2073.61,917.869 2073.81,930.81 2074.02,943.24 2074.22,955.118 2074.42,966.408 2074.63,977.071 2074.83,987.074 2075.04,996.382 2075.24,1004.96 2075.44,1012.79 \n",
" 2075.65,1019.83 2075.85,1026.06 2076.06,1031.46 2076.26,1036.01 2076.46,1039.67 2076.67,1042.45 2076.87,1044.33 2077.07,1045.28 2077.28,1045.31 2077.48,1044.4 \n",
" 2077.69,1042.55 2077.89,1039.76 2078.09,1036.03 2078.3,1031.35 2078.5,1025.75 2078.7,1019.21 2078.91,1011.76 2079.11,1003.4 2079.32,994.155 2079.52,984.035 \n",
" 2079.72,973.061 2079.93,961.256 2080.13,948.644 2080.33,935.249 2080.54,921.101 2080.74,906.23 2080.95,890.667 2081.15,874.446 2081.35,857.603 2081.56,840.174 \n",
" 2081.76,822.198 2081.96,803.716 2082.17,784.768 2082.37,765.397 2082.58,745.646 2082.78,725.559 2082.98,705.183 2083.19,684.562 2083.39,663.743 2083.59,642.774 \n",
" 2083.8,621.701 2084,600.572 2084.21,579.434 2084.41,558.335 2084.61,537.323 2084.82,516.443 2085.02,495.743 2085.22,475.269 2085.43,455.065 2085.63,435.178 \n",
" 2085.84,415.649 2086.04,396.522 2086.24,377.838 2086.45,359.638 2086.65,341.961 2086.85,324.844 2087.06,308.323 2087.26,292.433 2087.47,277.208 2087.67,262.678 \n",
" 2087.87,248.872 2088.08,235.819 2088.28,223.543 2088.48,212.07 2088.69,201.419 2088.89,191.612 2089.1,182.665 2089.3,174.595 2089.5,167.414 2089.71,161.135 \n",
" 2089.91,155.765 2090.11,151.313 2090.32,147.783 2090.52,145.177 2090.73,143.498 2090.93,142.742 2091.13,142.907 2091.34,143.988 2091.54,145.976 2091.74,148.862 \n",
" 2091.95,152.636 2092.15,157.284 2092.36,162.791 2092.56,169.14 2092.76,176.314 2092.97,184.292 2093.17,193.053 2093.37,202.575 2093.58,212.832 2093.78,223.8 \n",
" 2093.99,235.452 2094.19,247.761 2094.39,260.697 2094.6,274.231 2094.8,288.332 2095,302.969 2095.21,318.111 2095.41,333.723 2095.62,349.775 2095.82,366.231 \n",
" 2096.02,383.058 2096.23,400.223 2096.43,417.692 2096.63,435.429 2096.84,453.402 2097.04,471.575 2097.25,489.916 2097.45,508.391 2097.65,526.966 2097.86,545.61 \n",
" 2098.06,564.289 2098.26,582.972 2098.47,601.627 2098.67,620.226 2098.88,638.737 2099.08,657.132 2099.28,675.383 2099.49,693.463 2099.69,711.345 2099.89,729.004 \n",
" 2100.1,746.417 2100.3,763.558 2100.51,780.407 2100.71,796.942 2100.91,813.143 2101.12,828.99 2101.32,844.467 2101.52,859.556 2101.73,874.241 2101.93,888.507 \n",
" 2102.14,902.343 2102.34,915.734 2102.54,928.669 2102.75,941.139 2102.95,953.135 2103.15,964.647 2103.36,975.67 2103.56,986.197 2103.77,996.222 2103.97,1005.74 \n",
" 2104.17,1014.76 2104.38,1023.26 2104.58,1031.25 2104.78,1038.72 2104.99,1045.69 2105.19,1052.14 2105.4,1058.09 2105.6,1063.52 2105.8,1068.46 2106.01,1072.89 \n",
" 2106.21,1076.83 2106.41,1080.27 2106.62,1083.24 2106.82,1085.72 2107.03,1087.73 2107.23,1089.27 2107.43,1090.35 2107.64,1090.99 2107.84,1091.18 2108.04,1090.93 \n",
" 2108.25,1090.26 2108.45,1089.18 2108.66,1087.68 2108.86,1085.79 2109.06,1083.51 2109.27,1080.85 2109.47,1077.82 2109.67,1074.44 2109.88,1070.71 2110.08,1066.64 \n",
" 2110.29,1062.25 2110.49,1057.54 2110.69,1052.53 2110.9,1047.22 2111.1,1041.64 2111.3,1035.78 2111.51,1029.67 2111.71,1023.31 2111.92,1016.72 2112.12,1009.9 \n",
" 2112.32,1002.88 2112.53,995.659 2112.73,988.254 2112.93,980.677 2113.14,972.941 2113.34,965.059 2113.55,957.045 2113.75,948.911 2113.95,940.672 2114.16,932.342 \n",
" 2114.36,923.934 2114.56,915.462 2114.77,906.942 2114.97,898.388 2115.18,889.815 2115.38,881.237 2115.58,872.671 2115.79,864.132 2115.99,855.634 2116.2,847.196 \n",
" 2116.4,838.831 2116.6,830.558 2116.81,822.391 2117.01,814.348 2117.21,806.445 2117.42,798.699 2117.62,791.128 2117.83,783.747 2118.03,776.574 2118.23,769.625 \n",
" 2118.44,762.919 2118.64,756.471 2118.84,750.298 2119.05,744.418 2119.25,738.846 2119.46,733.599 2119.66,728.693 2119.86,724.144 2120.07,719.968 2120.27,716.179 \n",
" 2120.47,712.792 2120.68,709.821 2120.88,707.28 2121.09,705.183 2121.29,703.541 2121.49,702.367 2121.7,701.671 2121.9,701.465 2122.1,701.758 2122.31,702.558 \n",
" 2122.51,703.873 2122.72,705.711 2122.92,708.077 2123.12,710.976 2123.33,714.411 2123.53,718.386 2123.73,722.901 2123.94,727.958 2124.14,733.554 2124.35,739.688 \n",
" 2124.55,746.357 2124.75,753.555 2124.96,761.276 2125.16,769.512 2125.36,778.255 2125.57,787.494 2125.77,797.217 2125.98,807.411 2126.18,818.062 2126.38,829.153 \n",
" 2126.59,840.667 2126.79,852.586 2126.99,864.889 2127.2,877.554 2127.4,890.559 2127.61,903.879 2127.81,917.49 2128.01,931.364 2128.22,945.474 2128.42,959.791 \n",
" 2128.62,974.285 2128.83,988.925 2129.03,1003.68 2129.24,1018.51 2129.44,1033.4 2129.64,1048.29 2129.85,1063.17 2130.05,1077.98 2130.25,1092.71 2130.46,1107.3 \n",
" 2130.66,1121.72 2130.87,1135.94 2131.07,1149.92 2131.27,1163.62 2131.48,1177.01 2131.68,1190.04 2131.88,1202.68 2132.09,1214.89 2132.29,1226.65 2132.5,1237.9 \n",
" 2132.7,1248.62 2132.9,1258.77 2133.11,1268.32 2133.31,1277.24 2133.51,1285.49 2133.72,1293.05 2133.92,1299.89 2134.13,1305.98 2134.33,1311.29 2134.53,1315.79 \n",
" 2134.74,1319.48 2134.94,1322.32 2135.14,1324.29 2135.35,1325.38 2135.55,1325.57 2135.76,1324.86 2135.96,1323.21 2136.16,1320.64 2136.37,1317.12 2136.57,1312.66 \n",
" 2136.77,1307.24 2136.98,1300.88 2137.18,1293.57 2137.39,1285.31 2137.59,1276.11 2137.79,1265.98 2138,1254.92 2138.2,1242.96 2138.4,1230.11 2138.61,1216.38 \n",
" 2138.81,1201.79 2139.02,1186.37 2139.22,1170.14 2139.42,1153.12 2139.63,1135.35 2139.83,1116.84 2140.03,1097.65 2140.24,1077.79 2140.44,1057.3 2140.65,1036.23 \n",
" 2140.85,1014.6 2141.05,992.47 2141.26,969.869 2141.46,946.844 2141.66,923.439 2141.87,899.7 2142.07,875.672 2142.28,851.404 2142.48,826.943 2142.68,802.339 \n",
" 2142.89,777.64 2143.09,752.896 2143.29,728.157 2143.5,703.473 2143.7,678.894 2143.91,654.471 2144.11,630.251 2144.31,606.286 2144.52,582.623 2144.72,559.31 \n",
" 2144.92,536.395 2145.13,513.925 2145.33,491.943 2145.54,470.496 2145.74,449.625 2145.94,429.372 2146.15,409.778 2146.35,390.88 2146.55,372.715 2146.76,355.319 \n",
" 2146.96,338.725 2147.17,322.963 2147.37,308.063 2147.57,294.051 2147.78,280.954 2147.98,268.792 2148.18,257.587 2148.39,247.355 2148.59,238.114 2148.8,229.875 \n",
" 2149,222.649 2149.2,216.445 2149.41,211.267 2149.61,207.119 2149.81,204.002 2150.02,201.913 2150.22,200.848 2150.43,200.801 2150.63,201.761 2150.83,203.717 \n",
" 2151.04,206.655 2151.24,210.558 2151.44,215.408 2151.65,221.183 2151.85,227.861 2152.06,235.416 2152.26,243.822 2152.46,253.048 2152.67,263.065 2152.87,273.839 \n",
" 2153.07,285.336 2153.28,297.521 2153.48,310.355 2153.69,323.802 2153.89,337.82 2154.09,352.369 2154.3,367.406 2154.5,382.89 2154.7,398.777 2154.91,415.023 \n",
" 2155.11,431.582 2155.32,448.411 2155.52,465.463 2155.72,482.694 2155.93,500.057 2156.13,517.509 2156.33,535.003 2156.54,552.496 2156.74,569.942 2156.95,587.298 \n",
" 2157.15,604.522 2157.35,621.571 2157.56,638.403 2157.76,654.979 2157.97,671.26 2158.17,687.208 2158.37,702.785 2158.58,717.957 2158.78,732.69 2158.98,746.952 \n",
" 2159.19,760.711 2159.39,773.94 2159.6,786.61 2159.8,798.696 2160,810.175 2160.21,821.025 2160.41,831.225 2160.61,840.758 2160.82,849.608 2161.02,857.761 \n",
" 2161.23,865.204 2161.43,871.928 2161.63,877.924 2161.84,883.187 2162.04,887.712 2162.24,891.498 2162.45,894.543 2162.65,896.85 2162.86,898.423 2163.06,899.267 \n",
" 2163.26,899.388 2163.47,898.797 2163.67,897.504 2163.87,895.522 2164.08,892.863 2164.28,889.545 2164.49,885.583 2164.69,880.997 2164.89,875.806 2165.1,870.032 \n",
" 2165.3,863.695 2165.5,856.82 2165.71,849.431 2165.91,841.554 2166.12,833.214 2166.32,824.438 2166.52,815.254 2166.73,805.69 2166.93,795.775 2167.13,785.538 \n",
" 2167.34,775.008 2167.54,764.216 2167.75,753.192 2167.95,741.966 2168.15,730.567 2168.36,719.026 2168.56,707.373 2168.76,695.639 2168.97,683.851 2169.17,672.041 \n",
" 2169.38,660.237 2169.58,648.466 2169.78,636.758 2169.99,625.139 2170.19,613.637 2170.39,602.277 2170.6,591.085 2170.8,580.086 2171.01,569.302 2171.21,558.758 \n",
" 2171.41,548.476 2171.62,538.476 2171.82,528.78 2172.02,519.406 2172.23,510.372 2172.43,501.698 2172.64,493.399 2172.84,485.49 2173.04,477.986 2173.25,470.901 \n",
" 2173.45,464.247 2173.65,458.036 2173.86,452.278 2174.06,446.984 2174.27,442.161 2174.47,437.817 2174.67,433.96 2174.88,430.595 2175.08,427.727 2175.28,425.36 \n",
" 2175.49,423.498 2175.69,422.142 2175.9,421.295 2176.1,420.958 2176.3,421.13 2176.51,421.812 2176.71,423.001 2176.91,424.696 2177.12,426.895 2177.32,429.594 \n",
" 2177.53,432.79 2177.73,436.478 2177.93,440.654 2178.14,445.312 2178.34,450.446 2178.54,456.051 2178.75,462.12 2178.95,468.646 2179.16,475.622 2179.36,483.039 \n",
" 2179.56,490.89 2179.77,499.167 2179.97,507.86 2180.17,516.961 2180.38,526.461 2180.58,536.35 2180.79,546.618 2180.99,557.255 2181.19,568.252 2181.4,579.597 \n",
" 2181.6,591.28 2181.8,603.289 2182.01,615.615 2182.21,628.244 2182.42,641.166 2182.62,654.369 2182.82,667.84 2183.03,681.567 2183.23,695.538 2183.43,709.739 \n",
" 2183.64,724.157 2183.84,738.779 2184.05,753.591 2184.25,768.58 2184.45,783.729 2184.66,799.026 2184.86,814.455 2185.06,830.001 2185.27,845.648 2185.47,861.38 \n",
" 2185.68,877.181 2185.88,893.035 2186.08,908.924 2186.29,924.832 2186.49,940.74 2186.69,956.631 2186.9,972.486 2187.1,988.288 2187.31,1004.02 2187.51,1019.65 \n",
" 2187.71,1035.18 2187.92,1050.57 2188.12,1065.81 2188.32,1080.88 2188.53,1095.76 2188.73,1110.43 2188.94,1124.86 2189.14,1139.04 2189.34,1152.94 2189.55,1166.54 \n",
" 2189.75,1179.83 2189.95,1192.78 2190.16,1205.37 2190.36,1217.57 2190.57,1229.37 2190.77,1240.75 2190.97,1251.69 2191.18,1262.16 2191.38,1272.15 2191.58,1281.63 \n",
" 2191.79,1290.59 2191.99,1299.01 2192.2,1306.86 2192.4,1314.14 2192.6,1320.83 2192.81,1326.9 2193.01,1332.35 2193.21,1337.15 2193.42,1341.3 2193.62,1344.78 \n",
" 2193.83,1347.58 2194.03,1349.69 2194.23,1351.09 2194.44,1351.79 2194.64,1351.76 2194.84,1351.02 2195.05,1349.54 2195.25,1347.33 2195.46,1344.39 2195.66,1340.71 \n",
" 2195.86,1336.29 2196.07,1331.14 2196.27,1325.26 2196.47,1318.66 2196.68,1311.33 2196.88,1303.3 2197.09,1294.56 2197.29,1285.13 2197.49,1275.02 2197.7,1264.26 \n",
" 2197.9,1252.84 2198.1,1240.79 2198.31,1228.14 2198.51,1214.89 2198.72,1201.08 2198.92,1186.72 2199.12,1171.84 2199.33,1156.47 2199.53,1140.64 2199.74,1124.37 \n",
" 2199.94,1107.69 2200.14,1090.65 2200.35,1073.26 2200.55,1055.56 2200.75,1037.59 2200.96,1019.39 2201.16,1000.98 2201.37,982.415 2201.57,963.726 2201.77,944.951 \n",
" 2201.98,926.131 2202.18,907.305 2202.38,888.513 2202.59,869.796 2202.79,851.194 2203,832.748 2203.2,814.497 2203.4,796.482 2203.61,778.743 2203.81,761.319 \n",
" 2204.01,744.25 2204.22,727.573 2204.42,711.326 2204.63,695.546 2204.83,680.269 2205.03,665.529 2205.24,651.361 2205.44,637.796 2205.64,624.866 2205.85,612.601 \n",
" 2206.05,601.028 2206.26,590.174 2206.46,580.063 2206.66,570.72 2206.87,562.164 2207.07,554.415 2207.27,547.491 2207.48,541.407 2207.68,536.176 2207.89,531.808 \n",
" 2208.09,528.313 2208.29,525.697 2208.5,523.964 2208.7,523.117 2208.9,523.155 2209.11,524.075 2209.31,525.872 2209.52,528.539 2209.72,532.067 2209.92,536.443 \n",
" 2210.13,541.653 2210.33,547.681 2210.53,554.507 2210.74,562.112 2210.94,570.471 2211.15,579.56 2211.35,589.351 2211.55,599.815 2211.76,610.922 2211.96,622.638 \n",
" 2212.16,634.929 2212.37,647.758 2212.57,661.088 2212.78,674.879 2212.98,689.091 2213.18,703.682 2213.39,718.609 2213.59,733.828 2213.79,749.294 2214,764.961 \n",
" 2214.2,780.783 2214.41,796.713 2214.61,812.704 2214.81,828.709 2215.02,844.679 2215.22,860.566 2215.42,876.324 2215.63,891.905 2215.83,907.261 2216.04,922.347 \n",
" 2216.24,937.117 2216.44,951.524 2216.65,965.527 2216.85,979.08 2217.05,992.142 2217.26,1004.67 2217.46,1016.63 2217.67,1027.98 2217.87,1038.68 2218.07,1048.71 \n",
" 2218.28,1058.02 2218.48,1066.58 2218.68,1074.37 2218.89,1081.36 2219.09,1087.52 2219.3,1092.84 2219.5,1097.28 2219.7,1100.84 2219.91,1103.49 2220.11,1105.22 \n",
" 2220.31,1106.02 2220.52,1105.89 2220.72,1104.8 2220.93,1102.77 2221.13,1099.79 2221.33,1095.86 2221.54,1090.98 2221.74,1085.16 2221.94,1078.41 2222.15,1070.74 \n",
" 2222.35,1062.16 2222.56,1052.68 2222.76,1042.33 2222.96,1031.12 2223.17,1019.08 2223.37,1006.23 2223.57,992.59 2223.78,978.198 2223.98,963.08 2224.19,947.268 \n",
" 2224.39,930.794 2224.59,913.695 2224.8,896.007 2225,877.767 2225.2,859.015 2225.41,839.79 2225.61,820.135 2225.82,800.092 2226.02,779.704 2226.22,759.014 \n",
" 2226.43,738.067 2226.63,716.909 2226.83,695.584 2227.04,674.139 2227.24,652.618 2227.45,631.067 2227.65,609.532 2227.85,588.058 2228.06,566.691 2228.26,545.473 \n",
" 2228.46,524.451 2228.67,503.665 2228.87,483.16 2229.08,462.976 2229.28,443.154 2229.48,423.733 2229.69,404.752 2229.89,386.248 2230.09,368.255 2230.3,350.809 \n",
" 2230.5,333.941 2230.71,317.684 2230.91,302.066 2231.11,287.116 2231.32,272.858 2231.52,259.319 2231.72,246.519 2231.93,234.48 2232.13,223.221 2232.34,212.758 \n",
" 2232.54,203.106 2232.74,194.277 2232.95,186.284 2233.15,179.135 2233.35,172.837 2233.56,167.395 2233.76,162.812 2233.97,159.091 2234.17,156.23 2234.37,154.227 \n",
" 2234.58,153.078 2234.78,152.777 2234.98,153.316 2235.19,154.687 2235.39,156.877 2235.6,159.875 2235.8,163.667 2236,168.237 2236.21,173.569 2236.41,179.643 \n",
" 2236.61,186.442 2236.82,193.944 2237.02,202.127 2237.23,210.97 2237.43,220.447 2237.63,230.536 2237.84,241.21 2238.04,252.443 2238.24,264.21 2238.45,276.482 \n",
" 2238.65,289.231 2238.86,302.431 2239.06,316.051 2239.26,330.065 2239.47,344.442 2239.67,359.153 2239.87,374.17 2240.08,389.464 2240.28,405.005 2240.49,420.765 \n",
" 2240.69,436.715 2240.89,452.827 2241.1,469.073 2241.3,485.426 2241.51,501.858 2241.71,518.342 2241.91,534.853 2242.12,551.365 2242.32,567.852 2242.52,584.291 \n",
" 2242.73,600.659 2242.93,616.931 2243.14,633.086 2243.34,649.103 2243.54,664.96 2243.75,680.638 2243.95,696.117 2244.15,711.38 2244.36,726.409 2244.56,741.187 \n",
" 2244.77,755.698 2244.97,769.927 2245.17,783.86 2245.38,797.483 2245.58,810.785 2245.78,823.752 2245.99,836.374 2246.19,848.641 2246.4,860.543 2246.6,872.071 \n",
" 2246.8,883.217 2247.01,893.973 2247.21,904.333 2247.41,914.291 2247.62,923.841 2247.82,932.978 2248.03,941.699 2248.23,949.998 2248.43,957.874 2248.64,965.323 \n",
" 2248.84,972.344 2249.04,978.934 2249.25,985.092 2249.45,990.818 2249.66,996.112 2249.86,1000.97 2250.06,1005.4 2250.27,1009.4 2250.47,1012.97 2250.67,1016.11 \n",
" 2250.88,1018.82 2251.08,1021.11 2251.29,1022.97 2251.49,1024.42 2251.69,1025.45 2251.9,1026.07 2252.1,1026.29 2252.3,1026.09 2252.51,1025.5 2252.71,1024.51 \n",
" 2252.92,1023.14 2253.12,1021.38 2253.32,1019.24 2253.53,1016.73 2253.73,1013.85 2253.93,1010.61 2254.14,1007.02 2254.34,1003.08 2254.55,998.812 2254.75,994.212 \n",
" 2254.95,989.291 2255.16,984.06 2255.36,978.528 2255.56,972.704 2255.77,966.599 2255.97,960.223 2256.18,953.59 2256.38,946.709 2256.58,939.594 2256.79,932.256 \n",
" 2256.99,924.711 2257.19,916.971 2257.4,909.05 2257.6,900.964 2257.81,892.728 2258.01,884.357 2258.21,875.869 2258.42,867.28 2258.62,858.607 2258.82,849.868 \n",
" 2259.03,841.081 2259.23,832.266 2259.44,823.441 2259.64,814.626 2259.84,805.84 2260.05,797.105 2260.25,788.441 2260.45,779.869 2260.66,771.409 2260.86,763.084 \n",
" 2261.07,754.915 2261.27,746.924 2261.47,739.132 2261.68,731.562 2261.88,724.236 2262.08,717.175 2262.29,710.401 2262.49,703.936 2262.7,697.802 2262.9,692.019 \n",
" 2263.1,686.608 2263.31,681.591 2263.51,676.986 2263.71,672.814 2263.92,669.093 2264.12,665.842 2264.33,663.079 2264.53,660.82 2264.73,659.081 2264.94,657.877 \n",
" 2265.14,657.224 2265.34,657.133 2265.55,657.618 2265.75,658.688 2265.96,660.355 2266.16,662.626 2266.36,665.51 2266.57,669.011 2266.77,673.135 2266.97,677.885 \n",
" 2267.18,683.263 2267.38,689.269 2267.59,695.901 2267.79,703.156 2267.99,711.031 2268.2,719.52 2268.4,728.613 2268.6,738.303 2268.81,748.578 2269.01,759.425 \n",
" 2269.22,770.83 2269.42,782.778 2269.62,795.25 2269.83,808.227 2270.03,821.689 2270.23,835.612 2270.44,849.974 2270.64,864.748 2270.85,879.908 2271.05,895.424 \n",
" 2271.25,911.269 2271.46,927.409 2271.66,943.813 2271.86,960.448 2272.07,977.278 2272.27,994.269 2272.48,1011.38 2272.68,1028.58 2272.88,1045.83 2273.09,1063.08 \n",
" 2273.29,1080.31 2273.49,1097.46 2273.7,1114.5 2273.9,1131.38 2274.11,1148.08 2274.31,1164.53 2274.51,1180.71 2274.72,1196.57 2274.92,1212.07 2275.12,1227.17 \n",
" 2275.33,1241.83 2275.53,1256.01 2275.74,1269.67 2275.94,1282.78 2276.14,1295.29 2276.35,1307.17 2276.55,1318.38 2276.75,1328.89 2276.96,1338.67 2277.16,1347.69 \n",
" 2277.37,1355.91 2277.57,1363.31 2277.77,1369.86 2277.98,1375.54 2278.18,1380.32 2278.38,1384.18 2278.59,1387.11 2278.79,1389.08 2279,1390.08 2279.2,1390.11 \n",
" 2279.4,1389.14 2279.61,1387.17 2279.81,1384.2 2280.01,1380.22 2280.22,1375.23 2280.42,1369.23 2280.63,1362.23 2280.83,1354.23 2281.03,1345.24 2281.24,1335.27 \n",
" 2281.44,1324.33 2281.65,1312.45 2281.85,1299.64 2282.05,1285.91 2282.26,1271.3 2282.46,1255.82 2282.66,1239.51 2282.87,1222.38 2283.07,1204.49 2283.28,1185.85 \n",
" 2283.48,1166.5 2283.68,1146.48 2283.89,1125.83 2284.09,1104.59 2284.29,1082.8 2284.5,1060.5 2284.7,1037.73 2284.91,1014.55 2285.11,991 2285.31,967.124 \n",
" 2285.52,942.972 2285.72,918.594 2285.92,894.04 2286.13,869.358 2286.33,844.601 2286.54,819.818 2286.74,795.06 2286.94,770.377 2287.15,745.821 2287.35,721.439 \n",
" 2287.55,697.284 2287.76,673.402 2287.96,649.842 2288.17,626.652 2288.37,603.877 2288.57,581.563 2288.78,559.754 2288.98,538.493 2289.18,517.82 2289.39,497.776 \n",
" 2289.59,478.398 2289.8,459.723 2290,441.784 2290.2,424.616 2290.41,408.247 2290.61,392.706 2290.81,378.021 2291.02,364.214 2291.22,351.308 2291.43,339.322 \n",
" 2291.63,328.274 \n",
" \"/>\n",
"<path clip-path=\"url(#clip000)\" d=\"\n",
"M2012.35 198.898 L2280.76 198.898 L2280.76 95.2176 L2012.35 95.2176 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip000)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2012.35,198.898 2280.76,198.898 2280.76,95.2176 2012.35,95.2176 2012.35,198.898 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip000)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2036.35,147.058 2180.34,147.058 \n",
" \"/>\n",
"<path clip-path=\"url(#clip000)\" d=\"M2218.18 166.745 Q2216.37 171.375 2214.66 172.787 Q2212.94 174.199 2210.07 174.199 L2206.67 174.199 L2206.67 170.634 L2209.17 170.634 Q2210.93 170.634 2211.9 169.8 Q2212.88 168.967 2214.06 165.865 L2214.82 163.921 L2204.33 138.412 L2208.85 138.412 L2216.95 158.689 L2225.05 138.412 L2229.57 138.412 L2218.18 166.745 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip000)\" d=\"M2236.86 160.402 L2244.5 160.402 L2244.5 134.037 L2236.19 135.703 L2236.19 131.444 L2244.45 129.778 L2249.13 129.778 L2249.13 160.402 L2256.76 160.402 L2256.76 164.338 L2236.86 164.338 L2236.86 160.402 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
]
},
"execution_count": 24,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"function random_evolution(rng, n, T, dt)\n",
" H = random_observable(rng, n)\n",
" r = random_state(rng, n)\n",
" r0 = r\n",
" evolve = exp(im * 2 * pi * dt * H)\n",
" result = []\n",
" for t in 0:dt:T\n",
" push!(result, braket(r, r0))\n",
" r = evolve * r\n",
" end\n",
" \n",
" return real.(result), imag.(result)\n",
"end\n",
"\n",
"using Plots\n",
"plot(random_evolution(rng, 4, 100, 0.01)[1])"
]
},
{
"cell_type": "markdown",
"id": "0bb1f98e",
"metadata": {},
"source": [
"That is kind of what you'd expect - a superposition of oscillations at a number of different frequencies."
]
},
{
"cell_type": "markdown",
"id": "f491b616",
"metadata": {},
"source": [
"## Using an observer\n",
"\n",
"Now what happens to the states if we evolve a random state similarly using an\n",
"observer. We'll try to look at the observation process as a series of small unitary\n",
"transformations and keep track of how the two states of the original measured qubit\n",
"evolve when considered along with the n states of the observer."
]
},
{
"cell_type": "code",
"execution_count": 19,
"id": "2d71dea6",
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"600\" height=\"400\" viewBox=\"0 0 2400 1600\">\n",
"<defs>\n",
" <clipPath id=\"clip920\">\n",
" <rect x=\"0\" y=\"0\" width=\"2400\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip920)\" d=\"\n",
"M0 1600 L2400 1600 L2400 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip921\">\n",
" <rect x=\"480\" y=\"0\" width=\"1681\" height=\"1600\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip920)\" d=\"\n",
"M186.274 1486.45 L2352.76 1486.45 L2352.76 47.2441 L186.274 47.2441 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip922\">\n",
" <rect x=\"186\" y=\"47\" width=\"2167\" height=\"1440\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 227.151,1486.45 227.151,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 738.114,1486.45 738.114,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1249.08,1486.45 1249.08,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1760.04,1486.45 1760.04,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 2271,1486.45 2271,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 186.274,1486.45 2352.76,1486.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 227.151,1486.45 227.151,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 738.114,1486.45 738.114,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1249.08,1486.45 1249.08,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1760.04,1486.45 1760.04,1467.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2271,1486.45 2271,1467.55 \n",
" \"/>\n",
"<path clip-path=\"url(#clip920)\" d=\"M227.151 1517.37 Q223.54 1517.37 221.711 1520.93 Q219.906 1524.47 219.906 1531.6 Q219.906 1538.71 221.711 1542.27 Q223.54 1545.82 227.151 1545.82 Q230.785 1545.82 232.591 1542.27 Q234.419 1538.71 234.419 1531.6 Q234.419 1524.47 232.591 1520.93 Q230.785 1517.37 227.151 1517.37 M227.151 1513.66 Q232.961 1513.66 236.017 1518.27 Q239.095 1522.85 239.095 1531.6 Q239.095 1540.33 236.017 1544.94 Q232.961 1549.52 227.151 1549.52 Q221.341 1549.52 218.262 1544.94 Q215.207 1540.33 215.207 1531.6 Q215.207 1522.85 218.262 1518.27 Q221.341 1513.66 227.151 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M717.385 1544.91 L733.704 1544.91 L733.704 1548.85 L711.76 1548.85 L711.76 1544.91 Q714.422 1542.16 719.005 1537.53 Q723.611 1532.88 724.792 1531.53 Q727.037 1529.01 727.917 1527.27 Q728.82 1525.51 728.82 1523.82 Q728.82 1521.07 726.875 1519.33 Q724.954 1517.6 721.852 1517.6 Q719.653 1517.6 717.199 1518.36 Q714.769 1519.13 711.991 1520.68 L711.991 1515.95 Q714.815 1514.82 717.269 1514.24 Q719.723 1513.66 721.76 1513.66 Q727.13 1513.66 730.324 1516.35 Q733.519 1519.03 733.519 1523.52 Q733.519 1525.65 732.709 1527.57 Q731.922 1529.47 729.815 1532.07 Q729.236 1532.74 726.135 1535.95 Q723.033 1539.15 717.385 1544.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M743.565 1514.29 L761.921 1514.29 L761.921 1518.22 L747.847 1518.22 L747.847 1526.7 Q748.866 1526.35 749.885 1526.19 Q750.903 1526 751.922 1526 Q757.709 1526 761.088 1529.17 Q764.468 1532.34 764.468 1537.76 Q764.468 1543.34 760.996 1546.44 Q757.523 1549.52 751.204 1549.52 Q749.028 1549.52 746.76 1549.15 Q744.514 1548.78 742.107 1548.04 L742.107 1543.34 Q744.19 1544.47 746.412 1545.03 Q748.635 1545.58 751.111 1545.58 Q755.116 1545.58 757.454 1543.48 Q759.792 1541.37 759.792 1537.76 Q759.792 1534.15 757.454 1532.04 Q755.116 1529.94 751.111 1529.94 Q749.236 1529.94 747.361 1530.35 Q745.51 1530.77 743.565 1531.65 L743.565 1514.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M1223.78 1514.29 L1242.13 1514.29 L1242.13 1518.22 L1228.06 1518.22 L1228.06 1526.7 Q1229.08 1526.35 1230.1 1526.19 Q1231.11 1526 1232.13 1526 Q1237.92 1526 1241.3 1529.17 Q1244.68 1532.34 1244.68 1537.76 Q1244.68 1543.34 1241.21 1546.44 Q1237.73 1549.52 1231.41 1549.52 Q1229.24 1549.52 1226.97 1549.15 Q1224.72 1548.78 1222.32 1548.04 L1222.32 1543.34 Q1224.4 1544.47 1226.62 1545.03 Q1228.85 1545.58 1231.32 1545.58 Q1235.33 1545.58 1237.66 1543.48 Q1240 1541.37 1240 1537.76 Q1240 1534.15 1237.66 1532.04 Q1235.33 1529.94 1231.32 1529.94 Q1229.45 1529.94 1227.57 1530.35 Q1225.72 1530.77 1223.78 1531.65 L1223.78 1514.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M1263.89 1517.37 Q1260.28 1517.37 1258.45 1520.93 Q1256.65 1524.47 1256.65 1531.6 Q1256.65 1538.71 1258.45 1542.27 Q1260.28 1545.82 1263.89 1545.82 Q1267.53 1545.82 1269.33 1542.27 Q1271.16 1538.71 1271.16 1531.6 Q1271.16 1524.47 1269.33 1520.93 Q1267.53 1517.37 1263.89 1517.37 M1263.89 1513.66 Q1269.7 1513.66 1272.76 1518.27 Q1275.84 1522.85 1275.84 1531.6 Q1275.84 1540.33 1272.76 1544.94 Q1269.7 1549.52 1263.89 1549.52 Q1258.08 1549.52 1255 1544.94 Q1251.95 1540.33 1251.95 1531.6 Q1251.95 1522.85 1255 1518.27 Q1258.08 1513.66 1263.89 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M1733.89 1514.29 L1756.12 1514.29 L1756.12 1516.28 L1743.57 1548.85 L1738.69 1548.85 L1750.49 1518.22 L1733.89 1518.22 L1733.89 1514.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M1765.28 1514.29 L1783.64 1514.29 L1783.64 1518.22 L1769.56 1518.22 L1769.56 1526.7 Q1770.58 1526.35 1771.6 1526.19 Q1772.62 1526 1773.64 1526 Q1779.43 1526 1782.81 1529.17 Q1786.18 1532.34 1786.18 1537.76 Q1786.18 1543.34 1782.71 1546.44 Q1779.24 1549.52 1772.92 1549.52 Q1770.75 1549.52 1768.48 1549.15 Q1766.23 1548.78 1763.82 1548.04 L1763.82 1543.34 Q1765.91 1544.47 1768.13 1545.03 Q1770.35 1545.58 1772.83 1545.58 Q1776.83 1545.58 1779.17 1543.48 Q1781.51 1541.37 1781.51 1537.76 Q1781.51 1534.15 1779.17 1532.04 Q1776.83 1529.94 1772.83 1529.94 Q1770.95 1529.94 1769.08 1530.35 Q1767.23 1530.77 1765.28 1531.65 L1765.28 1514.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M2230.61 1544.91 L2238.25 1544.91 L2238.25 1518.55 L2229.94 1520.21 L2229.94 1515.95 L2238.2 1514.29 L2242.88 1514.29 L2242.88 1544.91 L2250.52 1544.91 L2250.52 1548.85 L2230.61 1548.85 L2230.61 1544.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M2269.96 1517.37 Q2266.35 1517.37 2264.52 1520.93 Q2262.71 1524.47 2262.71 1531.6 Q2262.71 1538.71 2264.52 1542.27 Q2266.35 1545.82 2269.96 1545.82 Q2273.59 1545.82 2275.4 1542.27 Q2277.23 1538.71 2277.23 1531.6 Q2277.23 1524.47 2275.4 1520.93 Q2273.59 1517.37 2269.96 1517.37 M2269.96 1513.66 Q2275.77 1513.66 2278.83 1518.27 Q2281.9 1522.85 2281.9 1531.6 Q2281.9 1540.33 2278.83 1544.94 Q2275.77 1549.52 2269.96 1549.52 Q2264.15 1549.52 2261.07 1544.94 Q2258.02 1540.33 2258.02 1531.6 Q2258.02 1522.85 2261.07 1518.27 Q2264.15 1513.66 2269.96 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M2300.12 1517.37 Q2296.51 1517.37 2294.68 1520.93 Q2292.88 1524.47 2292.88 1531.6 Q2292.88 1538.71 2294.68 1542.27 Q2296.51 1545.82 2300.12 1545.82 Q2303.76 1545.82 2305.56 1542.27 Q2307.39 1538.71 2307.39 1531.6 Q2307.39 1524.47 2305.56 1520.93 Q2303.76 1517.37 2300.12 1517.37 M2300.12 1513.66 Q2305.93 1513.66 2308.99 1518.27 Q2312.07 1522.85 2312.07 1531.6 Q2312.07 1540.33 2308.99 1544.94 Q2305.93 1549.52 2300.12 1549.52 Q2294.31 1549.52 2291.23 1544.94 Q2288.18 1540.33 2288.18 1531.6 Q2288.18 1522.85 2291.23 1518.27 Q2294.31 1513.66 2300.12 1513.66 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 186.274,1448.24 2352.76,1448.24 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 186.274,1108.17 2352.76,1108.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 186.274,768.108 2352.76,768.108 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 186.274,428.042 2352.76,428.042 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip922)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 186.274,87.9763 2352.76,87.9763 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 186.274,1486.45 186.274,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 186.274,1448.24 205.172,1448.24 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 186.274,1108.17 205.172,1108.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 186.274,768.108 205.172,768.108 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 186.274,428.042 205.172,428.042 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 186.274,87.9763 205.172,87.9763 \n",
" \"/>\n",
"<path clip-path=\"url(#clip920)\" d=\"M62.9365 1434.04 Q59.3254 1434.04 57.4967 1437.6 Q55.6912 1441.14 55.6912 1448.27 Q55.6912 1455.38 57.4967 1458.94 Q59.3254 1462.49 62.9365 1462.49 Q66.5707 1462.49 68.3763 1458.94 Q70.205 1455.38 70.205 1448.27 Q70.205 1441.14 68.3763 1437.6 Q66.5707 1434.04 62.9365 1434.04 M62.9365 1430.33 Q68.7467 1430.33 71.8022 1434.94 Q74.8809 1439.52 74.8809 1448.27 Q74.8809 1457 71.8022 1461.61 Q68.7467 1466.19 62.9365 1466.19 Q57.1264 1466.19 54.0477 1461.61 Q50.9921 1457 50.9921 1448.27 Q50.9921 1439.52 54.0477 1434.94 Q57.1264 1430.33 62.9365 1430.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M83.0984 1459.64 L87.9827 1459.64 L87.9827 1465.52 L83.0984 1465.52 L83.0984 1459.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M108.168 1434.04 Q104.557 1434.04 102.728 1437.6 Q100.922 1441.14 100.922 1448.27 Q100.922 1455.38 102.728 1458.94 Q104.557 1462.49 108.168 1462.49 Q111.802 1462.49 113.608 1458.94 Q115.436 1455.38 115.436 1448.27 Q115.436 1441.14 113.608 1437.6 Q111.802 1434.04 108.168 1434.04 M108.168 1430.33 Q113.978 1430.33 117.033 1434.94 Q120.112 1439.52 120.112 1448.27 Q120.112 1457 117.033 1461.61 Q113.978 1466.19 108.168 1466.19 Q102.358 1466.19 99.2789 1461.61 Q96.2234 1457 96.2234 1448.27 Q96.2234 1439.52 99.2789 1434.94 Q102.358 1430.33 108.168 1430.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M138.33 1434.04 Q134.719 1434.04 132.89 1437.6 Q131.084 1441.14 131.084 1448.27 Q131.084 1455.38 132.89 1458.94 Q134.719 1462.49 138.33 1462.49 Q141.964 1462.49 143.769 1458.94 Q145.598 1455.38 145.598 1448.27 Q145.598 1441.14 143.769 1437.6 Q141.964 1434.04 138.33 1434.04 M138.33 1430.33 Q144.14 1430.33 147.195 1434.94 Q150.274 1439.52 150.274 1448.27 Q150.274 1457 147.195 1461.61 Q144.14 1466.19 138.33 1466.19 Q132.519 1466.19 129.441 1461.61 Q126.385 1457 126.385 1448.27 Q126.385 1439.52 129.441 1434.94 Q132.519 1430.33 138.33 1430.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M63.9319 1093.97 Q60.3208 1093.97 58.4921 1097.54 Q56.6865 1101.08 56.6865 1108.21 Q56.6865 1115.31 58.4921 1118.88 Q60.3208 1122.42 63.9319 1122.42 Q67.5661 1122.42 69.3717 1118.88 Q71.2004 1115.31 71.2004 1108.21 Q71.2004 1101.08 69.3717 1097.54 Q67.5661 1093.97 63.9319 1093.97 M63.9319 1090.27 Q69.742 1090.27 72.7976 1094.87 Q75.8763 1099.46 75.8763 1108.21 Q75.8763 1116.93 72.7976 1121.54 Q69.742 1126.12 63.9319 1126.12 Q58.1217 1126.12 55.043 1121.54 Q51.9875 1116.93 51.9875 1108.21 Q51.9875 1099.46 55.043 1094.87 Q58.1217 1090.27 63.9319 1090.27 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M84.0938 1119.57 L88.978 1119.57 L88.978 1125.45 L84.0938 1125.45 L84.0938 1119.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M103.191 1121.52 L119.51 1121.52 L119.51 1125.45 L97.566 1125.45 L97.566 1121.52 Q100.228 1118.76 104.811 1114.13 Q109.418 1109.48 110.598 1108.14 Q112.844 1105.62 113.723 1103.88 Q114.626 1102.12 114.626 1100.43 Q114.626 1097.68 112.682 1095.94 Q110.76 1094.2 107.658 1094.2 Q105.459 1094.2 103.006 1094.97 Q100.575 1095.73 97.7974 1097.28 L97.7974 1092.56 Q100.621 1091.43 103.075 1090.85 Q105.529 1090.27 107.566 1090.27 Q112.936 1090.27 116.131 1092.95 Q119.325 1095.64 119.325 1100.13 Q119.325 1102.26 118.515 1104.18 Q117.728 1106.08 115.621 1108.67 Q115.043 1109.34 111.941 1112.56 Q108.839 1115.75 103.191 1121.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M129.371 1090.89 L147.728 1090.89 L147.728 1094.83 L133.654 1094.83 L133.654 1103.3 Q134.672 1102.95 135.691 1102.79 Q136.709 1102.61 137.728 1102.61 Q143.515 1102.61 146.894 1105.78 Q150.274 1108.95 150.274 1114.37 Q150.274 1119.94 146.802 1123.05 Q143.33 1126.12 137.01 1126.12 Q134.834 1126.12 132.566 1125.75 Q130.32 1125.38 127.913 1124.64 L127.913 1119.94 Q129.996 1121.08 132.219 1121.63 Q134.441 1122.19 136.918 1122.19 Q140.922 1122.19 143.26 1120.08 Q145.598 1117.98 145.598 1114.37 Q145.598 1110.75 143.26 1108.65 Q140.922 1106.54 136.918 1106.54 Q135.043 1106.54 133.168 1106.96 Q131.316 1107.37 129.371 1108.25 L129.371 1090.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M62.9365 753.906 Q59.3254 753.906 57.4967 757.471 Q55.6912 761.013 55.6912 768.142 Q55.6912 775.249 57.4967 778.814 Q59.3254 782.355 62.9365 782.355 Q66.5707 782.355 68.3763 778.814 Q70.205 775.249 70.205 768.142 Q70.205 761.013 68.3763 757.471 Q66.5707 753.906 62.9365 753.906 M62.9365 750.203 Q68.7467 750.203 71.8022 754.809 Q74.8809 759.392 74.8809 768.142 Q74.8809 776.869 71.8022 781.476 Q68.7467 786.059 62.9365 786.059 Q57.1264 786.059 54.0477 781.476 Q50.9921 776.869 50.9921 768.142 Q50.9921 759.392 54.0477 754.809 Q57.1264 750.203 62.9365 750.203 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M83.0984 779.508 L87.9827 779.508 L87.9827 785.388 L83.0984 785.388 L83.0984 779.508 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M98.2141 750.828 L116.57 750.828 L116.57 754.763 L102.496 754.763 L102.496 763.235 Q103.515 762.888 104.534 762.726 Q105.552 762.541 106.571 762.541 Q112.358 762.541 115.737 765.712 Q119.117 768.883 119.117 774.3 Q119.117 779.878 115.645 782.98 Q112.172 786.059 105.853 786.059 Q103.677 786.059 101.409 785.689 Q99.1632 785.318 96.7558 784.577 L96.7558 779.878 Q98.8391 781.013 101.061 781.568 Q103.284 782.124 105.76 782.124 Q109.765 782.124 112.103 780.017 Q114.441 777.911 114.441 774.3 Q114.441 770.689 112.103 768.582 Q109.765 766.476 105.76 766.476 Q103.885 766.476 102.01 766.892 Q100.159 767.309 98.2141 768.189 L98.2141 750.828 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M138.33 753.906 Q134.719 753.906 132.89 757.471 Q131.084 761.013 131.084 768.142 Q131.084 775.249 132.89 778.814 Q134.719 782.355 138.33 782.355 Q141.964 782.355 143.769 778.814 Q145.598 775.249 145.598 768.142 Q145.598 761.013 143.769 757.471 Q141.964 753.906 138.33 753.906 M138.33 750.203 Q144.14 750.203 147.195 754.809 Q150.274 759.392 150.274 768.142 Q150.274 776.869 147.195 781.476 Q144.14 786.059 138.33 786.059 Q132.519 786.059 129.441 781.476 Q126.385 776.869 126.385 768.142 Q126.385 759.392 129.441 754.809 Q132.519 750.203 138.33 750.203 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M63.9319 413.841 Q60.3208 413.841 58.4921 417.405 Q56.6865 420.947 56.6865 428.077 Q56.6865 435.183 58.4921 438.748 Q60.3208 442.29 63.9319 442.29 Q67.5661 442.29 69.3717 438.748 Q71.2004 435.183 71.2004 428.077 Q71.2004 420.947 69.3717 417.405 Q67.5661 413.841 63.9319 413.841 M63.9319 410.137 Q69.742 410.137 72.7976 414.743 Q75.8763 419.327 75.8763 428.077 Q75.8763 436.803 72.7976 441.41 Q69.742 445.993 63.9319 445.993 Q58.1217 445.993 55.043 441.41 Q51.9875 436.803 51.9875 428.077 Q51.9875 419.327 55.043 414.743 Q58.1217 410.137 63.9319 410.137 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M84.0938 439.442 L88.978 439.442 L88.978 445.322 L84.0938 445.322 L84.0938 439.442 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M97.9826 410.762 L120.205 410.762 L120.205 412.753 L107.658 445.322 L102.774 445.322 L114.58 414.697 L97.9826 414.697 L97.9826 410.762 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M129.371 410.762 L147.728 410.762 L147.728 414.697 L133.654 414.697 L133.654 423.169 Q134.672 422.822 135.691 422.66 Q136.709 422.475 137.728 422.475 Q143.515 422.475 146.894 425.646 Q150.274 428.817 150.274 434.234 Q150.274 439.813 146.802 442.915 Q143.33 445.993 137.01 445.993 Q134.834 445.993 132.566 445.623 Q130.32 445.253 127.913 444.512 L127.913 439.813 Q129.996 440.947 132.219 441.503 Q134.441 442.058 136.918 442.058 Q140.922 442.058 143.26 439.952 Q145.598 437.845 145.598 434.234 Q145.598 430.623 143.26 428.516 Q140.922 426.41 136.918 426.41 Q135.043 426.41 133.168 426.827 Q131.316 427.243 129.371 428.123 L129.371 410.762 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M53.7467 101.321 L61.3856 101.321 L61.3856 74.9555 L53.0754 76.6222 L53.0754 72.3629 L61.3393 70.6963 L66.0152 70.6963 L66.0152 101.321 L73.654 101.321 L73.654 105.256 L53.7467 105.256 L53.7467 101.321 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M83.0984 99.3767 L87.9827 99.3767 L87.9827 105.256 L83.0984 105.256 L83.0984 99.3767 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M108.168 73.775 Q104.557 73.775 102.728 77.3398 Q100.922 80.8814 100.922 88.011 Q100.922 95.1174 102.728 98.6822 Q104.557 102.224 108.168 102.224 Q111.802 102.224 113.608 98.6822 Q115.436 95.1174 115.436 88.011 Q115.436 80.8814 113.608 77.3398 Q111.802 73.775 108.168 73.775 M108.168 70.0713 Q113.978 70.0713 117.033 74.6777 Q120.112 79.261 120.112 88.011 Q120.112 96.7378 117.033 101.344 Q113.978 105.928 108.168 105.928 Q102.358 105.928 99.2789 101.344 Q96.2234 96.7378 96.2234 88.011 Q96.2234 79.261 99.2789 74.6777 Q102.358 70.0713 108.168 70.0713 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M138.33 73.775 Q134.719 73.775 132.89 77.3398 Q131.084 80.8814 131.084 88.011 Q131.084 95.1174 132.89 98.6822 Q134.719 102.224 138.33 102.224 Q141.964 102.224 143.769 98.6822 Q145.598 95.1174 145.598 88.011 Q145.598 80.8814 143.769 77.3398 Q141.964 73.775 138.33 73.775 M138.33 70.0713 Q144.14 70.0713 147.195 74.6777 Q150.274 79.261 150.274 88.011 Q150.274 96.7378 147.195 101.344 Q144.14 105.928 138.33 105.928 Q132.519 105.928 129.441 101.344 Q126.385 96.7378 126.385 88.011 Q126.385 79.261 129.441 74.6777 Q132.519 70.0713 138.33 70.0713 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip922)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 247.59,87.9763 268.028,129.23 288.467,247.662 308.905,425.86 329.344,636.345 349.782,846.848 370.221,1027.53 390.659,1159.56 411.098,1241.98 431.536,1282.59 \n",
" 451.975,1274.27 472.413,1216.65 492.852,1136.33 513.29,1057.67 533.729,994.381 554.167,951.829 574.606,929.837 595.044,925.587 615.483,936.234 635.921,960.676 \n",
" 656.36,1000.17 676.798,1057.6 697.237,1135.38 717.675,1232.15 738.114,1335.27 758.552,1364.3 778.991,1275.1 799.429,1186.55 819.868,1129.51 840.306,1113.5 \n",
" 860.745,1138.14 881.183,1193.84 901.622,1261.71 922.06,1310.74 942.499,1310.34 962.937,1280.32 983.376,1256.28 1003.81,1252.16 1024.25,1269.64 1044.69,1304.35 \n",
" 1065.13,1347.62 1085.57,1387.24 1106.01,1411.09 1126.45,1412.82 1146.88,1373.12 1167.32,1287.75 1187.76,1168.96 1208.2,1035.95 1228.64,913.791 1249.08,828.193 \n",
" 1269.51,798.566 1289.95,831.368 1310.39,914.882 1330.83,1015.88 1351.27,1084.05 1371.71,1091.65 1392.15,1077.38 1412.58,1096.12 1433.02,1172.8 1453.46,1303.15 \n",
" 1473.9,1411.24 1494.34,1258.21 1514.78,1123.67 1535.22,1040.45 1555.65,1015.9 1576.09,1039.14 1596.53,1083.62 1616.97,1118.76 1637.41,1133.75 1657.85,1147.27 \n",
" 1678.29,1183.34 1698.72,1250.3 1719.16,1335.47 1739.6,1374.76 1760.04,1310.37 1780.48,1242.83 1800.92,1202.88 1821.35,1193.57 1841.79,1208.57 1862.23,1236.57 \n",
" 1882.67,1265.25 1903.11,1286.97 1923.55,1304.24 1943.99,1327.2 1964.42,1361.79 1984.86,1385.19 2005.3,1341.24 2025.74,1266.88 2046.18,1200.21 2066.62,1160.1 \n",
" 2087.06,1155.25 2107.49,1180.61 2127.93,1211.17 2148.37,1204.95 2168.81,1147.99 2189.25,1071.3 2209.69,1004.86 2230.12,962.8 2250.56,946.845 2271,949.629 \n",
" 2291.44,957.904 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip922)\" style=\"stroke:#e26f46; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 247.59,87.9763 268.028,124.956 288.467,227.477 308.905,377.489 329.344,553.446 349.782,735.173 370.221,907.681 390.659,1062.34 411.098,1194.01 431.536,1291.37 \n",
" 451.975,1320.81 472.413,1281.57 492.852,1230.26 513.29,1192.64 533.729,1173.97 554.167,1171.99 574.606,1180.93 595.044,1194.18 615.483,1206.53 635.921,1215.83 \n",
" 656.36,1223.4 676.798,1233.26 697.237,1250.36 717.675,1278.2 738.114,1315.3 758.552,1347.46 778.991,1340.85 799.429,1293.07 819.868,1236.61 840.306,1191.72 \n",
" 860.745,1169.12 881.183,1174.1 901.622,1207.32 922.06,1265.28 942.499,1341.06 962.937,1424.42 983.376,1386.14 1003.81,1313.95 1024.25,1260.21 1044.69,1229.82 \n",
" 1065.13,1223.21 1085.57,1235.72 1106.01,1256.94 1126.45,1271.83 1146.88,1268.5 1167.32,1249.69 1187.76,1228.39 1208.2,1215.58 1228.64,1216.44 1249.08,1231.2 \n",
" 1269.51,1256.47 1289.95,1286.12 1310.39,1311.56 1330.83,1322.94 1351.27,1315.1 1371.71,1292.84 1392.15,1264.52 1412.58,1236.27 1433.02,1211.94 1453.46,1193.84 \n",
" 1473.9,1182.74 1494.34,1177.35 1514.78,1174.41 1535.22,1170.27 1555.65,1163.89 1576.09,1159.03 1596.53,1162.99 1616.97,1182.74 1637.41,1220.91 1657.85,1271.91 \n",
" 1678.29,1315.72 1698.72,1318.11 1719.16,1282.18 1739.6,1246.15 1760.04,1231.94 1780.48,1245.39 1800.92,1280.21 1821.35,1316.59 1841.79,1323.73 1862.23,1298.6 \n",
" 1882.67,1272.06 1903.11,1264.72 1923.55,1282.17 1943.99,1320.39 1964.42,1369.18 1984.86,1413.36 2005.3,1420.23 2025.74,1400.2 2046.18,1378.52 2066.62,1343.25 \n",
" 2087.06,1290.61 2107.49,1229.96 2127.93,1174.07 2148.37,1134.39 2168.81,1118.93 2189.25,1131.28 2209.69,1170.17 2230.12,1229.54 2250.56,1297.86 2271,1351.33 \n",
" 2291.44,1348.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip922)\" style=\"stroke:#3da44d; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 247.59,87.9763 268.028,128.575 288.467,242.815 308.905,412.734 329.344,614.519 349.782,822.662 370.221,1013.73 390.659,1168.8 411.098,1274.5 431.536,1327.25 \n",
" 451.975,1344.81 472.413,1350.35 492.852,1345.14 513.29,1323.78 533.729,1293.71 554.167,1267.76 574.606,1255.18 595.044,1259.88 615.483,1280.38 635.921,1309.62 \n",
" 656.36,1334.27 676.798,1338.82 697.237,1324.07 717.675,1307.41 738.114,1303.47 758.552,1319.82 778.991,1357.74 799.429,1405.15 819.868,1381.53 840.306,1308.31 \n",
" 860.745,1237.53 881.183,1182.53 901.622,1149.28 922.06,1136.98 942.499,1138.37 962.937,1143.14 983.376,1144.77 1003.81,1145.82 1024.25,1155.36 1044.69,1181.91 \n",
" 1065.13,1228.6 1085.57,1292.21 1106.01,1364.25 1126.45,1424.8 1146.88,1390.26 1167.32,1347.86 1187.76,1325.6 1208.2,1324.28 1228.64,1340.41 1249.08,1367.51 \n",
" 1269.51,1395.55 1289.95,1405.99 1310.39,1390.76 1330.83,1370.2 1351.27,1354.56 1371.71,1345.89 1392.15,1343.34 1412.58,1344.35 1433.02,1344.82 1453.46,1339.96 \n",
" 1473.9,1327.04 1494.34,1307.99 1514.78,1288.49 1535.22,1275.34 1555.65,1274.36 1576.09,1287.85 1596.53,1310.03 1616.97,1319.49 1637.41,1291 1657.85,1235.03 \n",
" 1678.29,1178.95 1698.72,1143.23 1719.16,1140.55 1739.6,1175.95 1760.04,1246.39 1780.48,1341.49 1800.92,1445.72 1821.35,1354.78 1841.79,1282.39 1862.23,1243.64 \n",
" 1882.67,1241.31 1903.11,1270.72 1923.55,1321.36 1943.99,1379.4 1964.42,1426.42 1984.86,1414.94 2005.3,1397.11 2025.74,1397.85 2046.18,1414.58 2066.62,1424.77 \n",
" 2087.06,1388.87 2107.49,1337.74 2127.93,1283.81 2148.37,1234.64 2168.81,1197.9 2189.25,1180.4 2209.69,1186.54 2230.12,1217.01 2250.56,1268.45 2271,1333.93 \n",
" 2291.44,1404.07 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip922)\" style=\"stroke:#c271d2; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 247.59,87.9763 268.028,117.975 288.467,205.674 308.905,342.89 329.344,516.245 349.782,709.204 370.221,904.561 390.659,1086.87 411.098,1244.39 431.536,1370.16 \n",
" 451.975,1432.98 472.413,1372.65 492.852,1337.34 513.29,1320.25 533.729,1313.2 554.167,1308.66 574.606,1302.05 595.044,1293.53 615.483,1287.05 635.921,1287.41 \n",
" 656.36,1297.87 676.798,1318.91 697.237,1347.51 717.675,1375.44 738.114,1385.85 758.552,1369.83 778.991,1344.23 799.429,1322.58 819.868,1310.71 840.306,1311.35 \n",
" 860.745,1325.38 881.183,1351.7 901.622,1385.65 922.06,1409.24 942.499,1388.78 962.937,1351.9 983.376,1320.65 1003.81,1301.15 1024.25,1294.43 1044.69,1297.83 \n",
" 1065.13,1305.91 1085.57,1312.68 1106.01,1314.88 1126.45,1313.73 1146.88,1312.53 1167.32,1313.06 1187.76,1314.42 1208.2,1314.19 1228.64,1310.95 1249.08,1305.8 \n",
" 1269.51,1301.72 1289.95,1301.66 1310.39,1307.34 1330.83,1318.98 1351.27,1335.57 1371.71,1355.16 1392.15,1374.91 1412.58,1390.51 1433.02,1396.26 1453.46,1390.64 \n",
" 1473.9,1379.6 1494.34,1369.35 1514.78,1363.35 1535.22,1363.04 1555.65,1368.51 1576.09,1378.99 1596.53,1393.6 1616.97,1411.87 1637.41,1433.6 1657.85,1433.38 \n",
" 1678.29,1402.53 1698.72,1367.58 1719.16,1331.47 1739.6,1297.48 1760.04,1269.09 1780.48,1249.45 1800.92,1240.93 1821.35,1244.9 1841.79,1261.53 1862.23,1289.73 \n",
" 1882.67,1327.1 1903.11,1369.72 1923.55,1409.41 1943.99,1412.85 1964.42,1380.85 1984.86,1350.26 2005.3,1327.78 2025.74,1314.49 2046.18,1309.79 2066.62,1312.07 \n",
" 2087.06,1319.18 2107.49,1328.76 2127.93,1338.56 2148.37,1346.84 2168.81,1352.77 2189.25,1356.7 2209.69,1359.95 2230.12,1364.21 2250.56,1370.88 2271,1380.54 \n",
" 2291.44,1392.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip922)\" style=\"stroke:#ac8d18; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 247.59,87.9763 268.028,120.647 288.467,215.022 308.905,360.295 329.344,540.023 349.782,734.73 370.221,924.924 390.659,1093.95 411.098,1230.07 431.536,1327.49 \n",
" 451.975,1386.12 472.413,1412.56 492.852,1422.6 513.29,1427.33 533.729,1426.16 554.167,1422.17 574.606,1420.28 595.044,1421.54 615.483,1424.58 635.921,1428.19 \n",
" 656.36,1432.14 676.798,1432.98 697.237,1422.36 717.675,1402.22 738.114,1377.26 758.552,1351.02 778.991,1326.93 799.429,1308.28 819.868,1298.01 840.306,1298.4 \n",
" 860.745,1310.64 881.183,1334.47 901.622,1367.8 922.06,1405.45 942.499,1422.31 962.937,1391.16 983.376,1356.33 1003.81,1328.47 1024.25,1309.73 1044.69,1300.26 \n",
" 1065.13,1299.46 1085.57,1306.74 1106.01,1321.83 1126.45,1344.31 1146.88,1372.61 1167.32,1401.95 1187.76,1416.65 1208.2,1402.13 1228.64,1382.97 1249.08,1372.38 \n",
" 1269.51,1373.44 1289.95,1385.24 1310.39,1403.77 1330.83,1420.92 1351.27,1422.74 1371.71,1413.28 1392.15,1407.04 1412.58,1407.58 1433.02,1413.31 1453.46,1420.2 \n",
" 1473.9,1424.17 1494.34,1425.36 1514.78,1426.98 1535.22,1428.87 1555.65,1425.74 1576.09,1416.29 1596.53,1405.56 1616.97,1397.7 1637.41,1394.6 1657.85,1396.04 \n",
" 1678.29,1399.87 1698.72,1402.93 1719.16,1403.22 1739.6,1401.77 1760.04,1401.15 1780.48,1403.03 1800.92,1407 1821.35,1410.15 1841.79,1407.91 1862.23,1398.75 \n",
" 1882.67,1385.92 1903.11,1373.49 1923.55,1364.55 1943.99,1361.12 1964.42,1364.13 1984.86,1373.38 2005.3,1387.61 2025.74,1404.88 2046.18,1423 2066.62,1440 \n",
" 2087.06,1441.7 2107.49,1430.24 2127.93,1422.1 2148.37,1417.4 2168.81,1416.02 2189.25,1417.29 2209.69,1419.52 2230.12,1420.32 2250.56,1418.85 2271,1417.46 \n",
" 2291.44,1419.41 \n",
" \"/>\n",
"<path clip-path=\"url(#clip920)\" d=\"\n",
"M2009.75 406.258 L2280.54 406.258 L2280.54 95.2176 L2009.75 95.2176 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip920)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2009.75,406.258 2280.54,406.258 2280.54,95.2176 2009.75,95.2176 2009.75,406.258 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip920)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2033.82,147.058 2178.25,147.058 \n",
" \"/>\n",
"<path clip-path=\"url(#clip920)\" d=\"M2216.17 166.745 Q2214.36 171.375 2212.65 172.787 Q2210.94 174.199 2208.07 174.199 L2204.66 174.199 L2204.66 170.634 L2207.16 170.634 Q2208.92 170.634 2209.89 169.8 Q2210.87 168.967 2212.05 165.865 L2212.81 163.921 L2202.32 138.412 L2206.84 138.412 L2214.94 158.689 L2223.04 138.412 L2227.56 138.412 L2216.17 166.745 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M2234.85 160.402 L2242.49 160.402 L2242.49 134.037 L2234.18 135.703 L2234.18 131.444 L2242.44 129.778 L2247.12 129.778 L2247.12 160.402 L2254.75 160.402 L2254.75 164.338 L2234.85 164.338 L2234.85 160.402 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip920)\" style=\"stroke:#e26f46; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2033.82,198.898 2178.25,198.898 \n",
" \"/>\n",
"<path clip-path=\"url(#clip920)\" d=\"M2216.17 218.585 Q2214.36 223.215 2212.65 224.627 Q2210.94 226.039 2208.07 226.039 L2204.66 226.039 L2204.66 222.474 L2207.16 222.474 Q2208.92 222.474 2209.89 221.64 Q2210.87 220.807 2212.05 217.705 L2212.81 215.761 L2202.32 190.252 L2206.84 190.252 L2214.94 210.529 L2223.04 190.252 L2227.56 190.252 L2216.17 218.585 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M2238.07 212.242 L2254.38 212.242 L2254.38 216.178 L2232.44 216.178 L2232.44 212.242 Q2235.1 209.488 2239.69 204.858 Q2244.29 200.205 2245.47 198.863 Q2247.72 196.34 2248.6 194.604 Q2249.5 192.844 2249.5 191.155 Q2249.5 188.4 2247.56 186.664 Q2245.63 184.928 2242.53 184.928 Q2240.33 184.928 2237.88 185.692 Q2235.45 186.455 2232.67 188.006 L2232.67 183.284 Q2235.5 182.15 2237.95 181.571 Q2240.4 180.993 2242.44 180.993 Q2247.81 180.993 2251 183.678 Q2254.2 186.363 2254.2 190.854 Q2254.2 192.983 2253.39 194.905 Q2252.6 196.803 2250.5 199.395 Q2249.92 200.067 2246.82 203.284 Q2243.71 206.479 2238.07 212.242 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip920)\" style=\"stroke:#3da44d; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2033.82,250.738 2178.25,250.738 \n",
" \"/>\n",
"<path clip-path=\"url(#clip920)\" d=\"M2216.17 270.425 Q2214.36 275.055 2212.65 276.467 Q2210.94 277.879 2208.07 277.879 L2204.66 277.879 L2204.66 274.314 L2207.16 274.314 Q2208.92 274.314 2209.89 273.48 Q2210.87 272.647 2212.05 269.545 L2212.81 267.601 L2202.32 242.092 L2206.84 242.092 L2214.94 262.369 L2223.04 242.092 L2227.56 242.092 L2216.17 270.425 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M2248.2 249.383 Q2251.56 250.101 2253.44 252.369 Q2255.33 254.638 2255.33 257.971 Q2255.33 263.087 2251.82 265.888 Q2248.3 268.689 2241.82 268.689 Q2239.64 268.689 2237.32 268.249 Q2235.03 267.832 2232.58 266.976 L2232.58 262.462 Q2234.52 263.596 2236.84 264.175 Q2239.15 264.754 2241.68 264.754 Q2246.07 264.754 2248.37 263.018 Q2250.68 261.281 2250.68 257.971 Q2250.68 254.916 2248.53 253.203 Q2246.4 251.467 2242.58 251.467 L2238.55 251.467 L2238.55 247.624 L2242.76 247.624 Q2246.21 247.624 2248.04 246.258 Q2249.87 244.87 2249.87 242.277 Q2249.87 239.615 2247.97 238.203 Q2246.1 236.768 2242.58 236.768 Q2240.66 236.768 2238.46 237.184 Q2236.26 237.601 2233.62 238.481 L2233.62 234.314 Q2236.28 233.573 2238.6 233.203 Q2240.94 232.833 2243 232.833 Q2248.32 232.833 2251.42 235.263 Q2254.52 237.67 2254.52 241.791 Q2254.52 244.661 2252.88 246.652 Q2251.24 248.62 2248.2 249.383 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip920)\" style=\"stroke:#c271d2; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2033.82,302.578 2178.25,302.578 \n",
" \"/>\n",
"<path clip-path=\"url(#clip920)\" d=\"M2216.17 322.265 Q2214.36 326.895 2212.65 328.307 Q2210.94 329.719 2208.07 329.719 L2204.66 329.719 L2204.66 326.154 L2207.16 326.154 Q2208.92 326.154 2209.89 325.32 Q2210.87 324.487 2212.05 321.385 L2212.81 319.441 L2202.32 293.932 L2206.84 293.932 L2214.94 314.209 L2223.04 293.932 L2227.56 293.932 L2216.17 322.265 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M2246.88 289.372 L2235.08 307.821 L2246.88 307.821 L2246.88 289.372 M2245.66 285.298 L2251.54 285.298 L2251.54 307.821 L2256.47 307.821 L2256.47 311.709 L2251.54 311.709 L2251.54 319.858 L2246.88 319.858 L2246.88 311.709 L2231.28 311.709 L2231.28 307.196 L2245.66 285.298 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip920)\" style=\"stroke:#ac8d18; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 2033.82,354.418 2178.25,354.418 \n",
" \"/>\n",
"<path clip-path=\"url(#clip920)\" d=\"M2216.17 374.105 Q2214.36 378.735 2212.65 380.147 Q2210.94 381.559 2208.07 381.559 L2204.66 381.559 L2204.66 377.994 L2207.16 377.994 Q2208.92 377.994 2209.89 377.16 Q2210.87 376.327 2212.05 373.225 L2212.81 371.281 L2202.32 345.772 L2206.84 345.772 L2214.94 366.049 L2223.04 345.772 L2227.56 345.772 L2216.17 374.105 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip920)\" d=\"M2234.08 337.138 L2252.44 337.138 L2252.44 341.073 L2238.37 341.073 L2238.37 349.545 Q2239.38 349.198 2240.4 349.036 Q2241.42 348.85 2242.44 348.85 Q2248.23 348.85 2251.61 352.022 Q2254.99 355.193 2254.99 360.61 Q2254.99 366.188 2251.51 369.29 Q2248.04 372.369 2241.72 372.369 Q2239.55 372.369 2237.28 371.998 Q2235.03 371.628 2232.63 370.887 L2232.63 366.188 Q2234.71 367.323 2236.93 367.878 Q2239.15 368.434 2241.63 368.434 Q2245.63 368.434 2247.97 366.327 Q2250.31 364.221 2250.31 360.61 Q2250.31 356.999 2247.97 354.892 Q2245.63 352.786 2241.63 352.786 Q2239.75 352.786 2237.88 353.202 Q2236.03 353.619 2234.08 354.499 L2234.08 337.138 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
]
},
"execution_count": 19,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"function evolve_observer(rng, n, T, dt)\n",
" H = random_observer(rng, n)\n",
" w = random_state(rng, n)\n",
" q = random_state(rng, 2)\n",
" r = kron(q,w)\n",
" r0 = r\n",
" result = []\n",
" evolve = exp(im * 2 * pi * H * dt)\n",
" for t in 0:dt:T\n",
" costate_0 = r[1:n]\n",
" costate_1 = r[n+1:end]\n",
" costate_0 /= sqrt(sum(abs2, costate_0))\n",
" costate_1 /= sqrt(sum(abs2, costate_1))\n",
" push!(result, braket(costate_0, costate_1))\n",
" r = evolve * r\n",
" end\n",
" return abs.(result)\n",
"end\n",
"\n",
"evols = evolve_observer.(rng, 2 .^ (4:8), 10, 0.1)\n",
"plot(evols)\n"
]
},
{
"cell_type": "markdown",
"id": "d5b7b64a",
"metadata": {},
"source": [
"That looks interesting to me. While initially there is some correlation between the two parts of the\n",
"state vector $r_{1\\ldots n}$ and $r_{(n+1)\\ldots 2n}$, it rapidly declines to near 0 and lingers around 0 forever, the larger $n$ gets. For small $n$, we essentially have a small coherent superposition, but the superpositions get complex for observers with larger n. Let's split the plots into a series and see it more clearly."
]
},
{
"cell_type": "code",
"execution_count": 20,
"id": "7f9770cb",
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"500\" height=\"1000\" viewBox=\"0 0 2000 4000\">\n",
"<defs>\n",
" <clipPath id=\"clip960\">\n",
" <rect x=\"0\" y=\"0\" width=\"2000\" height=\"4000\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip960)\" d=\"\n",
"M0 4000 L2000 4000 L2000 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip961\">\n",
" <rect x=\"800\" y=\"400\" width=\"2000\" height=\"2801\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip960)\" d=\"\n",
"M132.633 416.596 L1952.76 416.596 L1952.76 47.2441 L132.633 47.2441 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip962\">\n",
" <rect x=\"132\" y=\"47\" width=\"1821\" height=\"370\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 184.146,416.596 184.146,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 613.42,416.596 613.42,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1042.69,416.596 1042.69,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1471.97,416.596 1471.97,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1901.24,416.596 1901.24,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,416.596 1952.76,416.596 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,416.596 184.146,397.699 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 613.42,416.596 613.42,397.699 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1042.69,416.596 1042.69,397.699 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1471.97,416.596 1471.97,397.699 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1901.24,416.596 1901.24,397.699 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"M184.146 460.315 Q180.535 460.315 178.706 463.88 Q176.901 467.422 176.901 474.551 Q176.901 481.658 178.706 485.222 Q180.535 488.764 184.146 488.764 Q187.78 488.764 189.586 485.222 Q191.414 481.658 191.414 474.551 Q191.414 467.422 189.586 463.88 Q187.78 460.315 184.146 460.315 M184.146 456.611 Q189.956 456.611 193.012 461.218 Q196.09 465.801 196.09 474.551 Q196.09 483.278 193.012 487.884 Q189.956 492.468 184.146 492.468 Q178.336 492.468 175.257 487.884 Q172.202 483.278 172.202 474.551 Q172.202 465.801 175.257 461.218 Q178.336 456.611 184.146 456.611 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M592.691 487.861 L609.011 487.861 L609.011 491.796 L587.066 491.796 L587.066 487.861 Q589.728 485.107 594.312 480.477 Q598.918 475.824 600.099 474.482 Q602.344 471.959 603.224 470.222 Q604.126 468.463 604.126 466.773 Q604.126 464.019 602.182 462.283 Q600.261 460.547 597.159 460.547 Q594.96 460.547 592.506 461.31 Q590.075 462.074 587.298 463.625 L587.298 458.903 Q590.122 457.769 592.575 457.19 Q595.029 456.611 597.066 456.611 Q602.436 456.611 605.631 459.297 Q608.825 461.982 608.825 466.473 Q608.825 468.602 608.015 470.523 Q607.228 472.422 605.122 475.014 Q604.543 475.685 601.441 478.903 Q598.339 482.097 592.691 487.861 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M618.872 457.236 L637.228 457.236 L637.228 461.172 L623.154 461.172 L623.154 469.644 Q624.172 469.297 625.191 469.135 Q626.21 468.949 627.228 468.949 Q633.015 468.949 636.395 472.121 Q639.774 475.292 639.774 480.709 Q639.774 486.287 636.302 489.389 Q632.83 492.468 626.51 492.468 Q624.335 492.468 622.066 492.097 Q619.821 491.727 617.413 490.986 L617.413 486.287 Q619.497 487.421 621.719 487.977 Q623.941 488.533 626.418 488.533 Q630.422 488.533 632.76 486.426 Q635.098 484.32 635.098 480.709 Q635.098 477.097 632.76 474.991 Q630.422 472.885 626.418 472.885 Q624.543 472.885 622.668 473.301 Q620.816 473.718 618.872 474.597 L618.872 457.236 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1017.39 457.236 L1035.75 457.236 L1035.75 461.172 L1021.68 461.172 L1021.68 469.644 Q1022.69 469.297 1023.71 469.135 Q1024.73 468.949 1025.75 468.949 Q1031.54 468.949 1034.92 472.121 Q1038.3 475.292 1038.3 480.709 Q1038.3 486.287 1034.82 489.389 Q1031.35 492.468 1025.03 492.468 Q1022.86 492.468 1020.59 492.097 Q1018.34 491.727 1015.94 490.986 L1015.94 486.287 Q1018.02 487.421 1020.24 487.977 Q1022.46 488.533 1024.94 488.533 Q1028.94 488.533 1031.28 486.426 Q1033.62 484.32 1033.62 480.709 Q1033.62 477.097 1031.28 474.991 Q1028.94 472.885 1024.94 472.885 Q1023.06 472.885 1021.19 473.301 Q1019.34 473.718 1017.39 474.597 L1017.39 457.236 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1057.51 460.315 Q1053.9 460.315 1052.07 463.88 Q1050.26 467.422 1050.26 474.551 Q1050.26 481.658 1052.07 485.222 Q1053.9 488.764 1057.51 488.764 Q1061.14 488.764 1062.95 485.222 Q1064.78 481.658 1064.78 474.551 Q1064.78 467.422 1062.95 463.88 Q1061.14 460.315 1057.51 460.315 M1057.51 456.611 Q1063.32 456.611 1066.37 461.218 Q1069.45 465.801 1069.45 474.551 Q1069.45 483.278 1066.37 487.884 Q1063.32 492.468 1057.51 492.468 Q1051.7 492.468 1048.62 487.884 Q1045.56 483.278 1045.56 474.551 Q1045.56 465.801 1048.62 461.218 Q1051.7 456.611 1057.51 456.611 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1445.82 457.236 L1468.05 457.236 L1468.05 459.227 L1455.5 491.796 L1450.61 491.796 L1462.42 461.172 L1445.82 461.172 L1445.82 457.236 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1477.21 457.236 L1495.57 457.236 L1495.57 461.172 L1481.49 461.172 L1481.49 469.644 Q1482.51 469.297 1483.53 469.135 Q1484.55 468.949 1485.57 468.949 Q1491.36 468.949 1494.73 472.121 Q1498.11 475.292 1498.11 480.709 Q1498.11 486.287 1494.64 489.389 Q1491.17 492.468 1484.85 492.468 Q1482.67 492.468 1480.41 492.097 Q1478.16 491.727 1475.75 490.986 L1475.75 486.287 Q1477.84 487.421 1480.06 487.977 Q1482.28 488.533 1484.76 488.533 Q1488.76 488.533 1491.1 486.426 Q1493.44 484.32 1493.44 480.709 Q1493.44 477.097 1491.1 474.991 Q1488.76 472.885 1484.76 472.885 Q1482.88 472.885 1481.01 473.301 Q1479.16 473.718 1477.21 474.597 L1477.21 457.236 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1860.85 487.861 L1868.49 487.861 L1868.49 461.496 L1860.18 463.162 L1860.18 458.903 L1868.44 457.236 L1873.12 457.236 L1873.12 487.861 L1880.76 487.861 L1880.76 491.796 L1860.85 491.796 L1860.85 487.861 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1900.2 460.315 Q1896.59 460.315 1894.76 463.88 Q1892.96 467.422 1892.96 474.551 Q1892.96 481.658 1894.76 485.222 Q1896.59 488.764 1900.2 488.764 Q1903.84 488.764 1905.64 485.222 Q1907.47 481.658 1907.47 474.551 Q1907.47 467.422 1905.64 463.88 Q1903.84 460.315 1900.2 460.315 M1900.2 456.611 Q1906.01 456.611 1909.07 461.218 Q1912.15 465.801 1912.15 474.551 Q1912.15 483.278 1909.07 487.884 Q1906.01 492.468 1900.2 492.468 Q1894.39 492.468 1891.31 487.884 Q1888.26 483.278 1888.26 474.551 Q1888.26 465.801 1891.31 461.218 Q1894.39 456.611 1900.2 456.611 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1930.36 460.315 Q1926.75 460.315 1924.92 463.88 Q1923.12 467.422 1923.12 474.551 Q1923.12 481.658 1924.92 485.222 Q1926.75 488.764 1930.36 488.764 Q1934 488.764 1935.8 485.222 Q1937.63 481.658 1937.63 474.551 Q1937.63 467.422 1935.8 463.88 Q1934 460.315 1930.36 460.315 M1930.36 456.611 Q1936.17 456.611 1939.23 461.218 Q1942.31 465.801 1942.31 474.551 Q1942.31 483.278 1939.23 487.884 Q1936.17 492.468 1930.36 492.468 Q1924.55 492.468 1921.47 487.884 Q1918.42 483.278 1918.42 474.551 Q1918.42 465.801 1921.47 461.218 Q1924.55 456.611 1930.36 456.611 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,407.789 1952.76,407.789 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,320.266 1952.76,320.266 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,232.743 1952.76,232.743 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,145.22 1952.76,145.22 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip962)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,57.6975 1952.76,57.6975 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,416.596 132.633,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,407.789 151.531,407.789 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,320.266 151.531,320.266 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,232.743 151.531,232.743 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,145.22 151.531,145.22 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,57.6975 151.531,57.6975 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"M-14.7044 393.588 Q-18.3155 393.588 -20.1442 397.152 Q-21.9498 400.694 -21.9498 407.824 Q-21.9498 414.93 -20.1442 418.495 Q-18.3155 422.036 -14.7044 422.036 Q-11.0702 422.036 -9.26465 418.495 Q-7.43595 414.93 -7.43595 407.824 Q-7.43595 400.694 -9.26465 397.152 Q-11.0702 393.588 -14.7044 393.588 M-14.7044 389.884 Q-8.89428 389.884 -5.83874 394.49 Q-2.76005 399.074 -2.76005 407.824 Q-2.76005 416.55 -5.83874 421.157 Q-8.89428 425.74 -14.7044 425.74 Q-20.5146 425.74 -23.5933 421.157 Q-26.6488 416.55 -26.6488 407.824 Q-26.6488 399.074 -23.5933 394.49 Q-20.5146 389.884 -14.7044 389.884 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M5.4575 419.189 L10.3417 419.189 L10.3417 425.069 L5.4575 425.069 L5.4575 419.189 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M30.5268 393.588 Q26.9157 393.588 25.087 397.152 Q23.2815 400.694 23.2815 407.824 Q23.2815 414.93 25.087 418.495 Q26.9157 422.036 30.5268 422.036 Q34.161 422.036 35.9666 418.495 Q37.7953 414.93 37.7953 407.824 Q37.7953 400.694 35.9666 397.152 Q34.161 393.588 30.5268 393.588 M30.5268 389.884 Q36.337 389.884 39.3925 394.49 Q42.4712 399.074 42.4712 407.824 Q42.4712 416.55 39.3925 421.157 Q36.337 425.74 30.5268 425.74 Q24.7167 425.74 21.638 421.157 Q18.5824 416.55 18.5824 407.824 Q18.5824 399.074 21.638 394.49 Q24.7167 389.884 30.5268 389.884 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M60.6887 393.588 Q57.0776 393.588 55.2489 397.152 Q53.4434 400.694 53.4434 407.824 Q53.4434 414.93 55.2489 418.495 Q57.0776 422.036 60.6887 422.036 Q64.3229 422.036 66.1285 418.495 Q67.9572 414.93 67.9572 407.824 Q67.9572 400.694 66.1285 397.152 Q64.3229 393.588 60.6887 393.588 M60.6887 389.884 Q66.4988 389.884 69.5544 394.49 Q72.6331 399.074 72.6331 407.824 Q72.6331 416.55 69.5544 421.157 Q66.4988 425.74 60.6887 425.74 Q54.8785 425.74 51.7998 421.157 Q48.7443 416.55 48.7443 407.824 Q48.7443 399.074 51.7998 394.49 Q54.8785 389.884 60.6887 389.884 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-13.7091 306.065 Q-17.3202 306.065 -19.1489 309.629 Q-20.9544 313.171 -20.9544 320.301 Q-20.9544 327.407 -19.1489 330.972 Q-17.3202 334.514 -13.7091 334.514 Q-10.0748 334.514 -8.26928 330.972 Q-6.44059 327.407 -6.44059 320.301 Q-6.44059 313.171 -8.26928 309.629 Q-10.0748 306.065 -13.7091 306.065 M-13.7091 302.361 Q-7.89891 302.361 -4.84337 306.967 Q-1.76469 311.551 -1.76469 320.301 Q-1.76469 329.028 -4.84337 333.634 Q-7.89891 338.217 -13.7091 338.217 Q-19.5192 338.217 -22.5979 333.634 Q-25.6534 329.028 -25.6534 320.301 Q-25.6534 311.551 -22.5979 306.967 Q-19.5192 302.361 -13.7091 302.361 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M6.45286 331.666 L11.3371 331.666 L11.3371 337.546 L6.45286 337.546 L6.45286 331.666 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M25.55 333.611 L41.8693 333.611 L41.8693 337.546 L19.925 337.546 L19.925 333.611 Q22.587 330.856 27.1703 326.227 Q31.7768 321.574 32.9574 320.231 Q35.2027 317.708 36.0823 315.972 Q36.9851 314.213 36.9851 312.523 Q36.9851 309.768 35.0407 308.032 Q33.1194 306.296 30.0176 306.296 Q27.8185 306.296 25.3648 307.06 Q22.9343 307.824 20.1565 309.375 L20.1565 304.653 Q22.9806 303.518 25.4342 302.94 Q27.8879 302.361 29.925 302.361 Q35.2953 302.361 38.4897 305.046 Q41.6842 307.731 41.6842 312.222 Q41.6842 314.352 40.874 316.273 Q40.0869 318.171 37.9805 320.764 Q37.4018 321.435 34.2999 324.653 Q31.1981 327.847 25.55 333.611 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M51.7304 302.986 L70.0868 302.986 L70.0868 306.921 L56.0128 306.921 L56.0128 315.393 Q57.0313 315.046 58.0498 314.884 Q59.0683 314.699 60.0868 314.699 Q65.8738 314.699 69.2535 317.87 Q72.6331 321.041 72.6331 326.458 Q72.6331 332.037 69.1609 335.139 Q65.6887 338.217 59.3692 338.217 Q57.1933 338.217 54.9248 337.847 Q52.6795 337.477 50.2721 336.736 L50.2721 332.037 Q52.3554 333.171 54.5776 333.727 Q56.7998 334.282 59.2767 334.282 Q63.2813 334.282 65.6192 332.176 Q67.9572 330.069 67.9572 326.458 Q67.9572 322.847 65.6192 320.741 Q63.2813 318.634 59.2767 318.634 Q57.4017 318.634 55.5267 319.051 Q53.6748 319.467 51.7304 320.347 L51.7304 302.986 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-14.7044 218.542 Q-18.3155 218.542 -20.1442 222.107 Q-21.9498 225.648 -21.9498 232.778 Q-21.9498 239.884 -20.1442 243.449 Q-18.3155 246.991 -14.7044 246.991 Q-11.0702 246.991 -9.26465 243.449 Q-7.43595 239.884 -7.43595 232.778 Q-7.43595 225.648 -9.26465 222.107 Q-11.0702 218.542 -14.7044 218.542 M-14.7044 214.838 Q-8.89428 214.838 -5.83874 219.445 Q-2.76005 224.028 -2.76005 232.778 Q-2.76005 241.505 -5.83874 246.111 Q-8.89428 250.694 -14.7044 250.694 Q-20.5146 250.694 -23.5933 246.111 Q-26.6488 241.505 -26.6488 232.778 Q-26.6488 224.028 -23.5933 219.445 Q-20.5146 214.838 -14.7044 214.838 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M5.4575 244.144 L10.3417 244.144 L10.3417 250.023 L5.4575 250.023 L5.4575 244.144 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M20.5732 215.463 L38.9295 215.463 L38.9295 219.398 L24.8555 219.398 L24.8555 227.87 Q25.8741 227.523 26.8926 227.361 Q27.9111 227.176 28.9296 227.176 Q34.7166 227.176 38.0962 230.347 Q41.4758 233.519 41.4758 238.935 Q41.4758 244.514 38.0036 247.616 Q34.5314 250.694 28.212 250.694 Q26.0361 250.694 23.7676 250.324 Q21.5222 249.954 19.1148 249.213 L19.1148 244.514 Q21.1982 245.648 23.4204 246.204 Q25.6426 246.759 28.1194 246.759 Q32.124 246.759 34.462 244.653 Q36.7999 242.546 36.7999 238.935 Q36.7999 235.324 34.462 233.218 Q32.124 231.111 28.1194 231.111 Q26.2444 231.111 24.3694 231.528 Q22.5176 231.945 20.5732 232.824 L20.5732 215.463 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M60.6887 218.542 Q57.0776 218.542 55.2489 222.107 Q53.4434 225.648 53.4434 232.778 Q53.4434 239.884 55.2489 243.449 Q57.0776 246.991 60.6887 246.991 Q64.3229 246.991 66.1285 243.449 Q67.9572 239.884 67.9572 232.778 Q67.9572 225.648 66.1285 222.107 Q64.3229 218.542 60.6887 218.542 M60.6887 214.838 Q66.4988 214.838 69.5544 219.445 Q72.6331 224.028 72.6331 232.778 Q72.6331 241.505 69.5544 246.111 Q66.4988 250.694 60.6887 250.694 Q54.8785 250.694 51.7998 246.111 Q48.7443 241.505 48.7443 232.778 Q48.7443 224.028 51.7998 219.445 Q54.8785 214.838 60.6887 214.838 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-13.7091 131.019 Q-17.3202 131.019 -19.1489 134.584 Q-20.9544 138.125 -20.9544 145.255 Q-20.9544 152.361 -19.1489 155.926 Q-17.3202 159.468 -13.7091 159.468 Q-10.0748 159.468 -8.26928 155.926 Q-6.44059 152.361 -6.44059 145.255 Q-6.44059 138.125 -8.26928 134.584 Q-10.0748 131.019 -13.7091 131.019 M-13.7091 127.315 Q-7.89891 127.315 -4.84337 131.922 Q-1.76469 136.505 -1.76469 145.255 Q-1.76469 153.982 -4.84337 158.588 Q-7.89891 163.172 -13.7091 163.172 Q-19.5192 163.172 -22.5979 158.588 Q-25.6534 153.982 -25.6534 145.255 Q-25.6534 136.505 -22.5979 131.922 Q-19.5192 127.315 -13.7091 127.315 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M6.45286 156.621 L11.3371 156.621 L11.3371 162.5 L6.45286 162.5 L6.45286 156.621 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M20.3417 127.94 L42.5638 127.94 L42.5638 129.931 L30.0176 162.5 L25.1333 162.5 L36.9388 131.875 L20.3417 131.875 L20.3417 127.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M51.7304 127.94 L70.0868 127.94 L70.0868 131.875 L56.0128 131.875 L56.0128 140.348 Q57.0313 140 58.0498 139.838 Q59.0683 139.653 60.0868 139.653 Q65.8738 139.653 69.2535 142.824 Q72.6331 145.996 72.6331 151.412 Q72.6331 156.991 69.1609 160.093 Q65.6887 163.172 59.3692 163.172 Q57.1933 163.172 54.9248 162.801 Q52.6795 162.431 50.2721 161.69 L50.2721 156.991 Q52.3554 158.125 54.5776 158.681 Q56.7998 159.236 59.2767 159.236 Q63.2813 159.236 65.6192 157.13 Q67.9572 155.023 67.9572 151.412 Q67.9572 147.801 65.6192 145.695 Q63.2813 143.588 59.2767 143.588 Q57.4017 143.588 55.5267 144.005 Q53.6748 144.422 51.7304 145.301 L51.7304 127.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-23.8942 71.0423 L-16.2553 71.0423 L-16.2553 44.6767 L-24.5655 46.3434 L-24.5655 42.0841 L-16.3016 40.4175 L-11.6257 40.4175 L-11.6257 71.0423 L-3.9869 71.0423 L-3.9869 74.9775 L-23.8942 74.9775 L-23.8942 71.0423 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M5.4575 69.0979 L10.3417 69.0979 L10.3417 74.9775 L5.4575 74.9775 L5.4575 69.0979 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M30.5268 43.4962 Q26.9157 43.4962 25.087 47.0609 Q23.2815 50.6026 23.2815 57.7322 Q23.2815 64.8386 25.087 68.4034 Q26.9157 71.9451 30.5268 71.9451 Q34.161 71.9451 35.9666 68.4034 Q37.7953 64.8386 37.7953 57.7322 Q37.7953 50.6026 35.9666 47.0609 Q34.161 43.4962 30.5268 43.4962 M30.5268 39.7925 Q36.337 39.7925 39.3925 44.3989 Q42.4712 48.9822 42.4712 57.7322 Q42.4712 66.459 39.3925 71.0654 Q36.337 75.6488 30.5268 75.6488 Q24.7167 75.6488 21.638 71.0654 Q18.5824 66.459 18.5824 57.7322 Q18.5824 48.9822 21.638 44.3989 Q24.7167 39.7925 30.5268 39.7925 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M60.6887 43.4962 Q57.0776 43.4962 55.2489 47.0609 Q53.4434 50.6026 53.4434 57.7322 Q53.4434 64.8386 55.2489 68.4034 Q57.0776 71.9451 60.6887 71.9451 Q64.3229 71.9451 66.1285 68.4034 Q67.9572 64.8386 67.9572 57.7322 Q67.9572 50.6026 66.1285 47.0609 Q64.3229 43.4962 60.6887 43.4962 M60.6887 39.7925 Q66.4988 39.7925 69.5544 44.3989 Q72.6331 48.9822 72.6331 57.7322 Q72.6331 66.459 69.5544 71.0654 Q66.4988 75.6488 60.6887 75.6488 Q54.8785 75.6488 51.7998 71.0654 Q48.7443 66.459 48.7443 57.7322 Q48.7443 48.9822 51.7998 44.3989 Q54.8785 39.7925 60.6887 39.7925 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip962)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,57.6975 185.863,64.2012 187.58,83.3234 189.297,113.614 191.014,152.35 192.731,195.516 194.449,237.962 196.166,273.802 197.883,297.797 199.6,308.816 \n",
" 201.317,312.047 203.034,314.65 204.751,321.069 206.468,332.745 208.185,349.42 209.902,370.067 211.62,392.369 213.337,391.754 215.054,368.184 216.771,346.454 \n",
" 218.488,330.787 220.205,323.846 221.922,326.208 223.639,334.356 225.356,338.409 227.073,327.711 228.79,305.793 230.508,284.434 232.225,272.659 233.942,275.301 \n",
" 235.659,293.316 237.376,324.097 239.093,361.574 240.81,387.374 242.527,365.319 244.244,339.707 245.961,324.717 247.679,321.495 249.396,328.033 251.113,340.594 \n",
" 252.83,354.872 254.547,367.211 256.264,375.861 257.981,381.539 259.698,386.037 261.415,390.264 263.132,393.835 264.85,395.593 266.567,394.573 268.284,390.92 \n",
" 270.001,385.004 271.718,376.713 273.435,365.998 275.152,353.559 276.869,341.097 278.586,331.081 280.303,326.189 282.021,328.619 283.738,339.458 285.455,358.296 \n",
" 287.172,383.159 288.889,403.707 290.606,377.384 292.323,354.833 294.04,339.327 295.757,332.15 297.474,332.996 299.191,340.159 300.909,350.963 302.626,362.267 \n",
" 304.343,370.927 306.06,374.608 307.777,373.254 309.494,368.805 311.211,363.111 312.928,357.408 314.645,352.846 316.362,350.836 318.08,352.942 319.797,360.178 \n",
" 321.514,370.813 323.231,373.597 324.948,354.523 326.665,322.564 328.382,287.897 330.099,256.814 331.816,234.007 333.533,222.577 335.251,223.64 336.968,236.183 \n",
" 338.685,257.368 340.402,283.299 342.119,310.169 343.836,335.517 345.553,358.992 347.27,381.767 348.987,401.484 350.704,383.137 352.421,358.793 354.139,336.627 \n",
" 355.856,318.659 357.573,305.613 359.29,296.72 361.007,290.143 362.724,284.119 364.441,278.146 366.158,273.166 367.875,270.519 369.592,270.545 371.31,271.779 \n",
" 373.027,271.32 374.744,266.659 376.461,257.831 378.178,247.625 379.895,239.78 381.612,237.235 383.329,241.437 385.046,252.468 386.763,269.566 388.481,291.614 \n",
" 390.198,317.185 391.915,343.631 393.632,363.793 395.349,363.567 397.066,346.615 398.783,329.427 400.5,319.811 402.217,320.588 403.934,331.803 405.651,351.429 \n",
" 407.369,376.133 409.086,402.263 410.803,388.61 412.52,366.961 414.237,348.666 415.954,333.768 417.671,323.049 419.388,318.271 421.105,321.441 422.822,333.708 \n",
" 424.54,354.553 426.257,381.572 427.974,404.21 429.691,377.239 431.408,356.097 433.125,343.784 434.842,341.135 436.559,346.991 438.276,358.488 439.993,371.47 \n",
" 441.711,380.713 443.428,382.096 445.145,378.101 446.862,373.422 448.579,369.986 450.296,368.378 452.013,368.953 453.73,371.81 455.447,376.405 457.164,381.369 \n",
" 458.881,384.684 460.599,384.1 462.316,377.696 464.033,364.724 465.75,346.133 467.467,324.534 469.184,303.844 470.901,288.602 472.618,283.027 474.335,289.988 \n",
" 476.052,310.138 477.77,341.276 479.487,376.551 481.204,380.861 482.921,350.073 484.638,325.189 486.355,313.285 488.072,315.339 489.789,328.643 491.506,346.935 \n",
" 493.223,360.18 494.941,359.608 496.658,350.212 498.375,340.746 500.092,333.757 501.809,328.711 503.526,325.554 505.243,325.928 506.96,332.12 508.677,345.381 \n",
" 510.394,364.864 512.112,386.107 513.829,388.267 515.546,368.853 517.263,350.829 518.98,338.529 520.697,332.294 522.414,330.712 524.131,331.351 525.848,331.762 \n",
" 527.565,330.714 529.282,328.783 531,327.654 532.717,328.902 534.434,333.295 536.151,340.791 537.868,350.992 539.585,363.623 541.302,378.515 543.019,393.946 \n",
" 544.736,393.281 546.453,376.547 548.171,361.436 549.888,352.606 551.605,352.357 553.322,360.107 555.039,369.052 556.756,363.716 558.473,342.632 560.19,319.004 \n",
" 561.907,301.427 563.624,294.293 565.342,298.977 567.059,314.206 568.776,336.562 570.493,361.168 572.21,381.809 573.927,389.325 575.644,384.488 577.361,379.251 \n",
" 579.078,374.799 580.795,368.525 582.512,360.024 584.23,351.522 585.947,345.494 587.664,343.235 589.381,344.488 591.098,347.525 592.815,349.643 594.532,348.42 \n",
" 596.249,343.249 597.966,335.375 599.683,326.633 601.401,318.775 603.118,313.566 604.835,312.878 606.552,318.384 608.269,330.853 609.986,348.877 611.703,365.332 \n",
" 613.42,362.778 615.137,340.37 616.854,314.676 618.572,294.545 620.289,284.062 622.006,284.594 623.723,295.15 625.44,312.658 627.157,332.431 628.874,348.936 \n",
" 630.591,357.673 632.308,358.409 634.025,354.109 635.742,346.122 637.46,334.476 639.177,320.487 640.894,306.906 642.611,296.386 644.328,290.195 646.045,287.709 \n",
" 647.762,286.848 649.479,285.548 651.196,283.523 652.913,282.702 654.631,285.844 656.348,294.644 658.065,308.353 659.782,322.867 661.499,330.728 663.216,325.944 \n",
" 664.933,311.249 666.65,293.68 668.367,277.877 670.084,265.503 671.802,256.356 673.519,249.329 675.236,243.183 676.953,237.164 678.67,231.414 680.387,227.008 \n",
" 682.104,225.589 683.821,228.743 685.538,237.361 687.255,251.244 688.972,269.049 690.69,288.6 692.407,307.5 694.124,323.91 695.841,337.2 697.558,347.971 \n",
" 699.275,357.209 700.992,364.982 702.709,369.325 704.426,366.797 706.143,356.443 707.861,340.727 709.578,322.355 711.295,303.352 713.012,285.409 714.729,270.108 \n",
" 716.446,258.88 718.163,252.774 719.88,252.158 721.597,256.527 723.314,264.57 725.032,274.602 726.749,285.214 728.466,295.788 730.183,306.413 731.9,317.257 \n",
" 733.617,327.953 735.334,337.538 737.051,344.959 738.768,349.559 740.485,350.892 742.203,348.354 743.92,341.833 745.637,332.706 747.354,323.514 749.071,316.824 \n",
" 750.788,314.348 752.505,316.574 754.222,322.71 755.939,330.788 757.656,337.935 759.373,341.374 761.091,340.546 762.808,338.204 764.525,338.659 766.242,345.585 \n",
" 767.959,360.995 769.676,384.918 771.393,400.109 773.11,366.343 774.827,333.511 776.544,305.648 778.262,285.816 779.979,275.554 781.696,274.712 783.413,281.662 \n",
" 785.13,293.722 786.847,307.571 788.564,319.604 790.281,326.601 791.998,327.145 793.715,322.473 795.433,315.09 797.15,306.983 798.867,299.323 800.584,293.069 \n",
" 802.301,289.392 804.018,289.389 805.735,293.17 807.452,298.797 809.169,301.959 810.886,298.077 812.603,286.538 814.321,271.574 816.038,258.764 817.755,252.277 \n",
" 819.472,254.089 821.189,263.988 822.906,279.817 824.623,297.886 826.34,313.811 828.057,324.335 829.774,329.476 831.492,331.882 833.209,333.166 834.926,331.789 \n",
" 836.643,325.068 838.36,313.381 840.077,300.793 841.794,292.063 843.511,290.378 845.228,296.59 846.945,309.333 848.663,325.767 850.38,342.887 852.097,359.086 \n",
" 853.814,374.99 855.531,392.423 857.248,401.532 858.965,379.235 860.682,355.774 862.399,334.031 864.116,316.06 865.833,303.016 867.551,295.062 869.268,291.607 \n",
" 870.985,291.766 872.702,294.847 874.419,300.682 876.136,309.689 877.853,322.631 879.57,340.14 881.287,362.081 883.004,386.157 884.722,391.012 886.439,367.389 \n",
" 888.156,344.573 889.873,327.504 891.59,317.466 893.307,313.62 895.024,313.426 896.741,314.075 898.458,314.637 900.175,316.987 901.893,324.336 903.61,338.971 \n",
" 905.327,360.727 907.044,384.418 908.761,382.441 910.478,357.499 912.195,335.3 913.912,321.506 915.629,317.759 917.346,323.4 919.063,335.97 920.781,351.947 \n",
" 922.498,367.736 924.215,380.541 925.932,387.678 927.649,384.632 929.366,372.075 931.083,355.228 932.8,338.174 934.517,324.213 936.234,315.596 937.952,312.742 \n",
" 939.669,313.464 941.386,312.925 943.103,306.034 944.82,291.95 946.537,274.896 948.254,260.645 949.971,253.909 951.688,257.514 953.405,272.256 955.123,296.969 \n",
" 956.84,328.614 958.557,361.499 960.274,378.752 961.991,361.207 963.708,336.751 965.425,317.831 967.142,306.934 968.859,304.417 970.576,309.806 972.294,322.13 \n",
" 974.011,339.797 975.728,359.92 977.445,376.255 979.162,377.939 980.879,368.714 982.596,362.186 984.313,364.174 986.03,375.982 987.747,395.761 989.464,390.726 \n",
" 991.182,362.759 992.899,336.12 994.616,314.157 996.333,298.382 998.05,288.759 999.767,284.292 1001.48,283.949 1003.2,287.399 1004.92,295.086 1006.64,307.668 \n",
" 1008.35,325.338 1010.07,347.455 1011.79,372.499 1013.5,396.836 1015.22,387.973 1016.94,365.729 1018.66,347.643 1020.37,335.916 1022.09,331.787 1023.81,335.526 \n",
" 1025.52,345.999 1027.24,359.856 1028.96,369.657 1030.67,366.08 1032.39,352.468 1034.11,337.905 1035.83,326.762 1037.54,320.23 1039.26,317.958 1040.98,319.079 \n",
" 1042.69,322.968 1044.41,329.524 1046.13,338.694 1047.85,349.364 1049.56,357.876 1051.28,358.2 1053,348.453 1054.71,333.61 1056.43,318.586 1058.15,305.759 \n",
" 1059.87,295.858 1061.58,289.159 1063.3,286.43 1065.02,289.168 1066.73,299.011 1068.45,316.738 1070.17,341.405 1071.89,369.717 1073.6,392.096 1075.32,382.792 \n",
" 1077.04,368.495 1078.75,363.807 1080.47,366.9 1082.19,364.122 1083.9,341.645 1085.62,307.491 1087.34,273.218 1089.06,247.03 1090.77,234.598 1092.49,238.935 \n",
" 1094.21,260.112 1095.92,295.279 1097.64,338.923 1099.36,380.966 1101.08,376.575 1102.79,346.624 1104.51,327.754 1106.23,323.621 1107.94,333.499 1109.66,353.961 \n",
" 1111.38,377.273 1113.1,378.206 1114.81,353.051 1116.53,326.689 1118.25,306.488 1119.96,295.723 1121.68,296.351 1123.4,308.923 1125.12,331.757 1126.83,358.224 \n",
" 1128.55,366.047 1130.27,341.302 1131.98,309.874 1133.7,284.988 1135.42,271.261 1137.13,269.651 1138.85,278.321 1140.57,293.157 1142.29,308.505 1144,318.622 \n",
" 1145.72,320.408 1147.44,315.14 1149.15,305.992 1150.87,295.104 1152.59,283.405 1154.31,271.544 1156.02,260.523 1157.74,251.826 1159.46,247.304 1161.17,248.929 \n",
" 1162.89,258.45 1164.61,276.936 1166.33,304.304 1168.04,338.868 1169.76,375.748 1171.48,382.591 1173.19,349.137 1174.91,317.711 1176.63,294.736 1178.35,281.64 \n",
" 1180.06,277.545 1181.78,279.767 1183.5,284.729 1185.21,289.465 1186.93,293.005 1188.65,296.429 1190.36,301.444 1192.08,308.961 1193.8,318.642 1195.52,329.25 \n",
" 1197.23,339.022 1198.95,345.325 1200.67,344.288 1202.38,333.485 1204.1,315.267 1205.82,294.812 1207.54,277.311 1209.25,266.9 1210.97,266.124 1212.69,275.529 \n",
" 1214.4,293.506 1216.12,316.334 1217.84,338.23 1219.56,351.847 1221.27,353.324 1222.99,348.461 1224.71,345.055 1226.42,346.743 1228.14,354.126 1229.86,366.135 \n",
" 1231.58,380.084 1233.29,388.503 1235.01,381.183 1236.73,367.221 1238.44,354.518 1240.16,345.449 1241.88,340.59 1243.59,339.6 1245.31,341.688 1247.03,346.015 \n",
" 1248.75,351.903 1250.46,358.778 1252.18,366.034 1253.9,372.989 1255.61,378.644 1257.33,380.574 1259.05,375.07 1260.77,361.971 1262.48,344.731 1264.2,327.18 \n",
" 1265.92,312.789 1267.63,304.291 1269.35,303.157 1271.07,309.162 1272.79,320.159 1274.5,332.001 1276.22,339.058 1277.94,337.232 1279.65,327.941 1281.37,315.958 \n",
" 1283.09,305.236 1284.81,297.993 1286.52,294.932 1288.24,295.275 1289.96,296.874 1291.67,297.046 1293.39,294.294 1295.11,289.629 1296.82,285.896 1298.54,285.843 \n",
" 1300.26,290.473 1301.98,297.943 1303.69,302.98 1305.41,298.677 1307.13,282.453 1308.84,258.778 1310.56,234.682 1312.28,216.12 1314,207.103 1315.71,209.616 \n",
" 1317.43,223.681 1319.15,247.605 1320.86,278.453 1322.58,312.681 1324.3,346.719 1326.02,377.003 1327.73,394.237 1329.45,382.656 1331.17,368.916 1332.88,360.509 \n",
" 1334.6,357.993 1336.32,360.898 1338.04,367.709 1339.75,374.529 1341.47,373.517 1343.19,360.814 1344.9,341.859 1346.62,322.1 1348.34,305.292 1350.05,294.347 \n",
" 1351.77,291.339 1353.49,297.149 1355.21,311.039 1356.92,330.279 1358.64,349.571 1360.36,360.714 1362.07,359.015 1363.79,351.976 1365.51,348.293 1367.23,351.399 \n",
" 1368.94,361.127 1370.66,374.862 1372.38,386.375 1374.09,384.035 1375.81,371.21 1377.53,357.217 1379.25,344.422 1380.96,333.19 1382.68,323.763 1384.4,316.639 \n",
" 1386.11,312.349 1387.83,311.13 1389.55,312.875 1391.27,317.402 1392.98,324.787 1394.7,335.385 1396.42,349.367 1398.13,365.827 1399.85,380.668 1401.57,382.094 \n",
" 1403.28,368.416 1405,351.656 1406.72,335.706 1408.44,320.212 1410.15,303.849 1411.87,286.388 1413.59,269.631 1415.3,256.8 1417.02,251.203 1418.74,255.043 \n",
" 1420.46,268.71 1422.17,290.619 1423.89,317.538 1425.61,345.311 1427.32,369.809 1429.04,387.924 1430.76,398.22 1432.48,399.29 1434.19,392.339 1435.91,382.172 \n",
" 1437.63,371.989 1439.34,364.199 1441.06,359.861 1442.78,358.266 1444.5,357.367 1446.21,355.409 1447.93,352.645 1449.65,350.936 1451.36,351.793 1453.08,354.88 \n",
" 1454.8,357.65 1456.51,356.845 1458.23,351.914 1459.95,345.747 1461.67,341.626 1463.38,341.168 1465.1,344.072 1466.82,348.786 1468.53,353.872 1470.25,359.463 \n",
" 1471.97,367.205 1473.69,377.89 1475.4,384.947 1477.12,372.222 1478.84,346.911 1480.55,319.514 1482.27,295.142 1483.99,276.925 1485.71,266.31 1487.42,263.016 \n",
" 1489.14,265.347 1490.86,270.877 1492.57,277.369 1494.29,283.509 1496.01,289.116 1497.73,294.797 1499.44,301.424 1501.16,309.717 1502.88,319.844 1504.59,330.923 \n",
" 1506.31,340.595 1508.03,345.619 1509.74,344.724 1511.46,340.797 1513.18,338.39 1514.9,340.682 1516.61,348.662 1518.33,361.255 1520.05,375.396 1521.76,385.25 \n",
" 1523.48,384.667 1525.2,379.08 1526.92,375.854 1528.63,376.924 1530.35,380.659 1532.07,381.408 1533.78,373.061 1535.5,357.639 1537.22,339.826 1538.94,322.874 \n",
" 1540.65,309.145 1542.37,300.377 1544.09,297.538 1545.8,300.583 1547.52,308.334 1549.24,318.663 1550.96,329.097 1552.67,337.68 1554.39,343.242 1556.11,344.346 \n",
" 1557.82,338.641 1559.54,325.308 1561.26,307.273 1562.97,289.569 1564.69,276.968 1566.41,272.533 1568.13,276.708 1569.84,286.854 1571.56,297.657 1573.28,303.511 \n",
" 1574.99,302.823 1576.71,299.151 1578.43,296.837 1580.15,297.274 1581.86,298.632 1583.58,297.949 1585.3,294.093 1587.01,288.941 1588.73,285.785 1590.45,287.327 \n",
" 1592.17,294.907 1593.88,308.525 1595.6,326.919 1597.32,347.214 1599.03,363.826 1600.75,368.89 1602.47,363.22 1604.19,356.579 1605.9,353.528 1607.62,352.062 \n",
" 1609.34,346.897 1611.05,336.029 1612.77,323.727 1614.49,316.032 1616.2,317.069 1617.92,327.968 1619.64,346.693 1621.36,367.548 1623.07,378.014 1624.79,369.19 \n",
" 1626.51,355.752 1628.22,346.729 1629.94,343.806 1631.66,346.238 1633.38,351.827 1635.09,355.649 1636.81,349.566 1638.53,330.288 1640.24,303.263 1641.96,275.63 \n",
" 1643.68,253.378 1645.4,240.973 1647.11,240.944 1648.83,253.599 1650.55,277.102 1652.26,307.938 1653.98,341.537 1655.7,372.221 1657.42,387.301 1659.13,376.217 \n",
" 1660.85,362.642 1662.57,354.102 1664.28,350.602 1666,350.813 1667.72,353.098 1669.43,355.869 1671.15,357.839 1672.87,358.327 1674.59,357.491 1676.3,356.23 \n",
" 1678.02,355.71 1679.74,356.845 1681.45,359.922 1683.17,364.425 1684.89,369.207 1686.61,373.169 1688.32,376.159 1690.04,378.776 1691.76,380.41 1693.47,377.69 \n",
" 1695.19,368.322 1696.91,355.099 1698.63,342.613 1700.34,334.835 1702.06,334.391 1703.78,341.732 1705.49,353.569 1707.21,360.027 1708.93,350.287 1710.65,330.394 \n",
" 1712.36,311.849 1714.08,301.51 1715.8,302.651 1717.51,315.802 1719.23,339.235 1720.95,369.662 1722.66,402.823 1724.38,378.523 1726.1,346.913 1727.82,317.527 \n",
" 1729.53,290.006 1731.25,264.566 1732.97,242.803 1734.68,227.334 1736.4,220.582 1738.12,223.387 1739.84,233.981 1741.55,247.663 1743.27,257.889 1744.99,259.765 \n",
" 1746.7,253.953 1748.42,245.739 1750.14,240.575 1751.86,241.554 1753.57,249.303 1755.29,262.721 1757.01,279.743 1758.72,297.901 1760.44,314.724 1762.16,328.18 \n",
" 1763.88,337.28 1765.59,342.437 1767.31,344.857 1769.03,345.373 1770.74,343.928 1772.46,339.991 1774.18,333.353 1775.89,324.673 1777.61,315.603 1779.33,308.575 \n",
" 1781.05,306.321 1782.76,311.157 1784.48,324.147 1786.2,344.133 1787.91,365.411 1789.63,370.657 1791.35,351.416 1793.07,326.449 1794.78,305.084 1796.5,289.969 \n",
" 1798.22,281.425 1799.93,279.069 1801.65,282.83 1803.37,293.247 1805.09,310.953 1806.8,335.809 1808.52,366.282 1810.24,399.093 1811.95,383.577 1813.67,356.503 \n",
" 1815.39,337.484 1817.11,328.351 1818.82,329.237 1820.54,338.739 1822.26,354.347 1823.97,373.045 1825.69,391.92 1827.41,406.143 1829.12,393.28 1830.84,383.568 \n",
" 1832.56,377.028 1834.28,372.77 1835.99,369.999 1837.71,368.273 1839.43,367.378 1841.14,367.07 1842.86,367.019 1844.58,366.913 1846.3,366.23 1848.01,363.527 \n",
" 1849.73,356.396 1851.45,343.447 1853.16,325.963 1854.88,307.023 1856.6,290.007 1858.32,277.567 1860.03,270.885 1861.75,269.198 1863.47,269.878 1865.18,269.462 \n",
" 1866.9,265.698 1868.62,259.235 1870.34,253.219 1872.05,251.406 1873.77,256.575 1875.49,269.724 1877.2,289.674 1878.92,312.679 1880.64,331.982 1882.35,339.83 \n",
" 1884.07,336.437 1885.79,331.52 1887.51,333.43 1889.22,345.412 1890.94,365.61 1892.66,379.62 1894.37,360.108 1896.09,327.573 1897.81,297.549 1899.53,275.482 \n",
" 1901.24,263.862 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"\n",
"M1657.64 163.236 L1892.09 163.236 L1892.09 59.5558 L1657.64 59.5558 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1657.64,163.236 1892.09,163.236 1892.09,59.5558 1657.64,59.5558 1657.64,163.236 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1677.87,111.396 1799.21,111.396 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"M1833.27 131.083 Q1831.47 135.713 1829.76 137.125 Q1828.04 138.537 1825.17 138.537 L1821.77 138.537 L1821.77 134.972 L1824.27 134.972 Q1826.03 134.972 1827 134.139 Q1827.97 133.305 1829.15 130.204 L1829.92 128.259 L1819.43 102.75 L1823.95 102.75 L1832.05 123.028 L1840.15 102.75 L1844.66 102.75 L1833.27 131.083 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1851.95 124.741 L1859.59 124.741 L1859.59 98.3751 L1851.28 100.042 L1851.28 95.7825 L1859.55 94.1158 L1864.22 94.1158 L1864.22 124.741 L1871.86 124.741 L1871.86 128.676 L1851.95 128.676 L1851.95 124.741 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"\n",
"M132.633 988.025 L1952.76 988.025 L1952.76 618.673 L132.633 618.673 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip963\">\n",
" <rect x=\"132\" y=\"618\" width=\"1821\" height=\"370\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip963)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 184.146,988.025 184.146,618.673 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip963)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 613.42,988.025 613.42,618.673 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip963)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1042.69,988.025 1042.69,618.673 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip963)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1471.97,988.025 1471.97,618.673 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip963)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1901.24,988.025 1901.24,618.673 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,988.025 1952.76,988.025 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,988.025 184.146,969.127 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 613.42,988.025 613.42,969.127 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1042.69,988.025 1042.69,969.127 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1471.97,988.025 1471.97,969.127 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1901.24,988.025 1901.24,969.127 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"M184.146 1031.74 Q180.535 1031.74 178.706 1035.31 Q176.901 1038.85 176.901 1045.98 Q176.901 1053.09 178.706 1056.65 Q180.535 1060.19 184.146 1060.19 Q187.78 1060.19 189.586 1056.65 Q191.414 1053.09 191.414 1045.98 Q191.414 1038.85 189.586 1035.31 Q187.78 1031.74 184.146 1031.74 M184.146 1028.04 Q189.956 1028.04 193.012 1032.65 Q196.09 1037.23 196.09 1045.98 Q196.09 1054.71 193.012 1059.31 Q189.956 1063.9 184.146 1063.9 Q178.336 1063.9 175.257 1059.31 Q172.202 1054.71 172.202 1045.98 Q172.202 1037.23 175.257 1032.65 Q178.336 1028.04 184.146 1028.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M592.691 1059.29 L609.011 1059.29 L609.011 1063.23 L587.066 1063.23 L587.066 1059.29 Q589.728 1056.54 594.312 1051.91 Q598.918 1047.25 600.099 1045.91 Q602.344 1043.39 603.224 1041.65 Q604.126 1039.89 604.126 1038.2 Q604.126 1035.45 602.182 1033.71 Q600.261 1031.98 597.159 1031.98 Q594.96 1031.98 592.506 1032.74 Q590.075 1033.5 587.298 1035.05 L587.298 1030.33 Q590.122 1029.2 592.575 1028.62 Q595.029 1028.04 597.066 1028.04 Q602.436 1028.04 605.631 1030.73 Q608.825 1033.41 608.825 1037.9 Q608.825 1040.03 608.015 1041.95 Q607.228 1043.85 605.122 1046.44 Q604.543 1047.11 601.441 1050.33 Q598.339 1053.53 592.691 1059.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M618.872 1028.67 L637.228 1028.67 L637.228 1032.6 L623.154 1032.6 L623.154 1041.07 Q624.172 1040.73 625.191 1040.56 Q626.21 1040.38 627.228 1040.38 Q633.015 1040.38 636.395 1043.55 Q639.774 1046.72 639.774 1052.14 Q639.774 1057.72 636.302 1060.82 Q632.83 1063.9 626.51 1063.9 Q624.335 1063.9 622.066 1063.53 Q619.821 1063.16 617.413 1062.41 L617.413 1057.72 Q619.497 1058.85 621.719 1059.41 Q623.941 1059.96 626.418 1059.96 Q630.422 1059.96 632.76 1057.85 Q635.098 1055.75 635.098 1052.14 Q635.098 1048.53 632.76 1046.42 Q630.422 1044.31 626.418 1044.31 Q624.543 1044.31 622.668 1044.73 Q620.816 1045.15 618.872 1046.03 L618.872 1028.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1017.39 1028.67 L1035.75 1028.67 L1035.75 1032.6 L1021.68 1032.6 L1021.68 1041.07 Q1022.69 1040.73 1023.71 1040.56 Q1024.73 1040.38 1025.75 1040.38 Q1031.54 1040.38 1034.92 1043.55 Q1038.3 1046.72 1038.3 1052.14 Q1038.3 1057.72 1034.82 1060.82 Q1031.35 1063.9 1025.03 1063.9 Q1022.86 1063.9 1020.59 1063.53 Q1018.34 1063.16 1015.94 1062.41 L1015.94 1057.72 Q1018.02 1058.85 1020.24 1059.41 Q1022.46 1059.96 1024.94 1059.96 Q1028.94 1059.96 1031.28 1057.85 Q1033.62 1055.75 1033.62 1052.14 Q1033.62 1048.53 1031.28 1046.42 Q1028.94 1044.31 1024.94 1044.31 Q1023.06 1044.31 1021.19 1044.73 Q1019.34 1045.15 1017.39 1046.03 L1017.39 1028.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1057.51 1031.74 Q1053.9 1031.74 1052.07 1035.31 Q1050.26 1038.85 1050.26 1045.98 Q1050.26 1053.09 1052.07 1056.65 Q1053.9 1060.19 1057.51 1060.19 Q1061.14 1060.19 1062.95 1056.65 Q1064.78 1053.09 1064.78 1045.98 Q1064.78 1038.85 1062.95 1035.31 Q1061.14 1031.74 1057.51 1031.74 M1057.51 1028.04 Q1063.32 1028.04 1066.37 1032.65 Q1069.45 1037.23 1069.45 1045.98 Q1069.45 1054.71 1066.37 1059.31 Q1063.32 1063.9 1057.51 1063.9 Q1051.7 1063.9 1048.62 1059.31 Q1045.56 1054.71 1045.56 1045.98 Q1045.56 1037.23 1048.62 1032.65 Q1051.7 1028.04 1057.51 1028.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1445.82 1028.67 L1468.05 1028.67 L1468.05 1030.66 L1455.5 1063.23 L1450.61 1063.23 L1462.42 1032.6 L1445.82 1032.6 L1445.82 1028.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1477.21 1028.67 L1495.57 1028.67 L1495.57 1032.6 L1481.49 1032.6 L1481.49 1041.07 Q1482.51 1040.73 1483.53 1040.56 Q1484.55 1040.38 1485.57 1040.38 Q1491.36 1040.38 1494.73 1043.55 Q1498.11 1046.72 1498.11 1052.14 Q1498.11 1057.72 1494.64 1060.82 Q1491.17 1063.9 1484.85 1063.9 Q1482.67 1063.9 1480.41 1063.53 Q1478.16 1063.16 1475.75 1062.41 L1475.75 1057.72 Q1477.84 1058.85 1480.06 1059.41 Q1482.28 1059.96 1484.76 1059.96 Q1488.76 1059.96 1491.1 1057.85 Q1493.44 1055.75 1493.44 1052.14 Q1493.44 1048.53 1491.1 1046.42 Q1488.76 1044.31 1484.76 1044.31 Q1482.88 1044.31 1481.01 1044.73 Q1479.16 1045.15 1477.21 1046.03 L1477.21 1028.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1860.85 1059.29 L1868.49 1059.29 L1868.49 1032.92 L1860.18 1034.59 L1860.18 1030.33 L1868.44 1028.67 L1873.12 1028.67 L1873.12 1059.29 L1880.76 1059.29 L1880.76 1063.23 L1860.85 1063.23 L1860.85 1059.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1900.2 1031.74 Q1896.59 1031.74 1894.76 1035.31 Q1892.96 1038.85 1892.96 1045.98 Q1892.96 1053.09 1894.76 1056.65 Q1896.59 1060.19 1900.2 1060.19 Q1903.84 1060.19 1905.64 1056.65 Q1907.47 1053.09 1907.47 1045.98 Q1907.47 1038.85 1905.64 1035.31 Q1903.84 1031.74 1900.2 1031.74 M1900.2 1028.04 Q1906.01 1028.04 1909.07 1032.65 Q1912.15 1037.23 1912.15 1045.98 Q1912.15 1054.71 1909.07 1059.31 Q1906.01 1063.9 1900.2 1063.9 Q1894.39 1063.9 1891.31 1059.31 Q1888.26 1054.71 1888.26 1045.98 Q1888.26 1037.23 1891.31 1032.65 Q1894.39 1028.04 1900.2 1028.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1930.36 1031.74 Q1926.75 1031.74 1924.92 1035.31 Q1923.12 1038.85 1923.12 1045.98 Q1923.12 1053.09 1924.92 1056.65 Q1926.75 1060.19 1930.36 1060.19 Q1934 1060.19 1935.8 1056.65 Q1937.63 1053.09 1937.63 1045.98 Q1937.63 1038.85 1935.8 1035.31 Q1934 1031.74 1930.36 1031.74 M1930.36 1028.04 Q1936.17 1028.04 1939.23 1032.65 Q1942.31 1037.23 1942.31 1045.98 Q1942.31 1054.71 1939.23 1059.31 Q1936.17 1063.9 1930.36 1063.9 Q1924.55 1063.9 1921.47 1059.31 Q1918.42 1054.71 1918.42 1045.98 Q1918.42 1037.23 1921.47 1032.65 Q1924.55 1028.04 1930.36 1028.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip963)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,977.897 1952.76,977.897 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip963)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,890.704 1952.76,890.704 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip963)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,803.512 1952.76,803.512 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip963)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,716.319 1952.76,716.319 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip963)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,629.126 1952.76,629.126 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,988.025 132.633,618.673 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,977.897 151.531,977.897 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,890.704 151.531,890.704 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,803.512 151.531,803.512 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,716.319 151.531,716.319 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,629.126 151.531,629.126 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"M-14.7044 963.696 Q-18.3155 963.696 -20.1442 967.261 Q-21.9498 970.802 -21.9498 977.932 Q-21.9498 985.038 -20.1442 988.603 Q-18.3155 992.145 -14.7044 992.145 Q-11.0702 992.145 -9.26465 988.603 Q-7.43595 985.038 -7.43595 977.932 Q-7.43595 970.802 -9.26465 967.261 Q-11.0702 963.696 -14.7044 963.696 M-14.7044 959.992 Q-8.89428 959.992 -5.83874 964.599 Q-2.76005 969.182 -2.76005 977.932 Q-2.76005 986.659 -5.83874 991.265 Q-8.89428 995.848 -14.7044 995.848 Q-20.5146 995.848 -23.5933 991.265 Q-26.6488 986.659 -26.6488 977.932 Q-26.6488 969.182 -23.5933 964.599 Q-20.5146 959.992 -14.7044 959.992 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M5.4575 989.297 L10.3417 989.297 L10.3417 995.177 L5.4575 995.177 L5.4575 989.297 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M30.5268 963.696 Q26.9157 963.696 25.087 967.261 Q23.2815 970.802 23.2815 977.932 Q23.2815 985.038 25.087 988.603 Q26.9157 992.145 30.5268 992.145 Q34.161 992.145 35.9666 988.603 Q37.7953 985.038 37.7953 977.932 Q37.7953 970.802 35.9666 967.261 Q34.161 963.696 30.5268 963.696 M30.5268 959.992 Q36.337 959.992 39.3925 964.599 Q42.4712 969.182 42.4712 977.932 Q42.4712 986.659 39.3925 991.265 Q36.337 995.848 30.5268 995.848 Q24.7167 995.848 21.638 991.265 Q18.5824 986.659 18.5824 977.932 Q18.5824 969.182 21.638 964.599 Q24.7167 959.992 30.5268 959.992 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M60.6887 963.696 Q57.0776 963.696 55.2489 967.261 Q53.4434 970.802 53.4434 977.932 Q53.4434 985.038 55.2489 988.603 Q57.0776 992.145 60.6887 992.145 Q64.3229 992.145 66.1285 988.603 Q67.9572 985.038 67.9572 977.932 Q67.9572 970.802 66.1285 967.261 Q64.3229 963.696 60.6887 963.696 M60.6887 959.992 Q66.4988 959.992 69.5544 964.599 Q72.6331 969.182 72.6331 977.932 Q72.6331 986.659 69.5544 991.265 Q66.4988 995.848 60.6887 995.848 Q54.8785 995.848 51.7998 991.265 Q48.7443 986.659 48.7443 977.932 Q48.7443 969.182 51.7998 964.599 Q54.8785 959.992 60.6887 959.992 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-13.7091 876.503 Q-17.3202 876.503 -19.1489 880.068 Q-20.9544 883.609 -20.9544 890.739 Q-20.9544 897.845 -19.1489 901.41 Q-17.3202 904.952 -13.7091 904.952 Q-10.0748 904.952 -8.26928 901.41 Q-6.44059 897.845 -6.44059 890.739 Q-6.44059 883.609 -8.26928 880.068 Q-10.0748 876.503 -13.7091 876.503 M-13.7091 872.799 Q-7.89891 872.799 -4.84337 877.406 Q-1.76469 881.989 -1.76469 890.739 Q-1.76469 899.466 -4.84337 904.072 Q-7.89891 908.656 -13.7091 908.656 Q-19.5192 908.656 -22.5979 904.072 Q-25.6534 899.466 -25.6534 890.739 Q-25.6534 881.989 -22.5979 877.406 Q-19.5192 872.799 -13.7091 872.799 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M6.45286 902.105 L11.3371 902.105 L11.3371 907.984 L6.45286 907.984 L6.45286 902.105 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M25.55 904.049 L41.8693 904.049 L41.8693 907.984 L19.925 907.984 L19.925 904.049 Q22.587 901.295 27.1703 896.665 Q31.7768 892.012 32.9574 890.67 Q35.2027 888.146 36.0823 886.41 Q36.9851 884.651 36.9851 882.961 Q36.9851 880.207 35.0407 878.471 Q33.1194 876.734 30.0176 876.734 Q27.8185 876.734 25.3648 877.498 Q22.9343 878.262 20.1565 879.813 L20.1565 875.091 Q22.9806 873.957 25.4342 873.378 Q27.8879 872.799 29.925 872.799 Q35.2953 872.799 38.4897 875.484 Q41.6842 878.17 41.6842 882.66 Q41.6842 884.79 40.874 886.711 Q40.0869 888.609 37.9805 891.202 Q37.4018 891.873 34.2999 895.091 Q31.1981 898.285 25.55 904.049 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M51.7304 873.424 L70.0868 873.424 L70.0868 877.359 L56.0128 877.359 L56.0128 885.832 Q57.0313 885.484 58.0498 885.322 Q59.0683 885.137 60.0868 885.137 Q65.8738 885.137 69.2535 888.308 Q72.6331 891.48 72.6331 896.896 Q72.6331 902.475 69.1609 905.577 Q65.6887 908.656 59.3692 908.656 Q57.1933 908.656 54.9248 908.285 Q52.6795 907.915 50.2721 907.174 L50.2721 902.475 Q52.3554 903.609 54.5776 904.165 Q56.7998 904.72 59.2767 904.72 Q63.2813 904.72 65.6192 902.614 Q67.9572 900.507 67.9572 896.896 Q67.9572 893.285 65.6192 891.179 Q63.2813 889.072 59.2767 889.072 Q57.4017 889.072 55.5267 889.489 Q53.6748 889.906 51.7304 890.785 L51.7304 873.424 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-14.7044 789.31 Q-18.3155 789.31 -20.1442 792.875 Q-21.9498 796.417 -21.9498 803.546 Q-21.9498 810.653 -20.1442 814.218 Q-18.3155 817.759 -14.7044 817.759 Q-11.0702 817.759 -9.26465 814.218 Q-7.43595 810.653 -7.43595 803.546 Q-7.43595 796.417 -9.26465 792.875 Q-11.0702 789.31 -14.7044 789.31 M-14.7044 785.607 Q-8.89428 785.607 -5.83874 790.213 Q-2.76005 794.796 -2.76005 803.546 Q-2.76005 812.273 -5.83874 816.88 Q-8.89428 821.463 -14.7044 821.463 Q-20.5146 821.463 -23.5933 816.88 Q-26.6488 812.273 -26.6488 803.546 Q-26.6488 794.796 -23.5933 790.213 Q-20.5146 785.607 -14.7044 785.607 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M5.4575 814.912 L10.3417 814.912 L10.3417 820.792 L5.4575 820.792 L5.4575 814.912 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M20.5732 786.232 L38.9295 786.232 L38.9295 790.167 L24.8555 790.167 L24.8555 798.639 Q25.8741 798.292 26.8926 798.13 Q27.9111 797.944 28.9296 797.944 Q34.7166 797.944 38.0962 801.116 Q41.4758 804.287 41.4758 809.704 Q41.4758 815.282 38.0036 818.384 Q34.5314 821.463 28.212 821.463 Q26.0361 821.463 23.7676 821.092 Q21.5222 820.722 19.1148 819.981 L19.1148 815.282 Q21.1982 816.417 23.4204 816.972 Q25.6426 817.528 28.1194 817.528 Q32.124 817.528 34.462 815.421 Q36.7999 813.315 36.7999 809.704 Q36.7999 806.093 34.462 803.986 Q32.124 801.88 28.1194 801.88 Q26.2444 801.88 24.3694 802.296 Q22.5176 802.713 20.5732 803.593 L20.5732 786.232 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M60.6887 789.31 Q57.0776 789.31 55.2489 792.875 Q53.4434 796.417 53.4434 803.546 Q53.4434 810.653 55.2489 814.218 Q57.0776 817.759 60.6887 817.759 Q64.3229 817.759 66.1285 814.218 Q67.9572 810.653 67.9572 803.546 Q67.9572 796.417 66.1285 792.875 Q64.3229 789.31 60.6887 789.31 M60.6887 785.607 Q66.4988 785.607 69.5544 790.213 Q72.6331 794.796 72.6331 803.546 Q72.6331 812.273 69.5544 816.88 Q66.4988 821.463 60.6887 821.463 Q54.8785 821.463 51.7998 816.88 Q48.7443 812.273 48.7443 803.546 Q48.7443 794.796 51.7998 790.213 Q54.8785 785.607 60.6887 785.607 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-13.7091 702.117 Q-17.3202 702.117 -19.1489 705.682 Q-20.9544 709.224 -20.9544 716.354 Q-20.9544 723.46 -19.1489 727.025 Q-17.3202 730.566 -13.7091 730.566 Q-10.0748 730.566 -8.26928 727.025 Q-6.44059 723.46 -6.44059 716.354 Q-6.44059 709.224 -8.26928 705.682 Q-10.0748 702.117 -13.7091 702.117 M-13.7091 698.414 Q-7.89891 698.414 -4.84337 703.02 Q-1.76469 707.604 -1.76469 716.354 Q-1.76469 725.08 -4.84337 729.687 Q-7.89891 734.27 -13.7091 734.27 Q-19.5192 734.27 -22.5979 729.687 Q-25.6534 725.08 -25.6534 716.354 Q-25.6534 707.604 -22.5979 703.02 Q-19.5192 698.414 -13.7091 698.414 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M6.45286 727.719 L11.3371 727.719 L11.3371 733.599 L6.45286 733.599 L6.45286 727.719 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M20.3417 699.039 L42.5638 699.039 L42.5638 701.03 L30.0176 733.599 L25.1333 733.599 L36.9388 702.974 L20.3417 702.974 L20.3417 699.039 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M51.7304 699.039 L70.0868 699.039 L70.0868 702.974 L56.0128 702.974 L56.0128 711.446 Q57.0313 711.099 58.0498 710.937 Q59.0683 710.752 60.0868 710.752 Q65.8738 710.752 69.2535 713.923 Q72.6331 717.094 72.6331 722.511 Q72.6331 728.09 69.1609 731.191 Q65.6887 734.27 59.3692 734.27 Q57.1933 734.27 54.9248 733.9 Q52.6795 733.529 50.2721 732.789 L50.2721 728.09 Q52.3554 729.224 54.5776 729.779 Q56.7998 730.335 59.2767 730.335 Q63.2813 730.335 65.6192 728.228 Q67.9572 726.122 67.9572 722.511 Q67.9572 718.9 65.6192 716.793 Q63.2813 714.687 59.2767 714.687 Q57.4017 714.687 55.5267 715.104 Q53.6748 715.52 51.7304 716.4 L51.7304 699.039 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-23.8942 642.471 L-16.2553 642.471 L-16.2553 616.105 L-24.5655 617.772 L-24.5655 613.513 L-16.3016 611.846 L-11.6257 611.846 L-11.6257 642.471 L-3.9869 642.471 L-3.9869 646.406 L-23.8942 646.406 L-23.8942 642.471 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M5.4575 640.526 L10.3417 640.526 L10.3417 646.406 L5.4575 646.406 L5.4575 640.526 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M30.5268 614.925 Q26.9157 614.925 25.087 618.49 Q23.2815 622.031 23.2815 629.161 Q23.2815 636.267 25.087 639.832 Q26.9157 643.374 30.5268 643.374 Q34.161 643.374 35.9666 639.832 Q37.7953 636.267 37.7953 629.161 Q37.7953 622.031 35.9666 618.49 Q34.161 614.925 30.5268 614.925 M30.5268 611.221 Q36.337 611.221 39.3925 615.827 Q42.4712 620.411 42.4712 629.161 Q42.4712 637.888 39.3925 642.494 Q36.337 647.077 30.5268 647.077 Q24.7167 647.077 21.638 642.494 Q18.5824 637.888 18.5824 629.161 Q18.5824 620.411 21.638 615.827 Q24.7167 611.221 30.5268 611.221 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M60.6887 614.925 Q57.0776 614.925 55.2489 618.49 Q53.4434 622.031 53.4434 629.161 Q53.4434 636.267 55.2489 639.832 Q57.0776 643.374 60.6887 643.374 Q64.3229 643.374 66.1285 639.832 Q67.9572 636.267 67.9572 629.161 Q67.9572 622.031 66.1285 618.49 Q64.3229 614.925 60.6887 614.925 M60.6887 611.221 Q66.4988 611.221 69.5544 615.827 Q72.6331 620.411 72.6331 629.161 Q72.6331 637.888 69.5544 642.494 Q66.4988 647.077 60.6887 647.077 Q54.8785 647.077 51.7998 642.494 Q48.7443 637.888 48.7443 629.161 Q48.7443 620.411 51.7998 615.827 Q54.8785 611.221 60.6887 611.221 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip963)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,629.126 185.863,641.332 187.58,676.091 189.297,727.713 191.014,787.369 192.731,844.221 194.449,886.663 196.166,906.995 197.883,912.625 199.6,918.658 \n",
" 201.317,930.998 203.034,946.952 204.751,957.499 206.468,954.233 208.185,948.068 209.902,946.452 211.62,947.728 213.337,944.566 215.054,932.359 216.771,915.109 \n",
" 218.488,897.865 220.205,883.881 221.922,875.068 223.639,872.426 225.356,876.312 227.073,886.539 228.79,902.293 230.508,921.803 232.225,941.388 233.942,952.133 \n",
" 235.659,945.638 237.376,933.8 239.093,925.55 240.81,922.959 242.527,925.528 244.244,931.633 245.961,939.434 247.679,947.325 249.396,953.403 251.113,954.735 \n",
" 252.83,950.535 254.547,944.441 256.264,940.153 257.981,939.523 259.698,942.565 261.415,947.605 263.132,951.843 264.85,953.207 266.567,952.448 268.284,951.56 \n",
" 270.001,951.159 271.718,950.082 273.435,946.035 275.152,937.155 276.869,923.547 278.586,907.185 280.303,891.105 282.021,878.632 283.738,872.516 285.455,874.143 \n",
" 287.172,883.102 288.889,897.29 290.606,913.573 292.323,928.837 294.04,941.092 295.757,950.046 297.474,956.612 299.191,962.003 300.909,967.293 302.626,970.663 \n",
" 304.343,964.014 306.06,952.134 307.777,940.427 309.494,932.424 311.211,930.543 312.928,934.896 314.645,941.679 316.362,942.929 318.08,935.897 319.797,928.042 \n",
" 321.514,925.392 323.231,927.881 324.948,928.504 326.665,918.949 328.382,902.153 330.099,887.239 331.816,880.679 333.533,884.738 335.251,897.341 336.968,911.964 \n",
" 338.685,919.056 340.402,914.74 342.119,906.13 343.836,900.274 345.553,899 347.27,900.673 348.987,902.666 350.704,903.447 352.421,903.269 354.139,903.383 \n",
" 355.856,905.191 357.573,910.019 359.29,918.824 361.007,931.261 362.724,943.659 364.441,946.625 366.158,936.991 367.875,925.172 369.592,917.878 371.31,916.029 \n",
" 373.027,915.868 374.744,911.112 376.461,899.411 378.178,885.069 379.895,873.995 381.612,870.07 383.329,874.479 385.046,886.016 386.763,901.718 388.481,917.615 \n",
" 390.198,929.601 391.915,935.055 393.632,934.871 395.349,932.126 397.066,929.053 398.783,926.639 400.5,925.36 402.217,925.515 403.934,927.229 405.651,930.367 \n",
" 407.369,934.467 409.086,938.639 410.803,941.476 412.52,941.413 414.237,937.845 415.954,931.657 417.671,924.263 419.388,916.722 421.105,909.687 422.822,903.792 \n",
" 424.54,900.055 426.257,899.936 427.974,904.921 429.691,915.742 431.408,931.255 433.125,945.834 434.842,945.815 436.559,931.401 438.276,917.235 439.993,910.422 \n",
" 441.711,913.05 443.428,923.238 445.145,933.601 446.862,932.07 448.579,918.721 450.296,905.331 452.013,899.533 453.73,903.957 455.447,917.074 457.164,931.581 \n",
" 458.881,931.46 460.599,911.82 462.316,886.101 464.033,862.698 465.75,845.224 467.467,835.413 469.184,834.131 470.901,841.667 472.618,857.661 474.335,880.896 \n",
" 476.052,909.173 477.77,939.301 479.487,965.315 481.204,957.777 482.921,940.802 484.638,931.377 486.355,930.548 488.072,937.346 489.789,948.836 491.506,957.139 \n",
" 493.223,950.21 494.941,935.567 496.658,922.623 498.375,915 500.092,914.052 501.809,919.431 503.526,928.94 505.243,938.316 506.96,942.411 508.677,940.722 \n",
" 510.394,938.631 512.112,940.388 513.829,946.021 515.546,950.098 517.263,944.515 518.98,931.846 520.697,919.73 522.414,912.781 524.131,913.146 525.848,921.218 \n",
" 527.565,935.977 529.282,954.597 531,963.208 532.717,945.297 534.434,924.553 536.151,908.296 537.868,899.399 539.585,899.191 541.302,907.247 543.019,921.177 \n",
" 544.736,936.701 546.453,948.288 548.171,952.864 549.888,954.788 551.605,958.343 553.322,958.898 555.039,949.239 556.756,934.995 558.473,922.85 560.19,916.445 \n",
" 561.907,917.168 563.624,924.448 565.342,936.248 567.059,949.8 568.776,962.193 570.493,968.349 572.21,962.256 573.927,951.175 575.644,938.024 577.361,923.773 \n",
" 579.078,909.741 580.795,897.385 582.512,887.948 584.23,882.277 585.947,880.73 587.664,883.174 589.381,889.036 591.098,897.424 592.815,907.295 594.532,917.637 \n",
" 596.249,927.607 597.966,936.579 599.683,944.146 601.401,950.124 603.118,954.695 604.835,958.564 606.552,962.823 608.269,968.457 609.986,975.539 611.703,970.338 \n",
" 613.42,960.626 615.137,951.485 616.854,944.151 618.572,939.145 620.289,935.832 622.006,932.39 623.723,926.762 625.44,918.192 627.157,907.571 628.874,896.477 \n",
" 630.591,886.463 632.308,878.997 634.025,875.582 635.742,877.665 637.46,886.261 639.177,901.476 640.894,922.077 642.611,944.749 644.328,958.457 646.045,946.759 \n",
" 647.762,929.459 649.479,916.64 651.196,910.122 652.913,909.559 654.631,913.409 656.348,919.597 658.065,926.396 659.782,933.289 661.499,940.776 663.216,948.169 \n",
" 664.933,949.711 666.65,939.566 668.367,923.488 670.084,909.245 671.802,902.297 673.519,906.123 675.236,921.893 676.953,948.101 678.67,971.382 680.387,938.807 \n",
" 682.104,908.289 683.821,886.442 685.538,875.759 687.255,875.766 688.972,883.156 690.69,892.989 692.407,901.343 694.124,908.136 695.841,916.599 697.558,929.632 \n",
" 699.275,947.053 700.992,961.44 702.709,952.275 704.426,934.281 706.143,919.377 707.861,909.13 709.578,902.178 711.295,895.967 713.012,888.672 714.729,880.557 \n",
" 716.446,873.583 718.163,870.036 719.88,871.506 721.597,878.517 723.314,890.538 725.032,906.096 726.749,922.783 728.466,936.968 730.183,944.023 731.9,942.997 \n",
" 733.617,939.48 735.334,938.258 737.051,940.123 738.768,942.211 740.485,939.863 742.203,932.453 743.92,924.5 745.637,920.634 747.354,923.392 749.071,932.975 \n",
" 750.788,947.379 752.505,962.375 754.222,968.378 755.939,964.024 757.656,964.411 759.373,971.41 761.091,963.815 762.808,943.529 764.525,921.814 766.242,902.738 \n",
" 767.959,889.193 769.676,882.672 771.393,883.174 773.11,889.435 774.827,899.399 776.544,910.774 778.262,921.521 779.979,930.193 781.696,936.102 783.413,939.307 \n",
" 785.13,940.433 786.847,940.432 788.564,940.351 790.281,941.127 791.998,943.308 793.715,946.743 795.433,950.284 797.15,951.939 798.867,950.474 800.584,947.137 \n",
" 802.301,944.37 804.018,944.066 805.735,947.144 807.452,953.409 809.169,960.344 810.886,959.418 812.603,947.297 814.321,931.275 816.038,915.669 817.755,903.33 \n",
" 819.472,896.708 821.189,897.691 822.906,907.089 824.623,923.83 826.34,942.613 828.057,946.09 829.774,927.294 831.492,905.595 833.209,890.392 834.926,885.22 \n",
" 836.643,890.7 838.36,905.073 840.077,924.717 841.794,944.898 843.511,960.311 845.228,965.619 846.945,963.625 848.663,959.134 850.38,951.171 852.097,941.754 \n",
" 853.814,934.967 855.531,933.854 857.248,938.44 858.965,942.64 860.682,934.653 862.399,914.789 864.116,892.727 865.833,875.413 867.551,866.895 869.268,868.814 \n",
" 870.985,880.529 872.702,899.402 874.419,921.345 876.136,941.487 877.853,954.966 879.57,960.001 881.287,960.703 883.004,956.734 884.722,944.272 886.439,925.849 \n",
" 888.156,905.76 889.873,887.578 891.59,874.13 893.307,867.529 895.024,869.159 896.741,879.568 898.458,898.23 900.175,923.039 901.893,947.958 903.61,950.116 \n",
" 905.327,927.576 907.044,905.352 908.761,889.919 910.478,882.707 912.195,883.031 913.912,888.963 915.629,898.273 917.346,909.363 919.063,921.719 920.781,935.586 \n",
" 922.498,951.099 924.215,966.44 925.932,963.512 927.649,946.391 929.366,929.622 931.083,915.85 932.8,906.835 934.517,903.825 936.234,907.12 937.952,915.509 \n",
" 939.669,925.718 941.386,932.503 943.103,932.089 944.82,927.035 946.537,922.209 948.254,919.328 949.971,916.506 951.688,910.428 953.405,899.947 955.123,887.261 \n",
" 956.84,875.736 958.557,867.944 960.274,865.115 961.991,867.301 963.708,873.814 965.425,883.7 967.142,896.084 968.859,910.307 970.576,925.838 972.294,941.999 \n",
" 974.011,957.353 975.728,966.363 977.445,960.295 979.162,951.032 980.879,944.599 982.596,941.83 984.313,942.075 986.03,943.897 987.747,945.912 989.464,947.74 \n",
" 991.182,950.042 992.899,953.395 994.616,957.194 996.333,959.577 998.05,959.459 999.767,958.634 1001.48,959.654 1003.2,963.742 1004.92,970.638 1006.64,974.344 \n",
" 1008.35,965.009 1010.07,954.619 1011.79,943.997 1013.5,933.238 1015.22,922.889 1016.94,914.197 1018.66,908.754 1020.37,907.902 1022.09,912.236 1023.81,921.422 \n",
" 1025.52,934.334 1027.24,949.42 1028.96,965.077 1030.67,974.268 1032.39,961.175 1034.11,949.354 1035.83,940.109 1037.54,934.29 1039.26,932.809 1040.98,936.391 \n",
" 1042.69,945.242 1044.41,958.745 1046.13,973.778 1047.85,960.898 1049.56,943.715 1051.28,929.184 1053,918.185 1054.71,910.072 1056.43,903.144 1058.15,895.907 \n",
" 1059.87,888.279 1061.58,881.469 1063.3,876.801 1065.02,874.819 1066.73,875.365 1068.45,878.367 1070.17,884.445 1071.89,894.557 1073.6,908.745 1075.32,924.526 \n",
" 1077.04,935.404 1078.75,934.68 1080.47,927.192 1082.19,922.341 1083.9,924.569 1085.62,933.928 1087.34,947.142 1089.06,956.916 1090.77,954.626 1092.49,946.207 \n",
" 1094.21,937.993 1095.92,929.484 1097.64,919.136 1099.36,907.756 1101.08,898.159 1102.79,893.118 1104.51,893.903 1106.23,899.696 1107.94,907.763 1109.66,914.591 \n",
" 1111.38,918.226 1113.1,919.963 1114.81,922.668 1116.53,927.812 1118.25,933.959 1119.96,936.655 1121.68,931.709 1123.4,920.279 1125.12,906.121 1126.83,891.825 \n",
" 1128.55,878.981 1130.27,869.031 1131.98,863.523 1133.7,863.807 1135.42,870.55 1137.13,883.413 1138.85,901.061 1140.57,921.491 1142.29,942.478 1144,961.492 \n",
" 1145.72,967.659 1147.44,954.676 1149.15,940.706 1150.87,927.711 1152.59,915.973 1154.31,906.377 1156.02,900.494 1157.74,899.98 1159.46,905.535 1161.17,915.55 \n",
" 1162.89,924.423 1164.61,923.612 1166.33,911.995 1168.04,897.442 1169.76,886.257 1171.48,880.611 1173.19,879.747 1174.91,881.817 1176.63,885.96 1178.35,893.208 \n",
" 1180.06,905.359 1181.78,923.014 1183.5,944.473 1185.21,965.886 1186.93,972.717 1188.65,965.035 1190.36,967.305 1192.08,965.369 1193.8,944.011 1195.52,917.788 \n",
" 1197.23,894.353 1198.95,879.373 1200.67,876.177 1202.38,884.524 1204.1,898.984 1205.82,906.982 1207.54,896.465 1209.25,873.407 1210.97,850.498 1212.69,835.173 \n",
" 1214.4,830.217 1216.12,835.274 1217.84,848.006 1219.56,865.373 1221.27,884.89 1222.99,905.136 1224.71,924.644 1226.42,938.826 1228.14,939.732 1229.86,931.129 \n",
" 1231.58,925.462 1233.29,929.914 1235.01,946.401 1236.73,967.443 1238.44,944.464 1240.16,912.939 1241.88,889.671 1243.59,881.038 1245.31,889.914 1247.03,914.895 \n",
" 1248.75,948.014 1250.46,946.904 1252.18,911.524 1253.9,882.352 1255.61,867.054 1257.33,867.371 1259.05,881.58 1260.77,905.521 1262.48,933.294 1264.2,953.867 \n",
" 1265.92,946.336 1267.63,927.941 1269.35,914.411 1271.07,909.433 1272.79,914.054 1274.5,927.386 1276.22,945.688 1277.94,957.035 1279.65,946.442 1281.37,931.846 \n",
" 1283.09,924.145 1284.81,925.799 1286.52,936.009 1288.24,951.868 1289.96,969.311 1291.67,971.052 1293.39,961.329 1295.11,958.129 1296.82,960.603 1298.54,964.994 \n",
" 1300.26,964.221 1301.98,958.167 1303.69,952.212 1305.41,947.839 1307.13,944.236 1308.84,940.735 1310.56,938.48 1312.28,939.98 1314,947.426 1315.71,960.739 \n",
" 1317.43,964.62 1319.15,943.183 1320.86,919.039 1322.58,898.953 1324.3,886.89 1326.02,885.136 1327.73,893.889 1329.45,910.918 1331.17,930.688 1332.88,941.135 \n",
" 1334.6,931.827 1336.32,914.661 1338.04,900.158 1339.75,891.643 1341.47,889.548 1343.19,892.993 1344.9,900.538 1346.62,910.67 1348.34,922.104 1350.05,933.904 \n",
" 1351.77,945.414 1353.49,955.969 1355.21,964 1356.92,965.667 1358.64,961.491 1360.36,957.31 1362.07,956.075 1363.79,958.381 1365.51,960.559 1367.23,952.979 \n",
" 1368.94,935.931 1370.66,916.083 1372.38,898.533 1374.09,887.461 1375.81,885.801 1377.53,894.387 1379.25,910.853 1380.96,927.567 1382.68,930.517 1384.4,917.742 \n",
" 1386.11,904.005 1387.83,898.766 1389.55,905.072 1391.27,922.009 1392.98,945.963 1394.7,971.597 1396.42,960.592 1398.13,944.331 1399.85,935.619 1401.57,932.019 \n",
" 1403.28,928.204 1405,920.105 1406.72,908.949 1408.44,898.695 1410.15,892.24 1411.87,890.407 1413.59,892.409 1415.3,896.848 1417.02,902.678 1418.74,909.611 \n",
" 1420.46,917.765 1422.17,927.046 1423.89,936.77 1425.61,945.483 1427.32,950.562 1429.04,949.079 1430.76,941.896 1432.48,932.967 1434.19,925.891 1435.91,923.381 \n",
" 1437.63,927.114 1439.34,937.271 1441.06,951.618 1442.78,960.763 1444.5,951.069 1446.21,937.122 1447.93,928.61 1449.65,928.526 1451.36,937.181 1453.08,952.725 \n",
" 1454.8,970.692 1456.51,963.523 1458.23,949.603 1459.95,942.686 1461.67,944.008 1463.38,952.451 1465.1,964.593 1466.82,969.891 1468.53,961.817 1470.25,956.449 \n",
" 1471.97,956.401 1473.69,959.524 1475.4,960.904 1477.12,958.715 1478.84,957.181 1480.55,957.318 1482.27,950.607 1483.99,931.036 1485.71,904.033 1487.42,875.912 \n",
" 1489.14,852.025 1490.86,836.589 1492.57,832.215 1494.29,839.639 1496.01,857.799 1497.73,884.203 1499.44,915.453 1501.16,947.797 1502.88,977.572 1504.59,953.81 \n",
" 1506.31,936.989 1508.03,928.473 1509.74,927.698 1511.46,932.877 1513.18,941.36 1514.9,950.135 1516.61,956.435 1518.33,958.724 1520.05,957.543 1521.76,954.133 \n",
" 1523.48,949.116 1525.2,942.844 1526.92,935.788 1528.63,928.733 1530.35,922.87 1532.07,919.478 1533.78,919.084 1535.5,920.36 1537.22,919.803 1538.94,914.364 \n",
" 1540.65,905.53 1542.37,898.44 1544.09,898.082 1545.8,907.11 1547.52,924.54 1549.24,942.274 1550.96,939.028 1552.67,917.247 1554.39,897.095 1556.11,887.048 \n",
" 1557.82,889.998 1559.54,905.177 1561.26,928.108 1562.97,947.039 1564.69,940.073 1566.41,919.035 1568.13,900.125 1569.84,886.018 1571.56,875.589 1573.28,867.708 \n",
" 1574.99,863.061 1576.71,863.69 1578.43,870.965 1580.15,883.725 1581.86,897.697 1583.58,907.513 1585.3,912.194 1587.01,917.415 1588.73,929.54 1590.45,950.584 \n",
" 1592.17,968.96 1593.88,942.816 1595.6,916.246 1597.32,898.907 1599.03,894.014 1600.75,900.972 1602.47,914.81 1604.19,926.05 1605.9,926.22 1607.62,919.969 \n",
" 1609.34,917.419 1611.05,923.239 1612.77,936.803 1614.49,953.071 1616.2,959.151 1617.92,950.18 1619.64,942.453 1621.36,941.712 1623.07,947.143 1624.79,952.461 \n",
" 1626.51,947.56 1628.22,934.714 1629.94,922.51 1631.66,915.485 1633.38,915.074 1635.09,920.127 1636.81,926.911 1638.53,930.151 1640.24,927.531 1641.96,922.631 \n",
" 1643.68,920.208 1645.4,922.315 1647.11,927.697 1648.83,932.214 1650.55,931.596 1652.26,926.595 1653.98,922.033 1655.7,921.782 1657.42,927.013 1659.13,935.944 \n",
" 1660.85,943.118 1662.57,941.237 1664.28,931.346 1666,920.489 1667.72,913 1669.43,910.368 1671.15,912.302 1672.87,917.433 1674.59,924.045 1676.3,930.838 \n",
" 1678.02,937.233 1679.74,942.534 1681.45,944.25 1683.17,939.103 1684.89,928.052 1686.61,915.565 1688.32,905.98 1690.04,902.511 1691.76,906.988 1693.47,919.667 \n",
" 1695.19,939.275 1696.91,963.341 1698.63,966.334 1700.34,941.665 1702.06,919.657 1703.78,901.147 1705.49,886.184 1707.21,874.66 1708.93,866.64 1710.65,862.212 \n",
" 1712.36,861.106 1714.08,862.644 1715.8,866.302 1717.51,872.493 1719.23,882.689 1720.95,898.565 1722.66,920.769 1724.38,948.155 1726.1,976.92 1727.82,949.892 \n",
" 1729.53,927.367 1731.25,912.968 1732.97,907.279 1734.68,908.607 1736.4,913.639 1738.12,919.178 1739.84,924.266 1741.55,930.437 1743.27,939.535 1744.99,951.763 \n",
" 1746.7,965.353 1748.42,974.297 1750.14,966.737 1751.86,960.179 1753.57,953.44 1755.29,943.201 1757.01,929.854 1758.72,916.57 1760.44,906.654 1762.16,902.264 \n",
" 1763.88,903.969 1765.59,910.81 1767.31,920.776 1769.03,931.551 1770.74,941.296 1772.46,949.158 1774.18,955.107 1775.89,958.963 1777.61,959.186 1779.33,953.932 \n",
" 1781.05,943.987 1782.76,931.77 1784.48,920.157 1786.2,912.287 1787.91,911.057 1789.63,918.342 1791.35,934.309 1793.07,957.013 1794.78,970.725 1796.5,946.988 \n",
" 1798.22,928.363 1799.93,919.307 1801.65,921.271 1803.37,932.72 1805.09,947.516 1806.8,950.02 1808.52,935.615 1810.24,919.968 1811.95,909.783 1813.67,906.035 \n",
" 1815.39,907.073 1817.11,910.193 1818.82,913.208 1820.54,915.311 1822.26,916.437 1823.97,915.966 1825.69,912.481 1827.41,904.954 1829.12,893.801 1830.84,880.641 \n",
" 1832.56,867.622 1834.28,857.139 1835.99,851.684 1837.71,853.536 1839.43,864.296 1841.14,884.427 1842.86,912.939 1844.58,947.172 1846.3,968.375 1848.01,935.985 \n",
" 1849.73,908.768 1851.45,892.597 1853.16,890.128 1854.88,901.749 1856.6,925.39 1858.32,956.741 1860.03,964.4 1861.75,933.987 1863.47,910.781 1865.18,897.147 \n",
" 1866.9,892.657 1868.62,894.638 1870.34,899.101 1872.05,901.939 1873.77,900.204 1875.49,893.312 1877.2,883.472 1878.92,874.781 1880.64,871.642 1882.35,877.212 \n",
" 1884.07,892.154 1885.79,913.726 1887.51,934.154 1889.22,938.36 1890.94,924.032 1892.66,905.231 1894.37,886.951 1896.09,869.566 1897.81,854.536 1899.53,845.603 \n",
" 1901.24,847.029 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"\n",
"M1658.01 734.664 L1892.09 734.664 L1892.09 630.984 L1658.01 630.984 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1658.01,734.664 1892.09,734.664 1892.09,630.984 1658.01,630.984 1658.01,734.664 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1678.24,682.824 1799.58,682.824 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"M1833.64 702.512 Q1831.84 707.141 1830.13 708.553 Q1828.41 709.965 1825.54 709.965 L1822.14 709.965 L1822.14 706.401 L1824.64 706.401 Q1826.4 706.401 1827.37 705.567 Q1828.34 704.734 1829.52 701.632 L1830.29 699.688 L1819.8 674.179 L1824.32 674.179 L1832.42 694.456 L1840.52 674.179 L1845.03 674.179 L1833.64 702.512 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1855.54 696.169 L1871.86 696.169 L1871.86 700.104 L1849.92 700.104 L1849.92 696.169 Q1852.58 693.415 1857.16 688.785 Q1861.77 684.132 1862.95 682.79 Q1865.19 680.267 1866.07 678.53 Q1866.98 676.771 1866.98 675.081 Q1866.98 672.327 1865.03 670.591 Q1863.11 668.855 1860.01 668.855 Q1857.81 668.855 1855.36 669.618 Q1852.93 670.382 1850.15 671.933 L1850.15 667.211 Q1852.97 666.077 1855.43 665.498 Q1857.88 664.919 1859.92 664.919 Q1865.29 664.919 1868.48 667.605 Q1871.68 670.29 1871.68 674.78 Q1871.68 676.91 1870.87 678.831 Q1870.08 680.73 1867.97 683.322 Q1867.39 683.993 1864.29 687.211 Q1861.19 690.405 1855.54 696.169 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"\n",
"M132.633 1559.45 L1952.76 1559.45 L1952.76 1190.1 L132.633 1190.1 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip964\">\n",
" <rect x=\"132\" y=\"1190\" width=\"1821\" height=\"370\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip964)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 184.146,1559.45 184.146,1190.1 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip964)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 613.42,1559.45 613.42,1190.1 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip964)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1042.69,1559.45 1042.69,1190.1 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip964)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1471.97,1559.45 1471.97,1190.1 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip964)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1901.24,1559.45 1901.24,1190.1 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,1559.45 1952.76,1559.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,1559.45 184.146,1540.56 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 613.42,1559.45 613.42,1540.56 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1042.69,1559.45 1042.69,1540.56 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1471.97,1559.45 1471.97,1540.56 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1901.24,1559.45 1901.24,1540.56 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"M184.146 1603.17 Q180.535 1603.17 178.706 1606.74 Q176.901 1610.28 176.901 1617.41 Q176.901 1624.51 178.706 1628.08 Q180.535 1631.62 184.146 1631.62 Q187.78 1631.62 189.586 1628.08 Q191.414 1624.51 191.414 1617.41 Q191.414 1610.28 189.586 1606.74 Q187.78 1603.17 184.146 1603.17 M184.146 1599.47 Q189.956 1599.47 193.012 1604.08 Q196.09 1608.66 196.09 1617.41 Q196.09 1626.14 193.012 1630.74 Q189.956 1635.32 184.146 1635.32 Q178.336 1635.32 175.257 1630.74 Q172.202 1626.14 172.202 1617.41 Q172.202 1608.66 175.257 1604.08 Q178.336 1599.47 184.146 1599.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M592.691 1630.72 L609.011 1630.72 L609.011 1634.65 L587.066 1634.65 L587.066 1630.72 Q589.728 1627.96 594.312 1623.33 Q598.918 1618.68 600.099 1617.34 Q602.344 1614.82 603.224 1613.08 Q604.126 1611.32 604.126 1609.63 Q604.126 1606.88 602.182 1605.14 Q600.261 1603.4 597.159 1603.4 Q594.96 1603.4 592.506 1604.17 Q590.075 1604.93 587.298 1606.48 L587.298 1601.76 Q590.122 1600.63 592.575 1600.05 Q595.029 1599.47 597.066 1599.47 Q602.436 1599.47 605.631 1602.15 Q608.825 1604.84 608.825 1609.33 Q608.825 1611.46 608.015 1613.38 Q607.228 1615.28 605.122 1617.87 Q604.543 1618.54 601.441 1621.76 Q598.339 1624.95 592.691 1630.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M618.872 1600.09 L637.228 1600.09 L637.228 1604.03 L623.154 1604.03 L623.154 1612.5 Q624.172 1612.15 625.191 1611.99 Q626.21 1611.81 627.228 1611.81 Q633.015 1611.81 636.395 1614.98 Q639.774 1618.15 639.774 1623.57 Q639.774 1629.14 636.302 1632.25 Q632.83 1635.32 626.51 1635.32 Q624.335 1635.32 622.066 1634.95 Q619.821 1634.58 617.413 1633.84 L617.413 1629.14 Q619.497 1630.28 621.719 1630.83 Q623.941 1631.39 626.418 1631.39 Q630.422 1631.39 632.76 1629.28 Q635.098 1627.18 635.098 1623.57 Q635.098 1619.95 632.76 1617.85 Q630.422 1615.74 626.418 1615.74 Q624.543 1615.74 622.668 1616.16 Q620.816 1616.57 618.872 1617.45 L618.872 1600.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1017.39 1600.09 L1035.75 1600.09 L1035.75 1604.03 L1021.68 1604.03 L1021.68 1612.5 Q1022.69 1612.15 1023.71 1611.99 Q1024.73 1611.81 1025.75 1611.81 Q1031.54 1611.81 1034.92 1614.98 Q1038.3 1618.15 1038.3 1623.57 Q1038.3 1629.14 1034.82 1632.25 Q1031.35 1635.32 1025.03 1635.32 Q1022.86 1635.32 1020.59 1634.95 Q1018.34 1634.58 1015.94 1633.84 L1015.94 1629.14 Q1018.02 1630.28 1020.24 1630.83 Q1022.46 1631.39 1024.94 1631.39 Q1028.94 1631.39 1031.28 1629.28 Q1033.62 1627.18 1033.62 1623.57 Q1033.62 1619.95 1031.28 1617.85 Q1028.94 1615.74 1024.94 1615.74 Q1023.06 1615.74 1021.19 1616.16 Q1019.34 1616.57 1017.39 1617.45 L1017.39 1600.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1057.51 1603.17 Q1053.9 1603.17 1052.07 1606.74 Q1050.26 1610.28 1050.26 1617.41 Q1050.26 1624.51 1052.07 1628.08 Q1053.9 1631.62 1057.51 1631.62 Q1061.14 1631.62 1062.95 1628.08 Q1064.78 1624.51 1064.78 1617.41 Q1064.78 1610.28 1062.95 1606.74 Q1061.14 1603.17 1057.51 1603.17 M1057.51 1599.47 Q1063.32 1599.47 1066.37 1604.08 Q1069.45 1608.66 1069.45 1617.41 Q1069.45 1626.14 1066.37 1630.74 Q1063.32 1635.32 1057.51 1635.32 Q1051.7 1635.32 1048.62 1630.74 Q1045.56 1626.14 1045.56 1617.41 Q1045.56 1608.66 1048.62 1604.08 Q1051.7 1599.47 1057.51 1599.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1445.82 1600.09 L1468.05 1600.09 L1468.05 1602.08 L1455.5 1634.65 L1450.61 1634.65 L1462.42 1604.03 L1445.82 1604.03 L1445.82 1600.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1477.21 1600.09 L1495.57 1600.09 L1495.57 1604.03 L1481.49 1604.03 L1481.49 1612.5 Q1482.51 1612.15 1483.53 1611.99 Q1484.55 1611.81 1485.57 1611.81 Q1491.36 1611.81 1494.73 1614.98 Q1498.11 1618.15 1498.11 1623.57 Q1498.11 1629.14 1494.64 1632.25 Q1491.17 1635.32 1484.85 1635.32 Q1482.67 1635.32 1480.41 1634.95 Q1478.16 1634.58 1475.75 1633.84 L1475.75 1629.14 Q1477.84 1630.28 1480.06 1630.83 Q1482.28 1631.39 1484.76 1631.39 Q1488.76 1631.39 1491.1 1629.28 Q1493.44 1627.18 1493.44 1623.57 Q1493.44 1619.95 1491.1 1617.85 Q1488.76 1615.74 1484.76 1615.74 Q1482.88 1615.74 1481.01 1616.16 Q1479.16 1616.57 1477.21 1617.45 L1477.21 1600.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1860.85 1630.72 L1868.49 1630.72 L1868.49 1604.35 L1860.18 1606.02 L1860.18 1601.76 L1868.44 1600.09 L1873.12 1600.09 L1873.12 1630.72 L1880.76 1630.72 L1880.76 1634.65 L1860.85 1634.65 L1860.85 1630.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1900.2 1603.17 Q1896.59 1603.17 1894.76 1606.74 Q1892.96 1610.28 1892.96 1617.41 Q1892.96 1624.51 1894.76 1628.08 Q1896.59 1631.62 1900.2 1631.62 Q1903.84 1631.62 1905.64 1628.08 Q1907.47 1624.51 1907.47 1617.41 Q1907.47 1610.28 1905.64 1606.74 Q1903.84 1603.17 1900.2 1603.17 M1900.2 1599.47 Q1906.01 1599.47 1909.07 1604.08 Q1912.15 1608.66 1912.15 1617.41 Q1912.15 1626.14 1909.07 1630.74 Q1906.01 1635.32 1900.2 1635.32 Q1894.39 1635.32 1891.31 1630.74 Q1888.26 1626.14 1888.26 1617.41 Q1888.26 1608.66 1891.31 1604.08 Q1894.39 1599.47 1900.2 1599.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1930.36 1603.17 Q1926.75 1603.17 1924.92 1606.74 Q1923.12 1610.28 1923.12 1617.41 Q1923.12 1624.51 1924.92 1628.08 Q1926.75 1631.62 1930.36 1631.62 Q1934 1631.62 1935.8 1628.08 Q1937.63 1624.51 1937.63 1617.41 Q1937.63 1610.28 1935.8 1606.74 Q1934 1603.17 1930.36 1603.17 M1930.36 1599.47 Q1936.17 1599.47 1939.23 1604.08 Q1942.31 1608.66 1942.31 1617.41 Q1942.31 1626.14 1939.23 1630.74 Q1936.17 1635.32 1930.36 1635.32 Q1924.55 1635.32 1921.47 1630.74 Q1918.42 1626.14 1918.42 1617.41 Q1918.42 1608.66 1921.47 1604.08 Q1924.55 1599.47 1930.36 1599.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip964)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,1551.89 1952.76,1551.89 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip964)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,1464.05 1952.76,1464.05 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip964)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,1376.22 1952.76,1376.22 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip964)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,1288.39 1952.76,1288.39 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip964)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,1200.55 1952.76,1200.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,1559.45 132.633,1190.1 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,1551.89 151.531,1551.89 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,1464.05 151.531,1464.05 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,1376.22 151.531,1376.22 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,1288.39 151.531,1288.39 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,1200.55 151.531,1200.55 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"M-14.7044 1537.69 Q-18.3155 1537.69 -20.1442 1541.25 Q-21.9498 1544.79 -21.9498 1551.92 Q-21.9498 1559.03 -20.1442 1562.59 Q-18.3155 1566.13 -14.7044 1566.13 Q-11.0702 1566.13 -9.26465 1562.59 Q-7.43595 1559.03 -7.43595 1551.92 Q-7.43595 1544.79 -9.26465 1541.25 Q-11.0702 1537.69 -14.7044 1537.69 M-14.7044 1533.98 Q-8.89428 1533.98 -5.83874 1538.59 Q-2.76005 1543.17 -2.76005 1551.92 Q-2.76005 1560.65 -5.83874 1565.26 Q-8.89428 1569.84 -14.7044 1569.84 Q-20.5146 1569.84 -23.5933 1565.26 Q-26.6488 1560.65 -26.6488 1551.92 Q-26.6488 1543.17 -23.5933 1538.59 Q-20.5146 1533.98 -14.7044 1533.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M5.4575 1563.29 L10.3417 1563.29 L10.3417 1569.17 L5.4575 1569.17 L5.4575 1563.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M30.5268 1537.69 Q26.9157 1537.69 25.087 1541.25 Q23.2815 1544.79 23.2815 1551.92 Q23.2815 1559.03 25.087 1562.59 Q26.9157 1566.13 30.5268 1566.13 Q34.161 1566.13 35.9666 1562.59 Q37.7953 1559.03 37.7953 1551.92 Q37.7953 1544.79 35.9666 1541.25 Q34.161 1537.69 30.5268 1537.69 M30.5268 1533.98 Q36.337 1533.98 39.3925 1538.59 Q42.4712 1543.17 42.4712 1551.92 Q42.4712 1560.65 39.3925 1565.26 Q36.337 1569.84 30.5268 1569.84 Q24.7167 1569.84 21.638 1565.26 Q18.5824 1560.65 18.5824 1551.92 Q18.5824 1543.17 21.638 1538.59 Q24.7167 1533.98 30.5268 1533.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M60.6887 1537.69 Q57.0776 1537.69 55.2489 1541.25 Q53.4434 1544.79 53.4434 1551.92 Q53.4434 1559.03 55.2489 1562.59 Q57.0776 1566.13 60.6887 1566.13 Q64.3229 1566.13 66.1285 1562.59 Q67.9572 1559.03 67.9572 1551.92 Q67.9572 1544.79 66.1285 1541.25 Q64.3229 1537.69 60.6887 1537.69 M60.6887 1533.98 Q66.4988 1533.98 69.5544 1538.59 Q72.6331 1543.17 72.6331 1551.92 Q72.6331 1560.65 69.5544 1565.26 Q66.4988 1569.84 60.6887 1569.84 Q54.8785 1569.84 51.7998 1565.26 Q48.7443 1560.65 48.7443 1551.92 Q48.7443 1543.17 51.7998 1538.59 Q54.8785 1533.98 60.6887 1533.98 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-13.7091 1449.85 Q-17.3202 1449.85 -19.1489 1453.42 Q-20.9544 1456.96 -20.9544 1464.09 Q-20.9544 1471.2 -19.1489 1474.76 Q-17.3202 1478.3 -13.7091 1478.3 Q-10.0748 1478.3 -8.26928 1474.76 Q-6.44059 1471.2 -6.44059 1464.09 Q-6.44059 1456.96 -8.26928 1453.42 Q-10.0748 1449.85 -13.7091 1449.85 M-13.7091 1446.15 Q-7.89891 1446.15 -4.84337 1450.76 Q-1.76469 1455.34 -1.76469 1464.09 Q-1.76469 1472.82 -4.84337 1477.42 Q-7.89891 1482.01 -13.7091 1482.01 Q-19.5192 1482.01 -22.5979 1477.42 Q-25.6534 1472.82 -25.6534 1464.09 Q-25.6534 1455.34 -22.5979 1450.76 Q-19.5192 1446.15 -13.7091 1446.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M6.45286 1475.45 L11.3371 1475.45 L11.3371 1481.33 L6.45286 1481.33 L6.45286 1475.45 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M25.55 1477.4 L41.8693 1477.4 L41.8693 1481.33 L19.925 1481.33 L19.925 1477.4 Q22.587 1474.64 27.1703 1470.01 Q31.7768 1465.36 32.9574 1464.02 Q35.2027 1461.5 36.0823 1459.76 Q36.9851 1458 36.9851 1456.31 Q36.9851 1453.56 35.0407 1451.82 Q33.1194 1450.08 30.0176 1450.08 Q27.8185 1450.08 25.3648 1450.85 Q22.9343 1451.61 20.1565 1453.16 L20.1565 1448.44 Q22.9806 1447.31 25.4342 1446.73 Q27.8879 1446.15 29.925 1446.15 Q35.2953 1446.15 38.4897 1448.83 Q41.6842 1451.52 41.6842 1456.01 Q41.6842 1458.14 40.874 1460.06 Q40.0869 1461.96 37.9805 1464.55 Q37.4018 1465.22 34.2999 1468.44 Q31.1981 1471.63 25.55 1477.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M51.7304 1446.77 L70.0868 1446.77 L70.0868 1450.71 L56.0128 1450.71 L56.0128 1459.18 Q57.0313 1458.83 58.0498 1458.67 Q59.0683 1458.49 60.0868 1458.49 Q65.8738 1458.49 69.2535 1461.66 Q72.6331 1464.83 72.6331 1470.25 Q72.6331 1475.82 69.1609 1478.93 Q65.6887 1482.01 59.3692 1482.01 Q57.1933 1482.01 54.9248 1481.63 Q52.6795 1481.26 50.2721 1480.52 L50.2721 1475.82 Q52.3554 1476.96 54.5776 1477.51 Q56.7998 1478.07 59.2767 1478.07 Q63.2813 1478.07 65.6192 1475.96 Q67.9572 1473.86 67.9572 1470.25 Q67.9572 1466.64 65.6192 1464.53 Q63.2813 1462.42 59.2767 1462.42 Q57.4017 1462.42 55.5267 1462.84 Q53.6748 1463.26 51.7304 1464.14 L51.7304 1446.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-14.7044 1362.02 Q-18.3155 1362.02 -20.1442 1365.58 Q-21.9498 1369.13 -21.9498 1376.26 Q-21.9498 1383.36 -20.1442 1386.93 Q-18.3155 1390.47 -14.7044 1390.47 Q-11.0702 1390.47 -9.26465 1386.93 Q-7.43595 1383.36 -7.43595 1376.26 Q-7.43595 1369.13 -9.26465 1365.58 Q-11.0702 1362.02 -14.7044 1362.02 M-14.7044 1358.32 Q-8.89428 1358.32 -5.83874 1362.92 Q-2.76005 1367.51 -2.76005 1376.26 Q-2.76005 1384.98 -5.83874 1389.59 Q-8.89428 1394.17 -14.7044 1394.17 Q-20.5146 1394.17 -23.5933 1389.59 Q-26.6488 1384.98 -26.6488 1376.26 Q-26.6488 1367.51 -23.5933 1362.92 Q-20.5146 1358.32 -14.7044 1358.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M5.4575 1387.62 L10.3417 1387.62 L10.3417 1393.5 L5.4575 1393.5 L5.4575 1387.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M20.5732 1358.94 L38.9295 1358.94 L38.9295 1362.88 L24.8555 1362.88 L24.8555 1371.35 Q25.8741 1371 26.8926 1370.84 Q27.9111 1370.65 28.9296 1370.65 Q34.7166 1370.65 38.0962 1373.83 Q41.4758 1377 41.4758 1382.41 Q41.4758 1387.99 38.0036 1391.09 Q34.5314 1394.17 28.212 1394.17 Q26.0361 1394.17 23.7676 1393.8 Q21.5222 1393.43 19.1148 1392.69 L19.1148 1387.99 Q21.1982 1389.13 23.4204 1389.68 Q25.6426 1390.24 28.1194 1390.24 Q32.124 1390.24 34.462 1388.13 Q36.7999 1386.02 36.7999 1382.41 Q36.7999 1378.8 34.462 1376.7 Q32.124 1374.59 28.1194 1374.59 Q26.2444 1374.59 24.3694 1375.01 Q22.5176 1375.42 20.5732 1376.3 L20.5732 1358.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M60.6887 1362.02 Q57.0776 1362.02 55.2489 1365.58 Q53.4434 1369.13 53.4434 1376.26 Q53.4434 1383.36 55.2489 1386.93 Q57.0776 1390.47 60.6887 1390.47 Q64.3229 1390.47 66.1285 1386.93 Q67.9572 1383.36 67.9572 1376.26 Q67.9572 1369.13 66.1285 1365.58 Q64.3229 1362.02 60.6887 1362.02 M60.6887 1358.32 Q66.4988 1358.32 69.5544 1362.92 Q72.6331 1367.51 72.6331 1376.26 Q72.6331 1384.98 69.5544 1389.59 Q66.4988 1394.17 60.6887 1394.17 Q54.8785 1394.17 51.7998 1389.59 Q48.7443 1384.98 48.7443 1376.26 Q48.7443 1367.51 51.7998 1362.92 Q54.8785 1358.32 60.6887 1358.32 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-13.7091 1274.19 Q-17.3202 1274.19 -19.1489 1277.75 Q-20.9544 1281.29 -20.9544 1288.42 Q-20.9544 1295.53 -19.1489 1299.09 Q-17.3202 1302.64 -13.7091 1302.64 Q-10.0748 1302.64 -8.26928 1299.09 Q-6.44059 1295.53 -6.44059 1288.42 Q-6.44059 1281.29 -8.26928 1277.75 Q-10.0748 1274.19 -13.7091 1274.19 M-13.7091 1270.48 Q-7.89891 1270.48 -4.84337 1275.09 Q-1.76469 1279.67 -1.76469 1288.42 Q-1.76469 1297.15 -4.84337 1301.76 Q-7.89891 1306.34 -13.7091 1306.34 Q-19.5192 1306.34 -22.5979 1301.76 Q-25.6534 1297.15 -25.6534 1288.42 Q-25.6534 1279.67 -22.5979 1275.09 Q-19.5192 1270.48 -13.7091 1270.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M6.45286 1299.79 L11.3371 1299.79 L11.3371 1305.67 L6.45286 1305.67 L6.45286 1299.79 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M20.3417 1271.11 L42.5638 1271.11 L42.5638 1273.1 L30.0176 1305.67 L25.1333 1305.67 L36.9388 1275.04 L20.3417 1275.04 L20.3417 1271.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M51.7304 1271.11 L70.0868 1271.11 L70.0868 1275.04 L56.0128 1275.04 L56.0128 1283.52 Q57.0313 1283.17 58.0498 1283.01 Q59.0683 1282.82 60.0868 1282.82 Q65.8738 1282.82 69.2535 1285.99 Q72.6331 1289.16 72.6331 1294.58 Q72.6331 1300.16 69.1609 1303.26 Q65.6887 1306.34 59.3692 1306.34 Q57.1933 1306.34 54.9248 1305.97 Q52.6795 1305.6 50.2721 1304.86 L50.2721 1300.16 Q52.3554 1301.29 54.5776 1301.85 Q56.7998 1302.4 59.2767 1302.4 Q63.2813 1302.4 65.6192 1300.3 Q67.9572 1298.19 67.9572 1294.58 Q67.9572 1290.97 65.6192 1288.86 Q63.2813 1286.76 59.2767 1286.76 Q57.4017 1286.76 55.5267 1287.17 Q53.6748 1287.59 51.7304 1288.47 L51.7304 1271.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-23.8942 1213.9 L-16.2553 1213.9 L-16.2553 1187.53 L-24.5655 1189.2 L-24.5655 1184.94 L-16.3016 1183.27 L-11.6257 1183.27 L-11.6257 1213.9 L-3.9869 1213.9 L-3.9869 1217.83 L-23.8942 1217.83 L-23.8942 1213.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M5.4575 1211.96 L10.3417 1211.96 L10.3417 1217.83 L5.4575 1217.83 L5.4575 1211.96 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M30.5268 1186.35 Q26.9157 1186.35 25.087 1189.92 Q23.2815 1193.46 23.2815 1200.59 Q23.2815 1207.7 25.087 1211.26 Q26.9157 1214.8 30.5268 1214.8 Q34.161 1214.8 35.9666 1211.26 Q37.7953 1207.7 37.7953 1200.59 Q37.7953 1193.46 35.9666 1189.92 Q34.161 1186.35 30.5268 1186.35 M30.5268 1182.65 Q36.337 1182.65 39.3925 1187.26 Q42.4712 1191.84 42.4712 1200.59 Q42.4712 1209.32 39.3925 1213.92 Q36.337 1218.51 30.5268 1218.51 Q24.7167 1218.51 21.638 1213.92 Q18.5824 1209.32 18.5824 1200.59 Q18.5824 1191.84 21.638 1187.26 Q24.7167 1182.65 30.5268 1182.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M60.6887 1186.35 Q57.0776 1186.35 55.2489 1189.92 Q53.4434 1193.46 53.4434 1200.59 Q53.4434 1207.7 55.2489 1211.26 Q57.0776 1214.8 60.6887 1214.8 Q64.3229 1214.8 66.1285 1211.26 Q67.9572 1207.7 67.9572 1200.59 Q67.9572 1193.46 66.1285 1189.92 Q64.3229 1186.35 60.6887 1186.35 M60.6887 1182.65 Q66.4988 1182.65 69.5544 1187.26 Q72.6331 1191.84 72.6331 1200.59 Q72.6331 1209.32 69.5544 1213.92 Q66.4988 1218.51 60.6887 1218.51 Q54.8785 1218.51 51.7998 1213.92 Q48.7443 1209.32 48.7443 1200.59 Q48.7443 1191.84 51.7998 1187.26 Q54.8785 1182.65 60.6887 1182.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip964)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,1200.55 185.863,1210.41 187.58,1237.95 189.297,1278.43 191.014,1325.59 192.731,1372.8 194.449,1414.05 196.166,1444.72 197.883,1462.58 199.6,1469.19 \n",
" 201.317,1469.42 203.034,1468.46 204.751,1470.1 206.468,1476.59 208.185,1488.76 209.902,1505.87 211.62,1525.13 213.337,1536.27 215.054,1525.2 216.771,1510.99 \n",
" 218.488,1502.19 220.205,1500.9 221.922,1507.5 223.639,1521.2 225.356,1540.3 227.073,1541.35 228.79,1518.99 230.508,1499.21 232.225,1484.49 233.942,1476.53 \n",
" 235.659,1475.95 237.376,1482.16 239.093,1493.46 240.81,1507.46 242.527,1521.62 244.244,1533.92 245.961,1542.96 247.679,1545.56 249.396,1540.98 251.113,1535.11 \n",
" 252.83,1529.68 254.547,1525.17 256.264,1521.61 257.981,1518.78 259.698,1516.88 261.415,1516.59 263.132,1518.46 264.85,1521.79 266.567,1523.64 268.284,1520.64 \n",
" 270.001,1513.89 271.718,1507.67 273.435,1505.36 275.152,1508.61 276.869,1517.36 278.586,1530.04 280.303,1542.58 282.021,1539.19 283.738,1527.95 285.455,1519.51 \n",
" 287.172,1515.23 288.889,1515.15 290.606,1518.78 292.323,1525.36 294.04,1533.82 295.757,1541.52 297.474,1540.09 299.191,1531.11 300.909,1521.75 302.626,1514.02 \n",
" 304.343,1508.67 306.06,1506.02 307.777,1506.1 309.494,1508.7 311.211,1513.37 312.928,1519.45 314.645,1526.14 316.362,1532.57 318.08,1537.86 319.797,1540.98 \n",
" 321.514,1541.05 323.231,1538.38 324.948,1533.99 326.665,1528.38 328.382,1521.88 330.099,1515.07 331.816,1508.84 333.533,1504.23 335.251,1502.14 336.968,1503.01 \n",
" 338.685,1506.56 340.402,1511.62 342.119,1516.11 343.836,1517.71 345.553,1515.55 347.27,1510.97 348.987,1505.86 350.704,1501.44 352.421,1498.23 354.139,1496.5 \n",
" 355.856,1496.57 357.573,1498.89 359.29,1503.97 361.007,1511.94 362.724,1521.59 364.441,1527.95 366.158,1522.92 367.875,1509.62 369.592,1495.57 371.31,1484.78 \n",
" 373.027,1479.36 374.744,1480.16 376.461,1486.88 378.178,1498.22 379.895,1511.98 381.612,1524.96 383.329,1531.75 385.046,1528.46 386.763,1520.7 388.481,1513.03 \n",
" 390.198,1506.51 391.915,1501.25 393.632,1497.3 395.349,1494.95 397.066,1494.49 398.783,1496.04 400.5,1499.28 402.217,1503.51 403.934,1507.77 405.651,1511.23 \n",
" 407.369,1513.59 409.086,1515 410.803,1515.52 412.52,1514.64 414.237,1511.53 415.954,1506.08 417.671,1499.34 419.388,1492.89 421.105,1488.17 422.822,1485.96 \n",
" 424.54,1486.32 426.257,1488.69 427.974,1492.18 429.691,1496.01 431.408,1499.61 433.125,1502.69 434.842,1505.02 436.559,1506.57 438.276,1507.76 439.993,1509.39 \n",
" 441.711,1512.25 443.428,1516.48 445.145,1521.32 446.862,1525.29 448.579,1527.42 450.296,1528.56 452.013,1530.56 453.73,1534.42 455.447,1538.78 457.164,1538.66 \n",
" 458.881,1532.64 460.599,1525.67 462.316,1520.83 464.033,1519.25 465.75,1520.74 467.467,1523.94 469.184,1526.75 470.901,1527.54 472.618,1526.58 474.335,1525.03 \n",
" 476.052,1522.91 477.77,1518.93 479.487,1512.34 481.204,1504.31 482.921,1497.1 484.638,1492.79 486.355,1492.53 488.072,1496.31 489.789,1502.93 491.506,1510.37 \n",
" 493.223,1516.79 494.941,1521.72 496.658,1526.42 498.375,1532.24 500.092,1538.85 501.809,1542.18 503.526,1538.68 505.243,1534.6 506.96,1534.16 508.677,1538.72 \n",
" 510.394,1547.52 512.112,1541.16 513.829,1525.98 515.546,1510.78 517.263,1497.67 518.98,1488.08 520.697,1482.72 522.414,1481.51 524.131,1483.83 525.848,1488.8 \n",
" 527.565,1495.59 529.282,1503.58 531,1512.15 532.717,1520.07 534.434,1524.55 536.151,1522.44 537.868,1514.83 539.585,1505.53 541.302,1497.33 543.019,1491.89 \n",
" 544.736,1490.28 546.453,1493.07 548.171,1500.38 549.888,1511.74 551.605,1526.07 553.322,1541.63 555.039,1547.4 556.756,1535.88 558.473,1529.27 560.19,1528.68 \n",
" 561.907,1534 563.624,1542.69 565.342,1539.32 567.059,1524.62 568.776,1509.66 570.493,1497.31 572.21,1488.99 573.927,1485.19 575.644,1485.47 577.361,1488.72 \n",
" 579.078,1493.47 580.795,1498.38 582.512,1502.45 584.23,1504.85 585.947,1504.59 587.664,1501.19 589.381,1495.65 591.098,1490.24 592.815,1487.38 594.532,1488.6 \n",
" 596.249,1494.07 597.966,1502.6 599.683,1511.91 601.401,1519.74 603.118,1525.38 604.835,1530.32 606.552,1536.53 608.269,1544.49 609.986,1549 611.703,1541.01 \n",
" 613.42,1534.32 615.137,1530.16 616.854,1528.3 618.572,1527.66 620.289,1526.69 622.006,1524 623.723,1519.13 625.44,1512.87 627.157,1506.84 628.874,1502.98 \n",
" 630.591,1502.91 632.308,1507.42 634.025,1516.03 635.742,1527.03 637.46,1537.8 639.177,1545.41 640.894,1546.34 642.611,1539.85 644.328,1527.2 646.045,1509.86 \n",
" 647.762,1490.78 649.479,1473.58 651.196,1461.61 652.913,1457.21 654.631,1461.27 656.348,1473.08 658.065,1490.55 659.782,1510.64 661.499,1529.62 663.216,1540.47 \n",
" 664.933,1535.84 666.65,1530 668.367,1528.46 670.084,1531.18 671.802,1537.02 673.519,1543.9 675.236,1543.92 676.953,1535.56 678.67,1526.17 680.387,1517.37 \n",
" 682.104,1509.76 683.821,1503.56 685.538,1498.65 687.255,1494.54 688.972,1490.7 690.69,1486.84 692.407,1483.35 694.124,1481.16 695.841,1481.44 697.558,1484.99 \n",
" 699.275,1491.71 700.992,1499.91 702.709,1505.7 704.426,1504.52 706.143,1496.47 707.861,1486.3 709.578,1478.4 711.295,1475.17 713.012,1477.32 714.729,1484.11 \n",
" 716.446,1493.73 718.163,1503.74 719.88,1511.64 721.597,1515.74 723.314,1515.85 725.032,1512.86 726.749,1507.82 728.466,1501.9 730.183,1496.45 731.9,1492.58 \n",
" 733.617,1490.57 735.334,1489.34 737.051,1486.65 738.768,1480.42 740.485,1470.66 742.203,1459.68 743.92,1450.65 745.637,1446.43 747.354,1448.91 749.071,1458.75 \n",
" 750.788,1475.28 752.505,1496.61 754.222,1519.95 755.939,1542.15 757.656,1543.4 759.373,1531.39 761.091,1526.25 762.808,1527.08 764.525,1530.83 766.242,1532.04 \n",
" 767.959,1527.62 769.676,1521.2 771.393,1516.28 773.11,1513.63 774.827,1511.87 776.544,1508.62 778.262,1502.53 779.979,1494.47 781.696,1486.46 783.413,1480.35 \n",
" 785.13,1477.26 786.847,1477.59 788.564,1481.18 790.281,1487.48 791.998,1495.68 793.715,1504.91 795.433,1514.27 797.15,1522.92 798.867,1530 800.584,1534.52 \n",
" 802.301,1535.47 804.018,1532.95 805.735,1528.1 807.452,1521.81 809.169,1514.62 810.886,1507.05 812.603,1499.78 814.321,1493.6 816.038,1489.32 817.755,1487.64 \n",
" 819.472,1488.93 821.189,1493.1 822.906,1499.45 824.623,1506.76 826.34,1513.45 828.057,1518.25 829.774,1521.03 831.492,1522.76 833.209,1524.25 834.926,1525.26 \n",
" 836.643,1524.97 838.36,1523.15 840.077,1520.42 841.794,1517.04 843.511,1512.01 845.228,1504.07 846.945,1493.41 848.663,1482.05 850.38,1472.71 852.097,1467.77 \n",
" 853.814,1468.59 855.531,1475.19 857.248,1486.24 858.965,1499.2 860.682,1510.82 862.399,1517.9 864.116,1519.38 865.833,1517.26 867.551,1513.9 869.268,1510.57 \n",
" 870.985,1508.13 872.702,1507.31 874.419,1508.09 876.136,1508.78 877.853,1506.19 879.57,1498.34 881.287,1486.8 883.004,1474.95 884.722,1465.85 886.439,1461.58 \n",
" 888.156,1463.15 889.873,1470.66 891.59,1483.37 893.307,1500.03 895.024,1518.99 896.741,1537.9 898.458,1541.32 900.175,1525.35 901.893,1510.4 903.61,1498.22 \n",
" 905.327,1489.19 907.044,1483.39 908.761,1480.81 910.478,1481.45 912.195,1485.3 913.912,1492.21 915.629,1501.63 917.346,1512.06 919.063,1519.81 920.781,1519.03 \n",
" 922.498,1509.44 924.215,1496.75 925.932,1485.26 927.649,1477.38 929.366,1474.39 931.083,1476.7 932.8,1483.95 934.517,1494.99 936.234,1508 937.952,1520.38 \n",
" 939.669,1528.23 941.386,1527.41 943.103,1519.63 944.82,1508.68 946.537,1496.32 948.254,1483.91 949.971,1473.27 951.688,1466.3 953.405,1464.43 955.123,1468.03 \n",
" 956.84,1476.29 958.557,1487.35 960.274,1498.67 961.991,1507.54 963.708,1511.63 965.425,1510.24 967.142,1505.13 968.859,1499.52 970.576,1496.67 972.294,1499.24 \n",
" 974.011,1508.74 975.728,1525.07 977.445,1545.98 979.162,1533.07 980.879,1511.26 982.596,1494.7 984.313,1486.14 986.03,1486.74 987.747,1495.83 989.464,1510.95 \n",
" 991.182,1527.55 992.899,1535.1 994.616,1526.91 996.333,1517.43 998.05,1512.11 999.767,1510.62 1001.48,1510.23 1003.2,1507.52 1004.92,1501.24 1006.64,1493.29 \n",
" 1008.35,1486.6 1010.07,1483.48 1011.79,1485.27 1013.5,1492.34 1015.22,1504.2 1016.94,1519.5 1018.66,1535.37 1020.37,1539.67 1022.09,1527.5 1023.81,1515.99 \n",
" 1025.52,1509.04 1027.24,1507.53 1028.96,1511.2 1030.67,1518.94 1032.39,1529 1034.11,1539.32 1035.83,1546.82 1037.54,1545.12 1039.26,1541.6 1040.98,1540.34 \n",
" 1042.69,1541.02 1044.41,1542.38 1046.13,1542.45 1047.85,1540.23 1049.56,1536.95 1051.28,1534.07 1053,1532.27 1054.71,1531.2 1056.43,1529.26 1058.15,1524.45 \n",
" 1059.87,1516.23 1061.58,1505.65 1063.3,1494.12 1065.02,1482.99 1066.73,1473.58 1068.45,1467.25 1070.17,1465.33 1071.89,1468.86 1073.6,1478.11 1075.32,1492.12 \n",
" 1077.04,1507.92 1078.75,1518.75 1080.47,1516.52 1082.19,1506.25 1083.9,1497.4 1085.62,1494.22 1087.34,1497.78 1089.06,1507.35 1090.77,1520.88 1092.49,1534.78 \n",
" 1094.21,1539.79 1095.92,1531.85 1097.64,1523.91 1099.36,1519.56 1101.08,1518.9 1102.79,1520.93 1104.51,1524.22 1106.23,1527.44 1107.94,1529.91 1109.66,1531.76 \n",
" 1111.38,1533.3 1113.1,1534.37 1114.81,1534.33 1116.53,1533.07 1118.25,1531.59 1119.96,1531.21 1121.68,1532.93 1123.4,1536.96 1125.12,1542.39 1126.83,1545.32 \n",
" 1128.55,1541.43 1130.27,1536.73 1131.98,1534.62 1133.7,1536.1 1135.42,1540.53 1137.13,1542.76 1138.85,1535.8 1140.57,1525.76 1142.29,1517.01 1144,1511.58 \n",
" 1145.72,1510.44 1147.44,1513.55 1149.15,1519.82 1150.87,1526.95 1152.59,1531.27 1154.31,1530.04 1156.02,1525.54 1157.74,1521.14 1159.46,1518.2 1161.17,1516.72 \n",
" 1162.89,1516.12 1164.61,1515.79 1166.33,1515.46 1168.04,1515.14 1169.76,1514.79 1171.48,1513.88 1173.19,1511.47 1174.91,1506.73 1176.63,1499.8 1178.35,1491.91 \n",
" 1180.06,1484.95 1181.78,1480.86 1183.5,1481.2 1185.21,1486.74 1186.93,1496.82 1188.65,1508.47 1190.36,1514.88 1192.08,1509.83 1193.8,1498.11 1195.52,1487.47 \n",
" 1197.23,1481.95 1198.95,1482.81 1200.67,1489.23 1202.38,1498.73 1204.1,1507.62 1205.82,1512.35 1207.54,1512.46 1209.25,1510.91 1210.97,1510.46 1212.69,1512.08 \n",
" 1214.4,1515.32 1216.12,1518.95 1217.84,1521.18 1219.56,1520.25 1221.27,1515.96 1222.99,1510.1 1224.71,1505.18 1226.42,1503.4 1228.14,1506.07 1229.86,1513.18 \n",
" 1231.58,1522.35 1233.29,1526.75 1235.01,1520.21 1236.73,1508.99 1238.44,1500.18 1240.16,1497.1 1241.88,1500.67 1243.59,1509.91 1245.31,1521.9 1247.03,1531.51 \n",
" 1248.75,1533.13 1250.46,1530.36 1252.18,1529.54 1253.9,1530.15 1255.61,1525.92 1257.33,1513.98 1259.05,1498.52 1260.77,1483.69 1262.48,1471.94 1264.2,1464.26 \n",
" 1265.92,1460.55 1267.63,1460.19 1269.35,1462.61 1271.07,1467.79 1272.79,1476.04 1274.5,1487.52 1276.22,1501.35 1277.94,1514.13 1279.65,1518.23 1281.37,1509.88 \n",
" 1283.09,1497 1284.81,1486.53 1286.52,1481.77 1288.24,1483.94 1289.96,1492.72 1291.67,1506.31 1293.39,1520.65 1295.11,1526.48 1296.82,1517.78 1298.54,1504.62 \n",
" 1300.26,1493.87 1301.98,1487.72 1303.69,1486.11 1305.41,1487.3 1307.13,1488.31 1308.84,1486.56 1310.56,1482.08 1312.28,1477.45 1314,1475.53 1315.71,1477.94 \n",
" 1317.43,1484.56 1319.15,1493.86 1320.86,1503.58 1322.58,1511.96 1324.3,1518.9 1326.02,1525.84 1327.73,1533.99 1329.45,1541.09 1331.17,1536.27 1332.88,1523.23 \n",
" 1334.6,1509.21 1336.32,1496.58 1338.04,1486.8 1339.75,1480.91 1341.47,1479.56 1343.19,1482.95 1344.9,1490.72 1346.62,1502.02 1348.34,1515.5 1350.05,1529.2 \n",
" 1351.77,1538.51 1353.49,1535.03 1355.21,1525.62 1356.92,1517.03 1358.64,1510.54 1360.36,1505.92 1362.07,1502.19 1363.79,1498.17 1365.51,1493.17 1367.23,1487.52 \n",
" 1368.94,1482.4 1370.66,1479.19 1372.38,1479 1374.09,1482.4 1375.81,1489.33 1377.53,1499.14 1379.25,1510.65 1380.96,1522.19 1382.68,1531.4 1384.4,1535.34 \n",
" 1386.11,1534.18 1387.83,1532.23 1389.55,1532.32 1391.27,1535.36 1392.98,1541.3 1394.7,1547.68 1396.42,1540.94 1398.13,1529.66 1399.85,1518.68 1401.57,1509.62 \n",
" 1403.28,1503.67 1405,1501.53 1406.72,1503.21 1408.44,1507.98 1410.15,1514.38 1411.87,1520.5 1413.59,1524.66 1415.3,1526.7 1417.02,1528.39 1418.74,1531.79 \n",
" 1420.46,1537.97 1422.17,1545.51 1423.89,1540.76 1425.61,1527.9 1427.32,1514.72 1429.04,1503.4 1430.76,1495.45 1432.48,1491.79 1434.19,1492.61 1435.91,1497.33 \n",
" 1437.63,1504.76 1439.34,1513.33 1441.06,1521.46 1442.78,1528.1 1444.5,1533.08 1446.21,1536.9 1447.93,1539.54 1449.65,1539.24 1451.36,1534.89 1453.08,1528.21 \n",
" 1454.8,1521.23 1456.51,1515.5 1458.23,1512.41 1459.95,1513.15 1461.67,1518.57 1463.38,1528.52 1465.1,1538.22 1466.82,1529.02 1468.53,1507.99 1470.25,1485.62 \n",
" 1471.97,1465.91 1473.69,1451.86 1475.4,1445.73 1477.12,1448.67 1478.84,1460.47 1480.55,1479.45 1482.27,1502.47 1483.99,1524.4 1485.71,1533.62 1487.42,1525.59 \n",
" 1489.14,1518.44 1490.86,1517.88 1492.57,1523.04 1494.29,1529.12 1496.01,1528.18 1497.73,1520.46 1499.44,1513.17 1501.16,1510.23 1502.88,1512.45 1504.59,1518.5 \n",
" 1506.31,1525.28 1508.03,1529.09 1509.74,1529.23 1511.46,1529.16 1513.18,1531.7 1514.9,1536.86 1516.61,1540.64 1518.33,1536.64 1520.05,1529.18 1521.76,1523.57 \n",
" 1523.48,1522.02 1525.2,1525.4 1526.92,1533.51 1528.63,1544.51 1530.35,1540.6 1532.07,1525.49 1533.78,1511.04 1535.5,1499.7 1537.22,1493.2 1538.94,1492.58 \n",
" 1540.65,1497.97 1542.37,1508.26 1544.09,1520.15 1545.8,1525.61 1547.52,1518.14 1549.24,1505.56 1550.96,1495.17 1552.67,1489.9 1554.39,1490.33 1556.11,1495.28 \n",
" 1557.82,1502 1559.54,1506.88 1561.26,1507.31 1562.97,1503.83 1564.69,1498.66 1566.41,1493.3 1568.13,1488.35 1569.84,1484.45 1571.56,1482.57 1573.28,1483.66 \n",
" 1574.99,1488.05 1576.71,1495.07 1578.43,1503.28 1580.15,1511.21 1581.86,1518.31 1583.58,1525.15 1585.3,1532.31 1587.01,1538.22 1588.73,1538.07 1590.45,1532.95 \n",
" 1592.17,1528.87 1593.88,1528.59 1595.6,1532.06 1597.32,1535.07 1599.03,1529.62 1600.75,1517.62 1602.47,1505.23 1604.19,1496 1605.9,1491.84 1607.62,1493.44 \n",
" 1609.34,1500.37 1611.05,1511.31 1612.77,1524.38 1614.49,1537.5 1616.2,1548.13 1617.92,1545.18 1619.64,1540.34 1621.36,1538.7 1623.07,1539.69 1624.79,1541.9 \n",
" 1626.51,1542.91 1628.22,1540.62 1629.94,1536.09 1631.66,1530.8 1633.38,1525.33 1635.09,1519.88 1636.81,1514.52 1638.53,1509.37 1640.24,1504.56 1641.96,1500.25 \n",
" 1643.68,1496.58 1645.4,1493.65 1647.11,1491.49 1648.83,1490.09 1650.55,1489.42 1652.26,1489.39 1653.98,1489.96 1655.7,1491.17 1657.42,1493.06 1659.13,1495.58 \n",
" 1660.85,1498.45 1662.57,1501.17 1664.28,1503.33 1666,1505.04 1667.72,1507.1 1669.43,1510.54 1671.15,1515.94 1672.87,1522.87 1674.59,1529.11 1676.3,1530.67 \n",
" 1678.02,1526.42 1679.74,1520.28 1681.45,1515.33 1683.17,1512.55 1684.89,1511.68 1686.61,1512.03 1688.32,1513.27 1690.04,1515.89 1691.76,1520.82 1693.47,1528.45 \n",
" 1695.19,1537.03 1696.91,1537.24 1698.63,1525.8 1700.34,1512.29 1702.06,1500.7 1703.78,1492.71 1705.49,1488.96 1707.21,1489.2 1708.93,1492.54 1710.65,1497.69 \n",
" 1712.36,1503.32 1714.08,1508.29 1715.8,1511.83 1717.51,1513.55 1719.23,1513.29 1720.95,1510.99 1722.66,1506.7 1724.38,1500.65 1726.1,1493.33 1727.82,1485.61 \n",
" 1729.53,1478.7 1731.25,1474.06 1732.97,1473.19 1734.68,1477.26 1736.4,1486.81 1738.12,1501.36 1739.84,1518.89 1741.55,1533.03 1743.27,1528.71 1744.99,1514.79 \n",
" 1746.7,1503.81 1748.42,1498.99 1750.14,1500.86 1751.86,1508.26 1753.57,1518.44 1755.29,1526.57 1757.01,1527.16 1758.72,1521.99 1760.44,1517.09 1762.16,1515.33 \n",
" 1763.88,1517.09 1765.59,1521.43 1767.31,1526.55 1769.03,1530.33 1770.74,1531.49 1772.46,1530.81 1774.18,1530.08 1775.89,1530.34 1777.61,1531.61 1779.33,1533.01 \n",
" 1781.05,1532.94 1782.76,1530.01 1784.48,1524.38 1786.2,1517.24 1787.91,1509.78 1789.63,1503 1791.35,1497.68 1793.07,1494.39 1794.78,1493.46 1796.5,1494.95 \n",
" 1798.22,1498.71 1799.93,1504.3 1801.65,1510.99 1803.37,1517.74 1805.09,1523.14 1806.8,1525.9 1808.52,1525.92 1810.24,1524.46 1811.95,1522.78 1813.67,1521.26 \n",
" 1815.39,1519.6 1817.11,1517.6 1818.82,1515.85 1820.54,1515.57 1822.26,1518.03 1823.97,1523.86 1825.69,1532.58 1827.41,1541 1829.12,1539.03 1830.84,1530.04 \n",
" 1832.56,1522.71 1834.28,1519.29 1835.99,1519.67 1837.71,1521.59 1839.43,1521.23 1841.14,1516.72 1842.86,1510.61 1844.58,1506.52 1846.3,1506.67 1848.01,1511.49 \n",
" 1849.73,1519.6 1851.45,1527.58 1853.16,1530.43 1854.88,1527.37 1856.6,1523.48 1858.32,1521.91 1860.03,1522.64 1861.75,1523.74 1863.47,1523 1865.18,1520.18 \n",
" 1866.9,1516.88 1868.62,1514.39 1870.34,1512.71 1872.05,1510.95 1873.77,1508.44 1875.49,1505.53 1877.2,1503.41 1878.92,1503.26 1880.64,1505.61 1882.35,1510.19 \n",
" 1884.07,1516.01 1885.79,1521.59 1887.51,1525.51 1889.22,1527.1 1890.94,1526.89 1892.66,1525.76 1894.37,1524.27 1896.09,1522.7 1897.81,1521.29 1899.53,1520.11 \n",
" 1901.24,1518.58 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"\n",
"M1657.06 1306.09 L1892.09 1306.09 L1892.09 1202.41 L1657.06 1202.41 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1657.06,1306.09 1892.09,1306.09 1892.09,1202.41 1657.06,1202.41 1657.06,1306.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1677.29,1254.25 1798.63,1254.25 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"M1832.7 1273.94 Q1830.89 1278.57 1829.18 1279.98 Q1827.46 1281.39 1824.59 1281.39 L1821.19 1281.39 L1821.19 1277.83 L1823.69 1277.83 Q1825.45 1277.83 1826.42 1277 Q1827.39 1276.16 1828.57 1273.06 L1829.34 1271.12 L1818.85 1245.61 L1823.37 1245.61 L1831.47 1265.88 L1839.57 1245.61 L1844.08 1245.61 L1832.7 1273.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1864.73 1252.9 Q1868.09 1253.62 1869.96 1255.88 Q1871.86 1258.15 1871.86 1261.49 Q1871.86 1266.6 1868.34 1269.4 Q1864.82 1272.2 1858.34 1272.2 Q1856.17 1272.2 1853.85 1271.76 Q1851.56 1271.35 1849.11 1270.49 L1849.11 1265.98 Q1851.05 1267.11 1853.37 1267.69 Q1855.68 1268.27 1858.2 1268.27 Q1862.6 1268.27 1864.89 1266.53 Q1867.21 1264.8 1867.21 1261.49 Q1867.21 1258.43 1865.06 1256.72 Q1862.93 1254.98 1859.11 1254.98 L1855.08 1254.98 L1855.08 1251.14 L1859.29 1251.14 Q1862.74 1251.14 1864.57 1249.77 Q1866.4 1248.38 1866.4 1245.79 Q1866.4 1243.13 1864.5 1241.72 Q1862.63 1240.28 1859.11 1240.28 Q1857.19 1240.28 1854.99 1240.7 Q1852.79 1241.12 1850.15 1242 L1850.15 1237.83 Q1852.81 1237.09 1855.13 1236.72 Q1857.46 1236.35 1859.52 1236.35 Q1864.85 1236.35 1867.95 1238.78 Q1871.05 1241.19 1871.05 1245.31 Q1871.05 1248.18 1869.41 1250.17 Q1867.76 1252.13 1864.73 1252.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"\n",
"M132.633 2130.88 L1952.76 2130.88 L1952.76 1761.53 L132.633 1761.53 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip965\">\n",
" <rect x=\"132\" y=\"1761\" width=\"1821\" height=\"370\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip965)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 184.146,2130.88 184.146,1761.53 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip965)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 613.42,2130.88 613.42,1761.53 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip965)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1042.69,2130.88 1042.69,1761.53 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip965)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1471.97,2130.88 1471.97,1761.53 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip965)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1901.24,2130.88 1901.24,1761.53 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,2130.88 1952.76,2130.88 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,2130.88 184.146,2111.98 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 613.42,2130.88 613.42,2111.98 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1042.69,2130.88 1042.69,2111.98 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1471.97,2130.88 1471.97,2111.98 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1901.24,2130.88 1901.24,2111.98 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"M184.146 2174.6 Q180.535 2174.6 178.706 2178.17 Q176.901 2181.71 176.901 2188.84 Q176.901 2195.94 178.706 2199.51 Q180.535 2203.05 184.146 2203.05 Q187.78 2203.05 189.586 2199.51 Q191.414 2195.94 191.414 2188.84 Q191.414 2181.71 189.586 2178.17 Q187.78 2174.6 184.146 2174.6 M184.146 2170.9 Q189.956 2170.9 193.012 2175.5 Q196.09 2180.09 196.09 2188.84 Q196.09 2197.56 193.012 2202.17 Q189.956 2206.75 184.146 2206.75 Q178.336 2206.75 175.257 2202.17 Q172.202 2197.56 172.202 2188.84 Q172.202 2180.09 175.257 2175.5 Q178.336 2170.9 184.146 2170.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M592.691 2202.15 L609.011 2202.15 L609.011 2206.08 L587.066 2206.08 L587.066 2202.15 Q589.728 2199.39 594.312 2194.76 Q598.918 2190.11 600.099 2188.77 Q602.344 2186.24 603.224 2184.51 Q604.126 2182.75 604.126 2181.06 Q604.126 2178.3 602.182 2176.57 Q600.261 2174.83 597.159 2174.83 Q594.96 2174.83 592.506 2175.6 Q590.075 2176.36 587.298 2177.91 L587.298 2173.19 Q590.122 2172.05 592.575 2171.48 Q595.029 2170.9 597.066 2170.9 Q602.436 2170.9 605.631 2173.58 Q608.825 2176.27 608.825 2180.76 Q608.825 2182.89 608.015 2184.81 Q607.228 2186.71 605.122 2189.3 Q604.543 2189.97 601.441 2193.19 Q598.339 2196.38 592.691 2202.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M618.872 2171.52 L637.228 2171.52 L637.228 2175.46 L623.154 2175.46 L623.154 2183.93 Q624.172 2183.58 625.191 2183.42 Q626.21 2183.24 627.228 2183.24 Q633.015 2183.24 636.395 2186.41 Q639.774 2189.58 639.774 2194.99 Q639.774 2200.57 636.302 2203.67 Q632.83 2206.75 626.51 2206.75 Q624.335 2206.75 622.066 2206.38 Q619.821 2206.01 617.413 2205.27 L617.413 2200.57 Q619.497 2201.71 621.719 2202.26 Q623.941 2202.82 626.418 2202.82 Q630.422 2202.82 632.76 2200.71 Q635.098 2198.61 635.098 2194.99 Q635.098 2191.38 632.76 2189.28 Q630.422 2187.17 626.418 2187.17 Q624.543 2187.17 622.668 2187.59 Q620.816 2188 618.872 2188.88 L618.872 2171.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1017.39 2171.52 L1035.75 2171.52 L1035.75 2175.46 L1021.68 2175.46 L1021.68 2183.93 Q1022.69 2183.58 1023.71 2183.42 Q1024.73 2183.24 1025.75 2183.24 Q1031.54 2183.24 1034.92 2186.41 Q1038.3 2189.58 1038.3 2194.99 Q1038.3 2200.57 1034.82 2203.67 Q1031.35 2206.75 1025.03 2206.75 Q1022.86 2206.75 1020.59 2206.38 Q1018.34 2206.01 1015.94 2205.27 L1015.94 2200.57 Q1018.02 2201.71 1020.24 2202.26 Q1022.46 2202.82 1024.94 2202.82 Q1028.94 2202.82 1031.28 2200.71 Q1033.62 2198.61 1033.62 2194.99 Q1033.62 2191.38 1031.28 2189.28 Q1028.94 2187.17 1024.94 2187.17 Q1023.06 2187.17 1021.19 2187.59 Q1019.34 2188 1017.39 2188.88 L1017.39 2171.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1057.51 2174.6 Q1053.9 2174.6 1052.07 2178.17 Q1050.26 2181.71 1050.26 2188.84 Q1050.26 2195.94 1052.07 2199.51 Q1053.9 2203.05 1057.51 2203.05 Q1061.14 2203.05 1062.95 2199.51 Q1064.78 2195.94 1064.78 2188.84 Q1064.78 2181.71 1062.95 2178.17 Q1061.14 2174.6 1057.51 2174.6 M1057.51 2170.9 Q1063.32 2170.9 1066.37 2175.5 Q1069.45 2180.09 1069.45 2188.84 Q1069.45 2197.56 1066.37 2202.17 Q1063.32 2206.75 1057.51 2206.75 Q1051.7 2206.75 1048.62 2202.17 Q1045.56 2197.56 1045.56 2188.84 Q1045.56 2180.09 1048.62 2175.5 Q1051.7 2170.9 1057.51 2170.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1445.82 2171.52 L1468.05 2171.52 L1468.05 2173.51 L1455.5 2206.08 L1450.61 2206.08 L1462.42 2175.46 L1445.82 2175.46 L1445.82 2171.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1477.21 2171.52 L1495.57 2171.52 L1495.57 2175.46 L1481.49 2175.46 L1481.49 2183.93 Q1482.51 2183.58 1483.53 2183.42 Q1484.55 2183.24 1485.57 2183.24 Q1491.36 2183.24 1494.73 2186.41 Q1498.11 2189.58 1498.11 2194.99 Q1498.11 2200.57 1494.64 2203.67 Q1491.17 2206.75 1484.85 2206.75 Q1482.67 2206.75 1480.41 2206.38 Q1478.16 2206.01 1475.75 2205.27 L1475.75 2200.57 Q1477.84 2201.71 1480.06 2202.26 Q1482.28 2202.82 1484.76 2202.82 Q1488.76 2202.82 1491.1 2200.71 Q1493.44 2198.61 1493.44 2194.99 Q1493.44 2191.38 1491.1 2189.28 Q1488.76 2187.17 1484.76 2187.17 Q1482.88 2187.17 1481.01 2187.59 Q1479.16 2188 1477.21 2188.88 L1477.21 2171.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1860.85 2202.15 L1868.49 2202.15 L1868.49 2175.78 L1860.18 2177.45 L1860.18 2173.19 L1868.44 2171.52 L1873.12 2171.52 L1873.12 2202.15 L1880.76 2202.15 L1880.76 2206.08 L1860.85 2206.08 L1860.85 2202.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1900.2 2174.6 Q1896.59 2174.6 1894.76 2178.17 Q1892.96 2181.71 1892.96 2188.84 Q1892.96 2195.94 1894.76 2199.51 Q1896.59 2203.05 1900.2 2203.05 Q1903.84 2203.05 1905.64 2199.51 Q1907.47 2195.94 1907.47 2188.84 Q1907.47 2181.71 1905.64 2178.17 Q1903.84 2174.6 1900.2 2174.6 M1900.2 2170.9 Q1906.01 2170.9 1909.07 2175.5 Q1912.15 2180.09 1912.15 2188.84 Q1912.15 2197.56 1909.07 2202.17 Q1906.01 2206.75 1900.2 2206.75 Q1894.39 2206.75 1891.31 2202.17 Q1888.26 2197.56 1888.26 2188.84 Q1888.26 2180.09 1891.31 2175.5 Q1894.39 2170.9 1900.2 2170.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1930.36 2174.6 Q1926.75 2174.6 1924.92 2178.17 Q1923.12 2181.71 1923.12 2188.84 Q1923.12 2195.94 1924.92 2199.51 Q1926.75 2203.05 1930.36 2203.05 Q1934 2203.05 1935.8 2199.51 Q1937.63 2195.94 1937.63 2188.84 Q1937.63 2181.71 1935.8 2178.17 Q1934 2174.6 1930.36 2174.6 M1930.36 2170.9 Q1936.17 2170.9 1939.23 2175.5 Q1942.31 2180.09 1942.31 2188.84 Q1942.31 2197.56 1939.23 2202.17 Q1936.17 2206.75 1930.36 2206.75 Q1924.55 2206.75 1921.47 2202.17 Q1918.42 2197.56 1918.42 2188.84 Q1918.42 2180.09 1921.47 2175.5 Q1924.55 2170.9 1930.36 2170.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip965)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,2121.36 1952.76,2121.36 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip965)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,2034.02 1952.76,2034.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip965)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,1946.67 1952.76,1946.67 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip965)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,1859.33 1952.76,1859.33 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip965)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,1771.98 1952.76,1771.98 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,2130.88 132.633,1761.53 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,2121.36 151.531,2121.36 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,2034.02 151.531,2034.02 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,1946.67 151.531,1946.67 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,1859.33 151.531,1859.33 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,1771.98 151.531,1771.98 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"M-14.7044 2107.16 Q-18.3155 2107.16 -20.1442 2110.73 Q-21.9498 2114.27 -21.9498 2121.4 Q-21.9498 2128.51 -20.1442 2132.07 Q-18.3155 2135.61 -14.7044 2135.61 Q-11.0702 2135.61 -9.26465 2132.07 Q-7.43595 2128.51 -7.43595 2121.4 Q-7.43595 2114.27 -9.26465 2110.73 Q-11.0702 2107.16 -14.7044 2107.16 M-14.7044 2103.46 Q-8.89428 2103.46 -5.83874 2108.07 Q-2.76005 2112.65 -2.76005 2121.4 Q-2.76005 2130.13 -5.83874 2134.73 Q-8.89428 2139.32 -14.7044 2139.32 Q-20.5146 2139.32 -23.5933 2134.73 Q-26.6488 2130.13 -26.6488 2121.4 Q-26.6488 2112.65 -23.5933 2108.07 Q-20.5146 2103.46 -14.7044 2103.46 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M5.4575 2132.77 L10.3417 2132.77 L10.3417 2138.64 L5.4575 2138.64 L5.4575 2132.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M30.5268 2107.16 Q26.9157 2107.16 25.087 2110.73 Q23.2815 2114.27 23.2815 2121.4 Q23.2815 2128.51 25.087 2132.07 Q26.9157 2135.61 30.5268 2135.61 Q34.161 2135.61 35.9666 2132.07 Q37.7953 2128.51 37.7953 2121.4 Q37.7953 2114.27 35.9666 2110.73 Q34.161 2107.16 30.5268 2107.16 M30.5268 2103.46 Q36.337 2103.46 39.3925 2108.07 Q42.4712 2112.65 42.4712 2121.4 Q42.4712 2130.13 39.3925 2134.73 Q36.337 2139.32 30.5268 2139.32 Q24.7167 2139.32 21.638 2134.73 Q18.5824 2130.13 18.5824 2121.4 Q18.5824 2112.65 21.638 2108.07 Q24.7167 2103.46 30.5268 2103.46 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M60.6887 2107.16 Q57.0776 2107.16 55.2489 2110.73 Q53.4434 2114.27 53.4434 2121.4 Q53.4434 2128.51 55.2489 2132.07 Q57.0776 2135.61 60.6887 2135.61 Q64.3229 2135.61 66.1285 2132.07 Q67.9572 2128.51 67.9572 2121.4 Q67.9572 2114.27 66.1285 2110.73 Q64.3229 2107.16 60.6887 2107.16 M60.6887 2103.46 Q66.4988 2103.46 69.5544 2108.07 Q72.6331 2112.65 72.6331 2121.4 Q72.6331 2130.13 69.5544 2134.73 Q66.4988 2139.32 60.6887 2139.32 Q54.8785 2139.32 51.7998 2134.73 Q48.7443 2130.13 48.7443 2121.4 Q48.7443 2112.65 51.7998 2108.07 Q54.8785 2103.46 60.6887 2103.46 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-13.7091 2019.82 Q-17.3202 2019.82 -19.1489 2023.38 Q-20.9544 2026.92 -20.9544 2034.05 Q-20.9544 2041.16 -19.1489 2044.73 Q-17.3202 2048.27 -13.7091 2048.27 Q-10.0748 2048.27 -8.26928 2044.73 Q-6.44059 2041.16 -6.44059 2034.05 Q-6.44059 2026.92 -8.26928 2023.38 Q-10.0748 2019.82 -13.7091 2019.82 M-13.7091 2016.11 Q-7.89891 2016.11 -4.84337 2020.72 Q-1.76469 2025.3 -1.76469 2034.05 Q-1.76469 2042.78 -4.84337 2047.39 Q-7.89891 2051.97 -13.7091 2051.97 Q-19.5192 2051.97 -22.5979 2047.39 Q-25.6534 2042.78 -25.6534 2034.05 Q-25.6534 2025.3 -22.5979 2020.72 Q-19.5192 2016.11 -13.7091 2016.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M6.45286 2045.42 L11.3371 2045.42 L11.3371 2051.3 L6.45286 2051.3 L6.45286 2045.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M25.55 2047.36 L41.8693 2047.36 L41.8693 2051.3 L19.925 2051.3 L19.925 2047.36 Q22.587 2044.61 27.1703 2039.98 Q31.7768 2035.33 32.9574 2033.98 Q35.2027 2031.46 36.0823 2029.73 Q36.9851 2027.97 36.9851 2026.28 Q36.9851 2023.52 35.0407 2021.79 Q33.1194 2020.05 30.0176 2020.05 Q27.8185 2020.05 25.3648 2020.81 Q22.9343 2021.58 20.1565 2023.13 L20.1565 2018.41 Q22.9806 2017.27 25.4342 2016.69 Q27.8879 2016.11 29.925 2016.11 Q35.2953 2016.11 38.4897 2018.8 Q41.6842 2021.48 41.6842 2025.98 Q41.6842 2028.11 40.874 2030.03 Q40.0869 2031.92 37.9805 2034.52 Q37.4018 2035.19 34.2999 2038.41 Q31.1981 2041.6 25.55 2047.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M51.7304 2016.74 L70.0868 2016.74 L70.0868 2020.67 L56.0128 2020.67 L56.0128 2029.15 Q57.0313 2028.8 58.0498 2028.64 Q59.0683 2028.45 60.0868 2028.45 Q65.8738 2028.45 69.2535 2031.62 Q72.6331 2034.79 72.6331 2040.21 Q72.6331 2045.79 69.1609 2048.89 Q65.6887 2051.97 59.3692 2051.97 Q57.1933 2051.97 54.9248 2051.6 Q52.6795 2051.23 50.2721 2050.49 L50.2721 2045.79 Q52.3554 2046.92 54.5776 2047.48 Q56.7998 2048.04 59.2767 2048.04 Q63.2813 2048.04 65.6192 2045.93 Q67.9572 2043.82 67.9572 2040.21 Q67.9572 2036.6 65.6192 2034.49 Q63.2813 2032.39 59.2767 2032.39 Q57.4017 2032.39 55.5267 2032.8 Q53.6748 2033.22 51.7304 2034.1 L51.7304 2016.74 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-14.7044 1932.47 Q-18.3155 1932.47 -20.1442 1936.04 Q-21.9498 1939.58 -21.9498 1946.71 Q-21.9498 1953.82 -20.1442 1957.38 Q-18.3155 1960.92 -14.7044 1960.92 Q-11.0702 1960.92 -9.26465 1957.38 Q-7.43595 1953.82 -7.43595 1946.71 Q-7.43595 1939.58 -9.26465 1936.04 Q-11.0702 1932.47 -14.7044 1932.47 M-14.7044 1928.77 Q-8.89428 1928.77 -5.83874 1933.38 Q-2.76005 1937.96 -2.76005 1946.71 Q-2.76005 1955.44 -5.83874 1960.04 Q-8.89428 1964.63 -14.7044 1964.63 Q-20.5146 1964.63 -23.5933 1960.04 Q-26.6488 1955.44 -26.6488 1946.71 Q-26.6488 1937.96 -23.5933 1933.38 Q-20.5146 1928.77 -14.7044 1928.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M5.4575 1958.07 L10.3417 1958.07 L10.3417 1963.95 L5.4575 1963.95 L5.4575 1958.07 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M20.5732 1929.39 L38.9295 1929.39 L38.9295 1933.33 L24.8555 1933.33 L24.8555 1941.8 Q25.8741 1941.45 26.8926 1941.29 Q27.9111 1941.11 28.9296 1941.11 Q34.7166 1941.11 38.0962 1944.28 Q41.4758 1947.45 41.4758 1952.87 Q41.4758 1958.44 38.0036 1961.55 Q34.5314 1964.63 28.212 1964.63 Q26.0361 1964.63 23.7676 1964.25 Q21.5222 1963.88 19.1148 1963.14 L19.1148 1958.44 Q21.1982 1959.58 23.4204 1960.13 Q25.6426 1960.69 28.1194 1960.69 Q32.124 1960.69 34.462 1958.58 Q36.7999 1956.48 36.7999 1952.87 Q36.7999 1949.26 34.462 1947.15 Q32.124 1945.04 28.1194 1945.04 Q26.2444 1945.04 24.3694 1945.46 Q22.5176 1945.88 20.5732 1946.76 L20.5732 1929.39 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M60.6887 1932.47 Q57.0776 1932.47 55.2489 1936.04 Q53.4434 1939.58 53.4434 1946.71 Q53.4434 1953.82 55.2489 1957.38 Q57.0776 1960.92 60.6887 1960.92 Q64.3229 1960.92 66.1285 1957.38 Q67.9572 1953.82 67.9572 1946.71 Q67.9572 1939.58 66.1285 1936.04 Q64.3229 1932.47 60.6887 1932.47 M60.6887 1928.77 Q66.4988 1928.77 69.5544 1933.38 Q72.6331 1937.96 72.6331 1946.71 Q72.6331 1955.44 69.5544 1960.04 Q66.4988 1964.63 60.6887 1964.63 Q54.8785 1964.63 51.7998 1960.04 Q48.7443 1955.44 48.7443 1946.71 Q48.7443 1937.96 51.7998 1933.38 Q54.8785 1928.77 60.6887 1928.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-13.7091 1845.13 Q-17.3202 1845.13 -19.1489 1848.69 Q-20.9544 1852.23 -20.9544 1859.36 Q-20.9544 1866.47 -19.1489 1870.03 Q-17.3202 1873.58 -13.7091 1873.58 Q-10.0748 1873.58 -8.26928 1870.03 Q-6.44059 1866.47 -6.44059 1859.36 Q-6.44059 1852.23 -8.26928 1848.69 Q-10.0748 1845.13 -13.7091 1845.13 M-13.7091 1841.42 Q-7.89891 1841.42 -4.84337 1846.03 Q-1.76469 1850.61 -1.76469 1859.36 Q-1.76469 1868.09 -4.84337 1872.7 Q-7.89891 1877.28 -13.7091 1877.28 Q-19.5192 1877.28 -22.5979 1872.7 Q-25.6534 1868.09 -25.6534 1859.36 Q-25.6534 1850.61 -22.5979 1846.03 Q-19.5192 1841.42 -13.7091 1841.42 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M6.45286 1870.73 L11.3371 1870.73 L11.3371 1876.61 L6.45286 1876.61 L6.45286 1870.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M20.3417 1842.05 L42.5638 1842.05 L42.5638 1844.04 L30.0176 1876.61 L25.1333 1876.61 L36.9388 1845.98 L20.3417 1845.98 L20.3417 1842.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M51.7304 1842.05 L70.0868 1842.05 L70.0868 1845.98 L56.0128 1845.98 L56.0128 1854.46 Q57.0313 1854.11 58.0498 1853.95 Q59.0683 1853.76 60.0868 1853.76 Q65.8738 1853.76 69.2535 1856.93 Q72.6331 1860.1 72.6331 1865.52 Q72.6331 1871.1 69.1609 1874.2 Q65.6887 1877.28 59.3692 1877.28 Q57.1933 1877.28 54.9248 1876.91 Q52.6795 1876.54 50.2721 1875.8 L50.2721 1871.1 Q52.3554 1872.23 54.5776 1872.79 Q56.7998 1873.34 59.2767 1873.34 Q63.2813 1873.34 65.6192 1871.24 Q67.9572 1869.13 67.9572 1865.52 Q67.9572 1861.91 65.6192 1859.8 Q63.2813 1857.7 59.2767 1857.7 Q57.4017 1857.7 55.5267 1858.11 Q53.6748 1858.53 51.7304 1859.41 L51.7304 1842.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-23.8942 1785.33 L-16.2553 1785.33 L-16.2553 1758.96 L-24.5655 1760.63 L-24.5655 1756.37 L-16.3016 1754.7 L-11.6257 1754.7 L-11.6257 1785.33 L-3.9869 1785.33 L-3.9869 1789.26 L-23.8942 1789.26 L-23.8942 1785.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M5.4575 1783.38 L10.3417 1783.38 L10.3417 1789.26 L5.4575 1789.26 L5.4575 1783.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M30.5268 1757.78 Q26.9157 1757.78 25.087 1761.35 Q23.2815 1764.89 23.2815 1772.02 Q23.2815 1779.12 25.087 1782.69 Q26.9157 1786.23 30.5268 1786.23 Q34.161 1786.23 35.9666 1782.69 Q37.7953 1779.12 37.7953 1772.02 Q37.7953 1764.89 35.9666 1761.35 Q34.161 1757.78 30.5268 1757.78 M30.5268 1754.08 Q36.337 1754.08 39.3925 1758.68 Q42.4712 1763.27 42.4712 1772.02 Q42.4712 1780.74 39.3925 1785.35 Q36.337 1789.93 30.5268 1789.93 Q24.7167 1789.93 21.638 1785.35 Q18.5824 1780.74 18.5824 1772.02 Q18.5824 1763.27 21.638 1758.68 Q24.7167 1754.08 30.5268 1754.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M60.6887 1757.78 Q57.0776 1757.78 55.2489 1761.35 Q53.4434 1764.89 53.4434 1772.02 Q53.4434 1779.12 55.2489 1782.69 Q57.0776 1786.23 60.6887 1786.23 Q64.3229 1786.23 66.1285 1782.69 Q67.9572 1779.12 67.9572 1772.02 Q67.9572 1764.89 66.1285 1761.35 Q64.3229 1757.78 60.6887 1757.78 M60.6887 1754.08 Q66.4988 1754.08 69.5544 1758.68 Q72.6331 1763.27 72.6331 1772.02 Q72.6331 1780.74 69.5544 1785.35 Q66.4988 1789.93 60.6887 1789.93 Q54.8785 1789.93 51.7998 1785.35 Q48.7443 1780.74 48.7443 1772.02 Q48.7443 1763.27 51.7998 1758.68 Q54.8785 1754.08 60.6887 1754.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip965)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,1771.98 185.863,1781.13 187.58,1807.43 189.297,1847.51 191.014,1896.34 192.731,1948.25 194.449,1997.84 196.166,2040.77 197.883,2073.62 199.6,2092.15 \n",
" 201.317,2093.33 203.034,2087.22 204.751,2082.56 206.468,2081.5 208.185,2084.24 209.902,2090.23 211.62,2098.27 213.337,2106.04 215.054,2108.51 216.771,2103.44 \n",
" 218.488,2096.23 220.205,2089.7 221.922,2084.65 223.639,2081.28 225.356,2079.68 227.073,2079.84 228.79,2081.69 230.508,2084.92 232.225,2089.05 233.942,2093.51 \n",
" 235.659,2098.01 237.376,2102.82 239.093,2108.62 240.81,2115.6 242.527,2114.8 244.244,2104.66 245.961,2094.27 247.679,2085.99 249.396,2081.62 251.113,2082.2 \n",
" 252.83,2087.34 254.547,2094.27 256.264,2096.65 257.981,2090.65 259.698,2081.91 261.415,2076.08 263.132,2075.74 264.85,2081.25 266.567,2091.1 268.284,2101.38 \n",
" 270.001,2104.3 271.718,2098.51 273.435,2092.9 275.152,2091.61 276.869,2095.27 278.586,2102.16 280.303,2106.05 282.021,2099.23 283.738,2087.58 285.455,2076.8 \n",
" 287.172,2069.17 288.889,2065.57 290.606,2065.94 292.323,2069.48 294.04,2074.98 295.757,2081.16 297.474,2087.03 299.191,2092.06 300.909,2096.09 302.626,2099.09 \n",
" 304.343,2101 306.06,2101.82 307.777,2101.76 309.494,2101.4 311.211,2101.62 312.928,2103.33 314.645,2107.01 316.362,2111.88 318.08,2113.26 319.797,2107.9 \n",
" 321.514,2101.8 323.231,2098.34 324.948,2098.99 326.665,2104.08 328.382,2112.68 330.099,2117.18 331.816,2107.21 333.533,2098.49 335.251,2093.3 336.968,2092.11 \n",
" 338.685,2093.95 340.402,2096.1 342.119,2095.16 343.836,2090.37 345.553,2084.16 347.27,2078.87 348.987,2075.61 350.704,2074.6 352.421,2075.61 354.139,2078.34 \n",
" 355.856,2082.56 357.573,2088.1 359.29,2094.76 361.007,2102.15 362.724,2109.74 364.441,2116.93 366.158,2119.5 367.875,2114.44 369.592,2110.65 371.31,2108.06 \n",
" 373.027,2106.44 374.744,2105.43 376.461,2104.41 378.178,2102.68 379.895,2099.94 381.612,2096.58 383.329,2093.5 385.046,2091.46 386.763,2090.84 388.481,2091.46 \n",
" 390.198,2092.7 391.915,2093.9 393.632,2094.72 395.349,2095.22 397.066,2095.33 398.783,2094.38 400.5,2091.45 402.217,2086.47 403.934,2080.52 405.651,2075.21 \n",
" 407.369,2071.98 409.086,2071.82 410.803,2075.09 412.52,2081.5 414.237,2090.08 415.954,2099.22 417.671,2106.49 419.388,2109.18 421.105,2108.5 422.822,2108.49 \n",
" 424.54,2110.9 426.257,2115.32 427.974,2117.01 429.691,2111.37 431.408,2105.05 433.125,2099.74 434.842,2095.74 436.559,2092.95 438.276,2091.36 439.993,2091.3 \n",
" 441.711,2093.34 443.428,2097.77 445.145,2103.78 446.862,2107.55 448.579,2103.62 450.296,2095.62 452.013,2088.75 453.73,2085.56 455.447,2087.15 457.164,2093.53 \n",
" 458.881,2103.61 460.599,2114.72 462.316,2112.19 464.033,2102.47 465.75,2095.85 467.467,2093.6 469.184,2095.64 470.901,2100.73 472.618,2106.3 474.335,2108.34 \n",
" 476.052,2105.99 477.77,2103.21 479.487,2101.91 481.204,2100.95 482.921,2097.57 484.638,2090.91 486.355,2083.09 488.072,2076.88 489.789,2074.32 491.506,2076.32 \n",
" 493.223,2082.43 494.941,2090.43 496.658,2095.7 498.375,2093.8 500.092,2087.3 501.809,2081.32 503.526,2078.39 505.243,2079.05 506.96,2082.68 508.677,2088.14 \n",
" 510.394,2094.36 512.112,2100.69 513.829,2106.83 515.546,2111.55 517.263,2110.87 518.98,2105.07 520.697,2098.45 522.414,2093.13 524.131,2090.2 525.848,2090.23 \n",
" 527.565,2093.34 529.282,2099.27 531,2107.38 532.717,2116.63 534.434,2115.78 536.151,2107.24 537.868,2100.74 539.585,2097.34 541.302,2097.39 543.019,2100 \n",
" 544.736,2101.75 546.453,2097.43 548.171,2087.4 549.888,2075.86 551.605,2066 553.322,2059.87 555.039,2058.6 556.756,2062.36 558.473,2070.4 560.19,2081.13 \n",
" 561.907,2092.11 563.624,2099.89 565.342,2101.29 567.059,2098.27 568.776,2095.05 570.493,2093.45 572.21,2093.68 573.927,2095.34 575.644,2097.9 577.361,2100.82 \n",
" 579.078,2103.75 580.795,2106.71 582.512,2110.01 584.23,2113.42 585.947,2113.3 587.664,2107.09 589.381,2098.55 591.098,2090.14 592.815,2083.45 594.532,2079.59 \n",
" 596.249,2079.05 597.966,2081.61 599.683,2086.46 601.401,2092.38 603.118,2098.08 604.835,2102.44 606.552,2104.81 608.269,2105.13 609.986,2103.87 611.703,2101.71 \n",
" 613.42,2099.23 615.137,2096.72 616.854,2094.07 618.572,2090.87 620.289,2086.71 622.006,2081.63 623.723,2076.26 625.44,2071.57 627.157,2068.65 628.874,2068.34 \n",
" 630.591,2071.09 632.308,2076.72 634.025,2084.32 635.742,2091.95 637.46,2096.44 639.177,2095.35 640.894,2090.58 642.611,2085.66 644.328,2082.64 646.045,2082.26 \n",
" 647.762,2084.46 649.479,2088.54 651.196,2093.34 652.913,2097.4 654.631,2099.48 656.348,2099.56 658.065,2098.89 659.782,2098.76 661.499,2099.81 663.216,2101.94 \n",
" 664.933,2104.63 666.65,2107.25 668.367,2109.66 670.084,2112.39 671.802,2116.13 673.519,2120.4 675.236,2115.52 676.953,2109.9 678.67,2105.68 680.387,2103.92 \n",
" 682.104,2105.14 683.821,2108.83 685.538,2112.26 687.255,2109.76 688.972,2103.07 690.69,2096.5 692.407,2091.7 694.124,2089.05 695.841,2088.18 697.558,2088.26 \n",
" 699.275,2088.39 700.992,2088.03 702.709,2087.19 704.426,2086.24 706.143,2085.55 707.861,2085.28 709.578,2085.23 711.295,2084.97 713.012,2084.15 714.729,2082.74 \n",
" 716.446,2081.04 718.163,2079.33 719.88,2077.54 721.597,2075.25 723.314,2072.16 725.032,2068.55 726.749,2065.32 728.466,2063.62 730.183,2064.35 731.9,2067.88 \n",
" 733.617,2074.01 735.334,2081.99 737.051,2090.82 738.768,2099.34 740.485,2106.38 742.203,2110.7 743.92,2111.57 745.637,2109.95 747.354,2106.92 749.071,2102.67 \n",
" 750.788,2097.59 752.505,2092.62 754.222,2089.04 755.939,2087.96 757.656,2089.84 759.373,2093.97 761.091,2097.75 762.808,2097.17 764.525,2091.52 766.242,2084.25 \n",
" 767.959,2078.18 769.676,2074.51 771.393,2073.36 773.11,2074.32 774.827,2076.95 776.544,2080.88 778.262,2085.66 779.979,2090.25 781.696,2093.19 783.413,2093.82 \n",
" 785.13,2093.44 786.847,2094.32 788.564,2098.07 790.281,2105.17 791.998,2115.06 793.715,2115.71 795.433,2103.93 797.15,2093.29 798.867,2085.03 800.584,2079.89 \n",
" 802.301,2078.08 804.018,2079.24 805.735,2082.52 807.452,2086.69 809.169,2090.59 810.886,2093.58 812.603,2095.8 814.321,2097.65 816.038,2099.11 817.755,2099.75 \n",
" 819.472,2099.54 821.189,2099.27 822.906,2099.93 824.623,2101.8 826.34,2103.77 828.057,2103.57 829.774,2100.19 831.492,2095.41 833.209,2091.34 834.926,2089.15 \n",
" 836.643,2089.13 838.36,2090.95 840.077,2093.97 841.794,2097.6 843.511,2101.57 845.228,2105.9 846.945,2110.63 848.663,2115.7 850.38,2120.43 852.097,2116.6 \n",
" 853.814,2111.82 855.531,2107.22 857.248,2102.68 858.965,2098.07 860.682,2093.17 862.399,2087.68 864.116,2081.3 865.833,2074.11 867.551,2066.87 869.268,2060.83 \n",
" 870.985,2057.43 872.702,2057.76 874.419,2062.17 876.136,2070.01 877.853,2079.37 879.57,2086.94 881.287,2089.1 883.004,2085.71 884.722,2080.26 886.439,2075.45 \n",
" 888.156,2072.11 889.873,2069.98 891.59,2068.47 893.307,2067.09 895.024,2065.62 896.741,2064.16 898.458,2063.09 900.175,2063.05 901.893,2064.86 903.61,2069.19 \n",
" 905.327,2076.21 907.044,2085.14 908.761,2093.47 910.478,2096.55 912.195,2092.25 913.912,2085.09 915.629,2079.33 917.346,2076.77 919.063,2077.63 920.781,2081.18 \n",
" 922.498,2086.11 924.215,2090.97 925.932,2094.65 927.649,2096.64 929.366,2097.04 931.083,2096.34 932.8,2095.23 934.517,2094.56 936.234,2095.06 937.952,2096.98 \n",
" 939.669,2099.67 941.386,2101.39 943.103,2100.25 944.82,2096.59 946.537,2092.5 948.254,2089.78 949.971,2089.17 951.688,2090.11 953.405,2090.47 955.123,2087.44 \n",
" 956.84,2080.27 958.557,2071.09 960.274,2062.74 961.991,2057.46 963.708,2056.66 965.425,2060.79 967.142,2069.34 968.859,2080.86 970.576,2093 972.294,2101.94 \n",
" 974.011,2103.13 975.728,2099.07 977.445,2095.46 979.162,2094.48 980.879,2096.27 982.596,2099.96 984.313,2103.57 986.03,2103.99 987.747,2099.79 989.464,2093.09 \n",
" 991.182,2086.12 992.899,2080.09 994.616,2075.69 996.333,2073.39 998.05,2073.54 999.767,2076.37 1001.48,2081.79 1003.2,2089.18 1004.92,2097.08 1006.64,2102.7 \n",
" 1008.35,2102.94 1010.07,2099.12 1011.79,2094.92 1013.5,2092.08 1015.22,2090.88 1016.94,2091.13 1018.66,2092.61 1020.37,2095.22 1022.09,2098.62 1023.81,2101.8 \n",
" 1025.52,2103.05 1027.24,2101.58 1028.96,2098.89 1030.67,2097.02 1032.39,2097.12 1034.11,2099.29 1035.83,2102.59 1037.54,2105.01 1039.26,2104.14 1040.98,2099.77 \n",
" 1042.69,2093.51 1044.41,2086.5 1046.13,2079.26 1047.85,2072.22 1049.56,2065.88 1051.28,2060.9 1053,2057.91 1054.71,2057.41 1056.43,2059.58 1058.15,2064.17 \n",
" 1059.87,2070.45 1061.58,2077.3 1063.3,2083.43 1065.02,2087.81 1066.73,2090.19 1068.45,2091.2 1070.17,2091.82 1071.89,2092.89 1073.6,2095.1 1075.32,2098.92 \n",
" 1077.04,2104.39 1078.75,2110.17 1080.47,2111 1082.19,2104.71 1083.9,2097.21 1085.62,2091.55 1087.34,2089.05 1089.06,2090.16 1090.77,2094.55 1092.49,2101.27 \n",
" 1094.21,2108.8 1095.92,2114.99 1097.64,2116.1 1099.36,2113.94 1101.08,2112.22 1102.79,2109.83 1104.51,2105.2 1106.23,2098.75 1107.94,2091.94 1109.66,2086.05 \n",
" 1111.38,2081.94 1113.1,2079.97 1114.81,2080.04 1116.53,2081.74 1118.25,2084.47 1119.96,2087.6 1121.68,2090.48 1123.4,2092.5 1125.12,2093.23 1126.83,2092.73 \n",
" 1128.55,2091.66 1130.27,2091.01 1131.98,2091.75 1133.7,2094.5 1135.42,2099.34 1137.13,2105.78 1138.85,2112.76 1140.57,2117.55 1142.29,2114.64 1144,2110.2 \n",
" 1145.72,2106.08 1147.44,2101.7 1149.15,2096.95 1150.87,2092.69 1152.59,2090.21 1154.31,2090.55 1156.02,2094.14 1157.74,2100.62 1159.46,2108.78 1161.17,2115.14 \n",
" 1162.89,2111.57 1164.61,2105.03 1166.33,2100.08 1168.04,2097.23 1169.76,2096.17 1171.48,2096.25 1173.19,2096.97 1174.91,2098.23 1176.63,2100.15 1178.35,2102.34 \n",
" 1180.06,2102.89 1181.78,2099.47 1183.5,2092.74 1185.21,2085.41 1186.93,2079.82 1188.65,2077.36 1190.36,2078.42 1192.08,2082.32 1193.8,2087.6 1195.52,2092.6 \n",
" 1197.23,2096.52 1198.95,2099.95 1200.67,2104.1 1202.38,2109.55 1204.1,2115.78 1205.82,2118.67 1207.54,2114.36 1209.25,2111.36 1210.97,2110.72 1212.69,2112.21 \n",
" 1214.4,2115 1216.12,2117.65 1217.84,2117.88 1219.56,2116.46 1221.27,2115.29 1222.99,2114.25 1224.71,2112.62 1226.42,2110.15 1228.14,2107.2 1229.86,2104.25 \n",
" 1231.58,2101.61 1233.29,2099.52 1235.01,2098.21 1236.73,2097.92 1238.44,2098.57 1240.16,2099.21 1241.88,2097.86 1243.59,2093.27 1245.31,2086.59 1247.03,2080.2 \n",
" 1248.75,2076.19 1250.46,2075.85 1252.18,2079.44 1253.9,2086.12 1255.61,2094.11 1257.33,2101.21 1259.05,2105.98 1260.77,2109.49 1262.48,2113.89 1264.2,2116.03 \n",
" 1265.92,2107.8 1267.63,2096.75 1269.35,2086.28 1271.07,2078.34 1272.79,2074.25 1274.5,2074.56 1276.22,2079.08 1277.94,2086.99 1279.65,2097.11 1281.37,2108.17 \n",
" 1283.09,2119.02 1284.81,2113.74 1286.52,2105.33 1288.24,2098.63 1289.96,2093.7 1291.67,2090.52 1293.39,2089.03 1295.11,2089.07 1296.82,2090.4 1298.54,2092.68 \n",
" 1300.26,2095.44 1301.98,2098.13 1303.69,2100.13 1305.41,2100.99 1307.13,2100.74 1308.84,2100.05 1310.56,2099.85 1312.28,2100.99 1314,2104.02 1315.71,2109.05 \n",
" 1317.43,2115.72 1319.15,2119.09 1320.86,2111.91 1322.58,2106.01 1324.3,2102.55 1326.02,2102.06 1327.73,2104.42 1329.45,2108.8 1331.17,2113.73 1332.88,2117.02 \n",
" 1334.6,2116.67 1336.32,2114.21 1338.04,2109.42 1339.75,2101.92 1341.47,2092.83 1343.19,2083.93 1344.9,2076.9 1346.62,2073.02 1348.34,2072.88 1350.05,2076.36 \n",
" 1351.77,2082.8 1353.49,2091.2 1355.21,2100.49 1356.92,2109.68 1358.64,2117.54 1360.36,2116.61 1362.07,2111.58 1363.79,2107.6 1365.51,2103.68 1367.23,2098.31 \n",
" 1368.94,2090.94 1370.66,2082.43 1372.38,2074.33 1374.09,2068.2 1375.81,2065.25 1377.53,2066.06 1379.25,2070.57 1380.96,2078.02 1382.68,2086.96 1384.4,2095.11 \n",
" 1386.11,2099.25 1387.83,2097.79 1389.55,2093.64 1391.27,2090.18 1392.98,2089.16 1394.7,2091.2 1396.42,2096.11 1398.13,2102.79 1399.85,2107.9 1401.57,2105.81 \n",
" 1403.28,2098.72 1405,2091.93 1406.72,2087.81 1408.44,2087.32 1410.15,2090.49 1411.87,2096.59 1413.59,2104.12 1415.3,2110.08 1417.02,2109.12 1418.74,2102.66 \n",
" 1420.46,2095.05 1422.17,2087.55 1423.89,2080.75 1425.61,2075.35 1427.32,2072.17 1429.04,2071.8 1430.76,2074.4 1432.48,2079.62 1434.19,2086.73 1435.91,2094.82 \n",
" 1437.63,2102.92 1439.34,2110.04 1441.06,2114.7 1442.78,2114.81 1444.5,2112.16 1446.21,2108.6 1447.93,2103.86 1449.65,2097.96 1451.36,2091.79 1453.08,2086.54 \n",
" 1454.8,2083.13 1456.51,2081.74 1458.23,2081.8 1459.95,2082.49 1461.67,2083.56 1463.38,2085.8 1465.1,2090.44 1466.82,2098.24 1468.53,2108.8 1470.25,2119.16 \n",
" 1471.97,2110.31 1473.69,2102.3 1475.4,2099.1 1477.12,2101.42 1478.84,2108.42 1480.55,2115.02 1482.27,2107.96 1483.99,2098.38 1485.71,2092.28 1487.42,2091.26 \n",
" 1489.14,2095.44 1490.86,2103.67 1492.57,2113.72 1494.29,2116.23 1496.01,2108.29 1497.73,2102.18 1499.44,2098.12 1501.16,2094.92 1502.88,2091.64 1504.59,2088.67 \n",
" 1506.31,2087.27 1508.03,2088.35 1509.74,2091.43 1511.46,2093.78 1513.18,2091.61 1514.9,2084.81 1516.61,2077.01 1518.33,2071.52 1520.05,2070.17 1521.76,2073.5 \n",
" 1523.48,2080.91 1525.2,2090.9 1526.92,2100.86 1528.63,2105.95 1530.35,2102.62 1532.07,2096.11 1533.78,2090.47 1535.5,2086.77 1537.22,2085.09 1538.94,2085.08 \n",
" 1540.65,2086.1 1542.37,2087.34 1544.09,2088.13 1545.8,2088.33 1547.52,2088.39 1549.24,2088.98 1550.96,2090.37 1552.67,2092.17 1554.39,2093.53 1556.11,2093.81 \n",
" 1557.82,2093.27 1559.54,2092.92 1561.26,2093.57 1562.97,2095.31 1564.69,2097.29 1566.41,2098.22 1568.13,2097.49 1569.84,2096.01 1571.56,2095.33 1573.28,2096.57 \n",
" 1574.99,2100.11 1576.71,2105.64 1578.43,2112.34 1580.15,2119.2 1581.86,2117.48 1583.58,2112.93 1585.3,2110.2 1587.01,2109.21 1588.73,2109.67 1590.45,2111.17 \n",
" 1592.17,2113.16 1593.88,2114.28 1595.6,2112.62 1597.32,2108.61 1599.03,2103.84 1600.75,2099.35 1602.47,2095.7 1604.19,2093.24 1605.9,2092.21 1607.62,2092.78 \n",
" 1609.34,2095.06 1611.05,2098.83 1612.77,2103.19 1614.49,2105.95 1616.2,2104.69 1617.92,2100.37 1619.64,2095.66 1621.36,2092.07 1623.07,2090.07 1624.79,2089.54 \n",
" 1626.51,2090.01 1628.22,2090.8 1629.94,2091.08 1631.66,2090.1 1633.38,2087.82 1635.09,2085.12 1636.81,2083.26 1638.53,2083.24 1640.24,2085.31 1641.96,2088.89 \n",
" 1643.68,2092.89 1645.4,2096.32 1647.11,2098.81 1648.83,2100.2 1650.55,2099.51 1652.26,2095.63 1653.98,2089.37 1655.7,2082.88 1657.42,2078.09 1659.13,2076.09 \n",
" 1660.85,2076.99 1662.57,2080.17 1664.28,2084.66 1666,2089.51 1667.72,2093.5 1669.43,2094.76 1671.15,2091.96 1672.87,2086.52 1674.59,2081.52 1676.3,2079.61 \n",
" 1678.02,2082.27 1679.74,2089.59 1681.45,2100.2 1683.17,2110.34 1684.89,2109.49 1686.61,2101.34 1688.32,2094.87 1690.04,2091.17 1691.76,2089.35 1693.47,2088.38 \n",
" 1695.19,2088.33 1696.91,2090.38 1698.63,2095.81 1700.34,2104.94 1702.06,2115.67 1703.78,2109.47 1705.49,2096.67 1707.21,2086.4 1708.93,2080.54 1710.65,2079.76 \n",
" 1712.36,2083.63 1714.08,2090.76 1715.8,2099.13 1717.51,2106.5 1719.23,2110.99 1720.95,2112.53 1722.66,2112.93 1724.38,2112.8 1726.1,2111.49 1727.82,2109.24 \n",
" 1729.53,2107.04 1731.25,2105.71 1732.97,2105.69 1734.68,2107.28 1736.4,2110.67 1738.12,2115.83 1739.84,2120.39 1741.55,2113.41 1743.27,2107.14 1744.99,2102.82 \n",
" 1746.7,2101.32 1748.42,2102.81 1750.14,2106.44 1751.86,2109.59 1753.57,2108.42 1755.29,2103.82 1757.01,2099.27 1758.72,2096.48 1760.44,2096 1762.16,2097.72 \n",
" 1763.88,2101.21 1765.59,2105.62 1767.31,2109.38 1769.03,2110.13 1770.74,2107.6 1772.46,2104.3 1774.18,2101.91 1775.89,2100.92 1777.61,2101.17 1779.33,2102.11 \n",
" 1781.05,2103.15 1782.76,2103.9 1784.48,2104.22 1786.2,2104.37 1787.91,2104.84 1789.63,2106.25 1791.35,2109.03 1793.07,2113.17 1794.78,2118.04 1796.5,2118.51 \n",
" 1798.22,2114.61 1799.93,2112.4 1801.65,2112.67 1803.37,2115.01 1805.09,2115.37 1806.8,2109.34 1808.52,2100.81 1810.24,2091.94 1811.95,2083.89 1813.67,2077.6 \n",
" 1815.39,2073.89 1817.11,2073.32 1818.82,2075.93 1820.54,2080.88 1822.26,2085.86 1823.97,2087.54 1825.69,2084.58 1827.41,2079.81 1829.12,2077.03 1830.84,2078.47 \n",
" 1832.56,2084.58 1834.28,2094.1 1835.99,2104.16 1837.71,2109.95 1839.43,2109.54 1841.14,2109.57 1842.86,2113.32 1844.58,2115.84 1846.3,2107.94 1848.01,2099.21 \n",
" 1849.73,2094.11 1851.45,2094.71 1853.16,2101.51 1854.88,2113.4 1856.6,2114.32 1858.32,2099.52 1860.03,2087.08 1861.75,2078.5 1863.47,2073.86 1865.18,2072.13 \n",
" 1866.9,2072.11 1868.62,2073.45 1870.34,2076.85 1872.05,2083.02 1873.77,2091.49 1875.49,2099.3 1877.2,2100.81 1878.92,2095.95 1880.64,2091.26 1882.35,2090.7 \n",
" 1884.07,2095.42 1885.79,2104.91 1887.51,2117.02 1889.22,2110 1890.94,2096.69 1892.66,2085.77 1894.37,2078.62 1896.09,2075.9 1897.81,2077.61 1899.53,2083.2 \n",
" 1901.24,2091.57 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"\n",
"M1655.93 1877.52 L1892.09 1877.52 L1892.09 1773.84 L1655.93 1773.84 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1655.93,1877.52 1892.09,1877.52 1892.09,1773.84 1655.93,1773.84 1655.93,1877.52 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1676.15,1825.68 1797.49,1825.68 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"M1831.56 1845.37 Q1829.76 1850 1828.04 1851.41 Q1826.33 1852.82 1823.46 1852.82 L1820.06 1852.82 L1820.06 1849.26 L1822.56 1849.26 Q1824.32 1849.26 1825.29 1848.42 Q1826.26 1847.59 1827.44 1844.49 L1828.2 1842.54 L1817.72 1817.04 L1822.23 1817.04 L1830.33 1837.31 L1838.44 1817.04 L1842.95 1817.04 L1831.56 1845.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1862.28 1812.48 L1850.47 1830.92 L1862.28 1830.92 L1862.28 1812.48 M1861.05 1808.4 L1866.93 1808.4 L1866.93 1830.92 L1871.86 1830.92 L1871.86 1834.81 L1866.93 1834.81 L1866.93 1842.96 L1862.28 1842.96 L1862.28 1834.81 L1846.68 1834.81 L1846.68 1830.3 L1861.05 1808.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"\n",
"M132.633 2702.31 L1952.76 2702.31 L1952.76 2332.96 L132.633 2332.96 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip966\">\n",
" <rect x=\"132\" y=\"2332\" width=\"1821\" height=\"370\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip966)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 184.146,2702.31 184.146,2332.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip966)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 613.42,2702.31 613.42,2332.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip966)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1042.69,2702.31 1042.69,2332.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip966)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1471.97,2702.31 1471.97,2332.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip966)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1901.24,2702.31 1901.24,2332.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,2702.31 1952.76,2702.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,2702.31 184.146,2683.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 613.42,2702.31 613.42,2683.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1042.69,2702.31 1042.69,2683.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1471.97,2702.31 1471.97,2683.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1901.24,2702.31 1901.24,2683.41 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"M184.146 2746.03 Q180.535 2746.03 178.706 2749.59 Q176.901 2753.14 176.901 2760.27 Q176.901 2767.37 178.706 2770.94 Q180.535 2774.48 184.146 2774.48 Q187.78 2774.48 189.586 2770.94 Q191.414 2767.37 191.414 2760.27 Q191.414 2753.14 189.586 2749.59 Q187.78 2746.03 184.146 2746.03 M184.146 2742.33 Q189.956 2742.33 193.012 2746.93 Q196.09 2751.52 196.09 2760.27 Q196.09 2768.99 193.012 2773.6 Q189.956 2778.18 184.146 2778.18 Q178.336 2778.18 175.257 2773.6 Q172.202 2768.99 172.202 2760.27 Q172.202 2751.52 175.257 2746.93 Q178.336 2742.33 184.146 2742.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M592.691 2773.58 L609.011 2773.58 L609.011 2777.51 L587.066 2777.51 L587.066 2773.58 Q589.728 2770.82 594.312 2766.19 Q598.918 2761.54 600.099 2760.2 Q602.344 2757.67 603.224 2755.94 Q604.126 2754.18 604.126 2752.49 Q604.126 2749.73 602.182 2748 Q600.261 2746.26 597.159 2746.26 Q594.96 2746.26 592.506 2747.02 Q590.075 2747.79 587.298 2749.34 L587.298 2744.62 Q590.122 2743.48 592.575 2742.9 Q595.029 2742.33 597.066 2742.33 Q602.436 2742.33 605.631 2745.01 Q608.825 2747.7 608.825 2752.19 Q608.825 2754.32 608.015 2756.24 Q607.228 2758.14 605.122 2760.73 Q604.543 2761.4 601.441 2764.62 Q598.339 2767.81 592.691 2773.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M618.872 2742.95 L637.228 2742.95 L637.228 2746.89 L623.154 2746.89 L623.154 2755.36 Q624.172 2755.01 625.191 2754.85 Q626.21 2754.66 627.228 2754.66 Q633.015 2754.66 636.395 2757.83 Q639.774 2761.01 639.774 2766.42 Q639.774 2772 636.302 2775.1 Q632.83 2778.18 626.51 2778.18 Q624.335 2778.18 622.066 2777.81 Q619.821 2777.44 617.413 2776.7 L617.413 2772 Q619.497 2773.14 621.719 2773.69 Q623.941 2774.25 626.418 2774.25 Q630.422 2774.25 632.76 2772.14 Q635.098 2770.03 635.098 2766.42 Q635.098 2762.81 632.76 2760.71 Q630.422 2758.6 626.418 2758.6 Q624.543 2758.6 622.668 2759.02 Q620.816 2759.43 618.872 2760.31 L618.872 2742.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1017.39 2742.95 L1035.75 2742.95 L1035.75 2746.89 L1021.68 2746.89 L1021.68 2755.36 Q1022.69 2755.01 1023.71 2754.85 Q1024.73 2754.66 1025.75 2754.66 Q1031.54 2754.66 1034.92 2757.83 Q1038.3 2761.01 1038.3 2766.42 Q1038.3 2772 1034.82 2775.1 Q1031.35 2778.18 1025.03 2778.18 Q1022.86 2778.18 1020.59 2777.81 Q1018.34 2777.44 1015.94 2776.7 L1015.94 2772 Q1018.02 2773.14 1020.24 2773.69 Q1022.46 2774.25 1024.94 2774.25 Q1028.94 2774.25 1031.28 2772.14 Q1033.62 2770.03 1033.62 2766.42 Q1033.62 2762.81 1031.28 2760.71 Q1028.94 2758.6 1024.94 2758.6 Q1023.06 2758.6 1021.19 2759.02 Q1019.34 2759.43 1017.39 2760.31 L1017.39 2742.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1057.51 2746.03 Q1053.9 2746.03 1052.07 2749.59 Q1050.26 2753.14 1050.26 2760.27 Q1050.26 2767.37 1052.07 2770.94 Q1053.9 2774.48 1057.51 2774.48 Q1061.14 2774.48 1062.95 2770.94 Q1064.78 2767.37 1064.78 2760.27 Q1064.78 2753.14 1062.95 2749.59 Q1061.14 2746.03 1057.51 2746.03 M1057.51 2742.33 Q1063.32 2742.33 1066.37 2746.93 Q1069.45 2751.52 1069.45 2760.27 Q1069.45 2768.99 1066.37 2773.6 Q1063.32 2778.18 1057.51 2778.18 Q1051.7 2778.18 1048.62 2773.6 Q1045.56 2768.99 1045.56 2760.27 Q1045.56 2751.52 1048.62 2746.93 Q1051.7 2742.33 1057.51 2742.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1445.82 2742.95 L1468.05 2742.95 L1468.05 2744.94 L1455.5 2777.51 L1450.61 2777.51 L1462.42 2746.89 L1445.82 2746.89 L1445.82 2742.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1477.21 2742.95 L1495.57 2742.95 L1495.57 2746.89 L1481.49 2746.89 L1481.49 2755.36 Q1482.51 2755.01 1483.53 2754.85 Q1484.55 2754.66 1485.57 2754.66 Q1491.36 2754.66 1494.73 2757.83 Q1498.11 2761.01 1498.11 2766.42 Q1498.11 2772 1494.64 2775.1 Q1491.17 2778.18 1484.85 2778.18 Q1482.67 2778.18 1480.41 2777.81 Q1478.16 2777.44 1475.75 2776.7 L1475.75 2772 Q1477.84 2773.14 1480.06 2773.69 Q1482.28 2774.25 1484.76 2774.25 Q1488.76 2774.25 1491.1 2772.14 Q1493.44 2770.03 1493.44 2766.42 Q1493.44 2762.81 1491.1 2760.71 Q1488.76 2758.6 1484.76 2758.6 Q1482.88 2758.6 1481.01 2759.02 Q1479.16 2759.43 1477.21 2760.31 L1477.21 2742.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1860.85 2773.58 L1868.49 2773.58 L1868.49 2747.21 L1860.18 2748.88 L1860.18 2744.62 L1868.44 2742.95 L1873.12 2742.95 L1873.12 2773.58 L1880.76 2773.58 L1880.76 2777.51 L1860.85 2777.51 L1860.85 2773.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1900.2 2746.03 Q1896.59 2746.03 1894.76 2749.59 Q1892.96 2753.14 1892.96 2760.27 Q1892.96 2767.37 1894.76 2770.94 Q1896.59 2774.48 1900.2 2774.48 Q1903.84 2774.48 1905.64 2770.94 Q1907.47 2767.37 1907.47 2760.27 Q1907.47 2753.14 1905.64 2749.59 Q1903.84 2746.03 1900.2 2746.03 M1900.2 2742.33 Q1906.01 2742.33 1909.07 2746.93 Q1912.15 2751.52 1912.15 2760.27 Q1912.15 2768.99 1909.07 2773.6 Q1906.01 2778.18 1900.2 2778.18 Q1894.39 2778.18 1891.31 2773.6 Q1888.26 2768.99 1888.26 2760.27 Q1888.26 2751.52 1891.31 2746.93 Q1894.39 2742.33 1900.2 2742.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1930.36 2746.03 Q1926.75 2746.03 1924.92 2749.59 Q1923.12 2753.14 1923.12 2760.27 Q1923.12 2767.37 1924.92 2770.94 Q1926.75 2774.48 1930.36 2774.48 Q1934 2774.48 1935.8 2770.94 Q1937.63 2767.37 1937.63 2760.27 Q1937.63 2753.14 1935.8 2749.59 Q1934 2746.03 1930.36 2746.03 M1930.36 2742.33 Q1936.17 2742.33 1939.23 2746.93 Q1942.31 2751.52 1942.31 2760.27 Q1942.31 2768.99 1939.23 2773.6 Q1936.17 2778.18 1930.36 2778.18 Q1924.55 2778.18 1921.47 2773.6 Q1918.42 2768.99 1918.42 2760.27 Q1918.42 2751.52 1921.47 2746.93 Q1924.55 2742.33 1930.36 2742.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip966)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,2692.83 1952.76,2692.83 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip966)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,2605.47 1952.76,2605.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip966)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,2518.12 1952.76,2518.12 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip966)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,2430.77 1952.76,2430.77 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip966)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,2343.41 1952.76,2343.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,2702.31 132.633,2332.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,2692.83 151.531,2692.83 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,2605.47 151.531,2605.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,2518.12 151.531,2518.12 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,2430.77 151.531,2430.77 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,2343.41 151.531,2343.41 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"M-14.7044 2678.63 Q-18.3155 2678.63 -20.1442 2682.19 Q-21.9498 2685.73 -21.9498 2692.86 Q-21.9498 2699.97 -20.1442 2703.53 Q-18.3155 2707.08 -14.7044 2707.08 Q-11.0702 2707.08 -9.26465 2703.53 Q-7.43595 2699.97 -7.43595 2692.86 Q-7.43595 2685.73 -9.26465 2682.19 Q-11.0702 2678.63 -14.7044 2678.63 M-14.7044 2674.92 Q-8.89428 2674.92 -5.83874 2679.53 Q-2.76005 2684.11 -2.76005 2692.86 Q-2.76005 2701.59 -5.83874 2706.2 Q-8.89428 2710.78 -14.7044 2710.78 Q-20.5146 2710.78 -23.5933 2706.2 Q-26.6488 2701.59 -26.6488 2692.86 Q-26.6488 2684.11 -23.5933 2679.53 Q-20.5146 2674.92 -14.7044 2674.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M5.4575 2704.23 L10.3417 2704.23 L10.3417 2710.11 L5.4575 2710.11 L5.4575 2704.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M30.5268 2678.63 Q26.9157 2678.63 25.087 2682.19 Q23.2815 2685.73 23.2815 2692.86 Q23.2815 2699.97 25.087 2703.53 Q26.9157 2707.08 30.5268 2707.08 Q34.161 2707.08 35.9666 2703.53 Q37.7953 2699.97 37.7953 2692.86 Q37.7953 2685.73 35.9666 2682.19 Q34.161 2678.63 30.5268 2678.63 M30.5268 2674.92 Q36.337 2674.92 39.3925 2679.53 Q42.4712 2684.11 42.4712 2692.86 Q42.4712 2701.59 39.3925 2706.2 Q36.337 2710.78 30.5268 2710.78 Q24.7167 2710.78 21.638 2706.2 Q18.5824 2701.59 18.5824 2692.86 Q18.5824 2684.11 21.638 2679.53 Q24.7167 2674.92 30.5268 2674.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M60.6887 2678.63 Q57.0776 2678.63 55.2489 2682.19 Q53.4434 2685.73 53.4434 2692.86 Q53.4434 2699.97 55.2489 2703.53 Q57.0776 2707.08 60.6887 2707.08 Q64.3229 2707.08 66.1285 2703.53 Q67.9572 2699.97 67.9572 2692.86 Q67.9572 2685.73 66.1285 2682.19 Q64.3229 2678.63 60.6887 2678.63 M60.6887 2674.92 Q66.4988 2674.92 69.5544 2679.53 Q72.6331 2684.11 72.6331 2692.86 Q72.6331 2701.59 69.5544 2706.2 Q66.4988 2710.78 60.6887 2710.78 Q54.8785 2710.78 51.7998 2706.2 Q48.7443 2701.59 48.7443 2692.86 Q48.7443 2684.11 51.7998 2679.53 Q54.8785 2674.92 60.6887 2674.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-13.7091 2591.27 Q-17.3202 2591.27 -19.1489 2594.84 Q-20.9544 2598.38 -20.9544 2605.51 Q-20.9544 2612.62 -19.1489 2616.18 Q-17.3202 2619.72 -13.7091 2619.72 Q-10.0748 2619.72 -8.26928 2616.18 Q-6.44059 2612.62 -6.44059 2605.51 Q-6.44059 2598.38 -8.26928 2594.84 Q-10.0748 2591.27 -13.7091 2591.27 M-13.7091 2587.57 Q-7.89891 2587.57 -4.84337 2592.18 Q-1.76469 2596.76 -1.76469 2605.51 Q-1.76469 2614.24 -4.84337 2618.84 Q-7.89891 2623.43 -13.7091 2623.43 Q-19.5192 2623.43 -22.5979 2618.84 Q-25.6534 2614.24 -25.6534 2605.51 Q-25.6534 2596.76 -22.5979 2592.18 Q-19.5192 2587.57 -13.7091 2587.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M6.45286 2616.87 L11.3371 2616.87 L11.3371 2622.75 L6.45286 2622.75 L6.45286 2616.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M25.55 2618.82 L41.8693 2618.82 L41.8693 2622.75 L19.925 2622.75 L19.925 2618.82 Q22.587 2616.06 27.1703 2611.44 Q31.7768 2606.78 32.9574 2605.44 Q35.2027 2602.92 36.0823 2601.18 Q36.9851 2599.42 36.9851 2597.73 Q36.9851 2594.98 35.0407 2593.24 Q33.1194 2591.5 30.0176 2591.5 Q27.8185 2591.5 25.3648 2592.27 Q22.9343 2593.03 20.1565 2594.58 L20.1565 2589.86 Q22.9806 2588.73 25.4342 2588.15 Q27.8879 2587.57 29.925 2587.57 Q35.2953 2587.57 38.4897 2590.25 Q41.6842 2592.94 41.6842 2597.43 Q41.6842 2599.56 40.874 2601.48 Q40.0869 2603.38 37.9805 2605.97 Q37.4018 2606.64 34.2999 2609.86 Q31.1981 2613.06 25.55 2618.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M51.7304 2588.19 L70.0868 2588.19 L70.0868 2592.13 L56.0128 2592.13 L56.0128 2600.6 Q57.0313 2600.25 58.0498 2600.09 Q59.0683 2599.91 60.0868 2599.91 Q65.8738 2599.91 69.2535 2603.08 Q72.6331 2606.25 72.6331 2611.67 Q72.6331 2617.25 69.1609 2620.35 Q65.6887 2623.43 59.3692 2623.43 Q57.1933 2623.43 54.9248 2623.06 Q52.6795 2622.69 50.2721 2621.94 L50.2721 2617.25 Q52.3554 2618.38 54.5776 2618.94 Q56.7998 2619.49 59.2767 2619.49 Q63.2813 2619.49 65.6192 2617.38 Q67.9572 2615.28 67.9572 2611.67 Q67.9572 2608.06 65.6192 2605.95 Q63.2813 2603.84 59.2767 2603.84 Q57.4017 2603.84 55.5267 2604.26 Q53.6748 2604.68 51.7304 2605.56 L51.7304 2588.19 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-14.7044 2503.92 Q-18.3155 2503.92 -20.1442 2507.48 Q-21.9498 2511.03 -21.9498 2518.15 Q-21.9498 2525.26 -20.1442 2528.83 Q-18.3155 2532.37 -14.7044 2532.37 Q-11.0702 2532.37 -9.26465 2528.83 Q-7.43595 2525.26 -7.43595 2518.15 Q-7.43595 2511.03 -9.26465 2507.48 Q-11.0702 2503.92 -14.7044 2503.92 M-14.7044 2500.22 Q-8.89428 2500.22 -5.83874 2504.82 Q-2.76005 2509.41 -2.76005 2518.15 Q-2.76005 2526.88 -5.83874 2531.49 Q-8.89428 2536.07 -14.7044 2536.07 Q-20.5146 2536.07 -23.5933 2531.49 Q-26.6488 2526.88 -26.6488 2518.15 Q-26.6488 2509.41 -23.5933 2504.82 Q-20.5146 2500.22 -14.7044 2500.22 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M5.4575 2529.52 L10.3417 2529.52 L10.3417 2535.4 L5.4575 2535.4 L5.4575 2529.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M20.5732 2500.84 L38.9295 2500.84 L38.9295 2504.78 L24.8555 2504.78 L24.8555 2513.25 Q25.8741 2512.9 26.8926 2512.74 Q27.9111 2512.55 28.9296 2512.55 Q34.7166 2512.55 38.0962 2515.72 Q41.4758 2518.9 41.4758 2524.31 Q41.4758 2529.89 38.0036 2532.99 Q34.5314 2536.07 28.212 2536.07 Q26.0361 2536.07 23.7676 2535.7 Q21.5222 2535.33 19.1148 2534.59 L19.1148 2529.89 Q21.1982 2531.03 23.4204 2531.58 Q25.6426 2532.14 28.1194 2532.14 Q32.124 2532.14 34.462 2530.03 Q36.7999 2527.92 36.7999 2524.31 Q36.7999 2520.7 34.462 2518.59 Q32.124 2516.49 28.1194 2516.49 Q26.2444 2516.49 24.3694 2516.9 Q22.5176 2517.32 20.5732 2518.2 L20.5732 2500.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M60.6887 2503.92 Q57.0776 2503.92 55.2489 2507.48 Q53.4434 2511.03 53.4434 2518.15 Q53.4434 2525.26 55.2489 2528.83 Q57.0776 2532.37 60.6887 2532.37 Q64.3229 2532.37 66.1285 2528.83 Q67.9572 2525.26 67.9572 2518.15 Q67.9572 2511.03 66.1285 2507.48 Q64.3229 2503.92 60.6887 2503.92 M60.6887 2500.22 Q66.4988 2500.22 69.5544 2504.82 Q72.6331 2509.41 72.6331 2518.15 Q72.6331 2526.88 69.5544 2531.49 Q66.4988 2536.07 60.6887 2536.07 Q54.8785 2536.07 51.7998 2531.49 Q48.7443 2526.88 48.7443 2518.15 Q48.7443 2509.41 51.7998 2504.82 Q54.8785 2500.22 60.6887 2500.22 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-13.7091 2416.56 Q-17.3202 2416.56 -19.1489 2420.13 Q-20.9544 2423.67 -20.9544 2430.8 Q-20.9544 2437.91 -19.1489 2441.47 Q-17.3202 2445.01 -13.7091 2445.01 Q-10.0748 2445.01 -8.26928 2441.47 Q-6.44059 2437.91 -6.44059 2430.8 Q-6.44059 2423.67 -8.26928 2420.13 Q-10.0748 2416.56 -13.7091 2416.56 M-13.7091 2412.86 Q-7.89891 2412.86 -4.84337 2417.47 Q-1.76469 2422.05 -1.76469 2430.8 Q-1.76469 2439.53 -4.84337 2444.13 Q-7.89891 2448.72 -13.7091 2448.72 Q-19.5192 2448.72 -22.5979 2444.13 Q-25.6534 2439.53 -25.6534 2430.8 Q-25.6534 2422.05 -22.5979 2417.47 Q-19.5192 2412.86 -13.7091 2412.86 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M6.45286 2442.17 L11.3371 2442.17 L11.3371 2448.05 L6.45286 2448.05 L6.45286 2442.17 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M20.3417 2413.49 L42.5638 2413.49 L42.5638 2415.48 L30.0176 2448.05 L25.1333 2448.05 L36.9388 2417.42 L20.3417 2417.42 L20.3417 2413.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M51.7304 2413.49 L70.0868 2413.49 L70.0868 2417.42 L56.0128 2417.42 L56.0128 2425.89 Q57.0313 2425.55 58.0498 2425.38 Q59.0683 2425.2 60.0868 2425.2 Q65.8738 2425.2 69.2535 2428.37 Q72.6331 2431.54 72.6331 2436.96 Q72.6331 2442.54 69.1609 2445.64 Q65.6887 2448.72 59.3692 2448.72 Q57.1933 2448.72 54.9248 2448.35 Q52.6795 2447.98 50.2721 2447.24 L50.2721 2442.54 Q52.3554 2443.67 54.5776 2444.23 Q56.7998 2444.78 59.2767 2444.78 Q63.2813 2444.78 65.6192 2442.68 Q67.9572 2440.57 67.9572 2436.96 Q67.9572 2433.35 65.6192 2431.24 Q63.2813 2429.13 59.2767 2429.13 Q57.4017 2429.13 55.5267 2429.55 Q53.6748 2429.97 51.7304 2430.85 L51.7304 2413.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-23.8942 2356.76 L-16.2553 2356.76 L-16.2553 2330.39 L-24.5655 2332.06 L-24.5655 2327.8 L-16.3016 2326.13 L-11.6257 2326.13 L-11.6257 2356.76 L-3.9869 2356.76 L-3.9869 2360.69 L-23.8942 2360.69 L-23.8942 2356.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M5.4575 2354.81 L10.3417 2354.81 L10.3417 2360.69 L5.4575 2360.69 L5.4575 2354.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M30.5268 2329.21 Q26.9157 2329.21 25.087 2332.78 Q23.2815 2336.32 23.2815 2343.45 Q23.2815 2350.55 25.087 2354.12 Q26.9157 2357.66 30.5268 2357.66 Q34.161 2357.66 35.9666 2354.12 Q37.7953 2350.55 37.7953 2343.45 Q37.7953 2336.32 35.9666 2332.78 Q34.161 2329.21 30.5268 2329.21 M30.5268 2325.51 Q36.337 2325.51 39.3925 2330.11 Q42.4712 2334.7 42.4712 2343.45 Q42.4712 2352.17 39.3925 2356.78 Q36.337 2361.36 30.5268 2361.36 Q24.7167 2361.36 21.638 2356.78 Q18.5824 2352.17 18.5824 2343.45 Q18.5824 2334.7 21.638 2330.11 Q24.7167 2325.51 30.5268 2325.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M60.6887 2329.21 Q57.0776 2329.21 55.2489 2332.78 Q53.4434 2336.32 53.4434 2343.45 Q53.4434 2350.55 55.2489 2354.12 Q57.0776 2357.66 60.6887 2357.66 Q64.3229 2357.66 66.1285 2354.12 Q67.9572 2350.55 67.9572 2343.45 Q67.9572 2336.32 66.1285 2332.78 Q64.3229 2329.21 60.6887 2329.21 M60.6887 2325.51 Q66.4988 2325.51 69.5544 2330.11 Q72.6331 2334.7 72.6331 2343.45 Q72.6331 2352.17 69.5544 2356.78 Q66.4988 2361.36 60.6887 2361.36 Q54.8785 2361.36 51.7998 2356.78 Q48.7443 2352.17 48.7443 2343.45 Q48.7443 2334.7 51.7998 2330.11 Q54.8785 2325.51 60.6887 2325.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip966)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,2343.41 185.863,2352.29 187.58,2377.79 189.297,2416.82 191.014,2464.89 192.731,2516.87 194.449,2567.67 196.166,2612.84 197.883,2648.68 199.6,2670.54 \n",
" 201.317,2672.69 203.034,2667.73 204.751,2665.9 206.468,2667.58 208.185,2671.41 209.902,2676.07 211.62,2680.64 213.337,2684.24 215.054,2685.36 216.771,2683.47 \n",
" 218.488,2680.44 220.205,2677.56 221.922,2675.15 223.639,2673.05 225.356,2671.03 227.073,2669.18 228.79,2667.96 230.508,2667.97 232.225,2669.69 233.942,2673.22 \n",
" 235.659,2678.24 237.376,2684.02 239.093,2689.29 240.81,2689.07 242.527,2685.71 244.244,2683.5 245.961,2682.62 247.679,2682.8 249.396,2683.67 251.113,2685.08 \n",
" 252.83,2686.98 254.547,2689.22 256.264,2690.53 257.981,2689 259.698,2687.05 261.415,2686.06 263.132,2686.54 264.85,2688.59 266.567,2691.86 268.284,2689.06 \n",
" 270.001,2684.07 271.718,2678.86 273.435,2673.68 275.152,2668.67 276.869,2663.99 278.586,2659.89 280.303,2656.69 282.021,2654.64 283.738,2653.85 285.455,2654.2 \n",
" 287.172,2655.38 288.889,2657.01 290.606,2658.86 292.323,2660.9 294.04,2663.29 295.757,2666.24 297.474,2669.83 299.191,2673.91 300.909,2677.89 302.626,2680.44 \n",
" 304.343,2679.96 306.06,2676.81 307.777,2672.78 309.494,2669.1 311.211,2666.38 312.928,2664.89 314.645,2664.67 316.362,2665.67 318.08,2667.86 319.797,2671.26 \n",
" 321.514,2675.98 323.231,2682.02 324.948,2688.79 326.665,2686.88 328.382,2678.83 330.099,2671.37 331.816,2665.86 333.533,2663.33 335.251,2664.45 336.968,2669.39 \n",
" 338.685,2677.67 340.402,2687.91 342.119,2685.03 343.836,2674.41 345.553,2665.92 347.27,2660.86 348.987,2659.77 350.704,2662.31 352.421,2667.16 354.139,2671.81 \n",
" 355.856,2673.12 357.573,2670.69 359.29,2667.51 361.007,2666.09 362.724,2667.39 364.441,2671.33 366.158,2677.15 367.875,2683.81 369.592,2690.04 371.31,2689.05 \n",
" 373.027,2684.53 374.744,2680.71 376.461,2677.47 378.178,2674.88 379.895,2673.4 381.612,2673.61 383.329,2676.01 385.046,2680.74 386.763,2687.56 388.481,2689.08 \n",
" 390.198,2679.77 391.915,2670.22 393.632,2661.46 395.349,2654.35 397.066,2649.6 398.783,2647.66 400.5,2648.64 402.217,2652.25 403.934,2657.77 405.651,2664.22 \n",
" 407.369,2670.48 409.086,2675.59 410.803,2679.04 412.52,2680.9 414.237,2681.67 415.954,2681.8 417.671,2681.7 419.388,2681.66 421.105,2681.71 422.822,2681.4 \n",
" 424.54,2680.12 426.257,2677.78 427.974,2674.84 429.691,2671.84 431.408,2669 433.125,2666.34 434.842,2663.96 436.559,2662.21 438.276,2661.62 439.993,2662.73 \n",
" 441.711,2665.76 443.428,2670.5 445.145,2676.23 446.862,2681.83 448.579,2685.69 450.296,2686.64 452.013,2686.45 453.73,2687.16 455.447,2688.85 457.164,2688.88 \n",
" 458.881,2685.16 460.599,2680.02 462.316,2674.51 464.033,2669.18 465.75,2664.64 467.467,2661.58 469.184,2660.62 470.901,2662.1 472.618,2665.78 474.335,2670.57 \n",
" 476.052,2674.17 477.77,2673.88 479.487,2670.15 481.204,2665.82 482.921,2662.81 484.638,2661.83 486.355,2662.72 488.072,2664.7 489.789,2666.53 491.506,2666.93 \n",
" 493.223,2665.4 494.941,2662.6 496.658,2659.75 498.375,2657.96 500.092,2657.96 501.809,2660.04 503.526,2664.08 505.243,2669.56 506.96,2675.55 508.677,2680.59 \n",
" 510.394,2682.52 512.112,2681.05 513.829,2678.74 515.546,2677.35 517.263,2677.45 518.98,2678.94 520.697,2681.14 522.414,2682.61 524.131,2681.56 525.848,2678.13 \n",
" 527.565,2673.78 529.282,2669.55 531,2666.01 532.717,2663.56 534.434,2662.48 536.151,2662.92 537.868,2664.84 539.585,2667.93 541.302,2671.65 543.019,2675.34 \n",
" 544.736,2678.4 546.453,2680.52 548.171,2681.66 549.888,2681.76 551.605,2680.79 553.322,2679.02 555.039,2677.09 556.756,2675.62 558.473,2674.96 560.19,2675.22 \n",
" 561.907,2676.22 563.624,2677.61 565.342,2678.94 567.059,2679.66 568.776,2679.29 570.493,2677.86 572.21,2676.01 573.927,2674.64 575.644,2674.63 577.361,2676.53 \n",
" 579.078,2680.2 580.795,2683.48 582.512,2680.79 584.23,2672.94 585.947,2664.14 587.664,2656.36 589.381,2650.64 591.098,2647.37 592.815,2646.46 594.532,2647.43 \n",
" 596.249,2649.74 597.966,2653.02 599.683,2657.03 601.401,2661.56 603.118,2666.15 604.835,2670.19 606.552,2673.21 608.269,2675.37 609.986,2677.33 611.703,2679.57 \n",
" 613.42,2681.9 615.137,2683.47 616.854,2683.57 618.572,2682.64 620.289,2681.47 622.006,2680.23 623.723,2678.66 625.44,2676.72 627.157,2674.77 628.874,2673.33 \n",
" 630.591,2672.8 632.308,2673.36 634.025,2675.07 635.742,2677.92 637.46,2681.85 639.177,2686.73 640.894,2691.01 642.611,2686.2 644.328,2679.83 646.045,2673.73 \n",
" 647.762,2668.42 649.479,2664.41 651.196,2662.12 652.913,2661.89 654.631,2663.81 656.348,2667.66 658.065,2672.87 659.782,2678.41 661.499,2682.65 663.216,2683.8 \n",
" 664.933,2682.65 666.65,2681.6 668.367,2681.68 670.084,2682.85 671.802,2684.52 673.519,2685.81 675.236,2685.86 676.953,2684.22 678.67,2680.95 680.387,2676.27 \n",
" 682.104,2670.66 683.821,2664.92 685.538,2659.96 687.255,2656.66 688.972,2655.59 690.69,2656.88 692.407,2660.1 694.124,2664.3 695.841,2668.18 697.558,2670.73 \n",
" 699.275,2671.95 700.992,2672.86 702.709,2674.44 704.426,2676.9 706.143,2679.43 707.861,2680.2 709.578,2678.04 711.295,2674.12 713.012,2670.09 714.729,2666.97 \n",
" 716.446,2665.28 718.163,2665.24 719.88,2666.79 721.597,2669.58 723.314,2672.96 725.032,2676.14 726.749,2678.43 728.466,2679.73 730.183,2680.51 731.9,2681.12 \n",
" 733.617,2681.27 735.334,2680.38 737.051,2678.52 738.768,2676.48 740.485,2675.15 742.203,2674.95 743.92,2675.67 745.637,2676.4 747.354,2675.9 749.071,2673.73 \n",
" 750.788,2670.73 752.505,2668.06 754.222,2666.34 755.939,2665.46 757.656,2664.62 759.373,2662.75 761.091,2659.37 762.808,2655.05 764.525,2650.84 766.242,2647.67 \n",
" 767.959,2646.02 769.676,2645.9 771.393,2646.99 773.11,2648.82 774.827,2650.88 776.544,2652.6 778.262,2653.34 779.979,2652.52 781.696,2650.12 783.413,2646.96 \n",
" 785.13,2644.29 786.847,2643.35 788.564,2644.89 790.281,2649.11 791.998,2655.63 793.715,2663.61 795.433,2671.96 797.15,2679.59 798.867,2685.44 800.584,2688.08 \n",
" 802.301,2686.91 804.018,2684.24 805.735,2681.02 807.452,2677.53 809.169,2674.21 810.886,2671.45 812.603,2669.49 814.321,2668.33 816.038,2667.79 817.755,2667.61 \n",
" 819.472,2667.55 821.189,2667.53 822.906,2667.54 824.623,2667.65 826.34,2667.93 828.057,2668.37 829.774,2668.9 831.492,2669.32 833.209,2669.46 834.926,2669.41 \n",
" 836.643,2669.49 838.36,2670.06 840.077,2671.11 841.794,2671.77 843.511,2670.56 845.228,2666.8 846.945,2661.56 848.663,2656.65 850.38,2653.58 852.097,2653.21 \n",
" 853.814,2655.7 855.531,2660.51 857.248,2666.47 858.965,2672.06 860.682,2675.91 862.399,2677.79 864.116,2678.84 865.833,2680.25 867.551,2682.4 869.268,2685.01 \n",
" 870.985,2687.3 872.702,2687.58 874.419,2685.04 876.136,2681.25 877.853,2677.42 879.57,2674.36 881.287,2672.64 883.004,2672.47 884.722,2673.53 886.439,2674.93 \n",
" 888.156,2675.57 889.873,2674.91 891.59,2673.43 893.307,2672 895.024,2671.28 896.741,2671.6 898.458,2673.17 900.175,2676.09 901.893,2680.09 903.61,2683.71 \n",
" 905.327,2683.05 907.044,2677.97 908.761,2672.24 910.478,2667.88 912.195,2665.83 913.912,2666.34 915.629,2669.04 917.346,2673 919.063,2676.83 920.781,2678.98 \n",
" 922.498,2678.71 924.215,2676.78 925.932,2674.24 927.649,2671.74 929.366,2669.8 931.083,2668.93 932.8,2669.54 934.517,2671.71 936.234,2675.1 937.952,2679.05 \n",
" 939.669,2682.72 941.386,2685.29 943.103,2686.23 944.82,2685.46 946.537,2683.46 948.254,2680.91 949.971,2678.52 951.688,2676.78 953.405,2675.84 955.123,2675.47 \n",
" 956.84,2675.32 958.557,2675.3 960.274,2675.68 961.991,2676.92 963.708,2679.21 965.425,2682.34 967.142,2685.72 968.859,2688.65 970.576,2690.68 972.294,2691.58 \n",
" 974.011,2689.99 975.728,2686.91 977.445,2683.28 979.162,2679.78 980.879,2676.94 982.596,2674.99 984.313,2673.84 986.03,2673.06 987.747,2672.12 989.464,2670.56 \n",
" 991.182,2668.3 992.899,2665.7 994.616,2663.51 996.333,2662.62 998.05,2663.79 999.767,2667.3 1001.48,2672.53 1003.2,2676.98 1004.92,2676.06 1006.64,2669.8 \n",
" 1008.35,2662.59 1010.07,2657.12 1011.79,2654.56 1013.5,2655.23 1015.22,2658.75 1016.94,2664.31 1018.66,2670.82 1020.37,2677.18 1022.09,2682.46 1023.81,2686.1 \n",
" 1025.52,2688.2 1027.24,2689.26 1028.96,2688.7 1030.67,2685.83 1032.39,2681.44 1034.11,2676.26 1035.83,2670.91 1037.54,2666.02 1039.26,2662.2 1040.98,2659.99 \n",
" 1042.69,2659.66 1044.41,2661.17 1046.13,2664.06 1047.85,2667.61 1049.56,2671.03 1051.28,2673.93 1053,2676.61 1054.71,2679.66 1056.43,2682.99 1058.15,2684.1 \n",
" 1059.87,2680.09 1061.58,2673.55 1063.3,2667.14 1065.02,2662.32 1066.73,2659.98 1068.45,2660.54 1070.17,2663.92 1071.89,2669.65 1073.6,2676.87 1075.32,2684.02 \n",
" 1077.04,2685.97 1078.75,2680.43 1080.47,2673.92 1082.19,2668.09 1083.9,2663.13 1085.62,2659 1087.34,2655.59 1089.06,2652.9 1090.77,2651.03 1092.49,2650.14 \n",
" 1094.21,2650.35 1095.92,2651.73 1097.64,2654.25 1099.36,2657.77 1101.08,2662.05 1102.79,2666.84 1104.51,2671.9 1106.23,2677.02 1107.94,2681.95 1109.66,2686.27 \n",
" 1111.38,2688.91 1113.1,2688.74 1114.81,2687.97 1116.53,2688.45 1118.25,2689.99 1119.96,2688 1121.68,2681.98 1123.4,2674.47 1125.12,2666.54 1126.83,2659.2 \n",
" 1128.55,2653.35 1130.27,2649.71 1131.98,2648.69 1133.7,2650.34 1135.42,2654.28 1137.13,2659.76 1138.85,2665.68 1140.57,2670.6 1142.29,2673.01 1144,2672.4 \n",
" 1145.72,2669.86 1147.44,2666.82 1149.15,2664.2 1150.87,2662.49 1152.59,2661.85 1154.31,2662.23 1156.02,2663.42 1157.74,2665.17 1159.46,2667.43 1161.17,2670.35 \n",
" 1162.89,2674.18 1164.61,2679.01 1166.33,2684.38 1168.04,2687.97 1169.76,2685.4 1171.48,2681.06 1173.19,2677.75 1174.91,2675.83 1176.63,2674.9 1178.35,2674.12 \n",
" 1180.06,2672.94 1181.78,2671.56 1183.5,2670.72 1185.21,2671.11 1186.93,2672.94 1188.65,2675.7 1190.36,2678.03 1192.08,2678.29 1193.8,2676.31 1195.52,2673.64 \n",
" 1197.23,2671.68 1198.95,2671.02 1200.67,2671.55 1202.38,2672.6 1204.1,2673.18 1205.82,2672.48 1207.54,2670.48 1209.25,2667.88 1210.97,2665.5 1212.69,2663.94 \n",
" 1214.4,2663.53 1216.12,2664.43 1217.84,2666.61 1219.56,2669.95 1221.27,2674.22 1222.99,2679.09 1224.71,2684.15 1226.42,2688.45 1228.14,2688.25 1229.86,2684.29 \n",
" 1231.58,2680.04 1233.29,2676.07 1235.01,2672.53 1236.73,2669.49 1238.44,2667.06 1240.16,2665.33 1241.88,2664.29 1243.59,2663.85 1245.31,2663.8 1247.03,2663.9 \n",
" 1248.75,2663.96 1250.46,2663.94 1252.18,2663.97 1253.9,2664.26 1255.61,2665.02 1257.33,2666.38 1259.05,2668.32 1260.77,2670.73 1262.48,2673.38 1264.2,2676 \n",
" 1265.92,2678.29 1267.63,2680.01 1269.35,2680.98 1271.07,2681.09 1272.79,2680.38 1274.5,2679.01 1276.22,2677.25 1277.94,2675.41 1279.65,2673.75 1281.37,2672.48 \n",
" 1283.09,2671.73 1284.81,2671.59 1286.52,2672.15 1288.24,2673.46 1289.96,2675.44 1291.67,2677.66 1293.39,2679.02 1295.11,2678.08 1296.82,2674.71 1298.54,2670.23 \n",
" 1300.26,2665.97 1301.98,2662.9 1303.69,2661.56 1305.41,2662.17 1307.13,2664.62 1308.84,2668.48 1310.56,2673.15 1312.28,2677.94 1314,2682.15 1315.71,2685.18 \n",
" 1317.43,2686.5 1319.15,2686.29 1320.86,2685.57 1322.58,2685.33 1324.3,2686.22 1326.02,2688.59 1327.73,2691.73 1329.45,2687.7 1331.17,2682.07 1332.88,2676.75 \n",
" 1334.6,2672.62 1336.32,2670.37 1338.04,2670.39 1339.75,2672.66 1341.47,2676.8 1343.19,2682.05 1344.9,2686.74 1346.62,2686.52 1348.34,2682.42 1350.05,2678.66 \n",
" 1351.77,2676.4 1353.49,2675.96 1355.21,2677.24 1356.92,2679.83 1358.64,2682.96 1360.36,2685.32 1362.07,2685.06 1363.79,2682.28 1365.51,2678.63 1367.23,2675.17 \n",
" 1368.94,2672.59 1370.66,2671.46 1372.38,2672.09 1374.09,2674.42 1375.81,2677.92 1377.53,2681.66 1379.25,2684.6 1380.96,2686.26 1382.68,2687.14 1384.4,2687.43 \n",
" 1386.11,2686.2 1387.83,2683.54 1389.55,2680.75 1391.27,2678.89 1392.98,2678.37 1394.7,2678.89 1396.42,2679.5 1398.13,2679.15 1399.85,2677.83 1401.57,2676.5 \n",
" 1403.28,2676.09 1405,2677.05 1406.72,2679.33 1408.44,2682.51 1410.15,2685.75 1411.87,2687.25 1413.59,2685.58 1415.3,2682.7 1417.02,2680.1 1418.74,2678.16 \n",
" 1420.46,2676.62 1422.17,2674.75 1423.89,2671.83 1425.61,2667.77 1427.32,2663.17 1429.04,2658.92 1430.76,2655.81 1432.48,2654.4 1434.19,2654.98 1435.91,2657.5 \n",
" 1437.63,2661.66 1439.34,2666.93 1441.06,2672.6 1442.78,2677.92 1444.5,2682.07 1446.21,2683.89 1447.93,2682.45 1449.65,2678.71 1451.36,2674.16 1453.08,2670.02 \n",
" 1454.8,2667.31 1456.51,2666.7 1458.23,2668.22 1459.95,2670.77 1461.67,2671.84 1463.38,2669.22 1465.1,2664.01 1466.82,2658.98 1468.53,2656.21 1470.25,2656.63 \n",
" 1471.97,2660.03 1473.69,2664.97 1475.4,2668.86 1477.12,2669.25 1478.84,2666.91 1480.55,2664.89 1482.27,2665.42 1483.99,2669.3 1485.71,2676.24 1487.42,2684.86 \n",
" 1489.14,2687.75 1490.86,2679.87 1492.57,2672.85 1494.29,2668.44 1496.01,2666.96 1497.73,2668.13 1499.44,2671.29 1501.16,2675.56 1502.88,2680.06 1504.59,2683.78 \n",
" 1506.31,2684.98 1508.03,2682.54 1509.74,2678.01 1511.46,2672.81 1513.18,2667.74 1514.9,2663.44 1516.61,2660.52 1518.33,2659.48 1520.05,2660.63 1521.76,2664.02 \n",
" 1523.48,2669.41 1525.2,2676.21 1526.92,2683.04 1528.63,2685.09 1530.35,2679.5 1532.07,2672.43 1533.78,2666.16 1535.5,2661.46 1537.22,2658.8 1538.94,2658.51 \n",
" 1540.65,2660.76 1542.37,2665.45 1544.09,2672.26 1545.8,2680.59 1547.52,2688.98 1549.24,2685.32 1550.96,2676.82 1552.67,2669.44 1554.39,2663.91 1556.11,2660.63 \n",
" 1557.82,2659.76 1559.54,2661.16 1561.26,2664.39 1562.97,2668.64 1564.69,2672.75 1566.41,2675.23 1568.13,2675.01 1569.84,2672.58 1571.56,2669.26 1573.28,2666.12 \n",
" 1574.99,2663.82 1576.71,2662.81 1578.43,2663.32 1580.15,2665.28 1581.86,2668.33 1583.58,2671.84 1585.3,2675.12 1587.01,2677.79 1588.73,2680.05 1590.45,2682.41 \n",
" 1592.17,2685.13 1593.88,2687.67 1595.6,2688.47 1597.32,2687.58 1599.03,2687.34 1600.75,2688.87 1602.47,2689.93 1604.19,2684.51 1605.9,2676.62 1607.62,2668.16 \n",
" 1609.34,2660.39 1611.05,2654.37 1612.77,2650.72 1614.49,2649.54 1616.2,2650.37 1617.92,2652.36 1619.64,2654.71 1621.36,2657.07 1623.07,2659.72 1624.79,2663.21 \n",
" 1626.51,2667.81 1628.22,2673.03 1629.94,2677.07 1631.66,2677.29 1633.38,2673.84 1635.09,2669.63 1636.81,2666.69 1638.53,2665.83 1640.24,2667.11 1641.96,2670.04 \n",
" 1643.68,2673.7 1645.4,2676.85 1647.11,2678.24 1648.83,2677.38 1650.55,2674.65 1652.26,2670.44 1653.98,2664.95 1655.7,2658.66 1657.42,2652.42 1659.13,2647.31 \n",
" 1660.85,2644.34 1662.57,2644.19 1664.28,2647.06 1666,2652.62 1667.72,2660.03 1669.43,2668.13 1671.15,2675.63 1672.87,2681.32 1674.59,2684.16 1676.3,2684.02 \n",
" 1678.02,2681.89 1679.74,2678.73 1681.45,2675.28 1683.17,2672.26 1684.89,2670.19 1686.61,2669.24 1688.32,2669.23 1690.04,2669.78 1691.76,2670.63 1693.47,2671.78 \n",
" 1695.19,2673.33 1696.91,2675.25 1698.63,2677.18 1700.34,2678.56 1702.06,2678.82 1703.78,2677.77 1705.49,2675.42 1707.21,2671.96 1708.93,2667.83 1710.65,2663.81 \n",
" 1712.36,2660.8 1714.08,2659.62 1715.8,2660.72 1717.51,2664.08 1719.23,2669.23 1720.95,2675.34 1722.66,2681.3 1724.38,2685.34 1726.1,2684.84 1727.82,2681.01 \n",
" 1729.53,2676.25 1731.25,2671.34 1732.97,2666.85 1734.68,2663.34 1736.4,2661.31 1738.12,2661.01 1739.84,2662.39 1741.55,2665.15 1743.27,2668.83 1744.99,2672.98 \n",
" 1746.7,2677.2 1748.42,2681.09 1750.14,2684.08 1751.86,2685.24 1753.57,2684.25 1755.29,2682.27 1757.01,2680.46 1758.72,2679.53 1760.44,2679.9 1762.16,2681.63 \n",
" 1763.88,2683.78 1765.59,2683.27 1767.31,2678.5 1769.03,2672 1770.74,2666.02 1772.46,2661.99 1774.18,2660.74 1775.89,2662.33 1777.61,2665.91 1779.33,2669.46 \n",
" 1781.05,2670.43 1782.76,2668.21 1784.48,2664.99 1786.2,2663.09 1787.91,2663.67 1789.63,2666.9 1791.35,2672.23 1793.07,2678.75 1794.78,2685.15 1796.5,2688.46 \n",
" 1798.22,2685.62 1799.93,2682.05 1801.65,2679.51 1803.37,2678.05 1805.09,2677.45 1806.8,2677.42 1808.52,2677.72 1810.24,2678.28 1811.95,2679.23 1813.67,2680.87 \n",
" 1815.39,2683.52 1817.11,2687.26 1818.82,2689.73 1820.54,2684.59 1822.26,2677.28 1823.97,2669.85 1825.69,2663.38 1827.41,2658.88 1829.12,2657.06 1830.84,2658.22 \n",
" 1832.56,2662.12 1834.28,2667.99 1835.99,2674.7 1837.71,2681.02 1839.43,2685.93 1841.14,2688.88 1842.86,2689.02 1844.58,2686.09 1846.3,2681.56 1848.01,2676.52 \n",
" 1849.73,2671.94 1851.45,2668.56 1853.16,2666.87 1854.88,2666.98 1856.6,2668.7 1858.32,2671.49 1860.03,2674.52 1861.75,2676.72 1863.47,2677.31 1865.18,2676.61 \n",
" 1866.9,2675.72 1868.62,2675.57 1870.34,2676.57 1872.05,2678.6 1873.77,2681.17 1875.49,2683.49 1877.2,2684.6 1878.92,2683.97 1880.64,2681.95 1882.35,2679.07 \n",
" 1884.07,2675.68 1885.79,2672.17 1887.51,2669.01 1889.22,2666.65 1890.94,2665.43 1892.66,2665.52 1894.37,2666.84 1896.09,2669.13 1897.81,2671.95 1899.53,2674.83 \n",
" 1901.24,2677.33 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"\n",
"M1657.41 2448.95 L1892.09 2448.95 L1892.09 2345.27 L1657.41 2345.27 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1657.41,2448.95 1892.09,2448.95 1892.09,2345.27 1657.41,2345.27 1657.41,2448.95 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1677.63,2397.11 1798.98,2397.11 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"M1833.04 2416.8 Q1831.24 2421.43 1829.52 2422.84 Q1827.81 2424.25 1824.94 2424.25 L1821.54 2424.25 L1821.54 2420.69 L1824.04 2420.69 Q1825.8 2420.69 1826.77 2419.85 Q1827.74 2419.02 1828.92 2415.92 L1829.69 2413.97 L1819.2 2388.46 L1823.71 2388.46 L1831.82 2408.74 L1839.92 2388.46 L1844.43 2388.46 L1833.04 2416.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1850.96 2379.83 L1869.32 2379.83 L1869.32 2383.77 L1855.24 2383.77 L1855.24 2392.24 Q1856.26 2391.89 1857.28 2391.73 Q1858.3 2391.54 1859.32 2391.54 Q1865.1 2391.54 1868.48 2394.71 Q1871.86 2397.89 1871.86 2403.3 Q1871.86 2408.88 1868.39 2411.98 Q1864.92 2415.06 1858.6 2415.06 Q1856.42 2415.06 1854.15 2414.69 Q1851.91 2414.32 1849.5 2413.58 L1849.5 2408.88 Q1851.58 2410.02 1853.81 2410.57 Q1856.03 2411.13 1858.51 2411.13 Q1862.51 2411.13 1864.85 2409.02 Q1867.19 2406.91 1867.19 2403.3 Q1867.19 2399.69 1864.85 2397.58 Q1862.51 2395.48 1858.51 2395.48 Q1856.63 2395.48 1854.76 2395.89 Q1852.9 2396.31 1850.96 2397.19 L1850.96 2379.83 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"\n",
"M132.633 3273.74 L1952.76 3273.74 L1952.76 2904.39 L132.633 2904.39 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip967\">\n",
" <rect x=\"132\" y=\"2904\" width=\"1821\" height=\"370\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip967)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 184.146,3273.74 184.146,2904.39 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip967)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 613.42,3273.74 613.42,2904.39 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip967)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1042.69,3273.74 1042.69,2904.39 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip967)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1471.97,3273.74 1471.97,2904.39 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip967)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1901.24,3273.74 1901.24,2904.39 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,3273.74 1952.76,3273.74 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,3273.74 184.146,3254.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 613.42,3273.74 613.42,3254.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1042.69,3273.74 1042.69,3254.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1471.97,3273.74 1471.97,3254.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1901.24,3273.74 1901.24,3254.84 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"M184.146 3317.46 Q180.535 3317.46 178.706 3321.02 Q176.901 3324.56 176.901 3331.69 Q176.901 3338.8 178.706 3342.37 Q180.535 3345.91 184.146 3345.91 Q187.78 3345.91 189.586 3342.37 Q191.414 3338.8 191.414 3331.69 Q191.414 3324.56 189.586 3321.02 Q187.78 3317.46 184.146 3317.46 M184.146 3313.75 Q189.956 3313.75 193.012 3318.36 Q196.09 3322.94 196.09 3331.69 Q196.09 3340.42 193.012 3345.03 Q189.956 3349.61 184.146 3349.61 Q178.336 3349.61 175.257 3345.03 Q172.202 3340.42 172.202 3331.69 Q172.202 3322.94 175.257 3318.36 Q178.336 3313.75 184.146 3313.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M592.691 3345 L609.011 3345 L609.011 3348.94 L587.066 3348.94 L587.066 3345 Q589.728 3342.25 594.312 3337.62 Q598.918 3332.97 600.099 3331.62 Q602.344 3329.1 603.224 3327.37 Q604.126 3325.61 604.126 3323.92 Q604.126 3321.16 602.182 3319.43 Q600.261 3317.69 597.159 3317.69 Q594.96 3317.69 592.506 3318.45 Q590.075 3319.22 587.298 3320.77 L587.298 3316.05 Q590.122 3314.91 592.575 3314.33 Q595.029 3313.75 597.066 3313.75 Q602.436 3313.75 605.631 3316.44 Q608.825 3319.12 608.825 3323.62 Q608.825 3325.74 608.015 3327.67 Q607.228 3329.56 605.122 3332.16 Q604.543 3332.83 601.441 3336.05 Q598.339 3339.24 592.691 3345 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M618.872 3314.38 L637.228 3314.38 L637.228 3318.31 L623.154 3318.31 L623.154 3326.79 Q624.172 3326.44 625.191 3326.28 Q626.21 3326.09 627.228 3326.09 Q633.015 3326.09 636.395 3329.26 Q639.774 3332.43 639.774 3337.85 Q639.774 3343.43 636.302 3346.53 Q632.83 3349.61 626.51 3349.61 Q624.335 3349.61 622.066 3349.24 Q619.821 3348.87 617.413 3348.13 L617.413 3343.43 Q619.497 3344.56 621.719 3345.12 Q623.941 3345.68 626.418 3345.68 Q630.422 3345.68 632.76 3343.57 Q635.098 3341.46 635.098 3337.85 Q635.098 3334.24 632.76 3332.13 Q630.422 3330.03 626.418 3330.03 Q624.543 3330.03 622.668 3330.44 Q620.816 3330.86 618.872 3331.74 L618.872 3314.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1017.39 3314.38 L1035.75 3314.38 L1035.75 3318.31 L1021.68 3318.31 L1021.68 3326.79 Q1022.69 3326.44 1023.71 3326.28 Q1024.73 3326.09 1025.75 3326.09 Q1031.54 3326.09 1034.92 3329.26 Q1038.3 3332.43 1038.3 3337.85 Q1038.3 3343.43 1034.82 3346.53 Q1031.35 3349.61 1025.03 3349.61 Q1022.86 3349.61 1020.59 3349.24 Q1018.34 3348.87 1015.94 3348.13 L1015.94 3343.43 Q1018.02 3344.56 1020.24 3345.12 Q1022.46 3345.68 1024.94 3345.68 Q1028.94 3345.68 1031.28 3343.57 Q1033.62 3341.46 1033.62 3337.85 Q1033.62 3334.24 1031.28 3332.13 Q1028.94 3330.03 1024.94 3330.03 Q1023.06 3330.03 1021.19 3330.44 Q1019.34 3330.86 1017.39 3331.74 L1017.39 3314.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1057.51 3317.46 Q1053.9 3317.46 1052.07 3321.02 Q1050.26 3324.56 1050.26 3331.69 Q1050.26 3338.8 1052.07 3342.37 Q1053.9 3345.91 1057.51 3345.91 Q1061.14 3345.91 1062.95 3342.37 Q1064.78 3338.8 1064.78 3331.69 Q1064.78 3324.56 1062.95 3321.02 Q1061.14 3317.46 1057.51 3317.46 M1057.51 3313.75 Q1063.32 3313.75 1066.37 3318.36 Q1069.45 3322.94 1069.45 3331.69 Q1069.45 3340.42 1066.37 3345.03 Q1063.32 3349.61 1057.51 3349.61 Q1051.7 3349.61 1048.62 3345.03 Q1045.56 3340.42 1045.56 3331.69 Q1045.56 3322.94 1048.62 3318.36 Q1051.7 3313.75 1057.51 3313.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1445.82 3314.38 L1468.05 3314.38 L1468.05 3316.37 L1455.5 3348.94 L1450.61 3348.94 L1462.42 3318.31 L1445.82 3318.31 L1445.82 3314.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1477.21 3314.38 L1495.57 3314.38 L1495.57 3318.31 L1481.49 3318.31 L1481.49 3326.79 Q1482.51 3326.44 1483.53 3326.28 Q1484.55 3326.09 1485.57 3326.09 Q1491.36 3326.09 1494.73 3329.26 Q1498.11 3332.43 1498.11 3337.85 Q1498.11 3343.43 1494.64 3346.53 Q1491.17 3349.61 1484.85 3349.61 Q1482.67 3349.61 1480.41 3349.24 Q1478.16 3348.87 1475.75 3348.13 L1475.75 3343.43 Q1477.84 3344.56 1480.06 3345.12 Q1482.28 3345.68 1484.76 3345.68 Q1488.76 3345.68 1491.1 3343.57 Q1493.44 3341.46 1493.44 3337.85 Q1493.44 3334.24 1491.1 3332.13 Q1488.76 3330.03 1484.76 3330.03 Q1482.88 3330.03 1481.01 3330.44 Q1479.16 3330.86 1477.21 3331.74 L1477.21 3314.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1860.85 3345 L1868.49 3345 L1868.49 3318.64 L1860.18 3320.31 L1860.18 3316.05 L1868.44 3314.38 L1873.12 3314.38 L1873.12 3345 L1880.76 3345 L1880.76 3348.94 L1860.85 3348.94 L1860.85 3345 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1900.2 3317.46 Q1896.59 3317.46 1894.76 3321.02 Q1892.96 3324.56 1892.96 3331.69 Q1892.96 3338.8 1894.76 3342.37 Q1896.59 3345.91 1900.2 3345.91 Q1903.84 3345.91 1905.64 3342.37 Q1907.47 3338.8 1907.47 3331.69 Q1907.47 3324.56 1905.64 3321.02 Q1903.84 3317.46 1900.2 3317.46 M1900.2 3313.75 Q1906.01 3313.75 1909.07 3318.36 Q1912.15 3322.94 1912.15 3331.69 Q1912.15 3340.42 1909.07 3345.03 Q1906.01 3349.61 1900.2 3349.61 Q1894.39 3349.61 1891.31 3345.03 Q1888.26 3340.42 1888.26 3331.69 Q1888.26 3322.94 1891.31 3318.36 Q1894.39 3313.75 1900.2 3313.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1930.36 3317.46 Q1926.75 3317.46 1924.92 3321.02 Q1923.12 3324.56 1923.12 3331.69 Q1923.12 3338.8 1924.92 3342.37 Q1926.75 3345.91 1930.36 3345.91 Q1934 3345.91 1935.8 3342.37 Q1937.63 3338.8 1937.63 3331.69 Q1937.63 3324.56 1935.8 3321.02 Q1934 3317.46 1930.36 3317.46 M1930.36 3313.75 Q1936.17 3313.75 1939.23 3318.36 Q1942.31 3322.94 1942.31 3331.69 Q1942.31 3340.42 1939.23 3345.03 Q1936.17 3349.61 1930.36 3349.61 Q1924.55 3349.61 1921.47 3345.03 Q1918.42 3340.42 1918.42 3331.69 Q1918.42 3322.94 1921.47 3318.36 Q1924.55 3313.75 1930.36 3313.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip967)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,3264 1952.76,3264 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip967)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,3176.71 1952.76,3176.71 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip967)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,3089.42 1952.76,3089.42 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip967)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,3002.13 1952.76,3002.13 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip967)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,2914.84 1952.76,2914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,3273.74 132.633,2904.39 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,3264 151.531,3264 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,3176.71 151.531,3176.71 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,3089.42 151.531,3089.42 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,3002.13 151.531,3002.13 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,2914.84 151.531,2914.84 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"M-14.7044 3249.79 Q-18.3155 3249.79 -20.1442 3253.36 Q-21.9498 3256.9 -21.9498 3264.03 Q-21.9498 3271.14 -20.1442 3274.7 Q-18.3155 3278.24 -14.7044 3278.24 Q-11.0702 3278.24 -9.26465 3274.7 Q-7.43595 3271.14 -7.43595 3264.03 Q-7.43595 3256.9 -9.26465 3253.36 Q-11.0702 3249.79 -14.7044 3249.79 M-14.7044 3246.09 Q-8.89428 3246.09 -5.83874 3250.7 Q-2.76005 3255.28 -2.76005 3264.03 Q-2.76005 3272.76 -5.83874 3277.36 Q-8.89428 3281.95 -14.7044 3281.95 Q-20.5146 3281.95 -23.5933 3277.36 Q-26.6488 3272.76 -26.6488 3264.03 Q-26.6488 3255.28 -23.5933 3250.7 Q-20.5146 3246.09 -14.7044 3246.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M5.4575 3275.4 L10.3417 3275.4 L10.3417 3281.28 L5.4575 3281.28 L5.4575 3275.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M30.5268 3249.79 Q26.9157 3249.79 25.087 3253.36 Q23.2815 3256.9 23.2815 3264.03 Q23.2815 3271.14 25.087 3274.7 Q26.9157 3278.24 30.5268 3278.24 Q34.161 3278.24 35.9666 3274.7 Q37.7953 3271.14 37.7953 3264.03 Q37.7953 3256.9 35.9666 3253.36 Q34.161 3249.79 30.5268 3249.79 M30.5268 3246.09 Q36.337 3246.09 39.3925 3250.7 Q42.4712 3255.28 42.4712 3264.03 Q42.4712 3272.76 39.3925 3277.36 Q36.337 3281.95 30.5268 3281.95 Q24.7167 3281.95 21.638 3277.36 Q18.5824 3272.76 18.5824 3264.03 Q18.5824 3255.28 21.638 3250.7 Q24.7167 3246.09 30.5268 3246.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M60.6887 3249.79 Q57.0776 3249.79 55.2489 3253.36 Q53.4434 3256.9 53.4434 3264.03 Q53.4434 3271.14 55.2489 3274.7 Q57.0776 3278.24 60.6887 3278.24 Q64.3229 3278.24 66.1285 3274.7 Q67.9572 3271.14 67.9572 3264.03 Q67.9572 3256.9 66.1285 3253.36 Q64.3229 3249.79 60.6887 3249.79 M60.6887 3246.09 Q66.4988 3246.09 69.5544 3250.7 Q72.6331 3255.28 72.6331 3264.03 Q72.6331 3272.76 69.5544 3277.36 Q66.4988 3281.95 60.6887 3281.95 Q54.8785 3281.95 51.7998 3277.36 Q48.7443 3272.76 48.7443 3264.03 Q48.7443 3255.28 51.7998 3250.7 Q54.8785 3246.09 60.6887 3246.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-13.7091 3162.51 Q-17.3202 3162.51 -19.1489 3166.07 Q-20.9544 3169.61 -20.9544 3176.74 Q-20.9544 3183.85 -19.1489 3187.41 Q-17.3202 3190.95 -13.7091 3190.95 Q-10.0748 3190.95 -8.26928 3187.41 Q-6.44059 3183.85 -6.44059 3176.74 Q-6.44059 3169.61 -8.26928 3166.07 Q-10.0748 3162.51 -13.7091 3162.51 M-13.7091 3158.8 Q-7.89891 3158.8 -4.84337 3163.41 Q-1.76469 3167.99 -1.76469 3176.74 Q-1.76469 3185.47 -4.84337 3190.07 Q-7.89891 3194.66 -13.7091 3194.66 Q-19.5192 3194.66 -22.5979 3190.07 Q-25.6534 3185.47 -25.6534 3176.74 Q-25.6534 3167.99 -22.5979 3163.41 Q-19.5192 3158.8 -13.7091 3158.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M6.45286 3188.11 L11.3371 3188.11 L11.3371 3193.99 L6.45286 3193.99 L6.45286 3188.11 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M25.55 3190.05 L41.8693 3190.05 L41.8693 3193.99 L19.925 3193.99 L19.925 3190.05 Q22.587 3187.3 27.1703 3182.67 Q31.7768 3178.01 32.9574 3176.67 Q35.2027 3174.15 36.0823 3172.41 Q36.9851 3170.65 36.9851 3168.96 Q36.9851 3166.21 35.0407 3164.47 Q33.1194 3162.74 30.0176 3162.74 Q27.8185 3162.74 25.3648 3163.5 Q22.9343 3164.26 20.1565 3165.82 L20.1565 3161.09 Q22.9806 3159.96 25.4342 3159.38 Q27.8879 3158.8 29.925 3158.8 Q35.2953 3158.8 38.4897 3161.49 Q41.6842 3164.17 41.6842 3168.66 Q41.6842 3170.79 40.874 3172.71 Q40.0869 3174.61 37.9805 3177.2 Q37.4018 3177.88 34.2999 3181.09 Q31.1981 3184.29 25.55 3190.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M51.7304 3159.43 L70.0868 3159.43 L70.0868 3163.36 L56.0128 3163.36 L56.0128 3171.83 Q57.0313 3171.49 58.0498 3171.32 Q59.0683 3171.14 60.0868 3171.14 Q65.8738 3171.14 69.2535 3174.31 Q72.6331 3177.48 72.6331 3182.9 Q72.6331 3188.48 69.1609 3191.58 Q65.6887 3194.66 59.3692 3194.66 Q57.1933 3194.66 54.9248 3194.29 Q52.6795 3193.92 50.2721 3193.18 L50.2721 3188.48 Q52.3554 3189.61 54.5776 3190.17 Q56.7998 3190.72 59.2767 3190.72 Q63.2813 3190.72 65.6192 3188.62 Q67.9572 3186.51 67.9572 3182.9 Q67.9572 3179.29 65.6192 3177.18 Q63.2813 3175.07 59.2767 3175.07 Q57.4017 3175.07 55.5267 3175.49 Q53.6748 3175.91 51.7304 3176.79 L51.7304 3159.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-14.7044 3075.22 Q-18.3155 3075.22 -20.1442 3078.78 Q-21.9498 3082.32 -21.9498 3089.45 Q-21.9498 3096.56 -20.1442 3100.12 Q-18.3155 3103.67 -14.7044 3103.67 Q-11.0702 3103.67 -9.26465 3100.12 Q-7.43595 3096.56 -7.43595 3089.45 Q-7.43595 3082.32 -9.26465 3078.78 Q-11.0702 3075.22 -14.7044 3075.22 M-14.7044 3071.51 Q-8.89428 3071.51 -5.83874 3076.12 Q-2.76005 3080.7 -2.76005 3089.45 Q-2.76005 3098.18 -5.83874 3102.79 Q-8.89428 3107.37 -14.7044 3107.37 Q-20.5146 3107.37 -23.5933 3102.79 Q-26.6488 3098.18 -26.6488 3089.45 Q-26.6488 3080.7 -23.5933 3076.12 Q-20.5146 3071.51 -14.7044 3071.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M5.4575 3100.82 L10.3417 3100.82 L10.3417 3106.7 L5.4575 3106.7 L5.4575 3100.82 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M20.5732 3072.14 L38.9295 3072.14 L38.9295 3076.07 L24.8555 3076.07 L24.8555 3084.55 Q25.8741 3084.2 26.8926 3084.04 Q27.9111 3083.85 28.9296 3083.85 Q34.7166 3083.85 38.0962 3087.02 Q41.4758 3090.19 41.4758 3095.61 Q41.4758 3101.19 38.0036 3104.29 Q34.5314 3107.37 28.212 3107.37 Q26.0361 3107.37 23.7676 3107 Q21.5222 3106.63 19.1148 3105.89 L19.1148 3101.19 Q21.1982 3102.32 23.4204 3102.88 Q25.6426 3103.43 28.1194 3103.43 Q32.124 3103.43 34.462 3101.33 Q36.7999 3099.22 36.7999 3095.61 Q36.7999 3092 34.462 3089.89 Q32.124 3087.79 28.1194 3087.79 Q26.2444 3087.79 24.3694 3088.2 Q22.5176 3088.62 20.5732 3089.5 L20.5732 3072.14 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M60.6887 3075.22 Q57.0776 3075.22 55.2489 3078.78 Q53.4434 3082.32 53.4434 3089.45 Q53.4434 3096.56 55.2489 3100.12 Q57.0776 3103.67 60.6887 3103.67 Q64.3229 3103.67 66.1285 3100.12 Q67.9572 3096.56 67.9572 3089.45 Q67.9572 3082.32 66.1285 3078.78 Q64.3229 3075.22 60.6887 3075.22 M60.6887 3071.51 Q66.4988 3071.51 69.5544 3076.12 Q72.6331 3080.7 72.6331 3089.45 Q72.6331 3098.18 69.5544 3102.79 Q66.4988 3107.37 60.6887 3107.37 Q54.8785 3107.37 51.7998 3102.79 Q48.7443 3098.18 48.7443 3089.45 Q48.7443 3080.7 51.7998 3076.12 Q54.8785 3071.51 60.6887 3071.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-13.7091 2987.93 Q-17.3202 2987.93 -19.1489 2991.49 Q-20.9544 2995.03 -20.9544 3002.16 Q-20.9544 3009.27 -19.1489 3012.84 Q-17.3202 3016.38 -13.7091 3016.38 Q-10.0748 3016.38 -8.26928 3012.84 Q-6.44059 3009.27 -6.44059 3002.16 Q-6.44059 2995.03 -8.26928 2991.49 Q-10.0748 2987.93 -13.7091 2987.93 M-13.7091 2984.22 Q-7.89891 2984.22 -4.84337 2988.83 Q-1.76469 2993.41 -1.76469 3002.16 Q-1.76469 3010.89 -4.84337 3015.5 Q-7.89891 3020.08 -13.7091 3020.08 Q-19.5192 3020.08 -22.5979 3015.5 Q-25.6534 3010.89 -25.6534 3002.16 Q-25.6534 2993.41 -22.5979 2988.83 Q-19.5192 2984.22 -13.7091 2984.22 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M6.45286 3013.53 L11.3371 3013.53 L11.3371 3019.41 L6.45286 3019.41 L6.45286 3013.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M20.3417 2984.85 L42.5638 2984.85 L42.5638 2986.84 L30.0176 3019.41 L25.1333 3019.41 L36.9388 2988.78 L20.3417 2988.78 L20.3417 2984.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M51.7304 2984.85 L70.0868 2984.85 L70.0868 2988.78 L56.0128 2988.78 L56.0128 2997.26 Q57.0313 2996.91 58.0498 2996.75 Q59.0683 2996.56 60.0868 2996.56 Q65.8738 2996.56 69.2535 2999.73 Q72.6331 3002.9 72.6331 3008.32 Q72.6331 3013.9 69.1609 3017 Q65.6887 3020.08 59.3692 3020.08 Q57.1933 3020.08 54.9248 3019.71 Q52.6795 3019.34 50.2721 3018.6 L50.2721 3013.9 Q52.3554 3015.03 54.5776 3015.59 Q56.7998 3016.15 59.2767 3016.15 Q63.2813 3016.15 65.6192 3014.04 Q67.9572 3011.93 67.9572 3008.32 Q67.9572 3004.71 65.6192 3002.6 Q63.2813 3000.5 59.2767 3000.5 Q57.4017 3000.5 55.5267 3000.91 Q53.6748 3001.33 51.7304 3002.21 L51.7304 2984.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-23.8942 2928.19 L-16.2553 2928.19 L-16.2553 2901.82 L-24.5655 2903.49 L-24.5655 2899.23 L-16.3016 2897.56 L-11.6257 2897.56 L-11.6257 2928.19 L-3.9869 2928.19 L-3.9869 2932.12 L-23.8942 2932.12 L-23.8942 2928.19 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M5.4575 2926.24 L10.3417 2926.24 L10.3417 2932.12 L5.4575 2932.12 L5.4575 2926.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M30.5268 2900.64 Q26.9157 2900.64 25.087 2904.2 Q23.2815 2907.75 23.2815 2914.88 Q23.2815 2921.98 25.087 2925.55 Q26.9157 2929.09 30.5268 2929.09 Q34.161 2929.09 35.9666 2925.55 Q37.7953 2921.98 37.7953 2914.88 Q37.7953 2907.75 35.9666 2904.2 Q34.161 2900.64 30.5268 2900.64 M30.5268 2896.94 Q36.337 2896.94 39.3925 2901.54 Q42.4712 2906.13 42.4712 2914.88 Q42.4712 2923.6 39.3925 2928.21 Q36.337 2932.79 30.5268 2932.79 Q24.7167 2932.79 21.638 2928.21 Q18.5824 2923.6 18.5824 2914.88 Q18.5824 2906.13 21.638 2901.54 Q24.7167 2896.94 30.5268 2896.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M60.6887 2900.64 Q57.0776 2900.64 55.2489 2904.2 Q53.4434 2907.75 53.4434 2914.88 Q53.4434 2921.98 55.2489 2925.55 Q57.0776 2929.09 60.6887 2929.09 Q64.3229 2929.09 66.1285 2925.55 Q67.9572 2921.98 67.9572 2914.88 Q67.9572 2907.75 66.1285 2904.2 Q64.3229 2900.64 60.6887 2900.64 M60.6887 2896.94 Q66.4988 2896.94 69.5544 2901.54 Q72.6331 2906.13 72.6331 2914.88 Q72.6331 2923.6 69.5544 2928.21 Q66.4988 2932.79 60.6887 2932.79 Q54.8785 2932.79 51.7998 2928.21 Q48.7443 2923.6 48.7443 2914.88 Q48.7443 2906.13 51.7998 2901.54 Q54.8785 2896.94 60.6887 2896.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip967)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,2914.84 185.863,2922.81 187.58,2945.8 189.297,2981.24 191.014,3025.27 192.731,3073.34 194.449,3120.94 196.166,3164.17 197.883,3200.24 199.6,3227.74 \n",
" 201.317,3246.59 203.034,3257.73 204.751,3261.82 206.468,3260.9 208.185,3260.05 209.902,3259.28 211.62,3258.78 213.337,3258.9 215.054,3259.62 216.771,3260.34 \n",
" 218.488,3259.87 220.205,3258.08 221.922,3256 223.639,3254.4 225.356,3253.77 227.073,3254.31 228.79,3255.86 230.508,3257.73 232.225,3258.64 233.942,3257.94 \n",
" 235.659,3256.84 237.376,3256.34 239.093,3256.53 240.81,3256.7 242.527,3255.93 244.244,3254.32 245.961,3252.81 247.679,3252.23 249.396,3252.97 251.113,3254.98 \n",
" 252.83,3257.82 254.547,3260.46 256.264,3260.66 257.981,3259 259.698,3257.88 261.415,3257.88 263.132,3258.78 264.85,3259.41 266.567,3257.97 268.284,3254.91 \n",
" 270.001,3251.59 271.718,3248.82 273.435,3247.12 275.152,3246.82 276.869,3248.02 278.586,3250.65 280.303,3254.4 282.021,3258.79 283.738,3263.2 285.455,3260.89 \n",
" 287.172,3258.12 288.889,3256.73 290.606,3256.67 292.323,3257.34 294.04,3257.4 295.757,3255.84 297.474,3253.34 299.191,3250.94 300.909,3249.17 302.626,3248.06 \n",
" 304.343,3247.28 306.06,3246.4 307.777,3245.21 309.494,3243.88 311.211,3242.8 312.928,3242.31 314.645,3242.59 316.362,3243.7 318.08,3245.61 319.797,3248.3 \n",
" 321.514,3251.7 323.231,3255.62 324.948,3259.41 326.665,3260.31 328.382,3257.38 330.099,3254.23 331.816,3251.73 333.533,3249.87 335.251,3248.27 336.968,3246.57 \n",
" 338.685,3244.77 340.402,3243.24 342.119,3242.5 343.836,3242.95 345.553,3244.7 347.27,3247.45 348.987,3250.45 350.704,3252.46 352.421,3252.31 354.139,3250.38 \n",
" 355.856,3247.9 357.573,3245.68 359.29,3243.96 361.007,3242.67 362.724,3241.66 364.441,3240.85 366.158,3240.36 367.875,3240.45 369.592,3241.43 371.31,3243.48 \n",
" 373.027,3246.4 374.744,3249.27 376.461,3250.09 378.178,3247.37 379.895,3242.42 381.612,3237.23 383.329,3233.17 385.046,3231.05 386.763,3231.23 388.481,3233.72 \n",
" 390.198,3238.14 391.915,3243.86 393.632,3250.08 395.349,3255.95 397.066,3260.67 398.783,3262.69 400.5,3261.71 402.217,3261.7 403.934,3262.43 405.651,3261.55 \n",
" 407.369,3259.23 409.086,3256.83 410.803,3254.86 412.52,3253.55 414.237,3252.99 415.954,3253.16 417.671,3253.96 419.388,3255.29 421.105,3256.96 422.822,3258.39 \n",
" 424.54,3258.02 426.257,3255.05 427.974,3250.61 429.691,3245.69 431.408,3241.06 433.125,3237.4 434.842,3235.31 436.559,3235.2 438.276,3237.18 439.993,3241.06 \n",
" 441.711,3246.34 443.428,3252.29 445.145,3258.11 446.862,3262.94 448.579,3261.26 450.296,3259.42 452.013,3259.23 453.73,3260.4 455.447,3262.42 457.164,3262.6 \n",
" 458.881,3260.29 460.599,3258.26 462.316,3256.78 464.033,3255.8 465.75,3255.1 467.467,3254.38 469.184,3253.42 470.901,3252.23 472.618,3251.01 474.335,3250.11 \n",
" 476.052,3249.86 477.77,3250.48 479.487,3251.96 481.204,3253.85 482.921,3254.93 484.638,3253.77 486.355,3250.69 488.072,3247.18 489.789,3244.34 491.506,3242.84 \n",
" 493.223,3243.01 494.941,3244.85 496.658,3247.95 498.375,3251.49 500.092,3253.94 501.809,3253.77 503.526,3251.66 505.243,3249.42 506.96,3248.01 508.677,3247.67 \n",
" 510.394,3248.18 512.112,3249.09 513.829,3249.97 515.546,3250.69 517.263,3251.49 518.98,3252.76 520.697,3254.79 522.414,3257.62 524.131,3261.03 525.848,3263.29 \n",
" 527.565,3259.91 529.282,3257.14 531,3255.31 532.717,3254.52 534.434,3254.73 536.151,3255.7 537.868,3257.12 539.585,3258.65 541.302,3259.96 543.019,3260.83 \n",
" 544.736,3261.14 546.453,3260.93 548.171,3260.39 549.888,3259.77 551.605,3259.24 553.322,3258.9 555.039,3258.59 556.756,3257.89 558.473,3256.33 560.19,3253.79 \n",
" 561.907,3250.52 563.624,3246.95 565.342,3243.49 567.059,3240.57 568.776,3238.46 570.493,3237.33 572.21,3237.15 573.927,3237.69 575.644,3238.61 577.361,3239.51 \n",
" 579.078,3240.04 580.795,3240.03 582.512,3239.53 584.23,3238.79 585.947,3238.22 587.664,3238.28 589.381,3239.32 591.098,3241.52 592.815,3244.81 594.532,3248.83 \n",
" 596.249,3253.03 597.966,3256.78 599.683,3259.49 601.401,3260.79 603.118,3260.71 604.835,3259.61 606.552,3258 608.269,3256.47 609.986,3255.66 611.703,3256.01 \n",
" 613.42,3257.66 615.137,3260.23 616.854,3261.61 618.572,3259.12 620.289,3256.38 622.006,3254.72 623.723,3254.36 625.44,3254.73 627.157,3254.29 628.874,3251.87 \n",
" 630.591,3248.25 632.308,3244.95 634.025,3243.07 635.742,3243.21 637.46,3245.42 639.177,3249.17 640.894,3253.32 642.611,3256.11 644.328,3256.34 646.045,3255.66 \n",
" 647.762,3255.96 649.479,3257.63 651.196,3259.84 652.913,3260.12 654.631,3258.28 656.348,3257.03 658.065,3257.49 659.782,3259.81 661.499,3262.8 663.216,3259.09 \n",
" 664.933,3254.48 666.65,3250.87 668.367,3249.03 670.084,3249.34 671.802,3251.77 673.519,3255.93 675.236,3261.04 676.953,3260.87 678.67,3255.92 680.387,3251.96 \n",
" 682.104,3249.54 683.821,3248.87 685.538,3249.98 687.255,3252.7 688.972,3256.7 690.69,3261.08 692.407,3259.35 694.124,3253.74 695.841,3248.15 697.558,3243.24 \n",
" 699.275,3239.49 700.992,3237.2 702.709,3236.5 704.426,3237.25 706.143,3238.96 707.861,3240.79 709.578,3241.8 711.295,3241.49 713.012,3240.2 714.729,3238.79 \n",
" 716.446,3237.97 718.163,3238.03 719.88,3238.85 721.597,3240.13 723.314,3241.52 725.032,3242.94 726.749,3244.52 728.466,3246.53 730.183,3249.09 731.9,3252.14 \n",
" 733.617,3255.39 735.334,3258.45 737.051,3260.93 738.768,3262.49 740.485,3263.08 742.203,3263.22 743.92,3262.57 745.637,3261.12 747.354,3259.27 749.071,3257.31 \n",
" 750.788,3255.53 752.505,3254.18 754.222,3253.5 755.939,3253.66 757.656,3254.7 759.373,3256.43 761.091,3258.18 762.808,3258.4 764.525,3256.28 766.242,3253.11 \n",
" 767.959,3249.94 769.676,3247.28 771.393,3245.42 773.11,3244.5 774.827,3244.47 776.544,3245.13 778.262,3246.17 779.979,3247.2 781.696,3247.85 783.413,3247.87 \n",
" 785.13,3247.19 786.847,3245.94 788.564,3244.37 790.281,3242.85 791.998,3241.69 793.715,3241.12 795.433,3241.23 797.15,3241.94 798.867,3243.13 800.584,3244.68 \n",
" 802.301,3246.51 804.018,3248.58 805.735,3250.78 807.452,3252.96 809.169,3254.85 810.886,3256.09 812.603,3255.95 814.321,3253.91 816.038,3250.34 817.755,3246.16 \n",
" 819.472,3242.35 821.189,3239.82 822.906,3239.29 824.623,3241.15 826.34,3245.31 828.057,3251.2 829.774,3257.53 831.492,3259.55 833.209,3255.27 834.926,3251.75 \n",
" 836.643,3250.49 838.36,3251.59 840.077,3254.59 841.794,3258.39 843.511,3259.79 845.228,3256.61 846.945,3252.64 848.663,3249.01 850.38,3245.8 852.097,3243.04 \n",
" 853.814,3240.99 855.531,3240.1 857.248,3240.73 858.965,3242.95 860.682,3246.34 862.399,3249.79 864.116,3251.72 865.833,3251.37 867.551,3250.06 869.268,3249.47 \n",
" 870.985,3250.4 872.702,3252.85 874.419,3256.35 876.136,3259.87 877.853,3260.81 879.57,3258.63 881.287,3256.51 883.004,3254.99 884.722,3253.78 886.439,3252.56 \n",
" 888.156,3251.33 889.873,3250.48 891.59,3250.49 893.307,3251.74 895.024,3254.36 896.741,3258.26 898.458,3263.08 900.175,3259.59 901.893,3254.35 903.61,3249.7 \n",
" 905.327,3246.09 907.044,3243.86 908.761,3243.24 910.478,3244.31 912.195,3247 913.912,3251.07 915.629,3256.03 917.346,3260.53 919.063,3259.06 920.781,3254.93 \n",
" 922.498,3251.95 924.215,3250.87 925.932,3251.91 927.649,3254.81 929.366,3258.46 931.083,3258.74 932.8,3254.5 934.517,3250.03 936.234,3246.87 937.952,3245.54 \n",
" 939.669,3246.11 941.386,3248.28 943.103,3251.39 944.82,3254.55 946.537,3256.67 948.254,3257.06 949.971,3256.36 951.688,3255.57 953.405,3255.12 955.123,3255.01 \n",
" 956.84,3255.13 958.557,3255.39 960.274,3255.72 961.991,3256.16 963.708,3256.84 965.425,3257.94 967.142,3259.38 968.859,3260.15 970.576,3258.47 972.294,3255.17 \n",
" 974.011,3251.57 975.728,3248.31 977.445,3245.76 979.162,3243.97 980.879,3242.79 982.596,3241.98 984.313,3241.42 986.03,3241.19 987.747,3241.51 989.464,3242.57 \n",
" 991.182,3244.3 992.899,3246.4 994.616,3248.4 996.333,3250.04 998.05,3251.52 999.767,3253.42 1001.48,3256.3 1003.2,3260.29 1004.92,3261.46 1006.64,3255.8 \n",
" 1008.35,3249.68 1010.07,3244.1 1011.79,3239.7 1013.5,3236.98 1015.22,3236.2 1016.94,3237.4 1018.66,3240.36 1020.37,3244.7 1022.09,3249.88 1023.81,3255.28 \n",
" 1025.52,3259.98 1027.24,3260.47 1028.96,3257.32 1030.67,3254.53 1032.39,3252.64 1034.11,3251.65 1035.83,3251.47 1037.54,3251.96 1039.26,3252.99 1040.98,3254.49 \n",
" 1042.69,3256.5 1044.41,3259.18 1046.13,3262.69 1047.85,3260.85 1049.56,3255.56 1051.28,3249.77 1053,3244.03 1054.71,3238.99 1056.43,3235.29 1058.15,3233.4 \n",
" 1059.87,3233.48 1061.58,3235.34 1063.3,3238.38 1065.02,3241.76 1066.73,3244.66 1068.45,3246.79 1070.17,3248.54 1071.89,3250.66 1073.6,3253.63 1075.32,3257.42 \n",
" 1077.04,3261.37 1078.75,3261.05 1080.47,3257.66 1082.19,3255.05 1083.9,3253.66 1085.62,3253.55 1087.34,3254.6 1089.06,3256.58 1090.77,3258.8 1092.49,3259.16 \n",
" 1094.21,3256.35 1095.92,3252.45 1097.64,3248.79 1099.36,3246.02 1101.08,3244.5 1102.79,3244.31 1104.51,3245.22 1106.23,3246.78 1107.94,3248.43 1109.66,3249.73 \n",
" 1111.38,3250.54 1113.1,3251.02 1114.81,3251.49 1116.53,3252.23 1118.25,3253.41 1119.96,3255.13 1121.68,3257.34 1123.4,3259.67 1125.12,3260.57 1126.83,3258.71 \n",
" 1128.55,3256 1130.27,3253.54 1131.98,3251.66 1133.7,3250.44 1135.42,3249.83 1137.13,3249.76 1138.85,3250.24 1140.57,3251.33 1142.29,3253.16 1144,3255.8 \n",
" 1145.72,3259.11 1147.44,3261.95 1149.15,3259.42 1150.87,3255.32 1152.59,3251.58 1154.31,3248.65 1156.02,3246.76 1157.74,3245.92 1159.46,3245.99 1161.17,3246.73 \n",
" 1162.89,3248.01 1164.61,3249.84 1166.33,3252.35 1168.04,3255.65 1169.76,3259.34 1171.48,3259.81 1173.19,3255.1 1174.91,3249.42 1176.63,3243.95 1178.35,3239.24 \n",
" 1180.06,3235.64 1181.78,3233.37 1183.5,3232.5 1185.21,3232.96 1186.93,3234.49 1188.65,3236.74 1190.36,3239.22 1192.08,3241.49 1193.8,3243.27 1195.52,3244.55 \n",
" 1197.23,3245.55 1198.95,3246.49 1200.67,3247.45 1202.38,3248.36 1204.1,3249.04 1205.82,3249.35 1207.54,3249.29 1209.25,3248.96 1210.97,3248.61 1212.69,3248.54 \n",
" 1214.4,3249.05 1216.12,3250.36 1217.84,3252.58 1219.56,3255.63 1221.27,3259.29 1222.99,3262.89 1224.71,3260.59 1226.42,3257.17 1228.14,3254.36 1229.86,3252.31 \n",
" 1231.58,3251.01 1233.29,3250.35 1235.01,3250.16 1236.73,3250.3 1238.44,3250.64 1240.16,3251.13 1241.88,3251.71 1243.59,3252.36 1245.31,3253.05 1247.03,3253.75 \n",
" 1248.75,3254.42 1250.46,3255.04 1252.18,3255.64 1253.9,3256.3 1255.61,3257.15 1257.33,3258.36 1259.05,3260.07 1260.77,3262.2 1262.48,3262.27 1264.2,3259.44 \n",
" 1265.92,3256.53 1267.63,3254.17 1269.35,3252.82 1271.07,3252.78 1272.79,3254.11 1274.5,3256.49 1276.22,3258.94 1277.94,3259.4 1279.65,3257.75 1281.37,3256.38 \n",
" 1283.09,3256.34 1284.81,3257.46 1286.52,3257.68 1288.24,3254.52 1289.96,3249.41 1291.67,3244.34 1293.39,3240.53 1295.11,3238.73 1296.82,3239.24 1298.54,3241.88 \n",
" 1300.26,3245.95 1301.98,3250.22 1303.69,3252.83 1305.41,3252.55 1307.13,3250.7 1308.84,3249.17 1310.56,3248.81 1312.28,3249.83 1314,3252.14 1315.71,3255.51 \n",
" 1317.43,3259.51 1319.15,3261.3 1320.86,3257.12 1322.58,3252.13 1324.3,3247.42 1326.02,3243.35 1327.73,3240.18 1329.45,3238.13 1331.17,3237.42 1332.88,3238.3 \n",
" 1334.6,3240.9 1336.32,3245.13 1338.04,3250.41 1339.75,3254.92 1341.47,3254.64 1343.19,3250.24 1344.9,3245.83 1346.62,3243.16 1348.34,3242.83 1350.05,3244.9 \n",
" 1351.77,3249.02 1353.49,3254.58 1355.21,3260.82 1356.92,3260.61 1358.64,3254.81 1360.36,3249.89 1362.07,3246.14 1363.79,3243.71 1365.51,3242.61 1367.23,3242.73 \n",
" 1368.94,3243.87 1370.66,3245.74 1372.38,3248.02 1374.09,3250.45 1375.81,3252.92 1377.53,3255.46 1379.25,3258.12 1380.96,3260.59 1382.68,3261.02 1384.4,3258.84 \n",
" 1386.11,3256.44 1387.83,3254.74 1389.55,3254.08 1391.27,3254.55 1392.98,3255.96 1394.7,3257.93 1396.42,3259.96 1398.13,3261.5 1399.85,3262.15 1401.57,3261.68 \n",
" 1403.28,3260.15 1405,3257.88 1406.72,3255.37 1408.44,3253.21 1410.15,3251.92 1411.87,3251.86 1413.59,3253.11 1415.3,3255.43 1417.02,3258.16 1418.74,3259.72 \n",
" 1420.46,3258.64 1422.17,3256.71 1423.89,3255.35 1425.61,3254.86 1427.32,3254.93 1429.04,3254.94 1430.76,3254.48 1432.48,3253.83 1434.19,3253.78 1435.91,3255.04 \n",
" 1437.63,3257.9 1439.34,3261.42 1441.06,3258.41 1442.78,3252.37 1444.5,3246.69 1446.21,3242.48 1447.93,3240.45 1449.65,3240.87 1451.36,3243.41 1453.08,3247.11 \n",
" 1454.8,3250.44 1456.51,3251.84 1458.23,3251.27 1459.95,3250.11 1461.67,3249 1463.38,3247.62 1465.1,3245.53 1466.82,3243.07 1468.53,3241.15 1470.25,3240.61 \n",
" 1471.97,3241.85 1473.69,3244.7 1475.4,3248.48 1477.12,3252.18 1478.84,3254.83 1480.55,3256.16 1482.27,3256.88 1483.99,3257.53 1485.71,3257.62 1487.42,3256.44 \n",
" 1489.14,3254.4 1490.86,3252.42 1492.57,3251.13 1494.29,3250.8 1496.01,3251.46 1497.73,3253.02 1499.44,3255.36 1501.16,3258.32 1502.88,3261.37 1504.59,3260.37 \n",
" 1506.31,3255.96 1508.03,3251.01 1509.74,3246.08 1511.46,3241.57 1513.18,3237.82 1514.9,3235.03 1516.61,3233.23 1518.33,3232.32 1520.05,3232.11 1521.76,3232.48 \n",
" 1523.48,3233.44 1525.2,3235.11 1526.92,3237.51 1528.63,3240.38 1530.35,3242.97 1532.07,3244.17 1533.78,3243.27 1535.5,3240.8 1537.22,3237.96 1538.94,3235.76 \n",
" 1540.65,3234.73 1542.37,3235 1544.09,3236.44 1545.8,3238.71 1547.52,3241.42 1549.24,3244.13 1550.96,3246.54 1552.67,3248.49 1554.39,3250.12 1556.11,3251.74 \n",
" 1557.82,3253.67 1559.54,3255.99 1561.26,3258.13 1562.97,3258.16 1564.69,3255.38 1566.41,3251.65 1568.13,3248.19 1569.84,3245.66 1571.56,3244.44 1573.28,3244.63 \n",
" 1574.99,3246.09 1576.71,3248.42 1578.43,3250.92 1580.15,3252.64 1581.86,3252.82 1583.58,3251.62 1585.3,3249.92 1587.01,3248.49 1588.73,3247.77 1590.45,3247.99 \n",
" 1592.17,3249.26 1593.88,3251.53 1595.6,3254.6 1597.32,3258.11 1599.03,3261.28 1600.75,3261.12 1602.47,3258.6 1604.19,3256.4 1605.9,3254.82 1607.62,3253.72 \n",
" 1609.34,3252.87 1611.05,3252.05 1612.77,3251.15 1614.49,3250.19 1616.2,3249.22 1617.92,3248.24 1619.64,3247.17 1621.36,3245.87 1623.07,3244.23 1624.79,3242.3 \n",
" 1626.51,3240.31 1628.22,3238.57 1629.94,3237.42 1631.66,3237.07 1633.38,3237.56 1635.09,3238.81 1636.81,3240.57 1638.53,3242.58 1640.24,3244.6 1641.96,3246.44 \n",
" 1643.68,3247.97 1645.4,3249.13 1647.11,3250 1648.83,3250.77 1650.55,3251.68 1652.26,3252.92 1653.98,3254.48 1655.7,3256.08 1657.42,3257.16 1659.13,3257.28 \n",
" 1660.85,3256.7 1662.57,3256.06 1664.28,3255.75 1666,3255.77 1667.72,3255.8 1669.43,3255.36 1671.15,3254.18 1672.87,3252.41 1674.59,3250.46 1676.3,3248.76 \n",
" 1678.02,3247.68 1679.74,3247.5 1681.45,3248.41 1683.17,3250.46 1684.89,3253.48 1686.61,3257 1688.32,3259.54 1690.04,3258.34 1691.76,3255.24 1693.47,3252.52 \n",
" 1695.19,3250.92 1696.91,3250.66 1698.63,3251.63 1700.34,3253.26 1702.06,3254.36 1703.78,3253.52 1705.49,3250.84 1707.21,3247.6 1708.93,3244.81 1710.65,3242.99 \n",
" 1712.36,3242.29 1714.08,3242.52 1715.8,3243.35 1717.51,3244.48 1719.23,3245.88 1720.95,3247.83 1722.66,3250.77 1724.38,3254.99 1726.1,3260.43 1727.82,3261.1 \n",
" 1729.53,3254.66 1731.25,3248.79 1732.97,3244.25 1734.68,3241.49 1736.4,3240.52 1738.12,3240.77 1739.84,3241.21 1741.55,3240.8 1743.27,3239.27 1744.99,3237.28 \n",
" 1746.7,3235.83 1748.42,3235.59 1750.14,3236.75 1751.86,3239.04 1753.57,3241.94 1755.29,3244.87 1757.01,3247.36 1758.72,3249.09 1760.44,3249.8 1762.16,3249.32 \n",
" 1763.88,3247.89 1765.59,3246.17 1767.31,3244.93 1769.03,3244.75 1770.74,3245.84 1772.46,3248.06 1774.18,3250.87 1775.89,3253.48 1777.61,3255.11 1779.33,3255.72 \n",
" 1781.05,3256.12 1782.76,3257.08 1784.48,3258.84 1786.2,3260.86 1787.91,3260.57 1789.63,3257.66 1791.35,3254.39 1793.07,3251.52 1794.78,3249.39 1796.5,3248.17 \n",
" 1798.22,3247.96 1799.93,3248.74 1801.65,3250.42 1803.37,3252.86 1805.09,3255.83 1806.8,3258.95 1808.52,3260.97 1810.24,3259.52 1811.95,3256.68 1813.67,3254.02 \n",
" 1815.39,3251.82 1817.11,3250.11 1818.82,3248.73 1820.54,3247.47 1822.26,3246.15 1823.97,3244.72 1825.69,3243.26 1827.41,3241.92 1829.12,3240.86 1830.84,3240.13 \n",
" 1832.56,3239.71 1834.28,3239.5 1835.99,3239.35 1837.71,3239.19 1839.43,3239.01 1841.14,3238.9 1842.86,3239 1844.58,3239.45 1846.3,3240.4 1848.01,3242.01 \n",
" 1849.73,3244.36 1851.45,3247.44 1853.16,3251.05 1854.88,3254.79 1856.6,3258 1858.32,3259.82 1860.03,3260.23 1861.75,3260.61 1863.47,3261.86 1865.18,3262.87 \n",
" 1866.9,3260.35 1868.62,3257.31 1870.34,3254.71 1872.05,3252.98 1873.77,3252.27 1875.49,3252.4 1877.2,3252.97 1878.92,3253.57 1880.64,3254.04 1882.35,3254.52 \n",
" 1884.07,3255.08 1885.79,3255.32 1887.51,3254.5 1889.22,3252.5 1890.94,3250.1 1892.66,3248.21 1894.37,3247.47 1896.09,3248.09 1897.81,3249.8 1899.53,3251.62 \n",
" 1901.24,3251.91 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"\n",
"M1656.25 3020.38 L1892.09 3020.38 L1892.09 2916.7 L1656.25 2916.7 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1656.25,3020.38 1892.09,3020.38 1892.09,2916.7 1656.25,2916.7 1656.25,3020.38 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1676.48,2968.54 1797.82,2968.54 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"M1831.88 2988.23 Q1830.08 2992.86 1828.37 2994.27 Q1826.65 2995.68 1823.78 2995.68 L1820.38 2995.68 L1820.38 2992.11 L1822.88 2992.11 Q1824.64 2992.11 1825.61 2991.28 Q1826.58 2990.45 1827.76 2987.35 L1828.53 2985.4 L1818.04 2959.89 L1822.56 2959.89 L1830.66 2980.17 L1838.76 2959.89 L1843.27 2959.89 L1831.88 2988.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1860.33 2966.68 Q1857.19 2966.68 1855.33 2968.83 Q1853.51 2970.98 1853.51 2974.73 Q1853.51 2978.46 1855.33 2980.63 Q1857.19 2982.79 1860.33 2982.79 Q1863.48 2982.79 1865.31 2980.63 Q1867.16 2978.46 1867.16 2974.73 Q1867.16 2970.98 1865.31 2968.83 Q1863.48 2966.68 1860.33 2966.68 M1869.62 2952.02 L1869.62 2956.28 Q1867.86 2955.45 1866.05 2955.01 Q1864.27 2954.57 1862.51 2954.57 Q1857.88 2954.57 1855.43 2957.69 Q1853 2960.82 1852.65 2967.14 Q1854.01 2965.12 1856.07 2964.06 Q1858.13 2962.97 1860.61 2962.97 Q1865.82 2962.97 1868.83 2966.14 Q1871.86 2969.29 1871.86 2974.73 Q1871.86 2980.05 1868.71 2983.27 Q1865.57 2986.49 1860.33 2986.49 Q1854.34 2986.49 1851.17 2981.91 Q1848 2977.3 1848 2968.57 Q1848 2960.38 1851.88 2955.52 Q1855.77 2950.63 1862.32 2950.63 Q1864.08 2950.63 1865.87 2950.98 Q1867.67 2951.33 1869.62 2952.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"\n",
"M132.633 3845.17 L1952.76 3845.17 L1952.76 3475.82 L132.633 3475.82 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip968\">\n",
" <rect x=\"132\" y=\"3475\" width=\"1821\" height=\"370\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip968)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 184.146,3845.17 184.146,3475.82 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip968)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 613.42,3845.17 613.42,3475.82 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip968)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1042.69,3845.17 1042.69,3475.82 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip968)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1471.97,3845.17 1471.97,3475.82 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip968)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1901.24,3845.17 1901.24,3475.82 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,3845.17 1952.76,3845.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,3845.17 184.146,3826.27 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 613.42,3845.17 613.42,3826.27 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1042.69,3845.17 1042.69,3826.27 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1471.97,3845.17 1471.97,3826.27 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1901.24,3845.17 1901.24,3826.27 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"M184.146 3888.89 Q180.535 3888.89 178.706 3892.45 Q176.901 3895.99 176.901 3903.12 Q176.901 3910.23 178.706 3913.79 Q180.535 3917.34 184.146 3917.34 Q187.78 3917.34 189.586 3913.79 Q191.414 3910.23 191.414 3903.12 Q191.414 3895.99 189.586 3892.45 Q187.78 3888.89 184.146 3888.89 M184.146 3885.18 Q189.956 3885.18 193.012 3889.79 Q196.09 3894.37 196.09 3903.12 Q196.09 3911.85 193.012 3916.46 Q189.956 3921.04 184.146 3921.04 Q178.336 3921.04 175.257 3916.46 Q172.202 3911.85 172.202 3903.12 Q172.202 3894.37 175.257 3889.79 Q178.336 3885.18 184.146 3885.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M592.691 3916.43 L609.011 3916.43 L609.011 3920.37 L587.066 3920.37 L587.066 3916.43 Q589.728 3913.68 594.312 3909.05 Q598.918 3904.4 600.099 3903.05 Q602.344 3900.53 603.224 3898.79 Q604.126 3897.03 604.126 3895.34 Q604.126 3892.59 602.182 3890.85 Q600.261 3889.12 597.159 3889.12 Q594.96 3889.12 592.506 3889.88 Q590.075 3890.65 587.298 3892.2 L587.298 3887.47 Q590.122 3886.34 592.575 3885.76 Q595.029 3885.18 597.066 3885.18 Q602.436 3885.18 605.631 3887.87 Q608.825 3890.55 608.825 3895.04 Q608.825 3897.17 608.015 3899.09 Q607.228 3900.99 605.122 3903.59 Q604.543 3904.26 601.441 3907.47 Q598.339 3910.67 592.691 3916.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M618.872 3885.81 L637.228 3885.81 L637.228 3889.74 L623.154 3889.74 L623.154 3898.22 Q624.172 3897.87 625.191 3897.71 Q626.21 3897.52 627.228 3897.52 Q633.015 3897.52 636.395 3900.69 Q639.774 3903.86 639.774 3909.28 Q639.774 3914.86 636.302 3917.96 Q632.83 3921.04 626.51 3921.04 Q624.335 3921.04 622.066 3920.67 Q619.821 3920.3 617.413 3919.56 L617.413 3914.86 Q619.497 3915.99 621.719 3916.55 Q623.941 3917.1 626.418 3917.1 Q630.422 3917.1 632.76 3915 Q635.098 3912.89 635.098 3909.28 Q635.098 3905.67 632.76 3903.56 Q630.422 3901.46 626.418 3901.46 Q624.543 3901.46 622.668 3901.87 Q620.816 3902.29 618.872 3903.17 L618.872 3885.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1017.39 3885.81 L1035.75 3885.81 L1035.75 3889.74 L1021.68 3889.74 L1021.68 3898.22 Q1022.69 3897.87 1023.71 3897.71 Q1024.73 3897.52 1025.75 3897.52 Q1031.54 3897.52 1034.92 3900.69 Q1038.3 3903.86 1038.3 3909.28 Q1038.3 3914.86 1034.82 3917.96 Q1031.35 3921.04 1025.03 3921.04 Q1022.86 3921.04 1020.59 3920.67 Q1018.34 3920.3 1015.94 3919.56 L1015.94 3914.86 Q1018.02 3915.99 1020.24 3916.55 Q1022.46 3917.1 1024.94 3917.1 Q1028.94 3917.1 1031.28 3915 Q1033.62 3912.89 1033.62 3909.28 Q1033.62 3905.67 1031.28 3903.56 Q1028.94 3901.46 1024.94 3901.46 Q1023.06 3901.46 1021.19 3901.87 Q1019.34 3902.29 1017.39 3903.17 L1017.39 3885.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1057.51 3888.89 Q1053.9 3888.89 1052.07 3892.45 Q1050.26 3895.99 1050.26 3903.12 Q1050.26 3910.23 1052.07 3913.79 Q1053.9 3917.34 1057.51 3917.34 Q1061.14 3917.34 1062.95 3913.79 Q1064.78 3910.23 1064.78 3903.12 Q1064.78 3895.99 1062.95 3892.45 Q1061.14 3888.89 1057.51 3888.89 M1057.51 3885.18 Q1063.32 3885.18 1066.37 3889.79 Q1069.45 3894.37 1069.45 3903.12 Q1069.45 3911.85 1066.37 3916.46 Q1063.32 3921.04 1057.51 3921.04 Q1051.7 3921.04 1048.62 3916.46 Q1045.56 3911.85 1045.56 3903.12 Q1045.56 3894.37 1048.62 3889.79 Q1051.7 3885.18 1057.51 3885.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1445.82 3885.81 L1468.05 3885.81 L1468.05 3887.8 L1455.5 3920.37 L1450.61 3920.37 L1462.42 3889.74 L1445.82 3889.74 L1445.82 3885.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1477.21 3885.81 L1495.57 3885.81 L1495.57 3889.74 L1481.49 3889.74 L1481.49 3898.22 Q1482.51 3897.87 1483.53 3897.71 Q1484.55 3897.52 1485.57 3897.52 Q1491.36 3897.52 1494.73 3900.69 Q1498.11 3903.86 1498.11 3909.28 Q1498.11 3914.86 1494.64 3917.96 Q1491.17 3921.04 1484.85 3921.04 Q1482.67 3921.04 1480.41 3920.67 Q1478.16 3920.3 1475.75 3919.56 L1475.75 3914.86 Q1477.84 3915.99 1480.06 3916.55 Q1482.28 3917.1 1484.76 3917.1 Q1488.76 3917.1 1491.1 3915 Q1493.44 3912.89 1493.44 3909.28 Q1493.44 3905.67 1491.1 3903.56 Q1488.76 3901.46 1484.76 3901.46 Q1482.88 3901.46 1481.01 3901.87 Q1479.16 3902.29 1477.21 3903.17 L1477.21 3885.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1860.85 3916.43 L1868.49 3916.43 L1868.49 3890.07 L1860.18 3891.73 L1860.18 3887.47 L1868.44 3885.81 L1873.12 3885.81 L1873.12 3916.43 L1880.76 3916.43 L1880.76 3920.37 L1860.85 3920.37 L1860.85 3916.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1900.2 3888.89 Q1896.59 3888.89 1894.76 3892.45 Q1892.96 3895.99 1892.96 3903.12 Q1892.96 3910.23 1894.76 3913.79 Q1896.59 3917.34 1900.2 3917.34 Q1903.84 3917.34 1905.64 3913.79 Q1907.47 3910.23 1907.47 3903.12 Q1907.47 3895.99 1905.64 3892.45 Q1903.84 3888.89 1900.2 3888.89 M1900.2 3885.18 Q1906.01 3885.18 1909.07 3889.79 Q1912.15 3894.37 1912.15 3903.12 Q1912.15 3911.85 1909.07 3916.46 Q1906.01 3921.04 1900.2 3921.04 Q1894.39 3921.04 1891.31 3916.46 Q1888.26 3911.85 1888.26 3903.12 Q1888.26 3894.37 1891.31 3889.79 Q1894.39 3885.18 1900.2 3885.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1930.36 3888.89 Q1926.75 3888.89 1924.92 3892.45 Q1923.12 3895.99 1923.12 3903.12 Q1923.12 3910.23 1924.92 3913.79 Q1926.75 3917.34 1930.36 3917.34 Q1934 3917.34 1935.8 3913.79 Q1937.63 3910.23 1937.63 3903.12 Q1937.63 3895.99 1935.8 3892.45 Q1934 3888.89 1930.36 3888.89 M1930.36 3885.18 Q1936.17 3885.18 1939.23 3889.79 Q1942.31 3894.37 1942.31 3903.12 Q1942.31 3911.85 1939.23 3916.46 Q1936.17 3921.04 1930.36 3921.04 Q1924.55 3921.04 1921.47 3916.46 Q1918.42 3911.85 1918.42 3903.12 Q1918.42 3894.37 1921.47 3889.79 Q1924.55 3885.18 1930.36 3885.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip968)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,3835.29 1952.76,3835.29 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip968)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,3748.03 1952.76,3748.03 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip968)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,3660.78 1952.76,3660.78 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip968)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,3573.52 1952.76,3573.52 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip968)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,3486.27 1952.76,3486.27 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,3845.17 132.633,3475.82 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,3835.29 151.531,3835.29 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,3748.03 151.531,3748.03 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,3660.78 151.531,3660.78 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,3573.52 151.531,3573.52 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,3486.27 151.531,3486.27 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"M-14.7044 3821.08 Q-18.3155 3821.08 -20.1442 3824.65 Q-21.9498 3828.19 -21.9498 3835.32 Q-21.9498 3842.43 -20.1442 3845.99 Q-18.3155 3849.53 -14.7044 3849.53 Q-11.0702 3849.53 -9.26465 3845.99 Q-7.43595 3842.43 -7.43595 3835.32 Q-7.43595 3828.19 -9.26465 3824.65 Q-11.0702 3821.08 -14.7044 3821.08 M-14.7044 3817.38 Q-8.89428 3817.38 -5.83874 3821.99 Q-2.76005 3826.57 -2.76005 3835.32 Q-2.76005 3844.05 -5.83874 3848.65 Q-8.89428 3853.24 -14.7044 3853.24 Q-20.5146 3853.24 -23.5933 3848.65 Q-26.6488 3844.05 -26.6488 3835.32 Q-26.6488 3826.57 -23.5933 3821.99 Q-20.5146 3817.38 -14.7044 3817.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M5.4575 3846.69 L10.3417 3846.69 L10.3417 3852.57 L5.4575 3852.57 L5.4575 3846.69 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M30.5268 3821.08 Q26.9157 3821.08 25.087 3824.65 Q23.2815 3828.19 23.2815 3835.32 Q23.2815 3842.43 25.087 3845.99 Q26.9157 3849.53 30.5268 3849.53 Q34.161 3849.53 35.9666 3845.99 Q37.7953 3842.43 37.7953 3835.32 Q37.7953 3828.19 35.9666 3824.65 Q34.161 3821.08 30.5268 3821.08 M30.5268 3817.38 Q36.337 3817.38 39.3925 3821.99 Q42.4712 3826.57 42.4712 3835.32 Q42.4712 3844.05 39.3925 3848.65 Q36.337 3853.24 30.5268 3853.24 Q24.7167 3853.24 21.638 3848.65 Q18.5824 3844.05 18.5824 3835.32 Q18.5824 3826.57 21.638 3821.99 Q24.7167 3817.38 30.5268 3817.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M60.6887 3821.08 Q57.0776 3821.08 55.2489 3824.65 Q53.4434 3828.19 53.4434 3835.32 Q53.4434 3842.43 55.2489 3845.99 Q57.0776 3849.53 60.6887 3849.53 Q64.3229 3849.53 66.1285 3845.99 Q67.9572 3842.43 67.9572 3835.32 Q67.9572 3828.19 66.1285 3824.65 Q64.3229 3821.08 60.6887 3821.08 M60.6887 3817.38 Q66.4988 3817.38 69.5544 3821.99 Q72.6331 3826.57 72.6331 3835.32 Q72.6331 3844.05 69.5544 3848.65 Q66.4988 3853.24 60.6887 3853.24 Q54.8785 3853.24 51.7998 3848.65 Q48.7443 3844.05 48.7443 3835.32 Q48.7443 3826.57 51.7998 3821.99 Q54.8785 3817.38 60.6887 3817.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-13.7091 3733.83 Q-17.3202 3733.83 -19.1489 3737.4 Q-20.9544 3740.94 -20.9544 3748.07 Q-20.9544 3755.17 -19.1489 3758.74 Q-17.3202 3762.28 -13.7091 3762.28 Q-10.0748 3762.28 -8.26928 3758.74 Q-6.44059 3755.17 -6.44059 3748.07 Q-6.44059 3740.94 -8.26928 3737.4 Q-10.0748 3733.83 -13.7091 3733.83 M-13.7091 3730.13 Q-7.89891 3730.13 -4.84337 3734.73 Q-1.76469 3739.32 -1.76469 3748.07 Q-1.76469 3756.79 -4.84337 3761.4 Q-7.89891 3765.98 -13.7091 3765.98 Q-19.5192 3765.98 -22.5979 3761.4 Q-25.6534 3756.79 -25.6534 3748.07 Q-25.6534 3739.32 -22.5979 3734.73 Q-19.5192 3730.13 -13.7091 3730.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M6.45286 3759.43 L11.3371 3759.43 L11.3371 3765.31 L6.45286 3765.31 L6.45286 3759.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M25.55 3761.38 L41.8693 3761.38 L41.8693 3765.31 L19.925 3765.31 L19.925 3761.38 Q22.587 3758.62 27.1703 3753.99 Q31.7768 3749.34 32.9574 3748 Q35.2027 3745.47 36.0823 3743.74 Q36.9851 3741.98 36.9851 3740.29 Q36.9851 3737.53 35.0407 3735.8 Q33.1194 3734.06 30.0176 3734.06 Q27.8185 3734.06 25.3648 3734.83 Q22.9343 3735.59 20.1565 3737.14 L20.1565 3732.42 Q22.9806 3731.28 25.4342 3730.71 Q27.8879 3730.13 29.925 3730.13 Q35.2953 3730.13 38.4897 3732.81 Q41.6842 3735.5 41.6842 3739.99 Q41.6842 3742.12 40.874 3744.04 Q40.0869 3745.94 37.9805 3748.53 Q37.4018 3749.2 34.2999 3752.42 Q31.1981 3755.61 25.55 3761.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M51.7304 3730.75 L70.0868 3730.75 L70.0868 3734.69 L56.0128 3734.69 L56.0128 3743.16 Q57.0313 3742.81 58.0498 3742.65 Q59.0683 3742.46 60.0868 3742.46 Q65.8738 3742.46 69.2535 3745.64 Q72.6331 3748.81 72.6331 3754.22 Q72.6331 3759.8 69.1609 3762.9 Q65.6887 3765.98 59.3692 3765.98 Q57.1933 3765.98 54.9248 3765.61 Q52.6795 3765.24 50.2721 3764.5 L50.2721 3759.8 Q52.3554 3760.94 54.5776 3761.49 Q56.7998 3762.05 59.2767 3762.05 Q63.2813 3762.05 65.6192 3759.94 Q67.9572 3757.83 67.9572 3754.22 Q67.9572 3750.61 65.6192 3748.51 Q63.2813 3746.4 59.2767 3746.4 Q57.4017 3746.4 55.5267 3746.82 Q53.6748 3747.23 51.7304 3748.11 L51.7304 3730.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-14.7044 3646.58 Q-18.3155 3646.58 -20.1442 3650.14 Q-21.9498 3653.68 -21.9498 3660.81 Q-21.9498 3667.92 -20.1442 3671.48 Q-18.3155 3675.02 -14.7044 3675.02 Q-11.0702 3675.02 -9.26465 3671.48 Q-7.43595 3667.92 -7.43595 3660.81 Q-7.43595 3653.68 -9.26465 3650.14 Q-11.0702 3646.58 -14.7044 3646.58 M-14.7044 3642.87 Q-8.89428 3642.87 -5.83874 3647.48 Q-2.76005 3652.06 -2.76005 3660.81 Q-2.76005 3669.54 -5.83874 3674.15 Q-8.89428 3678.73 -14.7044 3678.73 Q-20.5146 3678.73 -23.5933 3674.15 Q-26.6488 3669.54 -26.6488 3660.81 Q-26.6488 3652.06 -23.5933 3647.48 Q-20.5146 3642.87 -14.7044 3642.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M5.4575 3672.18 L10.3417 3672.18 L10.3417 3678.06 L5.4575 3678.06 L5.4575 3672.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M20.5732 3643.5 L38.9295 3643.5 L38.9295 3647.43 L24.8555 3647.43 L24.8555 3655.9 Q25.8741 3655.56 26.8926 3655.4 Q27.9111 3655.21 28.9296 3655.21 Q34.7166 3655.21 38.0962 3658.38 Q41.4758 3661.55 41.4758 3666.97 Q41.4758 3672.55 38.0036 3675.65 Q34.5314 3678.73 28.212 3678.73 Q26.0361 3678.73 23.7676 3678.36 Q21.5222 3677.99 19.1148 3677.25 L19.1148 3672.55 Q21.1982 3673.68 23.4204 3674.24 Q25.6426 3674.79 28.1194 3674.79 Q32.124 3674.79 34.462 3672.69 Q36.7999 3670.58 36.7999 3666.97 Q36.7999 3663.36 34.462 3661.25 Q32.124 3659.15 28.1194 3659.15 Q26.2444 3659.15 24.3694 3659.56 Q22.5176 3659.98 20.5732 3660.86 L20.5732 3643.5 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M60.6887 3646.58 Q57.0776 3646.58 55.2489 3650.14 Q53.4434 3653.68 53.4434 3660.81 Q53.4434 3667.92 55.2489 3671.48 Q57.0776 3675.02 60.6887 3675.02 Q64.3229 3675.02 66.1285 3671.48 Q67.9572 3667.92 67.9572 3660.81 Q67.9572 3653.68 66.1285 3650.14 Q64.3229 3646.58 60.6887 3646.58 M60.6887 3642.87 Q66.4988 3642.87 69.5544 3647.48 Q72.6331 3652.06 72.6331 3660.81 Q72.6331 3669.54 69.5544 3674.15 Q66.4988 3678.73 60.6887 3678.73 Q54.8785 3678.73 51.7998 3674.15 Q48.7443 3669.54 48.7443 3660.81 Q48.7443 3652.06 51.7998 3647.48 Q54.8785 3642.87 60.6887 3642.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-13.7091 3559.32 Q-17.3202 3559.32 -19.1489 3562.89 Q-20.9544 3566.43 -20.9544 3573.56 Q-20.9544 3580.66 -19.1489 3584.23 Q-17.3202 3587.77 -13.7091 3587.77 Q-10.0748 3587.77 -8.26928 3584.23 Q-6.44059 3580.66 -6.44059 3573.56 Q-6.44059 3566.43 -8.26928 3562.89 Q-10.0748 3559.32 -13.7091 3559.32 M-13.7091 3555.62 Q-7.89891 3555.62 -4.84337 3560.22 Q-1.76469 3564.81 -1.76469 3573.56 Q-1.76469 3582.28 -4.84337 3586.89 Q-7.89891 3591.47 -13.7091 3591.47 Q-19.5192 3591.47 -22.5979 3586.89 Q-25.6534 3582.28 -25.6534 3573.56 Q-25.6534 3564.81 -22.5979 3560.22 Q-19.5192 3555.62 -13.7091 3555.62 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M6.45286 3584.92 L11.3371 3584.92 L11.3371 3590.8 L6.45286 3590.8 L6.45286 3584.92 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M20.3417 3556.24 L42.5638 3556.24 L42.5638 3558.23 L30.0176 3590.8 L25.1333 3590.8 L36.9388 3560.18 L20.3417 3560.18 L20.3417 3556.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M51.7304 3556.24 L70.0868 3556.24 L70.0868 3560.18 L56.0128 3560.18 L56.0128 3568.65 Q57.0313 3568.3 58.0498 3568.14 Q59.0683 3567.96 60.0868 3567.96 Q65.8738 3567.96 69.2535 3571.13 Q72.6331 3574.3 72.6331 3579.72 Q72.6331 3585.29 69.1609 3588.4 Q65.6887 3591.47 59.3692 3591.47 Q57.1933 3591.47 54.9248 3591.1 Q52.6795 3590.73 50.2721 3589.99 L50.2721 3585.29 Q52.3554 3586.43 54.5776 3586.98 Q56.7998 3587.54 59.2767 3587.54 Q63.2813 3587.54 65.6192 3585.43 Q67.9572 3583.33 67.9572 3579.72 Q67.9572 3576.1 65.6192 3574 Q63.2813 3571.89 59.2767 3571.89 Q57.4017 3571.89 55.5267 3572.31 Q53.6748 3572.72 51.7304 3573.6 L51.7304 3556.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M-23.8942 3499.61 L-16.2553 3499.61 L-16.2553 3473.25 L-24.5655 3474.91 L-24.5655 3470.66 L-16.3016 3468.99 L-11.6257 3468.99 L-11.6257 3499.61 L-3.9869 3499.61 L-3.9869 3503.55 L-23.8942 3503.55 L-23.8942 3499.61 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M5.4575 3497.67 L10.3417 3497.67 L10.3417 3503.55 L5.4575 3503.55 L5.4575 3497.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M30.5268 3472.07 Q26.9157 3472.07 25.087 3475.63 Q23.2815 3479.17 23.2815 3486.3 Q23.2815 3493.41 25.087 3496.97 Q26.9157 3500.52 30.5268 3500.52 Q34.161 3500.52 35.9666 3496.97 Q37.7953 3493.41 37.7953 3486.3 Q37.7953 3479.17 35.9666 3475.63 Q34.161 3472.07 30.5268 3472.07 M30.5268 3468.36 Q36.337 3468.36 39.3925 3472.97 Q42.4712 3477.55 42.4712 3486.3 Q42.4712 3495.03 39.3925 3499.64 Q36.337 3504.22 30.5268 3504.22 Q24.7167 3504.22 21.638 3499.64 Q18.5824 3495.03 18.5824 3486.3 Q18.5824 3477.55 21.638 3472.97 Q24.7167 3468.36 30.5268 3468.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M60.6887 3472.07 Q57.0776 3472.07 55.2489 3475.63 Q53.4434 3479.17 53.4434 3486.3 Q53.4434 3493.41 55.2489 3496.97 Q57.0776 3500.52 60.6887 3500.52 Q64.3229 3500.52 66.1285 3496.97 Q67.9572 3493.41 67.9572 3486.3 Q67.9572 3479.17 66.1285 3475.63 Q64.3229 3472.07 60.6887 3472.07 M60.6887 3468.36 Q66.4988 3468.36 69.5544 3472.97 Q72.6331 3477.55 72.6331 3486.3 Q72.6331 3495.03 69.5544 3499.64 Q66.4988 3504.22 60.6887 3504.22 Q54.8785 3504.22 51.7998 3499.64 Q48.7443 3495.03 48.7443 3486.3 Q48.7443 3477.55 51.7998 3472.97 Q54.8785 3468.36 60.6887 3468.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip968)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,3486.27 185.863,3495.02 187.58,3520.04 189.297,3558.03 191.014,3604.29 192.731,3653.48 194.449,3700.51 196.166,3741.28 197.883,3773.24 199.6,3795.59 \n",
" 201.317,3809.1 203.034,3815.31 204.751,3816.03 206.468,3813.77 208.185,3811.07 209.902,3809.62 211.62,3810.13 213.337,3812.56 215.054,3816.36 216.771,3820.73 \n",
" 218.488,3824.8 220.205,3827.77 221.922,3829.07 223.639,3829.05 225.356,3828.62 227.073,3828.27 228.79,3828.01 230.508,3827.58 232.225,3826.64 233.942,3825.05 \n",
" 235.659,3822.97 237.376,3820.75 239.093,3818.76 240.81,3817.35 242.527,3816.76 244.244,3817.1 245.961,3818.37 247.679,3820.44 249.396,3823.09 251.113,3825.99 \n",
" 252.83,3828.55 254.547,3829.67 256.264,3828.72 257.981,3826.81 259.698,3825.03 261.415,3823.84 263.132,3823.41 264.85,3823.7 266.567,3824.62 268.284,3826.02 \n",
" 270.001,3827.7 271.718,3829.43 273.435,3830.78 275.152,3831.18 276.869,3830.52 278.586,3829.38 280.303,3828.22 282.021,3827.2 283.738,3826.35 285.455,3825.68 \n",
" 287.172,3825.23 288.889,3825.01 290.606,3824.92 292.323,3824.7 294.04,3824.01 295.757,3822.67 297.474,3820.84 299.191,3818.88 300.909,3817.17 302.626,3816.01 \n",
" 304.343,3815.59 306.06,3815.97 307.777,3817.14 309.494,3819 311.211,3821.34 312.928,3823.86 314.645,3826.08 316.362,3827.39 318.08,3827.39 319.797,3826.52 \n",
" 321.514,3825.59 323.231,3825.09 324.948,3825.21 326.665,3825.88 328.382,3826.76 330.099,3827.44 331.816,3827.65 333.533,3827.56 335.251,3827.63 336.968,3828.26 \n",
" 338.685,3829.61 340.402,3831.42 342.119,3832.24 343.836,3830.3 345.553,3827.27 347.27,3824.23 348.987,3821.59 350.704,3819.5 352.421,3817.99 354.139,3817 \n",
" 355.856,3816.44 357.573,3816.27 359.29,3816.57 361.007,3817.43 362.724,3818.97 364.441,3821.24 366.158,3824.1 367.875,3827.13 369.592,3829.28 371.31,3829.03 \n",
" 373.027,3826.95 374.744,3824.71 376.461,3823.07 378.178,3822.24 379.895,3822.17 381.612,3822.67 383.329,3823.52 385.046,3824.54 386.763,3825.65 388.481,3826.81 \n",
" 390.198,3827.96 391.915,3828.94 393.632,3829.58 395.349,3829.87 397.066,3829.99 398.783,3830.19 400.5,3830.62 402.217,3831.23 403.934,3831.91 405.651,3832.47 \n",
" 407.369,3832.75 409.086,3832.6 410.803,3831.96 412.52,3830.91 414.237,3829.61 415.954,3828.22 417.671,3826.85 419.388,3825.54 421.105,3824.3 422.822,3823.16 \n",
" 424.54,3822.22 426.257,3821.58 427.974,3821.38 429.691,3821.62 431.408,3822.19 433.125,3822.81 434.842,3823.11 436.559,3822.75 438.276,3821.68 439.993,3820.06 \n",
" 441.711,3818.12 443.428,3816.07 445.145,3814.11 446.862,3812.49 448.579,3811.52 450.296,3811.53 452.013,3812.78 453.73,3815.39 455.447,3819.31 457.164,3824.25 \n",
" 458.881,3829.44 460.599,3831.23 462.316,3826.91 464.033,3822.11 465.75,3818.24 467.467,3815.72 469.184,3814.71 470.901,3815.19 472.618,3817 474.335,3819.83 \n",
" 476.052,3823.25 477.77,3826.79 479.487,3830 481.204,3832.56 482.921,3834.06 484.638,3833.27 486.355,3831.45 488.072,3829.35 489.789,3827.3 491.506,3825.64 \n",
" 493.223,3824.69 494.941,3824.55 496.658,3825.08 498.375,3825.9 500.092,3826.46 501.809,3826.43 503.526,3825.93 505.243,3825.38 506.96,3825.07 508.677,3825.04 \n",
" 510.394,3825.08 512.112,3824.95 513.829,3824.52 515.546,3823.84 517.263,3823.07 518.98,3822.35 520.697,3821.69 522.414,3821.07 524.131,3820.38 525.848,3819.57 \n",
" 527.565,3818.63 529.282,3817.6 531,3816.62 532.717,3815.82 534.434,3815.31 536.151,3815.22 537.868,3815.63 539.585,3816.66 541.302,3818.43 543.019,3821.01 \n",
" 544.736,3824.28 546.453,3827.72 548.171,3829.65 549.888,3828.19 551.605,3825.34 553.322,3823.06 555.039,3822.03 556.756,3822.37 558.473,3823.81 560.19,3825.82 \n",
" 561.907,3827.75 563.624,3829 565.342,3829.4 567.059,3829.24 568.776,3828.89 570.493,3828.68 572.21,3828.93 573.927,3829.96 575.644,3831.93 577.361,3834.61 \n",
" 579.078,3832.45 580.795,3829.24 582.512,3826.69 584.23,3825.3 585.947,3825.31 587.664,3826.66 589.381,3828.98 591.098,3831.62 592.815,3833.31 594.532,3832.47 \n",
" 596.249,3830.91 597.966,3829.07 599.683,3826.54 601.401,3823.25 603.118,3819.67 604.835,3816.44 606.552,3814.17 608.269,3813.32 609.986,3814.12 611.703,3816.55 \n",
" 613.42,3820.35 615.137,3825.07 616.854,3830.01 618.572,3833.06 620.289,3830.26 622.006,3827.26 623.723,3825.38 625.44,3824.69 627.157,3825.02 628.874,3826.06 \n",
" 630.591,3827.44 632.308,3828.83 634.025,3829.93 635.742,3830.51 637.46,3830.54 639.177,3830.17 640.894,3829.61 642.611,3828.95 644.328,3828.22 646.045,3827.48 \n",
" 647.762,3826.88 649.479,3826.6 651.196,3826.89 652.913,3827.87 654.631,3829.57 656.348,3831.65 658.065,3832.43 659.782,3830.17 661.499,3827.02 663.216,3824.03 \n",
" 664.933,3821.64 666.65,3820.08 668.367,3819.44 670.084,3819.69 671.802,3820.64 673.519,3822.01 675.236,3823.51 676.953,3824.87 678.67,3825.97 680.387,3826.84 \n",
" 682.104,3827.56 683.821,3828.23 685.538,3828.85 687.255,3829.39 688.972,3829.8 690.69,3830.06 692.407,3830.14 694.124,3830.07 695.841,3829.86 697.558,3829.6 \n",
" 699.275,3829.34 700.992,3829.19 702.709,3829.15 704.426,3829.1 706.143,3828.73 707.861,3827.69 709.578,3825.96 711.295,3823.94 713.012,3822.17 714.729,3821.12 \n",
" 716.446,3821.17 718.163,3822.46 719.88,3824.86 721.597,3827.92 723.314,3830.64 725.032,3830.86 726.749,3828.66 728.466,3826.13 730.183,3823.85 731.9,3821.87 \n",
" 733.617,3820.23 735.334,3819.15 737.051,3818.95 738.768,3819.9 740.485,3822.01 742.203,3824.94 743.92,3827.83 745.637,3829.05 747.354,3827.81 749.071,3825.78 \n",
" 750.788,3824.21 752.505,3823.5 754.222,3823.59 755.939,3824.26 757.656,3825.19 759.373,3826.02 761.091,3826.47 762.808,3826.52 764.525,3826.43 766.242,3826.59 \n",
" 767.959,3827.21 769.676,3828.25 771.393,3829.32 773.11,3829.92 774.827,3829.94 776.544,3829.9 778.262,3830.31 779.979,3831.28 781.696,3832.19 783.413,3831.71 \n",
" 785.13,3829.94 786.847,3827.94 788.564,3826.24 790.281,3824.99 791.998,3824.26 793.715,3824.12 795.433,3824.68 797.15,3826.01 798.867,3828.08 800.584,3830.56 \n",
" 802.301,3832.08 804.018,3830.54 805.735,3827.81 807.452,3825.36 809.169,3823.64 810.886,3822.83 812.603,3822.93 814.321,3823.83 816.038,3825.3 817.755,3827.09 \n",
" 819.472,3828.89 821.189,3830.44 822.906,3831.49 824.623,3831.83 826.34,3831.41 828.057,3830.44 829.774,3829.22 831.492,3828.02 833.209,3827.09 834.926,3826.62 \n",
" 836.643,3826.74 838.36,3827.53 840.077,3829 841.794,3831.09 843.511,3833.45 845.228,3833.16 846.945,3830.35 848.663,3827.57 850.38,3825.24 852.097,3823.55 \n",
" 853.814,3822.55 855.531,3822.17 857.248,3822.29 858.965,3822.78 860.682,3823.52 862.399,3824.44 864.116,3825.48 865.833,3826.55 867.551,3827.59 869.268,3828.55 \n",
" 870.985,3829.37 872.702,3830 874.419,3830.4 876.136,3830.55 877.853,3830.57 879.57,3830.59 881.287,3830.69 883.004,3830.85 884.722,3830.96 886.439,3830.87 \n",
" 888.156,3830.55 889.873,3830.02 891.59,3829.44 893.307,3829 895.024,3828.93 896.741,3829.39 898.458,3830.42 900.175,3831.81 901.893,3832.74 903.61,3832.06 \n",
" 905.327,3830.6 907.044,3829.37 908.761,3828.64 910.478,3828.27 912.195,3827.87 913.912,3827.1 915.629,3826.04 917.346,3825.1 919.063,3824.69 920.781,3825.04 \n",
" 922.498,3826.14 924.215,3827.72 925.932,3829.23 927.649,3829.96 929.366,3829.62 931.083,3828.73 932.8,3827.86 934.517,3827.24 936.234,3826.83 937.952,3826.56 \n",
" 939.669,3826.36 941.386,3826.26 943.103,3826.3 944.82,3826.51 946.537,3826.86 948.254,3827.25 949.971,3827.55 951.688,3827.61 953.405,3827.3 955.123,3826.63 \n",
" 956.84,3825.72 958.557,3824.74 960.274,3823.83 961.991,3823.03 963.708,3822.37 965.425,3821.85 967.142,3821.56 968.859,3821.59 970.576,3822.05 972.294,3822.98 \n",
" 974.011,3824.39 975.728,3826.29 977.445,3828.69 979.162,3831.25 980.879,3831.4 982.596,3827.69 984.313,3822.88 986.03,3818.16 987.747,3814.24 989.464,3811.73 \n",
" 991.182,3811.01 992.899,3812.24 994.616,3815.29 996.333,3819.83 998.05,3825.35 999.767,3831.28 1001.48,3833.2 1003.2,3827.96 1004.92,3823.58 1006.64,3820.42 \n",
" 1008.35,3818.68 1010.07,3818.44 1011.79,3819.63 1013.5,3822.07 1015.22,3825.48 1016.94,3829.46 1018.66,3833.49 1020.37,3832.72 1022.09,3829.44 1023.81,3827.01 \n",
" 1025.52,3825.73 1027.24,3825.7 1028.96,3826.8 1030.67,3828.63 1032.39,3830.3 1034.11,3830.4 1035.83,3829.04 1037.54,3827.68 1039.26,3827.14 1040.98,3827.62 \n",
" 1042.69,3828.92 1044.41,3830.3 1046.13,3830.42 1047.85,3828.88 1049.56,3826.8 1051.28,3824.96 1053,3823.66 1054.71,3822.96 1056.43,3822.83 1058.15,3823.18 \n",
" 1059.87,3823.81 1061.58,3824.38 1063.3,3824.44 1065.02,3823.68 1066.73,3822.21 1068.45,3820.52 1070.17,3819.14 1071.89,3818.46 1073.6,3818.67 1075.32,3819.75 \n",
" 1077.04,3821.45 1078.75,3823.36 1080.47,3825.02 1082.19,3826.16 1083.9,3826.93 1085.62,3827.73 1087.34,3828.89 1089.06,3830.3 1090.77,3831.32 1092.49,3830.99 \n",
" 1094.21,3829.61 1095.92,3828.19 1097.64,3827.25 1099.36,3826.95 1101.08,3827.32 1102.79,3828.22 1104.51,3829.42 1106.23,3830.45 1107.94,3830.58 1109.66,3829.61 \n",
" 1111.38,3828.19 1113.1,3826.98 1114.81,3826.3 1116.53,3826.26 1118.25,3826.73 1119.96,3827.39 1121.68,3827.81 1123.4,3827.66 1125.12,3826.97 1126.83,3825.97 \n",
" 1128.55,3824.92 1130.27,3823.97 1131.98,3823.22 1133.7,3822.77 1135.42,3822.74 1137.13,3823.25 1138.85,3824.4 1140.57,3826.17 1142.29,3828.33 1144,3830.08 \n",
" 1145.72,3829.92 1147.44,3827.83 1149.15,3825.34 1150.87,3823.28 1152.59,3822.03 1154.31,3821.71 1156.02,3822.26 1157.74,3823.46 1159.46,3824.95 1161.17,3826.27 \n",
" 1162.89,3826.94 1164.61,3826.87 1166.33,3826.45 1168.04,3826.21 1169.76,3826.51 1171.48,3827.42 1173.19,3828.82 1174.91,3830.37 1176.63,3831.55 1178.35,3831.84 \n",
" 1180.06,3831.38 1181.78,3830.7 1183.5,3830.01 1185.21,3829.28 1186.93,3828.41 1188.65,3827.45 1190.36,3826.54 1192.08,3825.89 1193.8,3825.75 1195.52,3826.29 \n",
" 1197.23,3827.53 1198.95,3829.18 1200.67,3830.25 1202.38,3829.46 1204.1,3827.38 1205.82,3825.34 1207.54,3824.12 1209.25,3824.07 1210.97,3825.26 1212.69,3827.44 \n",
" 1214.4,3829.97 1216.12,3831.16 1217.84,3829.49 1219.56,3826.83 1221.27,3824.49 1222.99,3822.89 1224.71,3822.14 1226.42,3822.22 1228.14,3823.03 1229.86,3824.45 \n",
" 1231.58,3826.38 1233.29,3828.68 1235.01,3831.17 1236.73,3833.26 1238.44,3833.03 1240.16,3831.45 1241.88,3830.29 1243.59,3829.85 1245.31,3829.91 1247.03,3829.88 \n",
" 1248.75,3829.05 1250.46,3827.49 1252.18,3825.81 1253.9,3824.6 1255.61,3824.18 1257.33,3824.64 1259.05,3825.81 1260.77,3827.3 1262.48,3828.58 1264.2,3829.2 \n",
" 1265.92,3829.2 1267.63,3829.04 1269.35,3829.01 1271.07,3829.04 1272.79,3828.74 1274.5,3827.8 1276.22,3826.35 1277.94,3824.74 1279.65,3823.24 1281.37,3821.95 \n",
" 1283.09,3820.8 1284.81,3819.68 1286.52,3818.61 1288.24,3817.79 1289.96,3817.52 1291.67,3818.12 1293.39,3819.74 1295.11,3822.32 1296.82,3825.59 1298.54,3829 \n",
" 1300.26,3831.62 1301.98,3831.91 1303.69,3830.85 1305.41,3830.18 1307.13,3830.06 1308.84,3829.8 1310.56,3828.66 1312.28,3826.81 1314,3825.03 1315.71,3823.97 \n",
" 1317.43,3824.02 1319.15,3825.28 1320.86,3827.49 1322.58,3829.97 1324.3,3831.1 1326.02,3829.76 1327.73,3827.74 1329.45,3826.26 1331.17,3825.61 1332.88,3825.79 \n",
" 1334.6,3826.65 1336.32,3828.01 1338.04,3829.64 1339.75,3830.75 1341.47,3829.86 1343.19,3827.13 1344.9,3823.83 1346.62,3820.74 1348.34,3818.27 1350.05,3816.61 \n",
" 1351.77,3815.67 1353.49,3815.23 1355.21,3815.11 1356.92,3815.28 1358.64,3815.98 1360.36,3817.47 1362.07,3819.96 1363.79,3823.38 1365.51,3827.42 1367.23,3831.59 \n",
" 1368.94,3834.65 1370.66,3832.29 1372.38,3830.87 1374.09,3830.92 1375.81,3832.28 1377.53,3833.59 1379.25,3831.35 1380.96,3828.07 1382.68,3825.1 1384.4,3822.92 \n",
" 1386.11,3821.8 1387.83,3821.75 1389.55,3822.55 1391.27,3823.87 1392.98,3825.29 1394.7,3826.55 1396.42,3827.59 1398.13,3828.58 1399.85,3829.71 1401.57,3831.04 \n",
" 1403.28,3832.5 1405,3833.87 1406.72,3834.6 1408.44,3834.08 1410.15,3833.52 1411.87,3833.11 1413.59,3832.57 1415.3,3831.6 1417.02,3830.08 1418.74,3828.09 \n",
" 1420.46,3825.83 1422.17,3823.54 1423.89,3821.46 1425.61,3819.83 1427.32,3818.86 1429.04,3818.65 1430.76,3819.19 1432.48,3820.34 1434.19,3821.84 1435.91,3823.27 \n",
" 1437.63,3824.16 1439.34,3824.17 1441.06,3823.46 1442.78,3822.51 1444.5,3821.83 1446.21,3821.8 1447.93,3822.58 1449.65,3824.14 1451.36,3826.28 1453.08,3828.57 \n",
" 1454.8,3830.26 1456.51,3830.37 1458.23,3828.87 1459.95,3826.56 1461.67,3823.76 1463.38,3820.58 1465.1,3817.23 1466.82,3814.08 1468.53,3811.53 1470.25,3809.97 \n",
" 1471.97,3809.61 1473.69,3810.48 1475.4,3812.37 1477.12,3814.76 1478.84,3816.85 1480.55,3817.7 1482.27,3816.93 1483.99,3815.02 1485.71,3812.91 1487.42,3811.37 \n",
" 1489.14,3810.81 1490.86,3811.34 1492.57,3812.81 1494.29,3814.88 1496.01,3817.13 1497.73,3819.12 1499.44,3820.55 1501.16,3821.37 1502.88,3821.75 1504.59,3821.97 \n",
" 1506.31,3822.3 1508.03,3822.91 1509.74,3823.85 1511.46,3825.05 1513.18,3826.34 1514.9,3827.41 1516.61,3827.96 1518.33,3827.89 1520.05,3827.32 1521.76,3826.48 \n",
" 1523.48,3825.56 1525.2,3824.7 1526.92,3824.05 1528.63,3823.8 1530.35,3824.14 1532.07,3825.19 1533.78,3826.96 1535.5,3829.31 1537.22,3831.7 1538.94,3832.43 \n",
" 1540.65,3830.74 1542.37,3828.91 1544.09,3827.87 1545.8,3827.82 1547.52,3828.5 1549.24,3828.86 1550.96,3827.6 1552.67,3824.88 1554.39,3821.89 1556.11,3819.54 \n",
" 1557.82,3818.4 1559.54,3818.7 1561.26,3820.29 1562.97,3822.65 1564.69,3824.86 1566.41,3825.87 1568.13,3825.54 1569.84,3824.86 1571.56,3824.7 1573.28,3825.26 \n",
" 1574.99,3826.13 1576.71,3826.55 1578.43,3826.08 1580.15,3825.14 1581.86,3824.45 1583.58,3824.44 1585.3,3825.13 1587.01,3826.27 1588.73,3827.42 1590.45,3828.19 \n",
" 1592.17,3828.34 1593.88,3827.86 1595.6,3826.84 1597.32,3825.5 1599.03,3824.2 1600.75,3823.39 1602.47,3823.48 1604.19,3824.67 1605.9,3826.97 1607.62,3830 \n",
" 1609.34,3832.45 1611.05,3830.93 1612.77,3827.9 1614.49,3825.45 1616.2,3824.09 1617.92,3823.88 1619.64,3824.63 1621.36,3825.76 1623.07,3826.42 1624.79,3825.9 \n",
" 1626.51,3824.4 1628.22,3822.65 1629.94,3821.21 1631.66,3820.31 1633.38,3819.96 1635.09,3820.05 1636.81,3820.43 1638.53,3821.07 1640.24,3821.98 1641.96,3823.16 \n",
" 1643.68,3824.43 1645.4,3825.31 1647.11,3825.18 1648.83,3823.86 1650.55,3821.87 1652.26,3819.87 1653.98,3818.31 1655.7,3817.39 1657.42,3817.1 1659.13,3817.25 \n",
" 1660.85,3817.61 1662.57,3817.94 1664.28,3818.08 1666,3818.04 1667.72,3817.91 1669.43,3817.85 1671.15,3818.04 1672.87,3818.58 1674.59,3819.53 1676.3,3820.85 \n",
" 1678.02,3822.48 1679.74,3824.35 1681.45,3826.42 1683.17,3828.71 1684.89,3831.22 1686.61,3833.93 1688.32,3833.89 1690.04,3831.33 1691.76,3829.28 1693.47,3828.01 \n",
" 1695.19,3827.72 1696.91,3828.46 1698.63,3830.06 1700.34,3832.08 1702.06,3833.41 1703.78,3832.67 1705.49,3831.7 1707.21,3831.62 1708.93,3832.64 1710.65,3834.54 \n",
" 1712.36,3833.12 1714.08,3830.17 1715.8,3827.31 1717.51,3824.84 1719.23,3822.82 1720.95,3821.19 1722.66,3819.88 1724.38,3818.92 1726.1,3818.5 1727.82,3818.82 \n",
" 1729.53,3819.99 1731.25,3821.82 1732.97,3823.77 1734.68,3824.98 1736.4,3824.9 1738.12,3823.96 1739.84,3823.09 1741.55,3822.95 1743.27,3823.77 1744.99,3825.5 \n",
" 1746.7,3827.88 1748.42,3830.46 1750.14,3832.24 1751.86,3831.54 1753.57,3829.55 1755.29,3827.62 1757.01,3826.14 1758.72,3825.26 1760.44,3825.1 1762.16,3825.72 \n",
" 1763.88,3827.07 1765.59,3828.81 1767.31,3829.96 1769.03,3829.24 1770.74,3827.21 1772.46,3825.27 1774.18,3824.23 1775.89,3824.43 1777.61,3825.8 1779.33,3827.84 \n",
" 1781.05,3829.5 1782.76,3829.53 1784.48,3828.37 1786.2,3827.38 1787.91,3827.13 1789.63,3827.47 1791.35,3827.82 1793.07,3827.65 1794.78,3827.06 1796.5,3826.63 \n",
" 1798.22,3826.74 1799.93,3827.31 1801.65,3827.82 1803.37,3827.66 1805.09,3826.87 1806.8,3826.04 1808.52,3825.58 1810.24,3825.48 1811.95,3825.4 1813.67,3825.02 \n",
" 1815.39,3824.54 1817.11,3824.51 1818.82,3825.49 1820.54,3827.72 1822.26,3831.12 1823.97,3834.71 1825.69,3830.76 1827.41,3826.75 1829.12,3823.61 1830.84,3821.68 \n",
" 1832.56,3821.04 1834.28,3821.58 1835.99,3823.03 1837.71,3825.05 1839.43,3827.23 1841.14,3829.12 1842.86,3830.32 1844.58,3830.69 1846.3,3830.1 1848.01,3828.23 \n",
" 1849.73,3825.09 1851.45,3821.25 1853.16,3817.51 1854.88,3814.73 1856.6,3813.63 1858.32,3814.62 1860.03,3817.66 1861.75,3822.25 1863.47,3827.26 1865.18,3830.11 \n",
" 1866.9,3828.34 1868.62,3825.75 1870.34,3824.46 1872.05,3824.68 1873.77,3825.91 1875.49,3827.29 1877.2,3827.94 1878.92,3827.73 1880.64,3827.34 1882.35,3827.35 \n",
" 1884.07,3828 1885.79,3829.23 1887.51,3830.84 1889.22,3832.33 1890.94,3832.33 1892.66,3830.43 1894.37,3827.78 1896.09,3824.82 1897.81,3821.77 1899.53,3818.89 \n",
" 1901.24,3816.62 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"\n",
"M1657.32 3591.81 L1892.09 3591.81 L1892.09 3488.13 L1657.32 3488.13 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1657.32,3591.81 1892.09,3591.81 1892.09,3488.13 1657.32,3488.13 1657.32,3591.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip960)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1677.54,3539.97 1798.88,3539.97 \n",
" \"/>\n",
"<path clip-path=\"url(#clip960)\" d=\"M1832.95 3559.65 Q1831.14 3564.28 1829.43 3565.7 Q1827.72 3567.11 1824.85 3567.11 L1821.45 3567.11 L1821.45 3563.54 L1823.95 3563.54 Q1825.7 3563.54 1826.68 3562.71 Q1827.65 3561.88 1828.83 3558.78 L1829.59 3556.83 L1819.11 3531.32 L1823.62 3531.32 L1831.72 3551.6 L1839.82 3531.32 L1844.34 3531.32 L1832.95 3559.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip960)\" d=\"M1849.64 3522.69 L1871.86 3522.69 L1871.86 3524.68 L1859.32 3557.25 L1854.43 3557.25 L1866.24 3526.62 L1849.64 3526.62 L1849.64 3522.69 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
]
},
"execution_count": 20,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"tsteps = 0:0.1:100\n",
"evols = evolve_observer.(rng, 2 .^ (4:10), tsteps[end], tsteps[2]-tsteps[1])\n",
"plot(tsteps, [evols...], layout=(length(evols),1), size=(500,1000))"
]
},
{
"cell_type": "markdown",
"id": "fa69042c-405a-4afe-b2a8-8119af855187",
"metadata": {},
"source": [
"Let's now zoom in to the first few \"seconds\" to see what happens there."
]
},
{
"cell_type": "code",
"execution_count": 27,
"id": "e7a36d51-0716-4f73-8ed7-0a08dabb4e5b",
"metadata": {},
"outputs": [
{
"data": {
"image/svg+xml": [
"<?xml version=\"1.0\" encoding=\"utf-8\"?>\n",
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"500\" height=\"1000\" viewBox=\"0 0 2000 4000\">\n",
"<defs>\n",
" <clipPath id=\"clip120\">\n",
" <rect x=\"0\" y=\"0\" width=\"2000\" height=\"4000\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip120)\" d=\"\n",
"M0 4000 L2000 4000 L2000 0 L0 0 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip121\">\n",
" <rect x=\"800\" y=\"400\" width=\"2000\" height=\"2801\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<path clip-path=\"url(#clip120)\" d=\"\n",
"M132.633 416.596 L1952.76 416.596 L1952.76 47.2441 L132.633 47.2441 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip122\">\n",
" <rect x=\"132\" y=\"47\" width=\"1821\" height=\"370\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 184.146,416.596 184.146,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 480.197,416.596 480.197,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 776.248,416.596 776.248,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1072.3,416.596 1072.3,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1368.35,416.596 1368.35,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1664.4,416.596 1664.4,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,416.596 1952.76,416.596 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,416.596 184.146,397.699 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 480.197,416.596 480.197,397.699 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 776.248,416.596 776.248,397.699 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1072.3,416.596 1072.3,397.699 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1368.35,416.596 1368.35,397.699 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1664.4,416.596 1664.4,397.699 \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"M161.53 460.315 Q157.919 460.315 156.091 463.88 Q154.285 467.422 154.285 474.551 Q154.285 481.658 156.091 485.222 Q157.919 488.764 161.53 488.764 Q165.165 488.764 166.97 485.222 Q168.799 481.658 168.799 474.551 Q168.799 467.422 166.97 463.88 Q165.165 460.315 161.53 460.315 M161.53 456.611 Q167.341 456.611 170.396 461.218 Q173.475 465.801 173.475 474.551 Q173.475 483.278 170.396 487.884 Q167.341 492.468 161.53 492.468 Q155.72 492.468 152.642 487.884 Q149.586 483.278 149.586 474.551 Q149.586 465.801 152.642 461.218 Q155.72 456.611 161.53 456.611 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M181.692 485.917 L186.577 485.917 L186.577 491.796 L181.692 491.796 L181.692 485.917 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M206.762 460.315 Q203.151 460.315 201.322 463.88 Q199.516 467.422 199.516 474.551 Q199.516 481.658 201.322 485.222 Q203.151 488.764 206.762 488.764 Q210.396 488.764 212.201 485.222 Q214.03 481.658 214.03 474.551 Q214.03 467.422 212.201 463.88 Q210.396 460.315 206.762 460.315 M206.762 456.611 Q212.572 456.611 215.627 461.218 Q218.706 465.801 218.706 474.551 Q218.706 483.278 215.627 487.884 Q212.572 492.468 206.762 492.468 Q200.951 492.468 197.873 487.884 Q194.817 483.278 194.817 474.551 Q194.817 465.801 197.873 461.218 Q200.951 456.611 206.762 456.611 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M458.079 460.315 Q454.468 460.315 452.639 463.88 Q450.834 467.422 450.834 474.551 Q450.834 481.658 452.639 485.222 Q454.468 488.764 458.079 488.764 Q461.713 488.764 463.519 485.222 Q465.348 481.658 465.348 474.551 Q465.348 467.422 463.519 463.88 Q461.713 460.315 458.079 460.315 M458.079 456.611 Q463.889 456.611 466.945 461.218 Q470.024 465.801 470.024 474.551 Q470.024 483.278 466.945 487.884 Q463.889 492.468 458.079 492.468 Q452.269 492.468 449.19 487.884 Q446.135 483.278 446.135 474.551 Q446.135 465.801 449.19 461.218 Q452.269 456.611 458.079 456.611 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M478.241 485.917 L483.125 485.917 L483.125 491.796 L478.241 491.796 L478.241 485.917 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M493.357 457.236 L511.713 457.236 L511.713 461.172 L497.639 461.172 L497.639 469.644 Q498.658 469.297 499.676 469.135 Q500.695 468.949 501.713 468.949 Q507.5 468.949 510.88 472.121 Q514.26 475.292 514.26 480.709 Q514.26 486.287 510.787 489.389 Q507.315 492.468 500.996 492.468 Q498.82 492.468 496.551 492.097 Q494.306 491.727 491.899 490.986 L491.899 486.287 Q493.982 487.421 496.204 487.977 Q498.426 488.533 500.903 488.533 Q504.908 488.533 507.246 486.426 Q509.584 484.32 509.584 480.709 Q509.584 477.097 507.246 474.991 Q504.908 472.885 500.903 472.885 Q499.028 472.885 497.153 473.301 Q495.301 473.718 493.357 474.597 L493.357 457.236 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M743.401 487.861 L751.04 487.861 L751.04 461.496 L742.73 463.162 L742.73 458.903 L750.994 457.236 L755.67 457.236 L755.67 487.861 L763.309 487.861 L763.309 491.796 L743.401 491.796 L743.401 487.861 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M772.753 485.917 L777.637 485.917 L777.637 491.796 L772.753 491.796 L772.753 485.917 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M797.822 460.315 Q794.211 460.315 792.383 463.88 Q790.577 467.422 790.577 474.551 Q790.577 481.658 792.383 485.222 Q794.211 488.764 797.822 488.764 Q801.457 488.764 803.262 485.222 Q805.091 481.658 805.091 474.551 Q805.091 467.422 803.262 463.88 Q801.457 460.315 797.822 460.315 M797.822 456.611 Q803.633 456.611 806.688 461.218 Q809.767 465.801 809.767 474.551 Q809.767 483.278 806.688 487.884 Q803.633 492.468 797.822 492.468 Q792.012 492.468 788.934 487.884 Q785.878 483.278 785.878 474.551 Q785.878 465.801 788.934 461.218 Q792.012 456.611 797.822 456.611 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1039.95 487.861 L1047.59 487.861 L1047.59 461.496 L1039.28 463.162 L1039.28 458.903 L1047.54 457.236 L1052.22 457.236 L1052.22 487.861 L1059.86 487.861 L1059.86 491.796 L1039.95 491.796 L1039.95 487.861 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1069.3 485.917 L1074.19 485.917 L1074.19 491.796 L1069.3 491.796 L1069.3 485.917 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1084.42 457.236 L1102.77 457.236 L1102.77 461.172 L1088.7 461.172 L1088.7 469.644 Q1089.72 469.297 1090.74 469.135 Q1091.76 468.949 1092.77 468.949 Q1098.56 468.949 1101.94 472.121 Q1105.32 475.292 1105.32 480.709 Q1105.32 486.287 1101.85 489.389 Q1098.38 492.468 1092.06 492.468 Q1089.88 492.468 1087.61 492.097 Q1085.37 491.727 1082.96 490.986 L1082.96 486.287 Q1085.04 487.421 1087.26 487.977 Q1089.49 488.533 1091.96 488.533 Q1095.97 488.533 1098.31 486.426 Q1100.64 484.32 1100.64 480.709 Q1100.64 477.097 1098.31 474.991 Q1095.97 472.885 1091.96 472.885 Q1090.09 472.885 1088.21 473.301 Q1086.36 473.718 1084.42 474.597 L1084.42 457.236 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1339.59 487.861 L1355.91 487.861 L1355.91 491.796 L1333.96 491.796 L1333.96 487.861 Q1336.63 485.107 1341.21 480.477 Q1345.82 475.824 1347 474.482 Q1349.24 471.959 1350.12 470.222 Q1351.02 468.463 1351.02 466.773 Q1351.02 464.019 1349.08 462.283 Q1347.16 460.547 1344.06 460.547 Q1341.86 460.547 1339.4 461.31 Q1336.97 462.074 1334.2 463.625 L1334.2 458.903 Q1337.02 457.769 1339.47 457.19 Q1341.93 456.611 1343.96 456.611 Q1349.33 456.611 1352.53 459.297 Q1355.72 461.982 1355.72 466.473 Q1355.72 468.602 1354.91 470.523 Q1354.13 472.422 1352.02 475.014 Q1351.44 475.685 1348.34 478.903 Q1345.24 482.097 1339.59 487.861 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1365.72 485.917 L1370.61 485.917 L1370.61 491.796 L1365.72 491.796 L1365.72 485.917 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1390.79 460.315 Q1387.18 460.315 1385.35 463.88 Q1383.55 467.422 1383.55 474.551 Q1383.55 481.658 1385.35 485.222 Q1387.18 488.764 1390.79 488.764 Q1394.43 488.764 1396.23 485.222 Q1398.06 481.658 1398.06 474.551 Q1398.06 467.422 1396.23 463.88 Q1394.43 460.315 1390.79 460.315 M1390.79 456.611 Q1396.6 456.611 1399.66 461.218 Q1402.74 465.801 1402.74 474.551 Q1402.74 483.278 1399.66 487.884 Q1396.6 492.468 1390.79 492.468 Q1384.98 492.468 1381.9 487.884 Q1378.85 483.278 1378.85 474.551 Q1378.85 465.801 1381.9 461.218 Q1384.98 456.611 1390.79 456.611 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1636.14 487.861 L1652.46 487.861 L1652.46 491.796 L1630.51 491.796 L1630.51 487.861 Q1633.18 485.107 1637.76 480.477 Q1642.37 475.824 1643.55 474.482 Q1645.79 471.959 1646.67 470.222 Q1647.57 468.463 1647.57 466.773 Q1647.57 464.019 1645.63 462.283 Q1643.71 460.547 1640.61 460.547 Q1638.41 460.547 1635.95 461.31 Q1633.52 462.074 1630.74 463.625 L1630.74 458.903 Q1633.57 457.769 1636.02 457.19 Q1638.48 456.611 1640.51 456.611 Q1645.88 456.611 1649.08 459.297 Q1652.27 461.982 1652.27 466.473 Q1652.27 468.602 1651.46 470.523 Q1650.68 472.422 1648.57 475.014 Q1647.99 475.685 1644.89 478.903 Q1641.79 482.097 1636.14 487.861 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1662.27 485.917 L1667.16 485.917 L1667.16 491.796 L1662.27 491.796 L1662.27 485.917 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1677.39 457.236 L1695.74 457.236 L1695.74 461.172 L1681.67 461.172 L1681.67 469.644 Q1682.69 469.297 1683.71 469.135 Q1684.73 468.949 1685.74 468.949 Q1691.53 468.949 1694.91 472.121 Q1698.29 475.292 1698.29 480.709 Q1698.29 486.287 1694.82 489.389 Q1691.35 492.468 1685.03 492.468 Q1682.85 492.468 1680.58 492.097 Q1678.34 491.727 1675.93 490.986 L1675.93 486.287 Q1678.01 487.421 1680.24 487.977 Q1682.46 488.533 1684.93 488.533 Q1688.94 488.533 1691.28 486.426 Q1693.61 484.32 1693.61 480.709 Q1693.61 477.097 1691.28 474.991 Q1688.94 472.885 1684.93 472.885 Q1683.06 472.885 1681.18 473.301 Q1679.33 473.718 1677.39 474.597 L1677.39 457.236 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,349.297 1952.76,349.297 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,276.397 1952.76,276.397 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,203.497 1952.76,203.497 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,130.597 1952.76,130.597 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip122)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,57.6975 1952.76,57.6975 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,416.596 132.633,47.2441 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,349.297 151.531,349.297 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,276.397 151.531,276.397 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,203.497 151.531,203.497 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,130.597 151.531,130.597 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,57.6975 151.531,57.6975 \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"M17.0547 335.096 Q13.4436 335.096 11.6149 338.661 Q9.80933 342.203 9.80933 349.332 Q9.80933 356.439 11.6149 360.003 Q13.4436 363.545 17.0547 363.545 Q20.6889 363.545 22.4944 360.003 Q24.3231 356.439 24.3231 349.332 Q24.3231 342.203 22.4944 338.661 Q20.6889 335.096 17.0547 335.096 M17.0547 331.392 Q22.8648 331.392 25.9204 335.999 Q28.999 340.582 28.999 349.332 Q28.999 358.059 25.9204 362.665 Q22.8648 367.249 17.0547 367.249 Q11.2445 367.249 8.16582 362.665 Q5.11028 358.059 5.11028 349.332 Q5.11028 340.582 8.16582 335.999 Q11.2445 331.392 17.0547 331.392 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M37.2166 360.698 L42.1008 360.698 L42.1008 366.577 L37.2166 366.577 L37.2166 360.698 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M56.3137 362.642 L72.6331 362.642 L72.6331 366.577 L50.6887 366.577 L50.6887 362.642 Q53.3508 359.888 57.9341 355.258 Q62.5405 350.605 63.7211 349.263 Q65.9664 346.74 66.8461 345.003 Q67.7488 343.244 67.7488 341.554 Q67.7488 338.8 65.8044 337.064 Q63.8831 335.328 60.7813 335.328 Q58.5822 335.328 56.1285 336.091 Q53.698 336.855 50.9202 338.406 L50.9202 333.684 Q53.7443 332.55 56.198 331.971 Q58.6517 331.392 60.6887 331.392 Q66.059 331.392 69.2535 334.078 Q72.4479 336.763 72.4479 341.253 Q72.4479 343.383 71.6377 345.304 Q70.8507 347.203 68.7442 349.795 Q68.1655 350.466 65.0637 353.684 Q61.9618 356.878 56.3137 362.642 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M14.9713 262.196 Q11.3602 262.196 9.53155 265.761 Q7.726 269.303 7.726 276.432 Q7.726 283.539 9.53155 287.103 Q11.3602 290.645 14.9713 290.645 Q18.6056 290.645 20.4111 287.103 Q22.2398 283.539 22.2398 276.432 Q22.2398 269.303 20.4111 265.761 Q18.6056 262.196 14.9713 262.196 M14.9713 258.492 Q20.7815 258.492 23.837 263.099 Q26.9157 267.682 26.9157 276.432 Q26.9157 285.159 23.837 289.765 Q20.7815 294.349 14.9713 294.349 Q9.16118 294.349 6.08249 289.765 Q3.02696 285.159 3.02696 276.432 Q3.02696 267.682 6.08249 263.099 Q9.16118 258.492 14.9713 258.492 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M35.1333 287.798 L40.0175 287.798 L40.0175 293.677 L35.1333 293.677 L35.1333 287.798 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M63.0498 263.191 L51.2443 281.64 L63.0498 281.64 L63.0498 263.191 M61.8229 259.117 L67.7025 259.117 L67.7025 281.64 L72.6331 281.64 L72.6331 285.529 L67.7025 285.529 L67.7025 293.677 L63.0498 293.677 L63.0498 285.529 L47.448 285.529 L47.448 281.015 L61.8229 259.117 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M15.2954 189.296 Q11.6843 189.296 9.85562 192.861 Q8.05008 196.403 8.05008 203.532 Q8.05008 210.639 9.85562 214.203 Q11.6843 217.745 15.2954 217.745 Q18.9296 217.745 20.7352 214.203 Q22.5639 210.639 22.5639 203.532 Q22.5639 196.403 20.7352 192.861 Q18.9296 189.296 15.2954 189.296 M15.2954 185.592 Q21.1056 185.592 24.1611 190.199 Q27.2398 194.782 27.2398 203.532 Q27.2398 212.259 24.1611 216.865 Q21.1056 221.449 15.2954 221.449 Q9.48525 221.449 6.40657 216.865 Q3.35103 212.259 3.35103 203.532 Q3.35103 194.782 6.40657 190.199 Q9.48525 185.592 15.2954 185.592 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M35.4573 214.898 L40.3416 214.898 L40.3416 220.777 L35.4573 220.777 L35.4573 214.898 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M61.1053 201.634 Q57.9572 201.634 56.1054 203.787 Q54.2767 205.94 54.2767 209.69 Q54.2767 213.416 56.1054 215.592 Q57.9572 217.745 61.1053 217.745 Q64.2535 217.745 66.0822 215.592 Q67.934 213.416 67.934 209.69 Q67.934 205.94 66.0822 203.787 Q64.2535 201.634 61.1053 201.634 M70.3877 186.981 L70.3877 191.241 Q68.6285 190.407 66.8229 189.967 Q65.0405 189.528 63.2813 189.528 Q58.6517 189.528 56.198 192.653 Q53.7674 195.778 53.4202 202.097 Q54.7859 200.083 56.8461 199.018 Q58.9063 197.93 61.3831 197.93 Q66.5914 197.93 69.6007 201.102 Q72.6331 204.25 72.6331 209.69 Q72.6331 215.014 69.4849 218.231 Q66.3368 221.449 61.1053 221.449 Q55.11 221.449 51.9387 216.865 Q48.7675 212.259 48.7675 203.532 Q48.7675 195.338 52.6563 190.477 Q56.5452 185.592 63.0961 185.592 Q64.8553 185.592 66.6377 185.94 Q68.4433 186.287 70.3877 186.981 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M15.55 116.396 Q11.9389 116.396 10.1103 119.961 Q8.3047 123.503 8.3047 130.632 Q8.3047 137.739 10.1103 141.303 Q11.9389 144.845 15.55 144.845 Q19.1843 144.845 20.9898 141.303 Q22.8185 137.739 22.8185 130.632 Q22.8185 123.503 20.9898 119.961 Q19.1843 116.396 15.55 116.396 M15.55 112.692 Q21.3602 112.692 24.4157 117.299 Q27.4944 121.882 27.4944 130.632 Q27.4944 139.359 24.4157 143.965 Q21.3602 148.549 15.55 148.549 Q9.73988 148.549 6.66119 143.965 Q3.60566 139.359 3.60566 130.632 Q3.60566 121.882 6.66119 117.299 Q9.73988 112.692 15.55 112.692 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M35.712 141.998 L40.5962 141.998 L40.5962 147.877 L35.712 147.877 L35.712 141.998 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M60.7813 131.466 Q57.448 131.466 55.5267 133.248 Q53.6285 135.03 53.6285 138.155 Q53.6285 141.28 55.5267 143.063 Q57.448 144.845 60.7813 144.845 Q64.1146 144.845 66.0359 143.063 Q67.9572 141.257 67.9572 138.155 Q67.9572 135.03 66.0359 133.248 Q64.1377 131.466 60.7813 131.466 M56.1054 129.475 Q53.0961 128.734 51.4063 126.674 Q49.7397 124.614 49.7397 121.651 Q49.7397 117.507 52.6795 115.1 Q55.6424 112.692 60.7813 112.692 Q65.9433 112.692 68.8831 115.1 Q71.8229 117.507 71.8229 121.651 Q71.8229 124.614 70.1331 126.674 Q68.4664 128.734 65.4803 129.475 Q68.8599 130.262 70.7349 132.553 Q72.6331 134.845 72.6331 138.155 Q72.6331 143.178 69.5544 145.864 Q66.4988 148.549 60.7813 148.549 Q55.0637 148.549 51.985 145.864 Q48.9295 143.178 48.9295 138.155 Q48.9295 134.845 50.8276 132.553 Q52.7258 130.262 56.1054 129.475 M54.3924 122.091 Q54.3924 124.776 56.0591 126.28 Q57.7489 127.785 60.7813 127.785 Q63.7905 127.785 65.4803 126.28 Q67.1933 124.776 67.1933 122.091 Q67.1933 119.405 65.4803 117.901 Q63.7905 116.396 60.7813 116.396 Q57.7489 116.396 56.0591 117.901 Q54.3924 119.405 54.3924 122.091 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M6.26768 71.0423 L13.9065 71.0423 L13.9065 44.6767 L5.59639 46.3434 L5.59639 42.0841 L13.8602 40.4175 L18.5361 40.4175 L18.5361 71.0423 L26.175 71.0423 L26.175 74.9775 L6.26768 74.9775 L6.26768 71.0423 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M35.6194 69.0979 L40.5036 69.0979 L40.5036 74.9775 L35.6194 74.9775 L35.6194 69.0979 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M60.6887 43.4962 Q57.0776 43.4962 55.2489 47.0609 Q53.4434 50.6026 53.4434 57.7322 Q53.4434 64.8386 55.2489 68.4034 Q57.0776 71.9451 60.6887 71.9451 Q64.3229 71.9451 66.1285 68.4034 Q67.9572 64.8386 67.9572 57.7322 Q67.9572 50.6026 66.1285 47.0609 Q64.3229 43.4962 60.6887 43.4962 M60.6887 39.7925 Q66.4988 39.7925 69.5544 44.3989 Q72.6331 48.9822 72.6331 57.7322 Q72.6331 66.459 69.5544 71.0654 Q66.4988 75.6488 60.6887 75.6488 Q54.8785 75.6488 51.7998 71.0654 Q48.7443 66.459 48.7443 57.7322 Q48.7443 48.9822 51.7998 44.3989 Q54.8785 39.7925 60.6887 39.7925 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip122)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,57.6975 243.356,64.4688 302.566,84.378 361.777,115.916 420.987,156.245 480.197,201.188 539.407,245.381 598.618,282.696 657.828,307.679 717.038,319.151 \n",
" 776.248,322.515 835.459,325.225 894.669,331.908 953.879,344.065 1013.09,361.427 1072.3,382.923 1131.51,406.143 1190.72,405.503 1249.93,380.962 1309.14,358.339 \n",
" 1368.35,342.026 1427.56,334.8 1486.77,337.258 1545.98,345.743 1605.19,349.962 1664.4,338.824 1723.61,316.004 1782.82,293.765 1842.03,281.506 1901.24,284.257 \n",
" \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"\n",
"M1657.64 163.236 L1892.09 163.236 L1892.09 59.5558 L1657.64 59.5558 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1657.64,163.236 1892.09,163.236 1892.09,59.5558 1657.64,59.5558 1657.64,163.236 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1677.87,111.396 1799.21,111.396 \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"M1833.27 131.083 Q1831.47 135.713 1829.76 137.125 Q1828.04 138.537 1825.17 138.537 L1821.77 138.537 L1821.77 134.972 L1824.27 134.972 Q1826.03 134.972 1827 134.139 Q1827.97 133.305 1829.15 130.204 L1829.92 128.259 L1819.43 102.75 L1823.95 102.75 L1832.05 123.028 L1840.15 102.75 L1844.66 102.75 L1833.27 131.083 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1851.95 124.741 L1859.59 124.741 L1859.59 98.3751 L1851.28 100.042 L1851.28 95.7825 L1859.55 94.1158 L1864.22 94.1158 L1864.22 124.741 L1871.86 124.741 L1871.86 128.676 L1851.95 128.676 L1851.95 124.741 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"\n",
"M132.633 988.025 L1952.76 988.025 L1952.76 618.673 L132.633 618.673 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip123\">\n",
" <rect x=\"132\" y=\"618\" width=\"1821\" height=\"370\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip123)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 184.146,988.025 184.146,618.673 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip123)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 480.197,988.025 480.197,618.673 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip123)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 776.248,988.025 776.248,618.673 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip123)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1072.3,988.025 1072.3,618.673 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip123)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1368.35,988.025 1368.35,618.673 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip123)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1664.4,988.025 1664.4,618.673 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,988.025 1952.76,988.025 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,988.025 184.146,969.127 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 480.197,988.025 480.197,969.127 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 776.248,988.025 776.248,969.127 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1072.3,988.025 1072.3,969.127 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1368.35,988.025 1368.35,969.127 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1664.4,988.025 1664.4,969.127 \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"M161.53 1031.74 Q157.919 1031.74 156.091 1035.31 Q154.285 1038.85 154.285 1045.98 Q154.285 1053.09 156.091 1056.65 Q157.919 1060.19 161.53 1060.19 Q165.165 1060.19 166.97 1056.65 Q168.799 1053.09 168.799 1045.98 Q168.799 1038.85 166.97 1035.31 Q165.165 1031.74 161.53 1031.74 M161.53 1028.04 Q167.341 1028.04 170.396 1032.65 Q173.475 1037.23 173.475 1045.98 Q173.475 1054.71 170.396 1059.31 Q167.341 1063.9 161.53 1063.9 Q155.72 1063.9 152.642 1059.31 Q149.586 1054.71 149.586 1045.98 Q149.586 1037.23 152.642 1032.65 Q155.72 1028.04 161.53 1028.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M181.692 1057.35 L186.577 1057.35 L186.577 1063.23 L181.692 1063.23 L181.692 1057.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M206.762 1031.74 Q203.151 1031.74 201.322 1035.31 Q199.516 1038.85 199.516 1045.98 Q199.516 1053.09 201.322 1056.65 Q203.151 1060.19 206.762 1060.19 Q210.396 1060.19 212.201 1056.65 Q214.03 1053.09 214.03 1045.98 Q214.03 1038.85 212.201 1035.31 Q210.396 1031.74 206.762 1031.74 M206.762 1028.04 Q212.572 1028.04 215.627 1032.65 Q218.706 1037.23 218.706 1045.98 Q218.706 1054.71 215.627 1059.31 Q212.572 1063.9 206.762 1063.9 Q200.951 1063.9 197.873 1059.31 Q194.817 1054.71 194.817 1045.98 Q194.817 1037.23 197.873 1032.65 Q200.951 1028.04 206.762 1028.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M458.079 1031.74 Q454.468 1031.74 452.639 1035.31 Q450.834 1038.85 450.834 1045.98 Q450.834 1053.09 452.639 1056.65 Q454.468 1060.19 458.079 1060.19 Q461.713 1060.19 463.519 1056.65 Q465.348 1053.09 465.348 1045.98 Q465.348 1038.85 463.519 1035.31 Q461.713 1031.74 458.079 1031.74 M458.079 1028.04 Q463.889 1028.04 466.945 1032.65 Q470.024 1037.23 470.024 1045.98 Q470.024 1054.71 466.945 1059.31 Q463.889 1063.9 458.079 1063.9 Q452.269 1063.9 449.19 1059.31 Q446.135 1054.71 446.135 1045.98 Q446.135 1037.23 449.19 1032.65 Q452.269 1028.04 458.079 1028.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M478.241 1057.35 L483.125 1057.35 L483.125 1063.23 L478.241 1063.23 L478.241 1057.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M493.357 1028.67 L511.713 1028.67 L511.713 1032.6 L497.639 1032.6 L497.639 1041.07 Q498.658 1040.73 499.676 1040.56 Q500.695 1040.38 501.713 1040.38 Q507.5 1040.38 510.88 1043.55 Q514.26 1046.72 514.26 1052.14 Q514.26 1057.72 510.787 1060.82 Q507.315 1063.9 500.996 1063.9 Q498.82 1063.9 496.551 1063.53 Q494.306 1063.16 491.899 1062.41 L491.899 1057.72 Q493.982 1058.85 496.204 1059.41 Q498.426 1059.96 500.903 1059.96 Q504.908 1059.96 507.246 1057.85 Q509.584 1055.75 509.584 1052.14 Q509.584 1048.53 507.246 1046.42 Q504.908 1044.31 500.903 1044.31 Q499.028 1044.31 497.153 1044.73 Q495.301 1045.15 493.357 1046.03 L493.357 1028.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M743.401 1059.29 L751.04 1059.29 L751.04 1032.92 L742.73 1034.59 L742.73 1030.33 L750.994 1028.67 L755.67 1028.67 L755.67 1059.29 L763.309 1059.29 L763.309 1063.23 L743.401 1063.23 L743.401 1059.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M772.753 1057.35 L777.637 1057.35 L777.637 1063.23 L772.753 1063.23 L772.753 1057.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M797.822 1031.74 Q794.211 1031.74 792.383 1035.31 Q790.577 1038.85 790.577 1045.98 Q790.577 1053.09 792.383 1056.65 Q794.211 1060.19 797.822 1060.19 Q801.457 1060.19 803.262 1056.65 Q805.091 1053.09 805.091 1045.98 Q805.091 1038.85 803.262 1035.31 Q801.457 1031.74 797.822 1031.74 M797.822 1028.04 Q803.633 1028.04 806.688 1032.65 Q809.767 1037.23 809.767 1045.98 Q809.767 1054.71 806.688 1059.31 Q803.633 1063.9 797.822 1063.9 Q792.012 1063.9 788.934 1059.31 Q785.878 1054.71 785.878 1045.98 Q785.878 1037.23 788.934 1032.65 Q792.012 1028.04 797.822 1028.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1039.95 1059.29 L1047.59 1059.29 L1047.59 1032.92 L1039.28 1034.59 L1039.28 1030.33 L1047.54 1028.67 L1052.22 1028.67 L1052.22 1059.29 L1059.86 1059.29 L1059.86 1063.23 L1039.95 1063.23 L1039.95 1059.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1069.3 1057.35 L1074.19 1057.35 L1074.19 1063.23 L1069.3 1063.23 L1069.3 1057.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1084.42 1028.67 L1102.77 1028.67 L1102.77 1032.6 L1088.7 1032.6 L1088.7 1041.07 Q1089.72 1040.73 1090.74 1040.56 Q1091.76 1040.38 1092.77 1040.38 Q1098.56 1040.38 1101.94 1043.55 Q1105.32 1046.72 1105.32 1052.14 Q1105.32 1057.72 1101.85 1060.82 Q1098.38 1063.9 1092.06 1063.9 Q1089.88 1063.9 1087.61 1063.53 Q1085.37 1063.16 1082.96 1062.41 L1082.96 1057.72 Q1085.04 1058.85 1087.26 1059.41 Q1089.49 1059.96 1091.96 1059.96 Q1095.97 1059.96 1098.31 1057.85 Q1100.64 1055.75 1100.64 1052.14 Q1100.64 1048.53 1098.31 1046.42 Q1095.97 1044.31 1091.96 1044.31 Q1090.09 1044.31 1088.21 1044.73 Q1086.36 1045.15 1084.42 1046.03 L1084.42 1028.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1339.59 1059.29 L1355.91 1059.29 L1355.91 1063.23 L1333.96 1063.23 L1333.96 1059.29 Q1336.63 1056.54 1341.21 1051.91 Q1345.82 1047.25 1347 1045.91 Q1349.24 1043.39 1350.12 1041.65 Q1351.02 1039.89 1351.02 1038.2 Q1351.02 1035.45 1349.08 1033.71 Q1347.16 1031.98 1344.06 1031.98 Q1341.86 1031.98 1339.4 1032.74 Q1336.97 1033.5 1334.2 1035.05 L1334.2 1030.33 Q1337.02 1029.2 1339.47 1028.62 Q1341.93 1028.04 1343.96 1028.04 Q1349.33 1028.04 1352.53 1030.73 Q1355.72 1033.41 1355.72 1037.9 Q1355.72 1040.03 1354.91 1041.95 Q1354.13 1043.85 1352.02 1046.44 Q1351.44 1047.11 1348.34 1050.33 Q1345.24 1053.53 1339.59 1059.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1365.72 1057.35 L1370.61 1057.35 L1370.61 1063.23 L1365.72 1063.23 L1365.72 1057.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1390.79 1031.74 Q1387.18 1031.74 1385.35 1035.31 Q1383.55 1038.85 1383.55 1045.98 Q1383.55 1053.09 1385.35 1056.65 Q1387.18 1060.19 1390.79 1060.19 Q1394.43 1060.19 1396.23 1056.65 Q1398.06 1053.09 1398.06 1045.98 Q1398.06 1038.85 1396.23 1035.31 Q1394.43 1031.74 1390.79 1031.74 M1390.79 1028.04 Q1396.6 1028.04 1399.66 1032.65 Q1402.74 1037.23 1402.74 1045.98 Q1402.74 1054.71 1399.66 1059.31 Q1396.6 1063.9 1390.79 1063.9 Q1384.98 1063.9 1381.9 1059.31 Q1378.85 1054.71 1378.85 1045.98 Q1378.85 1037.23 1381.9 1032.65 Q1384.98 1028.04 1390.79 1028.04 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1636.14 1059.29 L1652.46 1059.29 L1652.46 1063.23 L1630.51 1063.23 L1630.51 1059.29 Q1633.18 1056.54 1637.76 1051.91 Q1642.37 1047.25 1643.55 1045.91 Q1645.79 1043.39 1646.67 1041.65 Q1647.57 1039.89 1647.57 1038.2 Q1647.57 1035.45 1645.63 1033.71 Q1643.71 1031.98 1640.61 1031.98 Q1638.41 1031.98 1635.95 1032.74 Q1633.52 1033.5 1630.74 1035.05 L1630.74 1030.33 Q1633.57 1029.2 1636.02 1028.62 Q1638.48 1028.04 1640.51 1028.04 Q1645.88 1028.04 1649.08 1030.73 Q1652.27 1033.41 1652.27 1037.9 Q1652.27 1040.03 1651.46 1041.95 Q1650.68 1043.85 1648.57 1046.44 Q1647.99 1047.11 1644.89 1050.33 Q1641.79 1053.53 1636.14 1059.29 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1662.27 1057.35 L1667.16 1057.35 L1667.16 1063.23 L1662.27 1063.23 L1662.27 1057.35 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1677.39 1028.67 L1695.74 1028.67 L1695.74 1032.6 L1681.67 1032.6 L1681.67 1041.07 Q1682.69 1040.73 1683.71 1040.56 Q1684.73 1040.38 1685.74 1040.38 Q1691.53 1040.38 1694.91 1043.55 Q1698.29 1046.72 1698.29 1052.14 Q1698.29 1057.72 1694.82 1060.82 Q1691.35 1063.9 1685.03 1063.9 Q1682.85 1063.9 1680.58 1063.53 Q1678.34 1063.16 1675.93 1062.41 L1675.93 1057.72 Q1678.01 1058.85 1680.24 1059.41 Q1682.46 1059.96 1684.93 1059.96 Q1688.94 1059.96 1691.28 1057.85 Q1693.61 1055.75 1693.61 1052.14 Q1693.61 1048.53 1691.28 1046.42 Q1688.94 1044.31 1684.93 1044.31 Q1683.06 1044.31 1681.18 1044.73 Q1679.33 1045.15 1677.39 1046.03 L1677.39 1028.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip123)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,925.199 1952.76,925.199 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip123)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,851.181 1952.76,851.181 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip123)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,777.162 1952.76,777.162 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip123)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,703.144 1952.76,703.144 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip123)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,629.126 1952.76,629.126 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,988.025 132.633,618.673 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,925.199 151.531,925.199 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,851.181 151.531,851.181 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,777.162 151.531,777.162 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,703.144 151.531,703.144 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,629.126 151.531,629.126 \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"M17.0547 910.997 Q13.4436 910.997 11.6149 914.562 Q9.80933 918.104 9.80933 925.233 Q9.80933 932.34 11.6149 935.905 Q13.4436 939.446 17.0547 939.446 Q20.6889 939.446 22.4944 935.905 Q24.3231 932.34 24.3231 925.233 Q24.3231 918.104 22.4944 914.562 Q20.6889 910.997 17.0547 910.997 M17.0547 907.294 Q22.8648 907.294 25.9204 911.9 Q28.999 916.484 28.999 925.233 Q28.999 933.96 25.9204 938.567 Q22.8648 943.15 17.0547 943.15 Q11.2445 943.15 8.16582 938.567 Q5.11028 933.96 5.11028 925.233 Q5.11028 916.484 8.16582 911.9 Q11.2445 907.294 17.0547 907.294 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M37.2166 936.599 L42.1008 936.599 L42.1008 942.479 L37.2166 942.479 L37.2166 936.599 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M56.3137 938.544 L72.6331 938.544 L72.6331 942.479 L50.6887 942.479 L50.6887 938.544 Q53.3508 935.789 57.9341 931.159 Q62.5405 926.507 63.7211 925.164 Q65.9664 922.641 66.8461 920.905 Q67.7488 919.146 67.7488 917.456 Q67.7488 914.701 65.8044 912.965 Q63.8831 911.229 60.7813 911.229 Q58.5822 911.229 56.1285 911.993 Q53.698 912.757 50.9202 914.308 L50.9202 909.585 Q53.7443 908.451 56.198 907.872 Q58.6517 907.294 60.6887 907.294 Q66.059 907.294 69.2535 909.979 Q72.4479 912.664 72.4479 917.155 Q72.4479 919.284 71.6377 921.206 Q70.8507 923.104 68.7442 925.696 Q68.1655 926.368 65.0637 929.585 Q61.9618 932.78 56.3137 938.544 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M14.9713 836.979 Q11.3602 836.979 9.53155 840.544 Q7.726 844.086 7.726 851.215 Q7.726 858.322 9.53155 861.887 Q11.3602 865.428 14.9713 865.428 Q18.6056 865.428 20.4111 861.887 Q22.2398 858.322 22.2398 851.215 Q22.2398 844.086 20.4111 840.544 Q18.6056 836.979 14.9713 836.979 M14.9713 833.276 Q20.7815 833.276 23.837 837.882 Q26.9157 842.465 26.9157 851.215 Q26.9157 859.942 23.837 864.549 Q20.7815 869.132 14.9713 869.132 Q9.16118 869.132 6.08249 864.549 Q3.02696 859.942 3.02696 851.215 Q3.02696 842.465 6.08249 837.882 Q9.16118 833.276 14.9713 833.276 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M35.1333 862.581 L40.0175 862.581 L40.0175 868.461 L35.1333 868.461 L35.1333 862.581 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M63.0498 837.975 L51.2443 856.424 L63.0498 856.424 L63.0498 837.975 M61.8229 833.901 L67.7025 833.901 L67.7025 856.424 L72.6331 856.424 L72.6331 860.312 L67.7025 860.312 L67.7025 868.461 L63.0498 868.461 L63.0498 860.312 L47.448 860.312 L47.448 855.799 L61.8229 833.901 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M15.2954 762.961 Q11.6843 762.961 9.85562 766.526 Q8.05008 770.068 8.05008 777.197 Q8.05008 784.304 9.85562 787.868 Q11.6843 791.41 15.2954 791.41 Q18.9296 791.41 20.7352 787.868 Q22.5639 784.304 22.5639 777.197 Q22.5639 770.068 20.7352 766.526 Q18.9296 762.961 15.2954 762.961 M15.2954 759.257 Q21.1056 759.257 24.1611 763.864 Q27.2398 768.447 27.2398 777.197 Q27.2398 785.924 24.1611 790.53 Q21.1056 795.114 15.2954 795.114 Q9.48525 795.114 6.40657 790.53 Q3.35103 785.924 3.35103 777.197 Q3.35103 768.447 6.40657 763.864 Q9.48525 759.257 15.2954 759.257 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M35.4573 788.563 L40.3416 788.563 L40.3416 794.442 L35.4573 794.442 L35.4573 788.563 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M61.1053 775.299 Q57.9572 775.299 56.1054 777.452 Q54.2767 779.605 54.2767 783.354 Q54.2767 787.081 56.1054 789.257 Q57.9572 791.41 61.1053 791.41 Q64.2535 791.41 66.0822 789.257 Q67.934 787.081 67.934 783.354 Q67.934 779.605 66.0822 777.452 Q64.2535 775.299 61.1053 775.299 M70.3877 760.646 L70.3877 764.906 Q68.6285 764.072 66.8229 763.632 Q65.0405 763.193 63.2813 763.193 Q58.6517 763.193 56.198 766.318 Q53.7674 769.443 53.4202 775.762 Q54.7859 773.748 56.8461 772.683 Q58.9063 771.595 61.3831 771.595 Q66.5914 771.595 69.6007 774.767 Q72.6331 777.915 72.6331 783.354 Q72.6331 788.679 69.4849 791.896 Q66.3368 795.114 61.1053 795.114 Q55.11 795.114 51.9387 790.53 Q48.7675 785.924 48.7675 777.197 Q48.7675 769.003 52.6563 764.142 Q56.5452 759.257 63.0961 759.257 Q64.8553 759.257 66.6377 759.605 Q68.4433 759.952 70.3877 760.646 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M15.55 688.943 Q11.9389 688.943 10.1103 692.508 Q8.3047 696.049 8.3047 703.179 Q8.3047 710.285 10.1103 713.85 Q11.9389 717.392 15.55 717.392 Q19.1843 717.392 20.9898 713.85 Q22.8185 710.285 22.8185 703.179 Q22.8185 696.049 20.9898 692.508 Q19.1843 688.943 15.55 688.943 M15.55 685.239 Q21.3602 685.239 24.4157 689.846 Q27.4944 694.429 27.4944 703.179 Q27.4944 711.906 24.4157 716.512 Q21.3602 721.096 15.55 721.096 Q9.73988 721.096 6.66119 716.512 Q3.60566 711.906 3.60566 703.179 Q3.60566 694.429 6.66119 689.846 Q9.73988 685.239 15.55 685.239 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M35.712 714.545 L40.5962 714.545 L40.5962 720.424 L35.712 720.424 L35.712 714.545 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M60.7813 704.012 Q57.448 704.012 55.5267 705.795 Q53.6285 707.577 53.6285 710.702 Q53.6285 713.827 55.5267 715.609 Q57.448 717.392 60.7813 717.392 Q64.1146 717.392 66.0359 715.609 Q67.9572 713.804 67.9572 710.702 Q67.9572 707.577 66.0359 705.795 Q64.1377 704.012 60.7813 704.012 M56.1054 702.022 Q53.0961 701.281 51.4063 699.221 Q49.7397 697.16 49.7397 694.197 Q49.7397 690.054 52.6795 687.647 Q55.6424 685.239 60.7813 685.239 Q65.9433 685.239 68.8831 687.647 Q71.8229 690.054 71.8229 694.197 Q71.8229 697.16 70.1331 699.221 Q68.4664 701.281 65.4803 702.022 Q68.8599 702.809 70.7349 705.1 Q72.6331 707.392 72.6331 710.702 Q72.6331 715.725 69.5544 718.41 Q66.4988 721.096 60.7813 721.096 Q55.0637 721.096 51.985 718.41 Q48.9295 715.725 48.9295 710.702 Q48.9295 707.392 50.8276 705.1 Q52.7258 702.809 56.1054 702.022 M54.3924 694.637 Q54.3924 697.322 56.0591 698.827 Q57.7489 700.332 60.7813 700.332 Q63.7905 700.332 65.4803 698.827 Q67.1933 697.322 67.1933 694.637 Q67.1933 691.952 65.4803 690.448 Q63.7905 688.943 60.7813 688.943 Q57.7489 688.943 56.0591 690.448 Q54.3924 691.952 54.3924 694.637 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M6.26768 642.471 L13.9065 642.471 L13.9065 616.105 L5.59639 617.772 L5.59639 613.513 L13.8602 611.846 L18.5361 611.846 L18.5361 642.471 L26.175 642.471 L26.175 646.406 L6.26768 646.406 L6.26768 642.471 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M35.6194 640.526 L40.5036 640.526 L40.5036 646.406 L35.6194 646.406 L35.6194 640.526 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M60.6887 614.925 Q57.0776 614.925 55.2489 618.49 Q53.4434 622.031 53.4434 629.161 Q53.4434 636.267 55.2489 639.832 Q57.0776 643.374 60.6887 643.374 Q64.3229 643.374 66.1285 639.832 Q67.9572 636.267 67.9572 629.161 Q67.9572 622.031 66.1285 618.49 Q64.3229 614.925 60.6887 614.925 M60.6887 611.221 Q66.4988 611.221 69.5544 615.827 Q72.6331 620.411 72.6331 629.161 Q72.6331 637.888 69.5544 642.494 Q66.4988 647.077 60.6887 647.077 Q54.8785 647.077 51.7998 642.494 Q48.7443 637.888 48.7443 629.161 Q48.7443 620.411 51.7998 615.827 Q54.8785 611.221 60.6887 611.221 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip123)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,629.126 243.356,642.078 302.566,678.962 361.777,733.739 420.987,797.042 480.197,857.369 539.407,902.406 598.618,923.98 657.828,929.955 717.038,936.357 \n",
" 776.248,949.451 835.459,966.38 894.669,977.572 953.879,974.107 1013.09,967.564 1072.3,965.849 1131.51,967.204 1190.72,963.848 1249.93,950.895 1309.14,932.591 \n",
" 1368.35,914.293 1427.56,899.454 1486.77,890.102 1545.98,887.299 1605.19,891.422 1664.4,902.274 1723.61,918.991 1782.82,939.694 1842.03,960.476 1901.24,971.878 \n",
" \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"\n",
"M1658.01 734.664 L1892.09 734.664 L1892.09 630.984 L1658.01 630.984 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1658.01,734.664 1892.09,734.664 1892.09,630.984 1658.01,630.984 1658.01,734.664 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1678.24,682.824 1799.58,682.824 \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"M1833.64 702.512 Q1831.84 707.141 1830.13 708.553 Q1828.41 709.965 1825.54 709.965 L1822.14 709.965 L1822.14 706.401 L1824.64 706.401 Q1826.4 706.401 1827.37 705.567 Q1828.34 704.734 1829.52 701.632 L1830.29 699.688 L1819.8 674.179 L1824.32 674.179 L1832.42 694.456 L1840.52 674.179 L1845.03 674.179 L1833.64 702.512 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1855.54 696.169 L1871.86 696.169 L1871.86 700.104 L1849.92 700.104 L1849.92 696.169 Q1852.58 693.415 1857.16 688.785 Q1861.77 684.132 1862.95 682.79 Q1865.19 680.267 1866.07 678.53 Q1866.98 676.771 1866.98 675.081 Q1866.98 672.327 1865.03 670.591 Q1863.11 668.855 1860.01 668.855 Q1857.81 668.855 1855.36 669.618 Q1852.93 670.382 1850.15 671.933 L1850.15 667.211 Q1852.97 666.077 1855.43 665.498 Q1857.88 664.919 1859.92 664.919 Q1865.29 664.919 1868.48 667.605 Q1871.68 670.29 1871.68 674.78 Q1871.68 676.91 1870.87 678.831 Q1870.08 680.73 1867.97 683.322 Q1867.39 683.993 1864.29 687.211 Q1861.19 690.405 1855.54 696.169 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"\n",
"M132.633 1559.45 L1952.76 1559.45 L1952.76 1190.1 L132.633 1190.1 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip124\">\n",
" <rect x=\"132\" y=\"1190\" width=\"1821\" height=\"370\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip124)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 184.146,1559.45 184.146,1190.1 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip124)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 480.197,1559.45 480.197,1190.1 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip124)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 776.248,1559.45 776.248,1190.1 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip124)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1072.3,1559.45 1072.3,1190.1 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip124)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1368.35,1559.45 1368.35,1190.1 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip124)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1664.4,1559.45 1664.4,1190.1 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,1559.45 1952.76,1559.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,1559.45 184.146,1540.56 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 480.197,1559.45 480.197,1540.56 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 776.248,1559.45 776.248,1540.56 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1072.3,1559.45 1072.3,1540.56 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1368.35,1559.45 1368.35,1540.56 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1664.4,1559.45 1664.4,1540.56 \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"M161.53 1603.17 Q157.919 1603.17 156.091 1606.74 Q154.285 1610.28 154.285 1617.41 Q154.285 1624.51 156.091 1628.08 Q157.919 1631.62 161.53 1631.62 Q165.165 1631.62 166.97 1628.08 Q168.799 1624.51 168.799 1617.41 Q168.799 1610.28 166.97 1606.74 Q165.165 1603.17 161.53 1603.17 M161.53 1599.47 Q167.341 1599.47 170.396 1604.08 Q173.475 1608.66 173.475 1617.41 Q173.475 1626.14 170.396 1630.74 Q167.341 1635.32 161.53 1635.32 Q155.72 1635.32 152.642 1630.74 Q149.586 1626.14 149.586 1617.41 Q149.586 1608.66 152.642 1604.08 Q155.72 1599.47 161.53 1599.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M181.692 1628.77 L186.577 1628.77 L186.577 1634.65 L181.692 1634.65 L181.692 1628.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M206.762 1603.17 Q203.151 1603.17 201.322 1606.74 Q199.516 1610.28 199.516 1617.41 Q199.516 1624.51 201.322 1628.08 Q203.151 1631.62 206.762 1631.62 Q210.396 1631.62 212.201 1628.08 Q214.03 1624.51 214.03 1617.41 Q214.03 1610.28 212.201 1606.74 Q210.396 1603.17 206.762 1603.17 M206.762 1599.47 Q212.572 1599.47 215.627 1604.08 Q218.706 1608.66 218.706 1617.41 Q218.706 1626.14 215.627 1630.74 Q212.572 1635.32 206.762 1635.32 Q200.951 1635.32 197.873 1630.74 Q194.817 1626.14 194.817 1617.41 Q194.817 1608.66 197.873 1604.08 Q200.951 1599.47 206.762 1599.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M458.079 1603.17 Q454.468 1603.17 452.639 1606.74 Q450.834 1610.28 450.834 1617.41 Q450.834 1624.51 452.639 1628.08 Q454.468 1631.62 458.079 1631.62 Q461.713 1631.62 463.519 1628.08 Q465.348 1624.51 465.348 1617.41 Q465.348 1610.28 463.519 1606.74 Q461.713 1603.17 458.079 1603.17 M458.079 1599.47 Q463.889 1599.47 466.945 1604.08 Q470.024 1608.66 470.024 1617.41 Q470.024 1626.14 466.945 1630.74 Q463.889 1635.32 458.079 1635.32 Q452.269 1635.32 449.19 1630.74 Q446.135 1626.14 446.135 1617.41 Q446.135 1608.66 449.19 1604.08 Q452.269 1599.47 458.079 1599.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M478.241 1628.77 L483.125 1628.77 L483.125 1634.65 L478.241 1634.65 L478.241 1628.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M493.357 1600.09 L511.713 1600.09 L511.713 1604.03 L497.639 1604.03 L497.639 1612.5 Q498.658 1612.15 499.676 1611.99 Q500.695 1611.81 501.713 1611.81 Q507.5 1611.81 510.88 1614.98 Q514.26 1618.15 514.26 1623.57 Q514.26 1629.14 510.787 1632.25 Q507.315 1635.32 500.996 1635.32 Q498.82 1635.32 496.551 1634.95 Q494.306 1634.58 491.899 1633.84 L491.899 1629.14 Q493.982 1630.28 496.204 1630.83 Q498.426 1631.39 500.903 1631.39 Q504.908 1631.39 507.246 1629.28 Q509.584 1627.18 509.584 1623.57 Q509.584 1619.95 507.246 1617.85 Q504.908 1615.74 500.903 1615.74 Q499.028 1615.74 497.153 1616.16 Q495.301 1616.57 493.357 1617.45 L493.357 1600.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M743.401 1630.72 L751.04 1630.72 L751.04 1604.35 L742.73 1606.02 L742.73 1601.76 L750.994 1600.09 L755.67 1600.09 L755.67 1630.72 L763.309 1630.72 L763.309 1634.65 L743.401 1634.65 L743.401 1630.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M772.753 1628.77 L777.637 1628.77 L777.637 1634.65 L772.753 1634.65 L772.753 1628.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M797.822 1603.17 Q794.211 1603.17 792.383 1606.74 Q790.577 1610.28 790.577 1617.41 Q790.577 1624.51 792.383 1628.08 Q794.211 1631.62 797.822 1631.62 Q801.457 1631.62 803.262 1628.08 Q805.091 1624.51 805.091 1617.41 Q805.091 1610.28 803.262 1606.74 Q801.457 1603.17 797.822 1603.17 M797.822 1599.47 Q803.633 1599.47 806.688 1604.08 Q809.767 1608.66 809.767 1617.41 Q809.767 1626.14 806.688 1630.74 Q803.633 1635.32 797.822 1635.32 Q792.012 1635.32 788.934 1630.74 Q785.878 1626.14 785.878 1617.41 Q785.878 1608.66 788.934 1604.08 Q792.012 1599.47 797.822 1599.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1039.95 1630.72 L1047.59 1630.72 L1047.59 1604.35 L1039.28 1606.02 L1039.28 1601.76 L1047.54 1600.09 L1052.22 1600.09 L1052.22 1630.72 L1059.86 1630.72 L1059.86 1634.65 L1039.95 1634.65 L1039.95 1630.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1069.3 1628.77 L1074.19 1628.77 L1074.19 1634.65 L1069.3 1634.65 L1069.3 1628.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1084.42 1600.09 L1102.77 1600.09 L1102.77 1604.03 L1088.7 1604.03 L1088.7 1612.5 Q1089.72 1612.15 1090.74 1611.99 Q1091.76 1611.81 1092.77 1611.81 Q1098.56 1611.81 1101.94 1614.98 Q1105.32 1618.15 1105.32 1623.57 Q1105.32 1629.14 1101.85 1632.25 Q1098.38 1635.32 1092.06 1635.32 Q1089.88 1635.32 1087.61 1634.95 Q1085.37 1634.58 1082.96 1633.84 L1082.96 1629.14 Q1085.04 1630.28 1087.26 1630.83 Q1089.49 1631.39 1091.96 1631.39 Q1095.97 1631.39 1098.31 1629.28 Q1100.64 1627.18 1100.64 1623.57 Q1100.64 1619.95 1098.31 1617.85 Q1095.97 1615.74 1091.96 1615.74 Q1090.09 1615.74 1088.21 1616.16 Q1086.36 1616.57 1084.42 1617.45 L1084.42 1600.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1339.59 1630.72 L1355.91 1630.72 L1355.91 1634.65 L1333.96 1634.65 L1333.96 1630.72 Q1336.63 1627.96 1341.21 1623.33 Q1345.82 1618.68 1347 1617.34 Q1349.24 1614.82 1350.12 1613.08 Q1351.02 1611.32 1351.02 1609.63 Q1351.02 1606.88 1349.08 1605.14 Q1347.16 1603.4 1344.06 1603.4 Q1341.86 1603.4 1339.4 1604.17 Q1336.97 1604.93 1334.2 1606.48 L1334.2 1601.76 Q1337.02 1600.63 1339.47 1600.05 Q1341.93 1599.47 1343.96 1599.47 Q1349.33 1599.47 1352.53 1602.15 Q1355.72 1604.84 1355.72 1609.33 Q1355.72 1611.46 1354.91 1613.38 Q1354.13 1615.28 1352.02 1617.87 Q1351.44 1618.54 1348.34 1621.76 Q1345.24 1624.95 1339.59 1630.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1365.72 1628.77 L1370.61 1628.77 L1370.61 1634.65 L1365.72 1634.65 L1365.72 1628.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1390.79 1603.17 Q1387.18 1603.17 1385.35 1606.74 Q1383.55 1610.28 1383.55 1617.41 Q1383.55 1624.51 1385.35 1628.08 Q1387.18 1631.62 1390.79 1631.62 Q1394.43 1631.62 1396.23 1628.08 Q1398.06 1624.51 1398.06 1617.41 Q1398.06 1610.28 1396.23 1606.74 Q1394.43 1603.17 1390.79 1603.17 M1390.79 1599.47 Q1396.6 1599.47 1399.66 1604.08 Q1402.74 1608.66 1402.74 1617.41 Q1402.74 1626.14 1399.66 1630.74 Q1396.6 1635.32 1390.79 1635.32 Q1384.98 1635.32 1381.9 1630.74 Q1378.85 1626.14 1378.85 1617.41 Q1378.85 1608.66 1381.9 1604.08 Q1384.98 1599.47 1390.79 1599.47 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1636.14 1630.72 L1652.46 1630.72 L1652.46 1634.65 L1630.51 1634.65 L1630.51 1630.72 Q1633.18 1627.96 1637.76 1623.33 Q1642.37 1618.68 1643.55 1617.34 Q1645.79 1614.82 1646.67 1613.08 Q1647.57 1611.32 1647.57 1609.63 Q1647.57 1606.88 1645.63 1605.14 Q1643.71 1603.4 1640.61 1603.4 Q1638.41 1603.4 1635.95 1604.17 Q1633.52 1604.93 1630.74 1606.48 L1630.74 1601.76 Q1633.57 1600.63 1636.02 1600.05 Q1638.48 1599.47 1640.51 1599.47 Q1645.88 1599.47 1649.08 1602.15 Q1652.27 1604.84 1652.27 1609.33 Q1652.27 1611.46 1651.46 1613.38 Q1650.68 1615.28 1648.57 1617.87 Q1647.99 1618.54 1644.89 1621.76 Q1641.79 1624.95 1636.14 1630.72 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1662.27 1628.77 L1667.16 1628.77 L1667.16 1634.65 L1662.27 1634.65 L1662.27 1628.77 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1677.39 1600.09 L1695.74 1600.09 L1695.74 1604.03 L1681.67 1604.03 L1681.67 1612.5 Q1682.69 1612.15 1683.71 1611.99 Q1684.73 1611.81 1685.74 1611.81 Q1691.53 1611.81 1694.91 1614.98 Q1698.29 1618.15 1698.29 1623.57 Q1698.29 1629.14 1694.82 1632.25 Q1691.35 1635.32 1685.03 1635.32 Q1682.85 1635.32 1680.58 1634.95 Q1678.34 1634.58 1675.93 1633.84 L1675.93 1629.14 Q1678.01 1630.28 1680.24 1630.83 Q1682.46 1631.39 1684.93 1631.39 Q1688.94 1631.39 1691.28 1629.28 Q1693.61 1627.18 1693.61 1623.57 Q1693.61 1619.95 1691.28 1617.85 Q1688.94 1615.74 1684.93 1615.74 Q1683.06 1615.74 1681.18 1616.16 Q1679.33 1616.57 1677.39 1617.45 L1677.39 1600.09 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip124)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,1487.93 1952.76,1487.93 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip124)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,1416.09 1952.76,1416.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip124)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,1344.24 1952.76,1344.24 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip124)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,1272.4 1952.76,1272.4 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip124)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,1200.55 1952.76,1200.55 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,1559.45 132.633,1190.1 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,1487.93 151.531,1487.93 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,1416.09 151.531,1416.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,1344.24 151.531,1344.24 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,1272.4 151.531,1272.4 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,1200.55 151.531,1200.55 \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"M17.0547 1473.73 Q13.4436 1473.73 11.6149 1477.3 Q9.80933 1480.84 9.80933 1487.97 Q9.80933 1495.08 11.6149 1498.64 Q13.4436 1502.18 17.0547 1502.18 Q20.6889 1502.18 22.4944 1498.64 Q24.3231 1495.08 24.3231 1487.97 Q24.3231 1480.84 22.4944 1477.3 Q20.6889 1473.73 17.0547 1473.73 M17.0547 1470.03 Q22.8648 1470.03 25.9204 1474.64 Q28.999 1479.22 28.999 1487.97 Q28.999 1496.7 25.9204 1501.3 Q22.8648 1505.89 17.0547 1505.89 Q11.2445 1505.89 8.16582 1501.3 Q5.11028 1496.7 5.11028 1487.97 Q5.11028 1479.22 8.16582 1474.64 Q11.2445 1470.03 17.0547 1470.03 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M37.2166 1499.33 L42.1008 1499.33 L42.1008 1505.21 L37.2166 1505.21 L37.2166 1499.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M56.3137 1501.28 L72.6331 1501.28 L72.6331 1505.21 L50.6887 1505.21 L50.6887 1501.28 Q53.3508 1498.52 57.9341 1493.89 Q62.5405 1489.24 63.7211 1487.9 Q65.9664 1485.38 66.8461 1483.64 Q67.7488 1481.88 67.7488 1480.19 Q67.7488 1477.44 65.8044 1475.7 Q63.8831 1473.96 60.7813 1473.96 Q58.5822 1473.96 56.1285 1474.73 Q53.698 1475.49 50.9202 1477.04 L50.9202 1472.32 Q53.7443 1471.19 56.198 1470.61 Q58.6517 1470.03 60.6887 1470.03 Q66.059 1470.03 69.2535 1472.71 Q72.4479 1475.4 72.4479 1479.89 Q72.4479 1482.02 71.6377 1483.94 Q70.8507 1485.84 68.7442 1488.43 Q68.1655 1489.1 65.0637 1492.32 Q61.9618 1495.51 56.3137 1501.28 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M14.9713 1401.89 Q11.3602 1401.89 9.53155 1405.45 Q7.726 1408.99 7.726 1416.12 Q7.726 1423.23 9.53155 1426.8 Q11.3602 1430.34 14.9713 1430.34 Q18.6056 1430.34 20.4111 1426.8 Q22.2398 1423.23 22.2398 1416.12 Q22.2398 1408.99 20.4111 1405.45 Q18.6056 1401.89 14.9713 1401.89 M14.9713 1398.18 Q20.7815 1398.18 23.837 1402.79 Q26.9157 1407.37 26.9157 1416.12 Q26.9157 1424.85 23.837 1429.46 Q20.7815 1434.04 14.9713 1434.04 Q9.16118 1434.04 6.08249 1429.46 Q3.02696 1424.85 3.02696 1416.12 Q3.02696 1407.37 6.08249 1402.79 Q9.16118 1398.18 14.9713 1398.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M35.1333 1427.49 L40.0175 1427.49 L40.0175 1433.37 L35.1333 1433.37 L35.1333 1427.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M63.0498 1402.88 L51.2443 1421.33 L63.0498 1421.33 L63.0498 1402.88 M61.8229 1398.81 L67.7025 1398.81 L67.7025 1421.33 L72.6331 1421.33 L72.6331 1425.22 L67.7025 1425.22 L67.7025 1433.37 L63.0498 1433.37 L63.0498 1425.22 L47.448 1425.22 L47.448 1420.71 L61.8229 1398.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M15.2954 1330.04 Q11.6843 1330.04 9.85562 1333.61 Q8.05008 1337.15 8.05008 1344.28 Q8.05008 1351.39 9.85562 1354.95 Q11.6843 1358.49 15.2954 1358.49 Q18.9296 1358.49 20.7352 1354.95 Q22.5639 1351.39 22.5639 1344.28 Q22.5639 1337.15 20.7352 1333.61 Q18.9296 1330.04 15.2954 1330.04 M15.2954 1326.34 Q21.1056 1326.34 24.1611 1330.95 Q27.2398 1335.53 27.2398 1344.28 Q27.2398 1353.01 24.1611 1357.61 Q21.1056 1362.2 15.2954 1362.2 Q9.48525 1362.2 6.40657 1357.61 Q3.35103 1353.01 3.35103 1344.28 Q3.35103 1335.53 6.40657 1330.95 Q9.48525 1326.34 15.2954 1326.34 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M35.4573 1355.64 L40.3416 1355.64 L40.3416 1361.52 L35.4573 1361.52 L35.4573 1355.64 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M61.1053 1342.38 Q57.9572 1342.38 56.1054 1344.53 Q54.2767 1346.69 54.2767 1350.44 Q54.2767 1354.16 56.1054 1356.34 Q57.9572 1358.49 61.1053 1358.49 Q64.2535 1358.49 66.0822 1356.34 Q67.934 1354.16 67.934 1350.44 Q67.934 1346.69 66.0822 1344.53 Q64.2535 1342.38 61.1053 1342.38 M70.3877 1327.73 L70.3877 1331.99 Q68.6285 1331.15 66.8229 1330.71 Q65.0405 1330.27 63.2813 1330.27 Q58.6517 1330.27 56.198 1333.4 Q53.7674 1336.52 53.4202 1342.84 Q54.7859 1340.83 56.8461 1339.77 Q58.9063 1338.68 61.3831 1338.68 Q66.5914 1338.68 69.6007 1341.85 Q72.6331 1345 72.6331 1350.44 Q72.6331 1355.76 69.4849 1358.98 Q66.3368 1362.2 61.1053 1362.2 Q55.11 1362.2 51.9387 1357.61 Q48.7675 1353.01 48.7675 1344.28 Q48.7675 1336.08 52.6563 1331.22 Q56.5452 1326.34 63.0961 1326.34 Q64.8553 1326.34 66.6377 1326.69 Q68.4433 1327.03 70.3877 1327.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M15.55 1258.2 Q11.9389 1258.2 10.1103 1261.76 Q8.3047 1265.3 8.3047 1272.43 Q8.3047 1279.54 10.1103 1283.11 Q11.9389 1286.65 15.55 1286.65 Q19.1843 1286.65 20.9898 1283.11 Q22.8185 1279.54 22.8185 1272.43 Q22.8185 1265.3 20.9898 1261.76 Q19.1843 1258.2 15.55 1258.2 M15.55 1254.49 Q21.3602 1254.49 24.4157 1259.1 Q27.4944 1263.68 27.4944 1272.43 Q27.4944 1281.16 24.4157 1285.77 Q21.3602 1290.35 15.55 1290.35 Q9.73988 1290.35 6.66119 1285.77 Q3.60566 1281.16 3.60566 1272.43 Q3.60566 1263.68 6.66119 1259.1 Q9.73988 1254.49 15.55 1254.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M35.712 1283.8 L40.5962 1283.8 L40.5962 1289.68 L35.712 1289.68 L35.712 1283.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M60.7813 1273.27 Q57.448 1273.27 55.5267 1275.05 Q53.6285 1276.83 53.6285 1279.96 Q53.6285 1283.08 55.5267 1284.86 Q57.448 1286.65 60.7813 1286.65 Q64.1146 1286.65 66.0359 1284.86 Q67.9572 1283.06 67.9572 1279.96 Q67.9572 1276.83 66.0359 1275.05 Q64.1377 1273.27 60.7813 1273.27 M56.1054 1271.28 Q53.0961 1270.54 51.4063 1268.48 Q49.7397 1266.42 49.7397 1263.45 Q49.7397 1259.31 52.6795 1256.9 Q55.6424 1254.49 60.7813 1254.49 Q65.9433 1254.49 68.8831 1256.9 Q71.8229 1259.31 71.8229 1263.45 Q71.8229 1266.42 70.1331 1268.48 Q68.4664 1270.54 65.4803 1271.28 Q68.8599 1272.06 70.7349 1274.36 Q72.6331 1276.65 72.6331 1279.96 Q72.6331 1284.98 69.5544 1287.67 Q66.4988 1290.35 60.7813 1290.35 Q55.0637 1290.35 51.985 1287.67 Q48.9295 1284.98 48.9295 1279.96 Q48.9295 1276.65 50.8276 1274.36 Q52.7258 1272.06 56.1054 1271.28 M54.3924 1263.89 Q54.3924 1266.58 56.0591 1268.08 Q57.7489 1269.59 60.7813 1269.59 Q63.7905 1269.59 65.4803 1268.08 Q67.1933 1266.58 67.1933 1263.89 Q67.1933 1261.21 65.4803 1259.7 Q63.7905 1258.2 60.7813 1258.2 Q57.7489 1258.2 56.0591 1259.7 Q54.3924 1261.21 54.3924 1263.89 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M6.26768 1213.9 L13.9065 1213.9 L13.9065 1187.53 L5.59639 1189.2 L5.59639 1184.94 L13.8602 1183.27 L18.5361 1183.27 L18.5361 1213.9 L26.175 1213.9 L26.175 1217.83 L6.26768 1217.83 L6.26768 1213.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M35.6194 1211.96 L40.5036 1211.96 L40.5036 1217.83 L35.6194 1217.83 L35.6194 1211.96 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M60.6887 1186.35 Q57.0776 1186.35 55.2489 1189.92 Q53.4434 1193.46 53.4434 1200.59 Q53.4434 1207.7 55.2489 1211.26 Q57.0776 1214.8 60.6887 1214.8 Q64.3229 1214.8 66.1285 1211.26 Q67.9572 1207.7 67.9572 1200.59 Q67.9572 1193.46 66.1285 1189.92 Q64.3229 1186.35 60.6887 1186.35 M60.6887 1182.65 Q66.4988 1182.65 69.5544 1187.26 Q72.6331 1191.84 72.6331 1200.59 Q72.6331 1209.32 69.5544 1213.92 Q66.4988 1218.51 60.6887 1218.51 Q54.8785 1218.51 51.7998 1213.92 Q48.7443 1209.32 48.7443 1200.59 Q48.7443 1191.84 51.7998 1187.26 Q54.8785 1182.65 60.6887 1182.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip124)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,1200.55 243.356,1210.63 302.566,1238.79 361.777,1280.18 420.987,1328.4 480.197,1376.67 539.407,1418.85 598.618,1450.2 657.828,1468.47 717.038,1475.23 \n",
" 776.248,1475.46 835.459,1474.48 894.669,1476.15 953.879,1482.79 1013.09,1495.23 1072.3,1512.73 1131.51,1532.42 1190.72,1543.81 1249.93,1532.5 1309.14,1517.97 \n",
" 1368.35,1508.97 1427.56,1507.65 1486.77,1514.4 1545.98,1528.4 1605.19,1547.93 1664.4,1549 1723.61,1526.14 1782.82,1505.92 1842.03,1490.87 1901.24,1482.72 \n",
" \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"\n",
"M1657.06 1306.09 L1892.09 1306.09 L1892.09 1202.41 L1657.06 1202.41 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1657.06,1306.09 1892.09,1306.09 1892.09,1202.41 1657.06,1202.41 1657.06,1306.09 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1677.29,1254.25 1798.63,1254.25 \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"M1832.7 1273.94 Q1830.89 1278.57 1829.18 1279.98 Q1827.46 1281.39 1824.59 1281.39 L1821.19 1281.39 L1821.19 1277.83 L1823.69 1277.83 Q1825.45 1277.83 1826.42 1277 Q1827.39 1276.16 1828.57 1273.06 L1829.34 1271.12 L1818.85 1245.61 L1823.37 1245.61 L1831.47 1265.88 L1839.57 1245.61 L1844.08 1245.61 L1832.7 1273.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1864.73 1252.9 Q1868.09 1253.62 1869.96 1255.88 Q1871.86 1258.15 1871.86 1261.49 Q1871.86 1266.6 1868.34 1269.4 Q1864.82 1272.2 1858.34 1272.2 Q1856.17 1272.2 1853.85 1271.76 Q1851.56 1271.35 1849.11 1270.49 L1849.11 1265.98 Q1851.05 1267.11 1853.37 1267.69 Q1855.68 1268.27 1858.2 1268.27 Q1862.6 1268.27 1864.89 1266.53 Q1867.21 1264.8 1867.21 1261.49 Q1867.21 1258.43 1865.06 1256.72 Q1862.93 1254.98 1859.11 1254.98 L1855.08 1254.98 L1855.08 1251.14 L1859.29 1251.14 Q1862.74 1251.14 1864.57 1249.77 Q1866.4 1248.38 1866.4 1245.79 Q1866.4 1243.13 1864.5 1241.72 Q1862.63 1240.28 1859.11 1240.28 Q1857.19 1240.28 1854.99 1240.7 Q1852.79 1241.12 1850.15 1242 L1850.15 1237.83 Q1852.81 1237.09 1855.13 1236.72 Q1857.46 1236.35 1859.52 1236.35 Q1864.85 1236.35 1867.95 1238.78 Q1871.05 1241.19 1871.05 1245.31 Q1871.05 1248.18 1869.41 1250.17 Q1867.76 1252.13 1864.73 1252.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"\n",
"M132.633 2130.88 L1952.76 2130.88 L1952.76 1761.53 L132.633 1761.53 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip125\">\n",
" <rect x=\"132\" y=\"1761\" width=\"1821\" height=\"370\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip125)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 184.146,2130.88 184.146,1761.53 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip125)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 480.197,2130.88 480.197,1761.53 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip125)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 776.248,2130.88 776.248,1761.53 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip125)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1072.3,2130.88 1072.3,1761.53 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip125)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1368.35,2130.88 1368.35,1761.53 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip125)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1664.4,2130.88 1664.4,1761.53 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,2130.88 1952.76,2130.88 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,2130.88 184.146,2111.98 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 480.197,2130.88 480.197,2111.98 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 776.248,2130.88 776.248,2111.98 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1072.3,2130.88 1072.3,2111.98 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1368.35,2130.88 1368.35,2111.98 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1664.4,2130.88 1664.4,2111.98 \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"M161.53 2174.6 Q157.919 2174.6 156.091 2178.17 Q154.285 2181.71 154.285 2188.84 Q154.285 2195.94 156.091 2199.51 Q157.919 2203.05 161.53 2203.05 Q165.165 2203.05 166.97 2199.51 Q168.799 2195.94 168.799 2188.84 Q168.799 2181.71 166.97 2178.17 Q165.165 2174.6 161.53 2174.6 M161.53 2170.9 Q167.341 2170.9 170.396 2175.5 Q173.475 2180.09 173.475 2188.84 Q173.475 2197.56 170.396 2202.17 Q167.341 2206.75 161.53 2206.75 Q155.72 2206.75 152.642 2202.17 Q149.586 2197.56 149.586 2188.84 Q149.586 2180.09 152.642 2175.5 Q155.72 2170.9 161.53 2170.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M181.692 2200.2 L186.577 2200.2 L186.577 2206.08 L181.692 2206.08 L181.692 2200.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M206.762 2174.6 Q203.151 2174.6 201.322 2178.17 Q199.516 2181.71 199.516 2188.84 Q199.516 2195.94 201.322 2199.51 Q203.151 2203.05 206.762 2203.05 Q210.396 2203.05 212.201 2199.51 Q214.03 2195.94 214.03 2188.84 Q214.03 2181.71 212.201 2178.17 Q210.396 2174.6 206.762 2174.6 M206.762 2170.9 Q212.572 2170.9 215.627 2175.5 Q218.706 2180.09 218.706 2188.84 Q218.706 2197.56 215.627 2202.17 Q212.572 2206.75 206.762 2206.75 Q200.951 2206.75 197.873 2202.17 Q194.817 2197.56 194.817 2188.84 Q194.817 2180.09 197.873 2175.5 Q200.951 2170.9 206.762 2170.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M458.079 2174.6 Q454.468 2174.6 452.639 2178.17 Q450.834 2181.71 450.834 2188.84 Q450.834 2195.94 452.639 2199.51 Q454.468 2203.05 458.079 2203.05 Q461.713 2203.05 463.519 2199.51 Q465.348 2195.94 465.348 2188.84 Q465.348 2181.71 463.519 2178.17 Q461.713 2174.6 458.079 2174.6 M458.079 2170.9 Q463.889 2170.9 466.945 2175.5 Q470.024 2180.09 470.024 2188.84 Q470.024 2197.56 466.945 2202.17 Q463.889 2206.75 458.079 2206.75 Q452.269 2206.75 449.19 2202.17 Q446.135 2197.56 446.135 2188.84 Q446.135 2180.09 449.19 2175.5 Q452.269 2170.9 458.079 2170.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M478.241 2200.2 L483.125 2200.2 L483.125 2206.08 L478.241 2206.08 L478.241 2200.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M493.357 2171.52 L511.713 2171.52 L511.713 2175.46 L497.639 2175.46 L497.639 2183.93 Q498.658 2183.58 499.676 2183.42 Q500.695 2183.24 501.713 2183.24 Q507.5 2183.24 510.88 2186.41 Q514.26 2189.58 514.26 2194.99 Q514.26 2200.57 510.787 2203.67 Q507.315 2206.75 500.996 2206.75 Q498.82 2206.75 496.551 2206.38 Q494.306 2206.01 491.899 2205.27 L491.899 2200.57 Q493.982 2201.71 496.204 2202.26 Q498.426 2202.82 500.903 2202.82 Q504.908 2202.82 507.246 2200.71 Q509.584 2198.61 509.584 2194.99 Q509.584 2191.38 507.246 2189.28 Q504.908 2187.17 500.903 2187.17 Q499.028 2187.17 497.153 2187.59 Q495.301 2188 493.357 2188.88 L493.357 2171.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M743.401 2202.15 L751.04 2202.15 L751.04 2175.78 L742.73 2177.45 L742.73 2173.19 L750.994 2171.52 L755.67 2171.52 L755.67 2202.15 L763.309 2202.15 L763.309 2206.08 L743.401 2206.08 L743.401 2202.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M772.753 2200.2 L777.637 2200.2 L777.637 2206.08 L772.753 2206.08 L772.753 2200.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M797.822 2174.6 Q794.211 2174.6 792.383 2178.17 Q790.577 2181.71 790.577 2188.84 Q790.577 2195.94 792.383 2199.51 Q794.211 2203.05 797.822 2203.05 Q801.457 2203.05 803.262 2199.51 Q805.091 2195.94 805.091 2188.84 Q805.091 2181.71 803.262 2178.17 Q801.457 2174.6 797.822 2174.6 M797.822 2170.9 Q803.633 2170.9 806.688 2175.5 Q809.767 2180.09 809.767 2188.84 Q809.767 2197.56 806.688 2202.17 Q803.633 2206.75 797.822 2206.75 Q792.012 2206.75 788.934 2202.17 Q785.878 2197.56 785.878 2188.84 Q785.878 2180.09 788.934 2175.5 Q792.012 2170.9 797.822 2170.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1039.95 2202.15 L1047.59 2202.15 L1047.59 2175.78 L1039.28 2177.45 L1039.28 2173.19 L1047.54 2171.52 L1052.22 2171.52 L1052.22 2202.15 L1059.86 2202.15 L1059.86 2206.08 L1039.95 2206.08 L1039.95 2202.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1069.3 2200.2 L1074.19 2200.2 L1074.19 2206.08 L1069.3 2206.08 L1069.3 2200.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1084.42 2171.52 L1102.77 2171.52 L1102.77 2175.46 L1088.7 2175.46 L1088.7 2183.93 Q1089.72 2183.58 1090.74 2183.42 Q1091.76 2183.24 1092.77 2183.24 Q1098.56 2183.24 1101.94 2186.41 Q1105.32 2189.58 1105.32 2194.99 Q1105.32 2200.57 1101.85 2203.67 Q1098.38 2206.75 1092.06 2206.75 Q1089.88 2206.75 1087.61 2206.38 Q1085.37 2206.01 1082.96 2205.27 L1082.96 2200.57 Q1085.04 2201.71 1087.26 2202.26 Q1089.49 2202.82 1091.96 2202.82 Q1095.97 2202.82 1098.31 2200.71 Q1100.64 2198.61 1100.64 2194.99 Q1100.64 2191.38 1098.31 2189.28 Q1095.97 2187.17 1091.96 2187.17 Q1090.09 2187.17 1088.21 2187.59 Q1086.36 2188 1084.42 2188.88 L1084.42 2171.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1339.59 2202.15 L1355.91 2202.15 L1355.91 2206.08 L1333.96 2206.08 L1333.96 2202.15 Q1336.63 2199.39 1341.21 2194.76 Q1345.82 2190.11 1347 2188.77 Q1349.24 2186.24 1350.12 2184.51 Q1351.02 2182.75 1351.02 2181.06 Q1351.02 2178.3 1349.08 2176.57 Q1347.16 2174.83 1344.06 2174.83 Q1341.86 2174.83 1339.4 2175.6 Q1336.97 2176.36 1334.2 2177.91 L1334.2 2173.19 Q1337.02 2172.05 1339.47 2171.48 Q1341.93 2170.9 1343.96 2170.9 Q1349.33 2170.9 1352.53 2173.58 Q1355.72 2176.27 1355.72 2180.76 Q1355.72 2182.89 1354.91 2184.81 Q1354.13 2186.71 1352.02 2189.3 Q1351.44 2189.97 1348.34 2193.19 Q1345.24 2196.38 1339.59 2202.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1365.72 2200.2 L1370.61 2200.2 L1370.61 2206.08 L1365.72 2206.08 L1365.72 2200.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1390.79 2174.6 Q1387.18 2174.6 1385.35 2178.17 Q1383.55 2181.71 1383.55 2188.84 Q1383.55 2195.94 1385.35 2199.51 Q1387.18 2203.05 1390.79 2203.05 Q1394.43 2203.05 1396.23 2199.51 Q1398.06 2195.94 1398.06 2188.84 Q1398.06 2181.71 1396.23 2178.17 Q1394.43 2174.6 1390.79 2174.6 M1390.79 2170.9 Q1396.6 2170.9 1399.66 2175.5 Q1402.74 2180.09 1402.74 2188.84 Q1402.74 2197.56 1399.66 2202.17 Q1396.6 2206.75 1390.79 2206.75 Q1384.98 2206.75 1381.9 2202.17 Q1378.85 2197.56 1378.85 2188.84 Q1378.85 2180.09 1381.9 2175.5 Q1384.98 2170.9 1390.79 2170.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1636.14 2202.15 L1652.46 2202.15 L1652.46 2206.08 L1630.51 2206.08 L1630.51 2202.15 Q1633.18 2199.39 1637.76 2194.76 Q1642.37 2190.11 1643.55 2188.77 Q1645.79 2186.24 1646.67 2184.51 Q1647.57 2182.75 1647.57 2181.06 Q1647.57 2178.3 1645.63 2176.57 Q1643.71 2174.83 1640.61 2174.83 Q1638.41 2174.83 1635.95 2175.6 Q1633.52 2176.36 1630.74 2177.91 L1630.74 2173.19 Q1633.57 2172.05 1636.02 2171.48 Q1638.48 2170.9 1640.51 2170.9 Q1645.88 2170.9 1649.08 2173.58 Q1652.27 2176.27 1652.27 2180.76 Q1652.27 2182.89 1651.46 2184.81 Q1650.68 2186.71 1648.57 2189.3 Q1647.99 2189.97 1644.89 2193.19 Q1641.79 2196.38 1636.14 2202.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1662.27 2200.2 L1667.16 2200.2 L1667.16 2206.08 L1662.27 2206.08 L1662.27 2200.2 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1677.39 2171.52 L1695.74 2171.52 L1695.74 2175.46 L1681.67 2175.46 L1681.67 2183.93 Q1682.69 2183.58 1683.71 2183.42 Q1684.73 2183.24 1685.74 2183.24 Q1691.53 2183.24 1694.91 2186.41 Q1698.29 2189.58 1698.29 2194.99 Q1698.29 2200.57 1694.82 2203.67 Q1691.35 2206.75 1685.03 2206.75 Q1682.85 2206.75 1680.58 2206.38 Q1678.34 2206.01 1675.93 2205.27 L1675.93 2200.57 Q1678.01 2201.71 1680.24 2202.26 Q1682.46 2202.82 1684.93 2202.82 Q1688.94 2202.82 1691.28 2200.71 Q1693.61 2198.61 1693.61 2194.99 Q1693.61 2191.38 1691.28 2189.28 Q1688.94 2187.17 1684.93 2187.17 Q1683.06 2187.17 1681.18 2187.59 Q1679.33 2188 1677.39 2188.88 L1677.39 2171.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip125)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,2061.38 1952.76,2061.38 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip125)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,1989.03 1952.76,1989.03 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip125)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,1916.68 1952.76,1916.68 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip125)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,1844.33 1952.76,1844.33 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip125)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,1771.98 1952.76,1771.98 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,2130.88 132.633,1761.53 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,2061.38 151.531,2061.38 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,1989.03 151.531,1989.03 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,1916.68 151.531,1916.68 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,1844.33 151.531,1844.33 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,1771.98 151.531,1771.98 \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"M17.0547 2047.18 Q13.4436 2047.18 11.6149 2050.75 Q9.80933 2054.29 9.80933 2061.42 Q9.80933 2068.53 11.6149 2072.09 Q13.4436 2075.63 17.0547 2075.63 Q20.6889 2075.63 22.4944 2072.09 Q24.3231 2068.53 24.3231 2061.42 Q24.3231 2054.29 22.4944 2050.75 Q20.6889 2047.18 17.0547 2047.18 M17.0547 2043.48 Q22.8648 2043.48 25.9204 2048.09 Q28.999 2052.67 28.999 2061.42 Q28.999 2070.15 25.9204 2074.75 Q22.8648 2079.34 17.0547 2079.34 Q11.2445 2079.34 8.16582 2074.75 Q5.11028 2070.15 5.11028 2061.42 Q5.11028 2052.67 8.16582 2048.09 Q11.2445 2043.48 17.0547 2043.48 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M37.2166 2072.79 L42.1008 2072.79 L42.1008 2078.66 L37.2166 2078.66 L37.2166 2072.79 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M56.3137 2074.73 L72.6331 2074.73 L72.6331 2078.66 L50.6887 2078.66 L50.6887 2074.73 Q53.3508 2071.98 57.9341 2067.35 Q62.5405 2062.69 63.7211 2061.35 Q65.9664 2058.83 66.8461 2057.09 Q67.7488 2055.33 67.7488 2053.64 Q67.7488 2050.89 65.8044 2049.15 Q63.8831 2047.41 60.7813 2047.41 Q58.5822 2047.41 56.1285 2048.18 Q53.698 2048.94 50.9202 2050.49 L50.9202 2045.77 Q53.7443 2044.64 56.198 2044.06 Q58.6517 2043.48 60.6887 2043.48 Q66.059 2043.48 69.2535 2046.16 Q72.4479 2048.85 72.4479 2053.34 Q72.4479 2055.47 71.6377 2057.39 Q70.8507 2059.29 68.7442 2061.88 Q68.1655 2062.55 65.0637 2065.77 Q61.9618 2068.97 56.3137 2074.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M14.9713 1974.83 Q11.3602 1974.83 9.53155 1978.4 Q7.726 1981.94 7.726 1989.07 Q7.726 1996.18 9.53155 1999.74 Q11.3602 2003.28 14.9713 2003.28 Q18.6056 2003.28 20.4111 1999.74 Q22.2398 1996.18 22.2398 1989.07 Q22.2398 1981.94 20.4111 1978.4 Q18.6056 1974.83 14.9713 1974.83 M14.9713 1971.13 Q20.7815 1971.13 23.837 1975.74 Q26.9157 1980.32 26.9157 1989.07 Q26.9157 1997.8 23.837 2002.4 Q20.7815 2006.99 14.9713 2006.99 Q9.16118 2006.99 6.08249 2002.4 Q3.02696 1997.8 3.02696 1989.07 Q3.02696 1980.32 6.08249 1975.74 Q9.16118 1971.13 14.9713 1971.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M35.1333 2000.43 L40.0175 2000.43 L40.0175 2006.31 L35.1333 2006.31 L35.1333 2000.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M63.0498 1975.83 L51.2443 1994.28 L63.0498 1994.28 L63.0498 1975.83 M61.8229 1971.75 L67.7025 1971.75 L67.7025 1994.28 L72.6331 1994.28 L72.6331 1998.17 L67.7025 1998.17 L67.7025 2006.31 L63.0498 2006.31 L63.0498 1998.17 L47.448 1998.17 L47.448 1993.65 L61.8229 1971.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M15.2954 1902.48 Q11.6843 1902.48 9.85562 1906.05 Q8.05008 1909.59 8.05008 1916.72 Q8.05008 1923.83 9.85562 1927.39 Q11.6843 1930.93 15.2954 1930.93 Q18.9296 1930.93 20.7352 1927.39 Q22.5639 1923.83 22.5639 1916.72 Q22.5639 1909.59 20.7352 1906.05 Q18.9296 1902.48 15.2954 1902.48 M15.2954 1898.78 Q21.1056 1898.78 24.1611 1903.39 Q27.2398 1907.97 27.2398 1916.72 Q27.2398 1925.45 24.1611 1930.05 Q21.1056 1934.64 15.2954 1934.64 Q9.48525 1934.64 6.40657 1930.05 Q3.35103 1925.45 3.35103 1916.72 Q3.35103 1907.97 6.40657 1903.39 Q9.48525 1898.78 15.2954 1898.78 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M35.4573 1928.08 L40.3416 1928.08 L40.3416 1933.96 L35.4573 1933.96 L35.4573 1928.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M61.1053 1914.82 Q57.9572 1914.82 56.1054 1916.97 Q54.2767 1919.13 54.2767 1922.88 Q54.2767 1926.6 56.1054 1928.78 Q57.9572 1930.93 61.1053 1930.93 Q64.2535 1930.93 66.0822 1928.78 Q67.934 1926.6 67.934 1922.88 Q67.934 1919.13 66.0822 1916.97 Q64.2535 1914.82 61.1053 1914.82 M70.3877 1900.17 L70.3877 1904.43 Q68.6285 1903.59 66.8229 1903.15 Q65.0405 1902.71 63.2813 1902.71 Q58.6517 1902.71 56.198 1905.84 Q53.7674 1908.96 53.4202 1915.28 Q54.7859 1913.27 56.8461 1912.2 Q58.9063 1911.12 61.3831 1911.12 Q66.5914 1911.12 69.6007 1914.29 Q72.6331 1917.44 72.6331 1922.88 Q72.6331 1928.2 69.4849 1931.42 Q66.3368 1934.64 61.1053 1934.64 Q55.11 1934.64 51.9387 1930.05 Q48.7675 1925.45 48.7675 1916.72 Q48.7675 1908.52 52.6563 1903.66 Q56.5452 1898.78 63.0961 1898.78 Q64.8553 1898.78 66.6377 1899.13 Q68.4433 1899.47 70.3877 1900.17 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M15.55 1830.13 Q11.9389 1830.13 10.1103 1833.7 Q8.3047 1837.24 8.3047 1844.37 Q8.3047 1851.47 10.1103 1855.04 Q11.9389 1858.58 15.55 1858.58 Q19.1843 1858.58 20.9898 1855.04 Q22.8185 1851.47 22.8185 1844.37 Q22.8185 1837.24 20.9898 1833.7 Q19.1843 1830.13 15.55 1830.13 M15.55 1826.43 Q21.3602 1826.43 24.4157 1831.04 Q27.4944 1835.62 27.4944 1844.37 Q27.4944 1853.1 24.4157 1857.7 Q21.3602 1862.28 15.55 1862.28 Q9.73988 1862.28 6.66119 1857.7 Q3.60566 1853.1 3.60566 1844.37 Q3.60566 1835.62 6.66119 1831.04 Q9.73988 1826.43 15.55 1826.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M35.712 1855.73 L40.5962 1855.73 L40.5962 1861.61 L35.712 1861.61 L35.712 1855.73 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M60.7813 1845.2 Q57.448 1845.2 55.5267 1846.98 Q53.6285 1848.77 53.6285 1851.89 Q53.6285 1855.02 55.5267 1856.8 Q57.448 1858.58 60.7813 1858.58 Q64.1146 1858.58 66.0359 1856.8 Q67.9572 1854.99 67.9572 1851.89 Q67.9572 1848.77 66.0359 1846.98 Q64.1377 1845.2 60.7813 1845.2 M56.1054 1843.21 Q53.0961 1842.47 51.4063 1840.41 Q49.7397 1838.35 49.7397 1835.39 Q49.7397 1831.24 52.6795 1828.84 Q55.6424 1826.43 60.7813 1826.43 Q65.9433 1826.43 68.8831 1828.84 Q71.8229 1831.24 71.8229 1835.39 Q71.8229 1838.35 70.1331 1840.41 Q68.4664 1842.47 65.4803 1843.21 Q68.8599 1844 70.7349 1846.29 Q72.6331 1848.58 72.6331 1851.89 Q72.6331 1856.91 69.5544 1859.6 Q66.4988 1862.28 60.7813 1862.28 Q55.0637 1862.28 51.985 1859.6 Q48.9295 1856.91 48.9295 1851.89 Q48.9295 1848.58 50.8276 1846.29 Q52.7258 1844 56.1054 1843.21 M54.3924 1835.83 Q54.3924 1838.51 56.0591 1840.02 Q57.7489 1841.52 60.7813 1841.52 Q63.7905 1841.52 65.4803 1840.02 Q67.1933 1838.51 67.1933 1835.83 Q67.1933 1833.14 65.4803 1831.64 Q63.7905 1830.13 60.7813 1830.13 Q57.7489 1830.13 56.0591 1831.64 Q54.3924 1833.14 54.3924 1835.83 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M6.26768 1785.33 L13.9065 1785.33 L13.9065 1758.96 L5.59639 1760.63 L5.59639 1756.37 L13.8602 1754.7 L18.5361 1754.7 L18.5361 1785.33 L26.175 1785.33 L26.175 1789.26 L6.26768 1789.26 L6.26768 1785.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M35.6194 1783.38 L40.5036 1783.38 L40.5036 1789.26 L35.6194 1789.26 L35.6194 1783.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M60.6887 1757.78 Q57.0776 1757.78 55.2489 1761.35 Q53.4434 1764.89 53.4434 1772.02 Q53.4434 1779.12 55.2489 1782.69 Q57.0776 1786.23 60.6887 1786.23 Q64.3229 1786.23 66.1285 1782.69 Q67.9572 1779.12 67.9572 1772.02 Q67.9572 1764.89 66.1285 1761.35 Q64.3229 1757.78 60.6887 1757.78 M60.6887 1754.08 Q66.4988 1754.08 69.5544 1758.68 Q72.6331 1763.27 72.6331 1772.02 Q72.6331 1780.74 69.5544 1785.35 Q66.4988 1789.93 60.6887 1789.93 Q54.8785 1789.93 51.7998 1785.35 Q48.7443 1780.74 48.7443 1772.02 Q48.7443 1763.27 51.7998 1758.68 Q54.8785 1754.08 60.6887 1754.08 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip125)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,1771.98 243.356,1781.45 302.566,1808.68 361.777,1850.18 420.987,1900.75 480.197,1954.49 539.407,2005.84 598.618,2050.29 657.828,2084.3 717.038,2103.48 \n",
" 776.248,2104.71 835.459,2098.39 894.669,2093.55 953.879,2092.46 1013.09,2095.3 1072.3,2101.5 1131.51,2109.83 1190.72,2117.87 1249.93,2120.43 1309.14,2115.18 \n",
" 1368.35,2107.71 1427.56,2100.95 1486.77,2095.72 1545.98,2092.23 1605.19,2090.57 1664.4,2090.74 1723.61,2092.65 1782.82,2096 1842.03,2100.27 1901.24,2104.9 \n",
" \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"\n",
"M1655.93 1877.52 L1892.09 1877.52 L1892.09 1773.84 L1655.93 1773.84 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1655.93,1877.52 1892.09,1877.52 1892.09,1773.84 1655.93,1773.84 1655.93,1877.52 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1676.15,1825.68 1797.49,1825.68 \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"M1831.56 1845.37 Q1829.76 1850 1828.04 1851.41 Q1826.33 1852.82 1823.46 1852.82 L1820.06 1852.82 L1820.06 1849.26 L1822.56 1849.26 Q1824.32 1849.26 1825.29 1848.42 Q1826.26 1847.59 1827.44 1844.49 L1828.2 1842.54 L1817.72 1817.04 L1822.23 1817.04 L1830.33 1837.31 L1838.44 1817.04 L1842.95 1817.04 L1831.56 1845.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1862.28 1812.48 L1850.47 1830.92 L1862.28 1830.92 L1862.28 1812.48 M1861.05 1808.4 L1866.93 1808.4 L1866.93 1830.92 L1871.86 1830.92 L1871.86 1834.81 L1866.93 1834.81 L1866.93 1842.96 L1862.28 1842.96 L1862.28 1834.81 L1846.68 1834.81 L1846.68 1830.3 L1861.05 1808.4 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"\n",
"M132.633 2702.31 L1952.76 2702.31 L1952.76 2332.96 L132.633 2332.96 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip126\">\n",
" <rect x=\"132\" y=\"2332\" width=\"1821\" height=\"370\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip126)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 184.146,2702.31 184.146,2332.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip126)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 480.197,2702.31 480.197,2332.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip126)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 776.248,2702.31 776.248,2332.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip126)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1072.3,2702.31 1072.3,2332.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip126)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1368.35,2702.31 1368.35,2332.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip126)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1664.4,2702.31 1664.4,2332.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,2702.31 1952.76,2702.31 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,2702.31 184.146,2683.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 480.197,2702.31 480.197,2683.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 776.248,2702.31 776.248,2683.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1072.3,2702.31 1072.3,2683.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1368.35,2702.31 1368.35,2683.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1664.4,2702.31 1664.4,2683.41 \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"M161.53 2746.03 Q157.919 2746.03 156.091 2749.59 Q154.285 2753.14 154.285 2760.27 Q154.285 2767.37 156.091 2770.94 Q157.919 2774.48 161.53 2774.48 Q165.165 2774.48 166.97 2770.94 Q168.799 2767.37 168.799 2760.27 Q168.799 2753.14 166.97 2749.59 Q165.165 2746.03 161.53 2746.03 M161.53 2742.33 Q167.341 2742.33 170.396 2746.93 Q173.475 2751.52 173.475 2760.27 Q173.475 2768.99 170.396 2773.6 Q167.341 2778.18 161.53 2778.18 Q155.72 2778.18 152.642 2773.6 Q149.586 2768.99 149.586 2760.27 Q149.586 2751.52 152.642 2746.93 Q155.72 2742.33 161.53 2742.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M181.692 2771.63 L186.577 2771.63 L186.577 2777.51 L181.692 2777.51 L181.692 2771.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M206.762 2746.03 Q203.151 2746.03 201.322 2749.59 Q199.516 2753.14 199.516 2760.27 Q199.516 2767.37 201.322 2770.94 Q203.151 2774.48 206.762 2774.48 Q210.396 2774.48 212.201 2770.94 Q214.03 2767.37 214.03 2760.27 Q214.03 2753.14 212.201 2749.59 Q210.396 2746.03 206.762 2746.03 M206.762 2742.33 Q212.572 2742.33 215.627 2746.93 Q218.706 2751.52 218.706 2760.27 Q218.706 2768.99 215.627 2773.6 Q212.572 2778.18 206.762 2778.18 Q200.951 2778.18 197.873 2773.6 Q194.817 2768.99 194.817 2760.27 Q194.817 2751.52 197.873 2746.93 Q200.951 2742.33 206.762 2742.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M458.079 2746.03 Q454.468 2746.03 452.639 2749.59 Q450.834 2753.14 450.834 2760.27 Q450.834 2767.37 452.639 2770.94 Q454.468 2774.48 458.079 2774.48 Q461.713 2774.48 463.519 2770.94 Q465.348 2767.37 465.348 2760.27 Q465.348 2753.14 463.519 2749.59 Q461.713 2746.03 458.079 2746.03 M458.079 2742.33 Q463.889 2742.33 466.945 2746.93 Q470.024 2751.52 470.024 2760.27 Q470.024 2768.99 466.945 2773.6 Q463.889 2778.18 458.079 2778.18 Q452.269 2778.18 449.19 2773.6 Q446.135 2768.99 446.135 2760.27 Q446.135 2751.52 449.19 2746.93 Q452.269 2742.33 458.079 2742.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M478.241 2771.63 L483.125 2771.63 L483.125 2777.51 L478.241 2777.51 L478.241 2771.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M493.357 2742.95 L511.713 2742.95 L511.713 2746.89 L497.639 2746.89 L497.639 2755.36 Q498.658 2755.01 499.676 2754.85 Q500.695 2754.66 501.713 2754.66 Q507.5 2754.66 510.88 2757.83 Q514.26 2761.01 514.26 2766.42 Q514.26 2772 510.787 2775.1 Q507.315 2778.18 500.996 2778.18 Q498.82 2778.18 496.551 2777.81 Q494.306 2777.44 491.899 2776.7 L491.899 2772 Q493.982 2773.14 496.204 2773.69 Q498.426 2774.25 500.903 2774.25 Q504.908 2774.25 507.246 2772.14 Q509.584 2770.03 509.584 2766.42 Q509.584 2762.81 507.246 2760.71 Q504.908 2758.6 500.903 2758.6 Q499.028 2758.6 497.153 2759.02 Q495.301 2759.43 493.357 2760.31 L493.357 2742.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M743.401 2773.58 L751.04 2773.58 L751.04 2747.21 L742.73 2748.88 L742.73 2744.62 L750.994 2742.95 L755.67 2742.95 L755.67 2773.58 L763.309 2773.58 L763.309 2777.51 L743.401 2777.51 L743.401 2773.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M772.753 2771.63 L777.637 2771.63 L777.637 2777.51 L772.753 2777.51 L772.753 2771.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M797.822 2746.03 Q794.211 2746.03 792.383 2749.59 Q790.577 2753.14 790.577 2760.27 Q790.577 2767.37 792.383 2770.94 Q794.211 2774.48 797.822 2774.48 Q801.457 2774.48 803.262 2770.94 Q805.091 2767.37 805.091 2760.27 Q805.091 2753.14 803.262 2749.59 Q801.457 2746.03 797.822 2746.03 M797.822 2742.33 Q803.633 2742.33 806.688 2746.93 Q809.767 2751.52 809.767 2760.27 Q809.767 2768.99 806.688 2773.6 Q803.633 2778.18 797.822 2778.18 Q792.012 2778.18 788.934 2773.6 Q785.878 2768.99 785.878 2760.27 Q785.878 2751.52 788.934 2746.93 Q792.012 2742.33 797.822 2742.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1039.95 2773.58 L1047.59 2773.58 L1047.59 2747.21 L1039.28 2748.88 L1039.28 2744.62 L1047.54 2742.95 L1052.22 2742.95 L1052.22 2773.58 L1059.86 2773.58 L1059.86 2777.51 L1039.95 2777.51 L1039.95 2773.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1069.3 2771.63 L1074.19 2771.63 L1074.19 2777.51 L1069.3 2777.51 L1069.3 2771.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1084.42 2742.95 L1102.77 2742.95 L1102.77 2746.89 L1088.7 2746.89 L1088.7 2755.36 Q1089.72 2755.01 1090.74 2754.85 Q1091.76 2754.66 1092.77 2754.66 Q1098.56 2754.66 1101.94 2757.83 Q1105.32 2761.01 1105.32 2766.42 Q1105.32 2772 1101.85 2775.1 Q1098.38 2778.18 1092.06 2778.18 Q1089.88 2778.18 1087.61 2777.81 Q1085.37 2777.44 1082.96 2776.7 L1082.96 2772 Q1085.04 2773.14 1087.26 2773.69 Q1089.49 2774.25 1091.96 2774.25 Q1095.97 2774.25 1098.31 2772.14 Q1100.64 2770.03 1100.64 2766.42 Q1100.64 2762.81 1098.31 2760.71 Q1095.97 2758.6 1091.96 2758.6 Q1090.09 2758.6 1088.21 2759.02 Q1086.36 2759.43 1084.42 2760.31 L1084.42 2742.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1339.59 2773.58 L1355.91 2773.58 L1355.91 2777.51 L1333.96 2777.51 L1333.96 2773.58 Q1336.63 2770.82 1341.21 2766.19 Q1345.82 2761.54 1347 2760.2 Q1349.24 2757.67 1350.12 2755.94 Q1351.02 2754.18 1351.02 2752.49 Q1351.02 2749.73 1349.08 2748 Q1347.16 2746.26 1344.06 2746.26 Q1341.86 2746.26 1339.4 2747.02 Q1336.97 2747.79 1334.2 2749.34 L1334.2 2744.62 Q1337.02 2743.48 1339.47 2742.9 Q1341.93 2742.33 1343.96 2742.33 Q1349.33 2742.33 1352.53 2745.01 Q1355.72 2747.7 1355.72 2752.19 Q1355.72 2754.32 1354.91 2756.24 Q1354.13 2758.14 1352.02 2760.73 Q1351.44 2761.4 1348.34 2764.62 Q1345.24 2767.81 1339.59 2773.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1365.72 2771.63 L1370.61 2771.63 L1370.61 2777.51 L1365.72 2777.51 L1365.72 2771.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1390.79 2746.03 Q1387.18 2746.03 1385.35 2749.59 Q1383.55 2753.14 1383.55 2760.27 Q1383.55 2767.37 1385.35 2770.94 Q1387.18 2774.48 1390.79 2774.48 Q1394.43 2774.48 1396.23 2770.94 Q1398.06 2767.37 1398.06 2760.27 Q1398.06 2753.14 1396.23 2749.59 Q1394.43 2746.03 1390.79 2746.03 M1390.79 2742.33 Q1396.6 2742.33 1399.66 2746.93 Q1402.74 2751.52 1402.74 2760.27 Q1402.74 2768.99 1399.66 2773.6 Q1396.6 2778.18 1390.79 2778.18 Q1384.98 2778.18 1381.9 2773.6 Q1378.85 2768.99 1378.85 2760.27 Q1378.85 2751.52 1381.9 2746.93 Q1384.98 2742.33 1390.79 2742.33 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1636.14 2773.58 L1652.46 2773.58 L1652.46 2777.51 L1630.51 2777.51 L1630.51 2773.58 Q1633.18 2770.82 1637.76 2766.19 Q1642.37 2761.54 1643.55 2760.2 Q1645.79 2757.67 1646.67 2755.94 Q1647.57 2754.18 1647.57 2752.49 Q1647.57 2749.73 1645.63 2748 Q1643.71 2746.26 1640.61 2746.26 Q1638.41 2746.26 1635.95 2747.02 Q1633.52 2747.79 1630.74 2749.34 L1630.74 2744.62 Q1633.57 2743.48 1636.02 2742.9 Q1638.48 2742.33 1640.51 2742.33 Q1645.88 2742.33 1649.08 2745.01 Q1652.27 2747.7 1652.27 2752.19 Q1652.27 2754.32 1651.46 2756.24 Q1650.68 2758.14 1648.57 2760.73 Q1647.99 2761.4 1644.89 2764.62 Q1641.79 2767.81 1636.14 2773.58 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1662.27 2771.63 L1667.16 2771.63 L1667.16 2777.51 L1662.27 2777.51 L1662.27 2771.63 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1677.39 2742.95 L1695.74 2742.95 L1695.74 2746.89 L1681.67 2746.89 L1681.67 2755.36 Q1682.69 2755.01 1683.71 2754.85 Q1684.73 2754.66 1685.74 2754.66 Q1691.53 2754.66 1694.91 2757.83 Q1698.29 2761.01 1698.29 2766.42 Q1698.29 2772 1694.82 2775.1 Q1691.35 2778.18 1685.03 2778.18 Q1682.85 2778.18 1680.58 2777.81 Q1678.34 2777.44 1675.93 2776.7 L1675.93 2772 Q1678.01 2773.14 1680.24 2773.69 Q1682.46 2774.25 1684.93 2774.25 Q1688.94 2774.25 1691.28 2772.14 Q1693.61 2770.03 1693.61 2766.42 Q1693.61 2762.81 1691.28 2760.71 Q1688.94 2758.6 1684.93 2758.6 Q1683.06 2758.6 1681.18 2759.02 Q1679.33 2759.43 1677.39 2760.31 L1677.39 2742.95 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip126)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,2699.47 1952.76,2699.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip126)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,2610.45 1952.76,2610.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip126)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,2521.44 1952.76,2521.44 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip126)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,2432.43 1952.76,2432.43 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip126)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,2343.41 1952.76,2343.41 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,2702.31 132.633,2332.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,2699.47 151.531,2699.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,2610.45 151.531,2610.45 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,2521.44 151.531,2521.44 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,2432.43 151.531,2432.43 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,2343.41 151.531,2343.41 \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"M-14.7044 2685.27 Q-18.3155 2685.27 -20.1442 2688.83 Q-21.9498 2692.37 -21.9498 2699.5 Q-21.9498 2706.61 -20.1442 2710.17 Q-18.3155 2713.72 -14.7044 2713.72 Q-11.0702 2713.72 -9.26465 2710.17 Q-7.43595 2706.61 -7.43595 2699.5 Q-7.43595 2692.37 -9.26465 2688.83 Q-11.0702 2685.27 -14.7044 2685.27 M-14.7044 2681.56 Q-8.89428 2681.56 -5.83874 2686.17 Q-2.76005 2690.75 -2.76005 2699.5 Q-2.76005 2708.23 -5.83874 2712.84 Q-8.89428 2717.42 -14.7044 2717.42 Q-20.5146 2717.42 -23.5933 2712.84 Q-26.6488 2708.23 -26.6488 2699.5 Q-26.6488 2690.75 -23.5933 2686.17 Q-20.5146 2681.56 -14.7044 2681.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M5.4575 2710.87 L10.3417 2710.87 L10.3417 2716.75 L5.4575 2716.75 L5.4575 2710.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M30.5268 2685.27 Q26.9157 2685.27 25.087 2688.83 Q23.2815 2692.37 23.2815 2699.5 Q23.2815 2706.61 25.087 2710.17 Q26.9157 2713.72 30.5268 2713.72 Q34.161 2713.72 35.9666 2710.17 Q37.7953 2706.61 37.7953 2699.5 Q37.7953 2692.37 35.9666 2688.83 Q34.161 2685.27 30.5268 2685.27 M30.5268 2681.56 Q36.337 2681.56 39.3925 2686.17 Q42.4712 2690.75 42.4712 2699.5 Q42.4712 2708.23 39.3925 2712.84 Q36.337 2717.42 30.5268 2717.42 Q24.7167 2717.42 21.638 2712.84 Q18.5824 2708.23 18.5824 2699.5 Q18.5824 2690.75 21.638 2686.17 Q24.7167 2681.56 30.5268 2681.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M60.6887 2685.27 Q57.0776 2685.27 55.2489 2688.83 Q53.4434 2692.37 53.4434 2699.5 Q53.4434 2706.61 55.2489 2710.17 Q57.0776 2713.72 60.6887 2713.72 Q64.3229 2713.72 66.1285 2710.17 Q67.9572 2706.61 67.9572 2699.5 Q67.9572 2692.37 66.1285 2688.83 Q64.3229 2685.27 60.6887 2685.27 M60.6887 2681.56 Q66.4988 2681.56 69.5544 2686.17 Q72.6331 2690.75 72.6331 2699.5 Q72.6331 2708.23 69.5544 2712.84 Q66.4988 2717.42 60.6887 2717.42 Q54.8785 2717.42 51.7998 2712.84 Q48.7443 2708.23 48.7443 2699.5 Q48.7443 2690.75 51.7998 2686.17 Q54.8785 2681.56 60.6887 2681.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M-13.7091 2596.25 Q-17.3202 2596.25 -19.1489 2599.82 Q-20.9544 2603.36 -20.9544 2610.49 Q-20.9544 2617.59 -19.1489 2621.16 Q-17.3202 2624.7 -13.7091 2624.7 Q-10.0748 2624.7 -8.26928 2621.16 Q-6.44059 2617.59 -6.44059 2610.49 Q-6.44059 2603.36 -8.26928 2599.82 Q-10.0748 2596.25 -13.7091 2596.25 M-13.7091 2592.55 Q-7.89891 2592.55 -4.84337 2597.16 Q-1.76469 2601.74 -1.76469 2610.49 Q-1.76469 2619.22 -4.84337 2623.82 Q-7.89891 2628.41 -13.7091 2628.41 Q-19.5192 2628.41 -22.5979 2623.82 Q-25.6534 2619.22 -25.6534 2610.49 Q-25.6534 2601.74 -22.5979 2597.16 Q-19.5192 2592.55 -13.7091 2592.55 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M6.45286 2621.85 L11.3371 2621.85 L11.3371 2627.73 L6.45286 2627.73 L6.45286 2621.85 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M25.55 2623.8 L41.8693 2623.8 L41.8693 2627.73 L19.925 2627.73 L19.925 2623.8 Q22.587 2621.04 27.1703 2616.41 Q31.7768 2611.76 32.9574 2610.42 Q35.2027 2607.9 36.0823 2606.16 Q36.9851 2604.4 36.9851 2602.71 Q36.9851 2599.96 35.0407 2598.22 Q33.1194 2596.48 30.0176 2596.48 Q27.8185 2596.48 25.3648 2597.25 Q22.9343 2598.01 20.1565 2599.56 L20.1565 2594.84 Q22.9806 2593.71 25.4342 2593.13 Q27.8879 2592.55 29.925 2592.55 Q35.2953 2592.55 38.4897 2595.23 Q41.6842 2597.92 41.6842 2602.41 Q41.6842 2604.54 40.874 2606.46 Q40.0869 2608.36 37.9805 2610.95 Q37.4018 2611.62 34.2999 2614.84 Q31.1981 2618.03 25.55 2623.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M51.7304 2593.17 L70.0868 2593.17 L70.0868 2597.11 L56.0128 2597.11 L56.0128 2605.58 Q57.0313 2605.23 58.0498 2605.07 Q59.0683 2604.89 60.0868 2604.89 Q65.8738 2604.89 69.2535 2608.06 Q72.6331 2611.23 72.6331 2616.65 Q72.6331 2622.22 69.1609 2625.33 Q65.6887 2628.41 59.3692 2628.41 Q57.1933 2628.41 54.9248 2628.03 Q52.6795 2627.66 50.2721 2626.92 L50.2721 2622.22 Q52.3554 2623.36 54.5776 2623.91 Q56.7998 2624.47 59.2767 2624.47 Q63.2813 2624.47 65.6192 2622.36 Q67.9572 2620.26 67.9572 2616.65 Q67.9572 2613.03 65.6192 2610.93 Q63.2813 2608.82 59.2767 2608.82 Q57.4017 2608.82 55.5267 2609.24 Q53.6748 2609.66 51.7304 2610.53 L51.7304 2593.17 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M-14.7044 2507.24 Q-18.3155 2507.24 -20.1442 2510.8 Q-21.9498 2514.34 -21.9498 2521.47 Q-21.9498 2528.58 -20.1442 2532.15 Q-18.3155 2535.69 -14.7044 2535.69 Q-11.0702 2535.69 -9.26465 2532.15 Q-7.43595 2528.58 -7.43595 2521.47 Q-7.43595 2514.34 -9.26465 2510.8 Q-11.0702 2507.24 -14.7044 2507.24 M-14.7044 2503.53 Q-8.89428 2503.53 -5.83874 2508.14 Q-2.76005 2512.72 -2.76005 2521.47 Q-2.76005 2530.2 -5.83874 2534.81 Q-8.89428 2539.39 -14.7044 2539.39 Q-20.5146 2539.39 -23.5933 2534.81 Q-26.6488 2530.2 -26.6488 2521.47 Q-26.6488 2512.72 -23.5933 2508.14 Q-20.5146 2503.53 -14.7044 2503.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M5.4575 2532.84 L10.3417 2532.84 L10.3417 2538.72 L5.4575 2538.72 L5.4575 2532.84 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M20.5732 2504.16 L38.9295 2504.16 L38.9295 2508.09 L24.8555 2508.09 L24.8555 2516.57 Q25.8741 2516.22 26.8926 2516.06 Q27.9111 2515.87 28.9296 2515.87 Q34.7166 2515.87 38.0962 2519.04 Q41.4758 2522.22 41.4758 2527.63 Q41.4758 2533.21 38.0036 2536.31 Q34.5314 2539.39 28.212 2539.39 Q26.0361 2539.39 23.7676 2539.02 Q21.5222 2538.65 19.1148 2537.91 L19.1148 2533.21 Q21.1982 2534.34 23.4204 2534.9 Q25.6426 2535.46 28.1194 2535.46 Q32.124 2535.46 34.462 2533.35 Q36.7999 2531.24 36.7999 2527.63 Q36.7999 2524.02 34.462 2521.91 Q32.124 2519.81 28.1194 2519.81 Q26.2444 2519.81 24.3694 2520.22 Q22.5176 2520.64 20.5732 2521.52 L20.5732 2504.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M60.6887 2507.24 Q57.0776 2507.24 55.2489 2510.8 Q53.4434 2514.34 53.4434 2521.47 Q53.4434 2528.58 55.2489 2532.15 Q57.0776 2535.69 60.6887 2535.69 Q64.3229 2535.69 66.1285 2532.15 Q67.9572 2528.58 67.9572 2521.47 Q67.9572 2514.34 66.1285 2510.8 Q64.3229 2507.24 60.6887 2507.24 M60.6887 2503.53 Q66.4988 2503.53 69.5544 2508.14 Q72.6331 2512.72 72.6331 2521.47 Q72.6331 2530.2 69.5544 2534.81 Q66.4988 2539.39 60.6887 2539.39 Q54.8785 2539.39 51.7998 2534.81 Q48.7443 2530.2 48.7443 2521.47 Q48.7443 2512.72 51.7998 2508.14 Q54.8785 2503.53 60.6887 2503.53 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M-13.7091 2418.22 Q-17.3202 2418.22 -19.1489 2421.79 Q-20.9544 2425.33 -20.9544 2432.46 Q-20.9544 2439.57 -19.1489 2443.13 Q-17.3202 2446.67 -13.7091 2446.67 Q-10.0748 2446.67 -8.26928 2443.13 Q-6.44059 2439.57 -6.44059 2432.46 Q-6.44059 2425.33 -8.26928 2421.79 Q-10.0748 2418.22 -13.7091 2418.22 M-13.7091 2414.52 Q-7.89891 2414.52 -4.84337 2419.13 Q-1.76469 2423.71 -1.76469 2432.46 Q-1.76469 2441.19 -4.84337 2445.79 Q-7.89891 2450.38 -13.7091 2450.38 Q-19.5192 2450.38 -22.5979 2445.79 Q-25.6534 2441.19 -25.6534 2432.46 Q-25.6534 2423.71 -22.5979 2419.13 Q-19.5192 2414.52 -13.7091 2414.52 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M6.45286 2443.83 L11.3371 2443.83 L11.3371 2449.71 L6.45286 2449.71 L6.45286 2443.83 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M20.3417 2415.15 L42.5638 2415.15 L42.5638 2417.14 L30.0176 2449.71 L25.1333 2449.71 L36.9388 2419.08 L20.3417 2419.08 L20.3417 2415.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M51.7304 2415.15 L70.0868 2415.15 L70.0868 2419.08 L56.0128 2419.08 L56.0128 2427.55 Q57.0313 2427.21 58.0498 2427.04 Q59.0683 2426.86 60.0868 2426.86 Q65.8738 2426.86 69.2535 2430.03 Q72.6331 2433.2 72.6331 2438.62 Q72.6331 2444.2 69.1609 2447.3 Q65.6887 2450.38 59.3692 2450.38 Q57.1933 2450.38 54.9248 2450.01 Q52.6795 2449.64 50.2721 2448.9 L50.2721 2444.2 Q52.3554 2445.33 54.5776 2445.89 Q56.7998 2446.44 59.2767 2446.44 Q63.2813 2446.44 65.6192 2444.34 Q67.9572 2442.23 67.9572 2438.62 Q67.9572 2435.01 65.6192 2432.9 Q63.2813 2430.79 59.2767 2430.79 Q57.4017 2430.79 55.5267 2431.21 Q53.6748 2431.63 51.7304 2432.51 L51.7304 2415.15 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M-23.8942 2356.76 L-16.2553 2356.76 L-16.2553 2330.39 L-24.5655 2332.06 L-24.5655 2327.8 L-16.3016 2326.13 L-11.6257 2326.13 L-11.6257 2356.76 L-3.9869 2356.76 L-3.9869 2360.69 L-23.8942 2360.69 L-23.8942 2356.76 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M5.4575 2354.81 L10.3417 2354.81 L10.3417 2360.69 L5.4575 2360.69 L5.4575 2354.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M30.5268 2329.21 Q26.9157 2329.21 25.087 2332.78 Q23.2815 2336.32 23.2815 2343.45 Q23.2815 2350.55 25.087 2354.12 Q26.9157 2357.66 30.5268 2357.66 Q34.161 2357.66 35.9666 2354.12 Q37.7953 2350.55 37.7953 2343.45 Q37.7953 2336.32 35.9666 2332.78 Q34.161 2329.21 30.5268 2329.21 M30.5268 2325.51 Q36.337 2325.51 39.3925 2330.11 Q42.4712 2334.7 42.4712 2343.45 Q42.4712 2352.17 39.3925 2356.78 Q36.337 2361.36 30.5268 2361.36 Q24.7167 2361.36 21.638 2356.78 Q18.5824 2352.17 18.5824 2343.45 Q18.5824 2334.7 21.638 2330.11 Q24.7167 2325.51 30.5268 2325.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M60.6887 2329.21 Q57.0776 2329.21 55.2489 2332.78 Q53.4434 2336.32 53.4434 2343.45 Q53.4434 2350.55 55.2489 2354.12 Q57.0776 2357.66 60.6887 2357.66 Q64.3229 2357.66 66.1285 2354.12 Q67.9572 2350.55 67.9572 2343.45 Q67.9572 2336.32 66.1285 2332.78 Q64.3229 2329.21 60.6887 2329.21 M60.6887 2325.51 Q66.4988 2325.51 69.5544 2330.11 Q72.6331 2334.7 72.6331 2343.45 Q72.6331 2352.17 69.5544 2356.78 Q66.4988 2361.36 60.6887 2361.36 Q54.8785 2361.36 51.7998 2356.78 Q48.7443 2352.17 48.7443 2343.45 Q48.7443 2334.7 51.7998 2330.11 Q54.8785 2325.51 60.6887 2325.51 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip126)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,2343.41 243.356,2352.46 302.566,2378.45 361.777,2418.21 420.987,2467.2 480.197,2520.16 539.407,2571.93 598.618,2617.96 657.828,2654.48 717.038,2676.75 \n",
" 776.248,2678.94 835.459,2673.89 894.669,2672.02 953.879,2673.74 1013.09,2677.64 1072.3,2682.39 1131.51,2687.05 1190.72,2690.72 1249.93,2691.86 1309.14,2689.93 \n",
" 1368.35,2686.84 1427.56,2683.91 1486.77,2681.45 1545.98,2679.31 1605.19,2677.26 1664.4,2675.37 1723.61,2674.12 1782.82,2674.14 1842.03,2675.89 1901.24,2679.49 \n",
" \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"\n",
"M1657.41 2448.95 L1892.09 2448.95 L1892.09 2345.27 L1657.41 2345.27 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1657.41,2448.95 1892.09,2448.95 1892.09,2345.27 1657.41,2345.27 1657.41,2448.95 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1677.63,2397.11 1798.98,2397.11 \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"M1833.04 2416.8 Q1831.24 2421.43 1829.52 2422.84 Q1827.81 2424.25 1824.94 2424.25 L1821.54 2424.25 L1821.54 2420.69 L1824.04 2420.69 Q1825.8 2420.69 1826.77 2419.85 Q1827.74 2419.02 1828.92 2415.92 L1829.69 2413.97 L1819.2 2388.46 L1823.71 2388.46 L1831.82 2408.74 L1839.92 2388.46 L1844.43 2388.46 L1833.04 2416.8 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1850.96 2379.83 L1869.32 2379.83 L1869.32 2383.77 L1855.24 2383.77 L1855.24 2392.24 Q1856.26 2391.89 1857.28 2391.73 Q1858.3 2391.54 1859.32 2391.54 Q1865.1 2391.54 1868.48 2394.71 Q1871.86 2397.89 1871.86 2403.3 Q1871.86 2408.88 1868.39 2411.98 Q1864.92 2415.06 1858.6 2415.06 Q1856.42 2415.06 1854.15 2414.69 Q1851.91 2414.32 1849.5 2413.58 L1849.5 2408.88 Q1851.58 2410.02 1853.81 2410.57 Q1856.03 2411.13 1858.51 2411.13 Q1862.51 2411.13 1864.85 2409.02 Q1867.19 2406.91 1867.19 2403.3 Q1867.19 2399.69 1864.85 2397.58 Q1862.51 2395.48 1858.51 2395.48 Q1856.63 2395.48 1854.76 2395.89 Q1852.9 2396.31 1850.96 2397.19 L1850.96 2379.83 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"\n",
"M132.633 3273.74 L1952.76 3273.74 L1952.76 2904.39 L132.633 2904.39 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip127\">\n",
" <rect x=\"132\" y=\"2904\" width=\"1821\" height=\"370\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip127)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 184.146,3273.74 184.146,2904.39 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip127)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 480.197,3273.74 480.197,2904.39 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip127)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 776.248,3273.74 776.248,2904.39 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip127)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1072.3,3273.74 1072.3,2904.39 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip127)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1368.35,3273.74 1368.35,2904.39 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip127)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1664.4,3273.74 1664.4,2904.39 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,3273.74 1952.76,3273.74 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,3273.74 184.146,3254.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 480.197,3273.74 480.197,3254.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 776.248,3273.74 776.248,3254.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1072.3,3273.74 1072.3,3254.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1368.35,3273.74 1368.35,3254.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1664.4,3273.74 1664.4,3254.84 \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"M161.53 3317.46 Q157.919 3317.46 156.091 3321.02 Q154.285 3324.56 154.285 3331.69 Q154.285 3338.8 156.091 3342.37 Q157.919 3345.91 161.53 3345.91 Q165.165 3345.91 166.97 3342.37 Q168.799 3338.8 168.799 3331.69 Q168.799 3324.56 166.97 3321.02 Q165.165 3317.46 161.53 3317.46 M161.53 3313.75 Q167.341 3313.75 170.396 3318.36 Q173.475 3322.94 173.475 3331.69 Q173.475 3340.42 170.396 3345.03 Q167.341 3349.61 161.53 3349.61 Q155.72 3349.61 152.642 3345.03 Q149.586 3340.42 149.586 3331.69 Q149.586 3322.94 152.642 3318.36 Q155.72 3313.75 161.53 3313.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M181.692 3343.06 L186.577 3343.06 L186.577 3348.94 L181.692 3348.94 L181.692 3343.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M206.762 3317.46 Q203.151 3317.46 201.322 3321.02 Q199.516 3324.56 199.516 3331.69 Q199.516 3338.8 201.322 3342.37 Q203.151 3345.91 206.762 3345.91 Q210.396 3345.91 212.201 3342.37 Q214.03 3338.8 214.03 3331.69 Q214.03 3324.56 212.201 3321.02 Q210.396 3317.46 206.762 3317.46 M206.762 3313.75 Q212.572 3313.75 215.627 3318.36 Q218.706 3322.94 218.706 3331.69 Q218.706 3340.42 215.627 3345.03 Q212.572 3349.61 206.762 3349.61 Q200.951 3349.61 197.873 3345.03 Q194.817 3340.42 194.817 3331.69 Q194.817 3322.94 197.873 3318.36 Q200.951 3313.75 206.762 3313.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M458.079 3317.46 Q454.468 3317.46 452.639 3321.02 Q450.834 3324.56 450.834 3331.69 Q450.834 3338.8 452.639 3342.37 Q454.468 3345.91 458.079 3345.91 Q461.713 3345.91 463.519 3342.37 Q465.348 3338.8 465.348 3331.69 Q465.348 3324.56 463.519 3321.02 Q461.713 3317.46 458.079 3317.46 M458.079 3313.75 Q463.889 3313.75 466.945 3318.36 Q470.024 3322.94 470.024 3331.69 Q470.024 3340.42 466.945 3345.03 Q463.889 3349.61 458.079 3349.61 Q452.269 3349.61 449.19 3345.03 Q446.135 3340.42 446.135 3331.69 Q446.135 3322.94 449.19 3318.36 Q452.269 3313.75 458.079 3313.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M478.241 3343.06 L483.125 3343.06 L483.125 3348.94 L478.241 3348.94 L478.241 3343.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M493.357 3314.38 L511.713 3314.38 L511.713 3318.31 L497.639 3318.31 L497.639 3326.79 Q498.658 3326.44 499.676 3326.28 Q500.695 3326.09 501.713 3326.09 Q507.5 3326.09 510.88 3329.26 Q514.26 3332.43 514.26 3337.85 Q514.26 3343.43 510.787 3346.53 Q507.315 3349.61 500.996 3349.61 Q498.82 3349.61 496.551 3349.24 Q494.306 3348.87 491.899 3348.13 L491.899 3343.43 Q493.982 3344.56 496.204 3345.12 Q498.426 3345.68 500.903 3345.68 Q504.908 3345.68 507.246 3343.57 Q509.584 3341.46 509.584 3337.85 Q509.584 3334.24 507.246 3332.13 Q504.908 3330.03 500.903 3330.03 Q499.028 3330.03 497.153 3330.44 Q495.301 3330.86 493.357 3331.74 L493.357 3314.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M743.401 3345 L751.04 3345 L751.04 3318.64 L742.73 3320.31 L742.73 3316.05 L750.994 3314.38 L755.67 3314.38 L755.67 3345 L763.309 3345 L763.309 3348.94 L743.401 3348.94 L743.401 3345 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M772.753 3343.06 L777.637 3343.06 L777.637 3348.94 L772.753 3348.94 L772.753 3343.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M797.822 3317.46 Q794.211 3317.46 792.383 3321.02 Q790.577 3324.56 790.577 3331.69 Q790.577 3338.8 792.383 3342.37 Q794.211 3345.91 797.822 3345.91 Q801.457 3345.91 803.262 3342.37 Q805.091 3338.8 805.091 3331.69 Q805.091 3324.56 803.262 3321.02 Q801.457 3317.46 797.822 3317.46 M797.822 3313.75 Q803.633 3313.75 806.688 3318.36 Q809.767 3322.94 809.767 3331.69 Q809.767 3340.42 806.688 3345.03 Q803.633 3349.61 797.822 3349.61 Q792.012 3349.61 788.934 3345.03 Q785.878 3340.42 785.878 3331.69 Q785.878 3322.94 788.934 3318.36 Q792.012 3313.75 797.822 3313.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1039.95 3345 L1047.59 3345 L1047.59 3318.64 L1039.28 3320.31 L1039.28 3316.05 L1047.54 3314.38 L1052.22 3314.38 L1052.22 3345 L1059.86 3345 L1059.86 3348.94 L1039.95 3348.94 L1039.95 3345 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1069.3 3343.06 L1074.19 3343.06 L1074.19 3348.94 L1069.3 3348.94 L1069.3 3343.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1084.42 3314.38 L1102.77 3314.38 L1102.77 3318.31 L1088.7 3318.31 L1088.7 3326.79 Q1089.72 3326.44 1090.74 3326.28 Q1091.76 3326.09 1092.77 3326.09 Q1098.56 3326.09 1101.94 3329.26 Q1105.32 3332.43 1105.32 3337.85 Q1105.32 3343.43 1101.85 3346.53 Q1098.38 3349.61 1092.06 3349.61 Q1089.88 3349.61 1087.61 3349.24 Q1085.37 3348.87 1082.96 3348.13 L1082.96 3343.43 Q1085.04 3344.56 1087.26 3345.12 Q1089.49 3345.68 1091.96 3345.68 Q1095.97 3345.68 1098.31 3343.57 Q1100.64 3341.46 1100.64 3337.85 Q1100.64 3334.24 1098.31 3332.13 Q1095.97 3330.03 1091.96 3330.03 Q1090.09 3330.03 1088.21 3330.44 Q1086.36 3330.86 1084.42 3331.74 L1084.42 3314.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1339.59 3345 L1355.91 3345 L1355.91 3348.94 L1333.96 3348.94 L1333.96 3345 Q1336.63 3342.25 1341.21 3337.62 Q1345.82 3332.97 1347 3331.62 Q1349.24 3329.1 1350.12 3327.37 Q1351.02 3325.61 1351.02 3323.92 Q1351.02 3321.16 1349.08 3319.43 Q1347.16 3317.69 1344.06 3317.69 Q1341.86 3317.69 1339.4 3318.45 Q1336.97 3319.22 1334.2 3320.77 L1334.2 3316.05 Q1337.02 3314.91 1339.47 3314.33 Q1341.93 3313.75 1343.96 3313.75 Q1349.33 3313.75 1352.53 3316.44 Q1355.72 3319.12 1355.72 3323.62 Q1355.72 3325.74 1354.91 3327.67 Q1354.13 3329.56 1352.02 3332.16 Q1351.44 3332.83 1348.34 3336.05 Q1345.24 3339.24 1339.59 3345 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1365.72 3343.06 L1370.61 3343.06 L1370.61 3348.94 L1365.72 3348.94 L1365.72 3343.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1390.79 3317.46 Q1387.18 3317.46 1385.35 3321.02 Q1383.55 3324.56 1383.55 3331.69 Q1383.55 3338.8 1385.35 3342.37 Q1387.18 3345.91 1390.79 3345.91 Q1394.43 3345.91 1396.23 3342.37 Q1398.06 3338.8 1398.06 3331.69 Q1398.06 3324.56 1396.23 3321.02 Q1394.43 3317.46 1390.79 3317.46 M1390.79 3313.75 Q1396.6 3313.75 1399.66 3318.36 Q1402.74 3322.94 1402.74 3331.69 Q1402.74 3340.42 1399.66 3345.03 Q1396.6 3349.61 1390.79 3349.61 Q1384.98 3349.61 1381.9 3345.03 Q1378.85 3340.42 1378.85 3331.69 Q1378.85 3322.94 1381.9 3318.36 Q1384.98 3313.75 1390.79 3313.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1636.14 3345 L1652.46 3345 L1652.46 3348.94 L1630.51 3348.94 L1630.51 3345 Q1633.18 3342.25 1637.76 3337.62 Q1642.37 3332.97 1643.55 3331.62 Q1645.79 3329.1 1646.67 3327.37 Q1647.57 3325.61 1647.57 3323.92 Q1647.57 3321.16 1645.63 3319.43 Q1643.71 3317.69 1640.61 3317.69 Q1638.41 3317.69 1635.95 3318.45 Q1633.52 3319.22 1630.74 3320.77 L1630.74 3316.05 Q1633.57 3314.91 1636.02 3314.33 Q1638.48 3313.75 1640.51 3313.75 Q1645.88 3313.75 1649.08 3316.44 Q1652.27 3319.12 1652.27 3323.62 Q1652.27 3325.74 1651.46 3327.67 Q1650.68 3329.56 1648.57 3332.16 Q1647.99 3332.83 1644.89 3336.05 Q1641.79 3339.24 1636.14 3345 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1662.27 3343.06 L1667.16 3343.06 L1667.16 3348.94 L1662.27 3348.94 L1662.27 3343.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1677.39 3314.38 L1695.74 3314.38 L1695.74 3318.31 L1681.67 3318.31 L1681.67 3326.79 Q1682.69 3326.44 1683.71 3326.28 Q1684.73 3326.09 1685.74 3326.09 Q1691.53 3326.09 1694.91 3329.26 Q1698.29 3332.43 1698.29 3337.85 Q1698.29 3343.43 1694.82 3346.53 Q1691.35 3349.61 1685.03 3349.61 Q1682.85 3349.61 1680.58 3349.24 Q1678.34 3348.87 1675.93 3348.13 L1675.93 3343.43 Q1678.01 3344.56 1680.24 3345.12 Q1682.46 3345.68 1684.93 3345.68 Q1688.94 3345.68 1691.28 3343.57 Q1693.61 3341.46 1693.61 3337.85 Q1693.61 3334.24 1691.28 3332.13 Q1688.94 3330.03 1684.93 3330.03 Q1683.06 3330.03 1681.18 3330.44 Q1679.33 3330.86 1677.39 3331.74 L1677.39 3314.38 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip127)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,3265.47 1952.76,3265.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip127)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,3177.82 1952.76,3177.82 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip127)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,3090.16 1952.76,3090.16 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip127)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,3002.5 1952.76,3002.5 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip127)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,2914.84 1952.76,2914.84 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,3273.74 132.633,2904.39 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,3265.47 151.531,3265.47 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,3177.82 151.531,3177.82 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,3090.16 151.531,3090.16 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,3002.5 151.531,3002.5 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,2914.84 151.531,2914.84 \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"M-14.7044 3251.27 Q-18.3155 3251.27 -20.1442 3254.84 Q-21.9498 3258.38 -21.9498 3265.51 Q-21.9498 3272.62 -20.1442 3276.18 Q-18.3155 3279.72 -14.7044 3279.72 Q-11.0702 3279.72 -9.26465 3276.18 Q-7.43595 3272.62 -7.43595 3265.51 Q-7.43595 3258.38 -9.26465 3254.84 Q-11.0702 3251.27 -14.7044 3251.27 M-14.7044 3247.57 Q-8.89428 3247.57 -5.83874 3252.18 Q-2.76005 3256.76 -2.76005 3265.51 Q-2.76005 3274.24 -5.83874 3278.84 Q-8.89428 3283.43 -14.7044 3283.43 Q-20.5146 3283.43 -23.5933 3278.84 Q-26.6488 3274.24 -26.6488 3265.51 Q-26.6488 3256.76 -23.5933 3252.18 Q-20.5146 3247.57 -14.7044 3247.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M5.4575 3276.87 L10.3417 3276.87 L10.3417 3282.75 L5.4575 3282.75 L5.4575 3276.87 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M30.5268 3251.27 Q26.9157 3251.27 25.087 3254.84 Q23.2815 3258.38 23.2815 3265.51 Q23.2815 3272.62 25.087 3276.18 Q26.9157 3279.72 30.5268 3279.72 Q34.161 3279.72 35.9666 3276.18 Q37.7953 3272.62 37.7953 3265.51 Q37.7953 3258.38 35.9666 3254.84 Q34.161 3251.27 30.5268 3251.27 M30.5268 3247.57 Q36.337 3247.57 39.3925 3252.18 Q42.4712 3256.76 42.4712 3265.51 Q42.4712 3274.24 39.3925 3278.84 Q36.337 3283.43 30.5268 3283.43 Q24.7167 3283.43 21.638 3278.84 Q18.5824 3274.24 18.5824 3265.51 Q18.5824 3256.76 21.638 3252.18 Q24.7167 3247.57 30.5268 3247.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M60.6887 3251.27 Q57.0776 3251.27 55.2489 3254.84 Q53.4434 3258.38 53.4434 3265.51 Q53.4434 3272.62 55.2489 3276.18 Q57.0776 3279.72 60.6887 3279.72 Q64.3229 3279.72 66.1285 3276.18 Q67.9572 3272.62 67.9572 3265.51 Q67.9572 3258.38 66.1285 3254.84 Q64.3229 3251.27 60.6887 3251.27 M60.6887 3247.57 Q66.4988 3247.57 69.5544 3252.18 Q72.6331 3256.76 72.6331 3265.51 Q72.6331 3274.24 69.5544 3278.84 Q66.4988 3283.43 60.6887 3283.43 Q54.8785 3283.43 51.7998 3278.84 Q48.7443 3274.24 48.7443 3265.51 Q48.7443 3256.76 51.7998 3252.18 Q54.8785 3247.57 60.6887 3247.57 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M-13.7091 3163.61 Q-17.3202 3163.61 -19.1489 3167.18 Q-20.9544 3170.72 -20.9544 3177.85 Q-20.9544 3184.96 -19.1489 3188.52 Q-17.3202 3192.06 -13.7091 3192.06 Q-10.0748 3192.06 -8.26928 3188.52 Q-6.44059 3184.96 -6.44059 3177.85 Q-6.44059 3170.72 -8.26928 3167.18 Q-10.0748 3163.61 -13.7091 3163.61 M-13.7091 3159.91 Q-7.89891 3159.91 -4.84337 3164.52 Q-1.76469 3169.1 -1.76469 3177.85 Q-1.76469 3186.58 -4.84337 3191.18 Q-7.89891 3195.77 -13.7091 3195.77 Q-19.5192 3195.77 -22.5979 3191.18 Q-25.6534 3186.58 -25.6534 3177.85 Q-25.6534 3169.1 -22.5979 3164.52 Q-19.5192 3159.91 -13.7091 3159.91 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M6.45286 3189.22 L11.3371 3189.22 L11.3371 3195.1 L6.45286 3195.1 L6.45286 3189.22 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M25.55 3191.16 L41.8693 3191.16 L41.8693 3195.1 L19.925 3195.1 L19.925 3191.16 Q22.587 3188.41 27.1703 3183.78 Q31.7768 3179.12 32.9574 3177.78 Q35.2027 3175.26 36.0823 3173.52 Q36.9851 3171.76 36.9851 3170.07 Q36.9851 3167.32 35.0407 3165.58 Q33.1194 3163.85 30.0176 3163.85 Q27.8185 3163.85 25.3648 3164.61 Q22.9343 3165.37 20.1565 3166.92 L20.1565 3162.2 Q22.9806 3161.07 25.4342 3160.49 Q27.8879 3159.91 29.925 3159.91 Q35.2953 3159.91 38.4897 3162.6 Q41.6842 3165.28 41.6842 3169.77 Q41.6842 3171.9 40.874 3173.82 Q40.0869 3175.72 37.9805 3178.31 Q37.4018 3178.98 34.2999 3182.2 Q31.1981 3185.4 25.55 3191.16 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M51.7304 3160.54 L70.0868 3160.54 L70.0868 3164.47 L56.0128 3164.47 L56.0128 3172.94 Q57.0313 3172.6 58.0498 3172.43 Q59.0683 3172.25 60.0868 3172.25 Q65.8738 3172.25 69.2535 3175.42 Q72.6331 3178.59 72.6331 3184.01 Q72.6331 3189.59 69.1609 3192.69 Q65.6887 3195.77 59.3692 3195.77 Q57.1933 3195.77 54.9248 3195.4 Q52.6795 3195.03 50.2721 3194.29 L50.2721 3189.59 Q52.3554 3190.72 54.5776 3191.28 Q56.7998 3191.83 59.2767 3191.83 Q63.2813 3191.83 65.6192 3189.73 Q67.9572 3187.62 67.9572 3184.01 Q67.9572 3180.4 65.6192 3178.29 Q63.2813 3176.18 59.2767 3176.18 Q57.4017 3176.18 55.5267 3176.6 Q53.6748 3177.02 51.7304 3177.9 L51.7304 3160.54 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M-14.7044 3075.96 Q-18.3155 3075.96 -20.1442 3079.52 Q-21.9498 3083.06 -21.9498 3090.19 Q-21.9498 3097.3 -20.1442 3100.86 Q-18.3155 3104.4 -14.7044 3104.4 Q-11.0702 3104.4 -9.26465 3100.86 Q-7.43595 3097.3 -7.43595 3090.19 Q-7.43595 3083.06 -9.26465 3079.52 Q-11.0702 3075.96 -14.7044 3075.96 M-14.7044 3072.25 Q-8.89428 3072.25 -5.83874 3076.86 Q-2.76005 3081.44 -2.76005 3090.19 Q-2.76005 3098.92 -5.83874 3103.53 Q-8.89428 3108.11 -14.7044 3108.11 Q-20.5146 3108.11 -23.5933 3103.53 Q-26.6488 3098.92 -26.6488 3090.19 Q-26.6488 3081.44 -23.5933 3076.86 Q-20.5146 3072.25 -14.7044 3072.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M5.4575 3101.56 L10.3417 3101.56 L10.3417 3107.44 L5.4575 3107.44 L5.4575 3101.56 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M20.5732 3072.88 L38.9295 3072.88 L38.9295 3076.81 L24.8555 3076.81 L24.8555 3085.28 Q25.8741 3084.94 26.8926 3084.78 Q27.9111 3084.59 28.9296 3084.59 Q34.7166 3084.59 38.0962 3087.76 Q41.4758 3090.93 41.4758 3096.35 Q41.4758 3101.93 38.0036 3105.03 Q34.5314 3108.11 28.212 3108.11 Q26.0361 3108.11 23.7676 3107.74 Q21.5222 3107.37 19.1148 3106.63 L19.1148 3101.93 Q21.1982 3103.06 23.4204 3103.62 Q25.6426 3104.17 28.1194 3104.17 Q32.124 3104.17 34.462 3102.07 Q36.7999 3099.96 36.7999 3096.35 Q36.7999 3092.74 34.462 3090.63 Q32.124 3088.53 28.1194 3088.53 Q26.2444 3088.53 24.3694 3088.94 Q22.5176 3089.36 20.5732 3090.24 L20.5732 3072.88 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M60.6887 3075.96 Q57.0776 3075.96 55.2489 3079.52 Q53.4434 3083.06 53.4434 3090.19 Q53.4434 3097.3 55.2489 3100.86 Q57.0776 3104.4 60.6887 3104.4 Q64.3229 3104.4 66.1285 3100.86 Q67.9572 3097.3 67.9572 3090.19 Q67.9572 3083.06 66.1285 3079.52 Q64.3229 3075.96 60.6887 3075.96 M60.6887 3072.25 Q66.4988 3072.25 69.5544 3076.86 Q72.6331 3081.44 72.6331 3090.19 Q72.6331 3098.92 69.5544 3103.53 Q66.4988 3108.11 60.6887 3108.11 Q54.8785 3108.11 51.7998 3103.53 Q48.7443 3098.92 48.7443 3090.19 Q48.7443 3081.44 51.7998 3076.86 Q54.8785 3072.25 60.6887 3072.25 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M-13.7091 2988.3 Q-17.3202 2988.3 -19.1489 2991.86 Q-20.9544 2995.4 -20.9544 3002.53 Q-20.9544 3009.64 -19.1489 3013.2 Q-17.3202 3016.75 -13.7091 3016.75 Q-10.0748 3016.75 -8.26928 3013.2 Q-6.44059 3009.64 -6.44059 3002.53 Q-6.44059 2995.4 -8.26928 2991.86 Q-10.0748 2988.3 -13.7091 2988.3 M-13.7091 2984.59 Q-7.89891 2984.59 -4.84337 2989.2 Q-1.76469 2993.78 -1.76469 3002.53 Q-1.76469 3011.26 -4.84337 3015.87 Q-7.89891 3020.45 -13.7091 3020.45 Q-19.5192 3020.45 -22.5979 3015.87 Q-25.6534 3011.26 -25.6534 3002.53 Q-25.6534 2993.78 -22.5979 2989.2 Q-19.5192 2984.59 -13.7091 2984.59 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M6.45286 3013.9 L11.3371 3013.9 L11.3371 3019.78 L6.45286 3019.78 L6.45286 3013.9 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M20.3417 2985.22 L42.5638 2985.22 L42.5638 2987.21 L30.0176 3019.78 L25.1333 3019.78 L36.9388 2989.15 L20.3417 2989.15 L20.3417 2985.22 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M51.7304 2985.22 L70.0868 2985.22 L70.0868 2989.15 L56.0128 2989.15 L56.0128 2997.63 Q57.0313 2997.28 58.0498 2997.12 Q59.0683 2996.93 60.0868 2996.93 Q65.8738 2996.93 69.2535 3000.1 Q72.6331 3003.27 72.6331 3008.69 Q72.6331 3014.27 69.1609 3017.37 Q65.6887 3020.45 59.3692 3020.45 Q57.1933 3020.45 54.9248 3020.08 Q52.6795 3019.71 50.2721 3018.97 L50.2721 3014.27 Q52.3554 3015.4 54.5776 3015.96 Q56.7998 3016.51 59.2767 3016.51 Q63.2813 3016.51 65.6192 3014.41 Q67.9572 3012.3 67.9572 3008.69 Q67.9572 3005.08 65.6192 3002.97 Q63.2813 3000.87 59.2767 3000.87 Q57.4017 3000.87 55.5267 3001.28 Q53.6748 3001.7 51.7304 3002.58 L51.7304 2985.22 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M-23.8942 2928.19 L-16.2553 2928.19 L-16.2553 2901.82 L-24.5655 2903.49 L-24.5655 2899.23 L-16.3016 2897.56 L-11.6257 2897.56 L-11.6257 2928.19 L-3.9869 2928.19 L-3.9869 2932.12 L-23.8942 2932.12 L-23.8942 2928.19 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M5.4575 2926.24 L10.3417 2926.24 L10.3417 2932.12 L5.4575 2932.12 L5.4575 2926.24 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M30.5268 2900.64 Q26.9157 2900.64 25.087 2904.2 Q23.2815 2907.75 23.2815 2914.88 Q23.2815 2921.98 25.087 2925.55 Q26.9157 2929.09 30.5268 2929.09 Q34.161 2929.09 35.9666 2925.55 Q37.7953 2921.98 37.7953 2914.88 Q37.7953 2907.75 35.9666 2904.2 Q34.161 2900.64 30.5268 2900.64 M30.5268 2896.94 Q36.337 2896.94 39.3925 2901.54 Q42.4712 2906.13 42.4712 2914.88 Q42.4712 2923.6 39.3925 2928.21 Q36.337 2932.79 30.5268 2932.79 Q24.7167 2932.79 21.638 2928.21 Q18.5824 2923.6 18.5824 2914.88 Q18.5824 2906.13 21.638 2901.54 Q24.7167 2896.94 30.5268 2896.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M60.6887 2900.64 Q57.0776 2900.64 55.2489 2904.2 Q53.4434 2907.75 53.4434 2914.88 Q53.4434 2921.98 55.2489 2925.55 Q57.0776 2929.09 60.6887 2929.09 Q64.3229 2929.09 66.1285 2925.55 Q67.9572 2921.98 67.9572 2914.88 Q67.9572 2907.75 66.1285 2904.2 Q64.3229 2900.64 60.6887 2900.64 M60.6887 2896.94 Q66.4988 2896.94 69.5544 2901.54 Q72.6331 2906.13 72.6331 2914.88 Q72.6331 2923.6 69.5544 2928.21 Q66.4988 2932.79 60.6887 2932.79 Q54.8785 2932.79 51.7998 2928.21 Q48.7443 2923.6 48.7443 2914.88 Q48.7443 2906.13 51.7998 2901.54 Q54.8785 2896.94 60.6887 2896.94 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip127)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,2914.84 243.356,2922.84 302.566,2945.93 361.777,2981.52 420.987,3025.73 480.197,3074.02 539.407,3121.82 598.618,3165.22 657.828,3201.45 717.038,3229.07 \n",
" 776.248,3247.99 835.459,3259.18 894.669,3263.29 953.879,3262.36 1013.09,3261.51 1072.3,3260.74 1131.51,3260.24 1190.72,3260.36 1249.93,3261.08 1309.14,3261.8 \n",
" 1368.35,3261.33 1427.56,3259.54 1486.77,3257.44 1545.98,3255.84 1605.19,3255.21 1664.4,3255.75 1723.61,3257.3 1782.82,3259.18 1842.03,3260.09 1901.24,3259.4 \n",
" \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"\n",
"M1656.25 3020.38 L1892.09 3020.38 L1892.09 2916.7 L1656.25 2916.7 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1656.25,3020.38 1892.09,3020.38 1892.09,2916.7 1656.25,2916.7 1656.25,3020.38 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1676.48,2968.54 1797.82,2968.54 \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"M1831.88 2988.23 Q1830.08 2992.86 1828.37 2994.27 Q1826.65 2995.68 1823.78 2995.68 L1820.38 2995.68 L1820.38 2992.11 L1822.88 2992.11 Q1824.64 2992.11 1825.61 2991.28 Q1826.58 2990.45 1827.76 2987.35 L1828.53 2985.4 L1818.04 2959.89 L1822.56 2959.89 L1830.66 2980.17 L1838.76 2959.89 L1843.27 2959.89 L1831.88 2988.23 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1860.33 2966.68 Q1857.19 2966.68 1855.33 2968.83 Q1853.51 2970.98 1853.51 2974.73 Q1853.51 2978.46 1855.33 2980.63 Q1857.19 2982.79 1860.33 2982.79 Q1863.48 2982.79 1865.31 2980.63 Q1867.16 2978.46 1867.16 2974.73 Q1867.16 2970.98 1865.31 2968.83 Q1863.48 2966.68 1860.33 2966.68 M1869.62 2952.02 L1869.62 2956.28 Q1867.86 2955.45 1866.05 2955.01 Q1864.27 2954.57 1862.51 2954.57 Q1857.88 2954.57 1855.43 2957.69 Q1853 2960.82 1852.65 2967.14 Q1854.01 2965.12 1856.07 2964.06 Q1858.13 2962.97 1860.61 2962.97 Q1865.82 2962.97 1868.83 2966.14 Q1871.86 2969.29 1871.86 2974.73 Q1871.86 2980.05 1868.71 2983.27 Q1865.57 2986.49 1860.33 2986.49 Q1854.34 2986.49 1851.17 2981.91 Q1848 2977.3 1848 2968.57 Q1848 2960.38 1851.88 2955.52 Q1855.77 2950.63 1862.32 2950.63 Q1864.08 2950.63 1865.87 2950.98 Q1867.67 2951.33 1869.62 2952.02 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"\n",
"M132.633 3845.17 L1952.76 3845.17 L1952.76 3475.82 L132.633 3475.82 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<defs>\n",
" <clipPath id=\"clip128\">\n",
" <rect x=\"132\" y=\"3475\" width=\"1821\" height=\"370\"/>\n",
" </clipPath>\n",
"</defs>\n",
"<polyline clip-path=\"url(#clip128)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 184.146,3845.17 184.146,3475.82 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip128)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 480.197,3845.17 480.197,3475.82 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip128)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 776.248,3845.17 776.248,3475.82 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip128)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1072.3,3845.17 1072.3,3475.82 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip128)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1368.35,3845.17 1368.35,3475.82 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip128)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 1664.4,3845.17 1664.4,3475.82 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,3845.17 1952.76,3845.17 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,3845.17 184.146,3826.27 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 480.197,3845.17 480.197,3826.27 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 776.248,3845.17 776.248,3826.27 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1072.3,3845.17 1072.3,3826.27 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1368.35,3845.17 1368.35,3826.27 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1664.4,3845.17 1664.4,3826.27 \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"M161.53 3888.89 Q157.919 3888.89 156.091 3892.45 Q154.285 3895.99 154.285 3903.12 Q154.285 3910.23 156.091 3913.79 Q157.919 3917.34 161.53 3917.34 Q165.165 3917.34 166.97 3913.79 Q168.799 3910.23 168.799 3903.12 Q168.799 3895.99 166.97 3892.45 Q165.165 3888.89 161.53 3888.89 M161.53 3885.18 Q167.341 3885.18 170.396 3889.79 Q173.475 3894.37 173.475 3903.12 Q173.475 3911.85 170.396 3916.46 Q167.341 3921.04 161.53 3921.04 Q155.72 3921.04 152.642 3916.46 Q149.586 3911.85 149.586 3903.12 Q149.586 3894.37 152.642 3889.79 Q155.72 3885.18 161.53 3885.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M181.692 3914.49 L186.577 3914.49 L186.577 3920.37 L181.692 3920.37 L181.692 3914.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M206.762 3888.89 Q203.151 3888.89 201.322 3892.45 Q199.516 3895.99 199.516 3903.12 Q199.516 3910.23 201.322 3913.79 Q203.151 3917.34 206.762 3917.34 Q210.396 3917.34 212.201 3913.79 Q214.03 3910.23 214.03 3903.12 Q214.03 3895.99 212.201 3892.45 Q210.396 3888.89 206.762 3888.89 M206.762 3885.18 Q212.572 3885.18 215.627 3889.79 Q218.706 3894.37 218.706 3903.12 Q218.706 3911.85 215.627 3916.46 Q212.572 3921.04 206.762 3921.04 Q200.951 3921.04 197.873 3916.46 Q194.817 3911.85 194.817 3903.12 Q194.817 3894.37 197.873 3889.79 Q200.951 3885.18 206.762 3885.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M458.079 3888.89 Q454.468 3888.89 452.639 3892.45 Q450.834 3895.99 450.834 3903.12 Q450.834 3910.23 452.639 3913.79 Q454.468 3917.34 458.079 3917.34 Q461.713 3917.34 463.519 3913.79 Q465.348 3910.23 465.348 3903.12 Q465.348 3895.99 463.519 3892.45 Q461.713 3888.89 458.079 3888.89 M458.079 3885.18 Q463.889 3885.18 466.945 3889.79 Q470.024 3894.37 470.024 3903.12 Q470.024 3911.85 466.945 3916.46 Q463.889 3921.04 458.079 3921.04 Q452.269 3921.04 449.19 3916.46 Q446.135 3911.85 446.135 3903.12 Q446.135 3894.37 449.19 3889.79 Q452.269 3885.18 458.079 3885.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M478.241 3914.49 L483.125 3914.49 L483.125 3920.37 L478.241 3920.37 L478.241 3914.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M493.357 3885.81 L511.713 3885.81 L511.713 3889.74 L497.639 3889.74 L497.639 3898.22 Q498.658 3897.87 499.676 3897.71 Q500.695 3897.52 501.713 3897.52 Q507.5 3897.52 510.88 3900.69 Q514.26 3903.86 514.26 3909.28 Q514.26 3914.86 510.787 3917.96 Q507.315 3921.04 500.996 3921.04 Q498.82 3921.04 496.551 3920.67 Q494.306 3920.3 491.899 3919.56 L491.899 3914.86 Q493.982 3915.99 496.204 3916.55 Q498.426 3917.1 500.903 3917.1 Q504.908 3917.1 507.246 3915 Q509.584 3912.89 509.584 3909.28 Q509.584 3905.67 507.246 3903.56 Q504.908 3901.46 500.903 3901.46 Q499.028 3901.46 497.153 3901.87 Q495.301 3902.29 493.357 3903.17 L493.357 3885.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M743.401 3916.43 L751.04 3916.43 L751.04 3890.07 L742.73 3891.73 L742.73 3887.47 L750.994 3885.81 L755.67 3885.81 L755.67 3916.43 L763.309 3916.43 L763.309 3920.37 L743.401 3920.37 L743.401 3916.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M772.753 3914.49 L777.637 3914.49 L777.637 3920.37 L772.753 3920.37 L772.753 3914.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M797.822 3888.89 Q794.211 3888.89 792.383 3892.45 Q790.577 3895.99 790.577 3903.12 Q790.577 3910.23 792.383 3913.79 Q794.211 3917.34 797.822 3917.34 Q801.457 3917.34 803.262 3913.79 Q805.091 3910.23 805.091 3903.12 Q805.091 3895.99 803.262 3892.45 Q801.457 3888.89 797.822 3888.89 M797.822 3885.18 Q803.633 3885.18 806.688 3889.79 Q809.767 3894.37 809.767 3903.12 Q809.767 3911.85 806.688 3916.46 Q803.633 3921.04 797.822 3921.04 Q792.012 3921.04 788.934 3916.46 Q785.878 3911.85 785.878 3903.12 Q785.878 3894.37 788.934 3889.79 Q792.012 3885.18 797.822 3885.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1039.95 3916.43 L1047.59 3916.43 L1047.59 3890.07 L1039.28 3891.73 L1039.28 3887.47 L1047.54 3885.81 L1052.22 3885.81 L1052.22 3916.43 L1059.86 3916.43 L1059.86 3920.37 L1039.95 3920.37 L1039.95 3916.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1069.3 3914.49 L1074.19 3914.49 L1074.19 3920.37 L1069.3 3920.37 L1069.3 3914.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1084.42 3885.81 L1102.77 3885.81 L1102.77 3889.74 L1088.7 3889.74 L1088.7 3898.22 Q1089.72 3897.87 1090.74 3897.71 Q1091.76 3897.52 1092.77 3897.52 Q1098.56 3897.52 1101.94 3900.69 Q1105.32 3903.86 1105.32 3909.28 Q1105.32 3914.86 1101.85 3917.96 Q1098.38 3921.04 1092.06 3921.04 Q1089.88 3921.04 1087.61 3920.67 Q1085.37 3920.3 1082.96 3919.56 L1082.96 3914.86 Q1085.04 3915.99 1087.26 3916.55 Q1089.49 3917.1 1091.96 3917.1 Q1095.97 3917.1 1098.31 3915 Q1100.64 3912.89 1100.64 3909.28 Q1100.64 3905.67 1098.31 3903.56 Q1095.97 3901.46 1091.96 3901.46 Q1090.09 3901.46 1088.21 3901.87 Q1086.36 3902.29 1084.42 3903.17 L1084.42 3885.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1339.59 3916.43 L1355.91 3916.43 L1355.91 3920.37 L1333.96 3920.37 L1333.96 3916.43 Q1336.63 3913.68 1341.21 3909.05 Q1345.82 3904.4 1347 3903.05 Q1349.24 3900.53 1350.12 3898.79 Q1351.02 3897.03 1351.02 3895.34 Q1351.02 3892.59 1349.08 3890.85 Q1347.16 3889.12 1344.06 3889.12 Q1341.86 3889.12 1339.4 3889.88 Q1336.97 3890.65 1334.2 3892.2 L1334.2 3887.47 Q1337.02 3886.34 1339.47 3885.76 Q1341.93 3885.18 1343.96 3885.18 Q1349.33 3885.18 1352.53 3887.87 Q1355.72 3890.55 1355.72 3895.04 Q1355.72 3897.17 1354.91 3899.09 Q1354.13 3900.99 1352.02 3903.59 Q1351.44 3904.26 1348.34 3907.47 Q1345.24 3910.67 1339.59 3916.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1365.72 3914.49 L1370.61 3914.49 L1370.61 3920.37 L1365.72 3920.37 L1365.72 3914.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1390.79 3888.89 Q1387.18 3888.89 1385.35 3892.45 Q1383.55 3895.99 1383.55 3903.12 Q1383.55 3910.23 1385.35 3913.79 Q1387.18 3917.34 1390.79 3917.34 Q1394.43 3917.34 1396.23 3913.79 Q1398.06 3910.23 1398.06 3903.12 Q1398.06 3895.99 1396.23 3892.45 Q1394.43 3888.89 1390.79 3888.89 M1390.79 3885.18 Q1396.6 3885.18 1399.66 3889.79 Q1402.74 3894.37 1402.74 3903.12 Q1402.74 3911.85 1399.66 3916.46 Q1396.6 3921.04 1390.79 3921.04 Q1384.98 3921.04 1381.9 3916.46 Q1378.85 3911.85 1378.85 3903.12 Q1378.85 3894.37 1381.9 3889.79 Q1384.98 3885.18 1390.79 3885.18 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1636.14 3916.43 L1652.46 3916.43 L1652.46 3920.37 L1630.51 3920.37 L1630.51 3916.43 Q1633.18 3913.68 1637.76 3909.05 Q1642.37 3904.4 1643.55 3903.05 Q1645.79 3900.53 1646.67 3898.79 Q1647.57 3897.03 1647.57 3895.34 Q1647.57 3892.59 1645.63 3890.85 Q1643.71 3889.12 1640.61 3889.12 Q1638.41 3889.12 1635.95 3889.88 Q1633.52 3890.65 1630.74 3892.2 L1630.74 3887.47 Q1633.57 3886.34 1636.02 3885.76 Q1638.48 3885.18 1640.51 3885.18 Q1645.88 3885.18 1649.08 3887.87 Q1652.27 3890.55 1652.27 3895.04 Q1652.27 3897.17 1651.46 3899.09 Q1650.68 3900.99 1648.57 3903.59 Q1647.99 3904.26 1644.89 3907.47 Q1641.79 3910.67 1636.14 3916.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1662.27 3914.49 L1667.16 3914.49 L1667.16 3920.37 L1662.27 3920.37 L1662.27 3914.49 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1677.39 3885.81 L1695.74 3885.81 L1695.74 3889.74 L1681.67 3889.74 L1681.67 3898.22 Q1682.69 3897.87 1683.71 3897.71 Q1684.73 3897.52 1685.74 3897.52 Q1691.53 3897.52 1694.91 3900.69 Q1698.29 3903.86 1698.29 3909.28 Q1698.29 3914.86 1694.82 3917.96 Q1691.35 3921.04 1685.03 3921.04 Q1682.85 3921.04 1680.58 3920.67 Q1678.34 3920.3 1675.93 3919.56 L1675.93 3914.86 Q1678.01 3915.99 1680.24 3916.55 Q1682.46 3917.1 1684.93 3917.1 Q1688.94 3917.1 1691.28 3915 Q1693.61 3912.89 1693.61 3909.28 Q1693.61 3905.67 1691.28 3903.56 Q1688.94 3901.46 1684.93 3901.46 Q1683.06 3901.46 1681.18 3901.87 Q1679.33 3902.29 1677.39 3903.17 L1677.39 3885.81 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip128)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,3841.03 1952.76,3841.03 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip128)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,3752.34 1952.76,3752.34 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip128)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,3663.65 1952.76,3663.65 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip128)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,3574.96 1952.76,3574.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip128)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:2; stroke-opacity:0.1; fill:none\" points=\"\n",
" 132.633,3486.27 1952.76,3486.27 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,3845.17 132.633,3475.82 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,3841.03 151.531,3841.03 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,3752.34 151.531,3752.34 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,3663.65 151.531,3663.65 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,3574.96 151.531,3574.96 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 132.633,3486.27 151.531,3486.27 \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"M-14.7044 3826.83 Q-18.3155 3826.83 -20.1442 3830.4 Q-21.9498 3833.94 -21.9498 3841.07 Q-21.9498 3848.17 -20.1442 3851.74 Q-18.3155 3855.28 -14.7044 3855.28 Q-11.0702 3855.28 -9.26465 3851.74 Q-7.43595 3848.17 -7.43595 3841.07 Q-7.43595 3833.94 -9.26465 3830.4 Q-11.0702 3826.83 -14.7044 3826.83 M-14.7044 3823.13 Q-8.89428 3823.13 -5.83874 3827.73 Q-2.76005 3832.32 -2.76005 3841.07 Q-2.76005 3849.79 -5.83874 3854.4 Q-8.89428 3858.98 -14.7044 3858.98 Q-20.5146 3858.98 -23.5933 3854.4 Q-26.6488 3849.79 -26.6488 3841.07 Q-26.6488 3832.32 -23.5933 3827.73 Q-20.5146 3823.13 -14.7044 3823.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M5.4575 3852.43 L10.3417 3852.43 L10.3417 3858.31 L5.4575 3858.31 L5.4575 3852.43 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M30.5268 3826.83 Q26.9157 3826.83 25.087 3830.4 Q23.2815 3833.94 23.2815 3841.07 Q23.2815 3848.17 25.087 3851.74 Q26.9157 3855.28 30.5268 3855.28 Q34.161 3855.28 35.9666 3851.74 Q37.7953 3848.17 37.7953 3841.07 Q37.7953 3833.94 35.9666 3830.4 Q34.161 3826.83 30.5268 3826.83 M30.5268 3823.13 Q36.337 3823.13 39.3925 3827.73 Q42.4712 3832.32 42.4712 3841.07 Q42.4712 3849.79 39.3925 3854.4 Q36.337 3858.98 30.5268 3858.98 Q24.7167 3858.98 21.638 3854.4 Q18.5824 3849.79 18.5824 3841.07 Q18.5824 3832.32 21.638 3827.73 Q24.7167 3823.13 30.5268 3823.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M60.6887 3826.83 Q57.0776 3826.83 55.2489 3830.4 Q53.4434 3833.94 53.4434 3841.07 Q53.4434 3848.17 55.2489 3851.74 Q57.0776 3855.28 60.6887 3855.28 Q64.3229 3855.28 66.1285 3851.74 Q67.9572 3848.17 67.9572 3841.07 Q67.9572 3833.94 66.1285 3830.4 Q64.3229 3826.83 60.6887 3826.83 M60.6887 3823.13 Q66.4988 3823.13 69.5544 3827.73 Q72.6331 3832.32 72.6331 3841.07 Q72.6331 3849.79 69.5544 3854.4 Q66.4988 3858.98 60.6887 3858.98 Q54.8785 3858.98 51.7998 3854.4 Q48.7443 3849.79 48.7443 3841.07 Q48.7443 3832.32 51.7998 3827.73 Q54.8785 3823.13 60.6887 3823.13 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M-13.7091 3738.14 Q-17.3202 3738.14 -19.1489 3741.7 Q-20.9544 3745.25 -20.9544 3752.38 Q-20.9544 3759.48 -19.1489 3763.05 Q-17.3202 3766.59 -13.7091 3766.59 Q-10.0748 3766.59 -8.26928 3763.05 Q-6.44059 3759.48 -6.44059 3752.38 Q-6.44059 3745.25 -8.26928 3741.7 Q-10.0748 3738.14 -13.7091 3738.14 M-13.7091 3734.44 Q-7.89891 3734.44 -4.84337 3739.04 Q-1.76469 3743.63 -1.76469 3752.38 Q-1.76469 3761.1 -4.84337 3765.71 Q-7.89891 3770.29 -13.7091 3770.29 Q-19.5192 3770.29 -22.5979 3765.71 Q-25.6534 3761.1 -25.6534 3752.38 Q-25.6534 3743.63 -22.5979 3739.04 Q-19.5192 3734.44 -13.7091 3734.44 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M6.45286 3763.74 L11.3371 3763.74 L11.3371 3769.62 L6.45286 3769.62 L6.45286 3763.74 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M25.55 3765.69 L41.8693 3765.69 L41.8693 3769.62 L19.925 3769.62 L19.925 3765.69 Q22.587 3762.93 27.1703 3758.3 Q31.7768 3753.65 32.9574 3752.31 Q35.2027 3749.78 36.0823 3748.05 Q36.9851 3746.29 36.9851 3744.6 Q36.9851 3741.84 35.0407 3740.11 Q33.1194 3738.37 30.0176 3738.37 Q27.8185 3738.37 25.3648 3739.14 Q22.9343 3739.9 20.1565 3741.45 L20.1565 3736.73 Q22.9806 3735.59 25.4342 3735.01 Q27.8879 3734.44 29.925 3734.44 Q35.2953 3734.44 38.4897 3737.12 Q41.6842 3739.81 41.6842 3744.3 Q41.6842 3746.43 40.874 3748.35 Q40.0869 3750.25 37.9805 3752.84 Q37.4018 3753.51 34.2999 3756.73 Q31.1981 3759.92 25.55 3765.69 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M51.7304 3735.06 L70.0868 3735.06 L70.0868 3739 L56.0128 3739 L56.0128 3747.47 Q57.0313 3747.12 58.0498 3746.96 Q59.0683 3746.77 60.0868 3746.77 Q65.8738 3746.77 69.2535 3749.95 Q72.6331 3753.12 72.6331 3758.53 Q72.6331 3764.11 69.1609 3767.21 Q65.6887 3770.29 59.3692 3770.29 Q57.1933 3770.29 54.9248 3769.92 Q52.6795 3769.55 50.2721 3768.81 L50.2721 3764.11 Q52.3554 3765.25 54.5776 3765.8 Q56.7998 3766.36 59.2767 3766.36 Q63.2813 3766.36 65.6192 3764.25 Q67.9572 3762.14 67.9572 3758.53 Q67.9572 3754.92 65.6192 3752.82 Q63.2813 3750.71 59.2767 3750.71 Q57.4017 3750.71 55.5267 3751.13 Q53.6748 3751.54 51.7304 3752.42 L51.7304 3735.06 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M-14.7044 3649.45 Q-18.3155 3649.45 -20.1442 3653.01 Q-21.9498 3656.56 -21.9498 3663.69 Q-21.9498 3670.79 -20.1442 3674.36 Q-18.3155 3677.9 -14.7044 3677.9 Q-11.0702 3677.9 -9.26465 3674.36 Q-7.43595 3670.79 -7.43595 3663.69 Q-7.43595 3656.56 -9.26465 3653.01 Q-11.0702 3649.45 -14.7044 3649.45 M-14.7044 3645.75 Q-8.89428 3645.75 -5.83874 3650.35 Q-2.76005 3654.94 -2.76005 3663.69 Q-2.76005 3672.41 -5.83874 3677.02 Q-8.89428 3681.6 -14.7044 3681.6 Q-20.5146 3681.6 -23.5933 3677.02 Q-26.6488 3672.41 -26.6488 3663.69 Q-26.6488 3654.94 -23.5933 3650.35 Q-20.5146 3645.75 -14.7044 3645.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M5.4575 3675.05 L10.3417 3675.05 L10.3417 3680.93 L5.4575 3680.93 L5.4575 3675.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M20.5732 3646.37 L38.9295 3646.37 L38.9295 3650.31 L24.8555 3650.31 L24.8555 3658.78 Q25.8741 3658.43 26.8926 3658.27 Q27.9111 3658.08 28.9296 3658.08 Q34.7166 3658.08 38.0962 3661.25 Q41.4758 3664.43 41.4758 3669.84 Q41.4758 3675.42 38.0036 3678.52 Q34.5314 3681.6 28.212 3681.6 Q26.0361 3681.6 23.7676 3681.23 Q21.5222 3680.86 19.1148 3680.12 L19.1148 3675.42 Q21.1982 3676.56 23.4204 3677.11 Q25.6426 3677.67 28.1194 3677.67 Q32.124 3677.67 34.462 3675.56 Q36.7999 3673.45 36.7999 3669.84 Q36.7999 3666.23 34.462 3664.12 Q32.124 3662.02 28.1194 3662.02 Q26.2444 3662.02 24.3694 3662.44 Q22.5176 3662.85 20.5732 3663.73 L20.5732 3646.37 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M60.6887 3649.45 Q57.0776 3649.45 55.2489 3653.01 Q53.4434 3656.56 53.4434 3663.69 Q53.4434 3670.79 55.2489 3674.36 Q57.0776 3677.9 60.6887 3677.9 Q64.3229 3677.9 66.1285 3674.36 Q67.9572 3670.79 67.9572 3663.69 Q67.9572 3656.56 66.1285 3653.01 Q64.3229 3649.45 60.6887 3649.45 M60.6887 3645.75 Q66.4988 3645.75 69.5544 3650.35 Q72.6331 3654.94 72.6331 3663.69 Q72.6331 3672.41 69.5544 3677.02 Q66.4988 3681.6 60.6887 3681.6 Q54.8785 3681.6 51.7998 3677.02 Q48.7443 3672.41 48.7443 3663.69 Q48.7443 3654.94 51.7998 3650.35 Q54.8785 3645.75 60.6887 3645.75 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M-13.7091 3560.76 Q-17.3202 3560.76 -19.1489 3564.32 Q-20.9544 3567.86 -20.9544 3574.99 Q-20.9544 3582.1 -19.1489 3585.67 Q-17.3202 3589.21 -13.7091 3589.21 Q-10.0748 3589.21 -8.26928 3585.67 Q-6.44059 3582.1 -6.44059 3574.99 Q-6.44059 3567.86 -8.26928 3564.32 Q-10.0748 3560.76 -13.7091 3560.76 M-13.7091 3557.05 Q-7.89891 3557.05 -4.84337 3561.66 Q-1.76469 3566.24 -1.76469 3574.99 Q-1.76469 3583.72 -4.84337 3588.33 Q-7.89891 3592.91 -13.7091 3592.91 Q-19.5192 3592.91 -22.5979 3588.33 Q-25.6534 3583.72 -25.6534 3574.99 Q-25.6534 3566.24 -22.5979 3561.66 Q-19.5192 3557.05 -13.7091 3557.05 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M6.45286 3586.36 L11.3371 3586.36 L11.3371 3592.24 L6.45286 3592.24 L6.45286 3586.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M20.3417 3557.68 L42.5638 3557.68 L42.5638 3559.67 L30.0176 3592.24 L25.1333 3592.24 L36.9388 3561.61 L20.3417 3561.61 L20.3417 3557.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M51.7304 3557.68 L70.0868 3557.68 L70.0868 3561.61 L56.0128 3561.61 L56.0128 3570.09 Q57.0313 3569.74 58.0498 3569.58 Q59.0683 3569.39 60.0868 3569.39 Q65.8738 3569.39 69.2535 3572.56 Q72.6331 3575.74 72.6331 3581.15 Q72.6331 3586.73 69.1609 3589.83 Q65.6887 3592.91 59.3692 3592.91 Q57.1933 3592.91 54.9248 3592.54 Q52.6795 3592.17 50.2721 3591.43 L50.2721 3586.73 Q52.3554 3587.86 54.5776 3588.42 Q56.7998 3588.98 59.2767 3588.98 Q63.2813 3588.98 65.6192 3586.87 Q67.9572 3584.76 67.9572 3581.15 Q67.9572 3577.54 65.6192 3575.43 Q63.2813 3573.33 59.2767 3573.33 Q57.4017 3573.33 55.5267 3573.74 Q53.6748 3574.16 51.7304 3575.04 L51.7304 3557.68 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M-23.8942 3499.61 L-16.2553 3499.61 L-16.2553 3473.25 L-24.5655 3474.91 L-24.5655 3470.66 L-16.3016 3468.99 L-11.6257 3468.99 L-11.6257 3499.61 L-3.9869 3499.61 L-3.9869 3503.55 L-23.8942 3503.55 L-23.8942 3499.61 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M5.4575 3497.67 L10.3417 3497.67 L10.3417 3503.55 L5.4575 3503.55 L5.4575 3497.67 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M30.5268 3472.07 Q26.9157 3472.07 25.087 3475.63 Q23.2815 3479.17 23.2815 3486.3 Q23.2815 3493.41 25.087 3496.97 Q26.9157 3500.52 30.5268 3500.52 Q34.161 3500.52 35.9666 3496.97 Q37.7953 3493.41 37.7953 3486.3 Q37.7953 3479.17 35.9666 3475.63 Q34.161 3472.07 30.5268 3472.07 M30.5268 3468.36 Q36.337 3468.36 39.3925 3472.97 Q42.4712 3477.55 42.4712 3486.3 Q42.4712 3495.03 39.3925 3499.64 Q36.337 3504.22 30.5268 3504.22 Q24.7167 3504.22 21.638 3499.64 Q18.5824 3495.03 18.5824 3486.3 Q18.5824 3477.55 21.638 3472.97 Q24.7167 3468.36 30.5268 3468.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M60.6887 3472.07 Q57.0776 3472.07 55.2489 3475.63 Q53.4434 3479.17 53.4434 3486.3 Q53.4434 3493.41 55.2489 3496.97 Q57.0776 3500.52 60.6887 3500.52 Q64.3229 3500.52 66.1285 3496.97 Q67.9572 3493.41 67.9572 3486.3 Q67.9572 3479.17 66.1285 3475.63 Q64.3229 3472.07 60.6887 3472.07 M60.6887 3468.36 Q66.4988 3468.36 69.5544 3472.97 Q72.6331 3477.55 72.6331 3486.3 Q72.6331 3495.03 69.5544 3499.64 Q66.4988 3504.22 60.6887 3504.22 Q54.8785 3504.22 51.7998 3499.64 Q48.7443 3495.03 48.7443 3486.3 Q48.7443 3477.55 51.7998 3472.97 Q54.8785 3468.36 60.6887 3468.36 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><polyline clip-path=\"url(#clip128)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 184.146,3486.27 243.356,3495.17 302.566,3520.6 361.777,3559.22 420.987,3606.23 480.197,3656.23 539.407,3704.04 598.618,3745.48 657.828,3777.96 717.038,3800.69 \n",
" 776.248,3814.42 835.459,3820.73 894.669,3821.46 953.879,3819.16 1013.09,3816.42 1072.3,3814.94 1131.51,3815.46 1190.72,3817.93 1249.93,3821.79 1309.14,3826.23 \n",
" 1368.35,3830.37 1427.56,3833.39 1486.77,3834.71 1545.98,3834.7 1605.19,3834.26 1664.4,3833.9 1723.61,3833.64 1782.82,3833.2 1842.03,3832.25 1901.24,3830.63 \n",
" \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"\n",
"M1657.32 3591.81 L1892.09 3591.81 L1892.09 3488.13 L1657.32 3488.13 Z\n",
" \" fill=\"#ffffff\" fill-rule=\"evenodd\" fill-opacity=\"1\"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#000000; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1657.32,3591.81 1892.09,3591.81 1892.09,3488.13 1657.32,3488.13 1657.32,3591.81 \n",
" \"/>\n",
"<polyline clip-path=\"url(#clip120)\" style=\"stroke:#009af9; stroke-linecap:round; stroke-linejoin:round; stroke-width:4; stroke-opacity:1; fill:none\" points=\"\n",
" 1677.54,3539.97 1798.88,3539.97 \n",
" \"/>\n",
"<path clip-path=\"url(#clip120)\" d=\"M1832.95 3559.65 Q1831.14 3564.28 1829.43 3565.7 Q1827.72 3567.11 1824.85 3567.11 L1821.45 3567.11 L1821.45 3563.54 L1823.95 3563.54 Q1825.7 3563.54 1826.68 3562.71 Q1827.65 3561.88 1828.83 3558.78 L1829.59 3556.83 L1819.11 3531.32 L1823.62 3531.32 L1831.72 3551.6 L1839.82 3531.32 L1844.34 3531.32 L1832.95 3559.65 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /><path clip-path=\"url(#clip120)\" d=\"M1849.64 3522.69 L1871.86 3522.69 L1871.86 3524.68 L1859.32 3557.25 L1854.43 3557.25 L1866.24 3526.62 L1849.64 3526.62 L1849.64 3522.69 Z\" fill=\"#000000\" fill-rule=\"evenodd\" fill-opacity=\"1\" /></svg>\n"
]
},
"execution_count": 27,
"metadata": {},
"output_type": "execute_result"
}
],
"source": [
"zoom=1:30\n",
"plot(tsteps[zoom], [e[zoom] for e in evols], layout=(length(evols),1), size=(500,1000))"
]
},
{
"cell_type": "markdown",
"id": "1183835c",
"metadata": {},
"source": [
"## Observations\n",
"\n",
"The dot products of the two co-states goes to zero after about a time of $1$\n",
"for larger $n$.\n",
"\n",
"The dot product of the co-states represents the internal states taken on by the\n",
"observer for each of the two states of the qubit - i.e. the\n",
"two possibilities starting with $\\ket{\\omega}\\ket{0}$ and\n",
"$\\ket{\\omega}\\ket{1}$.\n",
"\n",
"I interpret the dot product of the co-states going to 0 as $n$ becomes larger,\n",
"as the states evolving in their own \"worlds\" and not crossing each other.\n",
"If they did cross, it would mean that at some point in the future of the\n",
"observer the qubit and the observer would become separable."
]
},
{
"cell_type": "markdown",
"id": "4983281d",
"metadata": {},
"source": [
"## Analysis\n",
"\n",
"Given the observer $H = \\begin{bmatrix} H_0 & 0 \\\\ 0 & H_1 \\end{bmatrix}$, and $H_0$ and $H_1$ are both self adjoint (i.e. $H_0 = H_0^\\dagger$ and $H_1 = H_1^\\dagger$), we have --\n",
"\n",
"$$ e^{iHt} = \\begin{bmatrix} e^{iH_0t} & 0 \\\\ 0 & e^{iH_1t} \\end{bmatrix} $$\n",
"\n",
"If we notate the combined state vector of the observer+qubit system as $\\ket{\\Psi} = \\ket{q} \\otimes \\ket{psi} = \\begin{bmatrix}q_0\\ket{\\psi} \\\\ q_1\\ket{\\psi}\\end{bmatrix}$ where $\\ket{q} = q_0\\ket{0} + q_1\\ket{1}$ (implying $|q_0|^2 + |q_1|^2 = 1$), The evolution of the joint state can be written --\n",
"\n",
"$$e^{iHt}\\ket{\\Psi} = \\begin{bmatrix}q_0e^{iH_0t}\\ket{\\psi} \\\\ q_1e^{iH_1t}\\ket{\\psi}\\end{bmatrix} = \\begin{bmatrix} q_0\\ket{\\psi_0(t)} \\\\ q_1\\ket{\\psi_1(t)}\\end{bmatrix}$$\n",
"\n",
"So if we're examining the inner product of the two co-state vectors, we get -\n",
"\n",
"$$ \\alpha = \\braket{\\psi\\left|e^{-iH_1t}e^{iH_0t}\\right|\\psi} = \\braket{\\psi\\left|e^{i(H_0-H_1)t}\\right|\\psi} = \\braket{\\psi\\left|e^{i\\Delta Ht}\\right|\\psi}$$ \n",
"\n",
"If $H_0$ and $H_1$ are very close to each other, then $\\Delta H$ ends up being small -- i.e. its eigenvalues end up small relative to the eigenvalues of $H_0$ and $H_1$ and the inner product becomes close to $1.0$. Therefore for $H$ to actually represent an observer, it must be able to differentiate between the two qubit states and therefore $\\Delta H$ itself must have random eigen values comparable in magnitude to both $H_0$ and $H_1$. \n",
"\n",
"If we then consider $\\ket{\\psi}$ in an eigen basis $\\ket{\\phi_k}$ of $\\Delta H$ with $\\braket{\\phi_i|\\phi_j} = \\delta_{ij}$ and $\\Delta H \\ket{\\phi_k} = 2\\pi f_k\\ket{\\phi_k}$, then taking $\\ket{\\psi} = \\sum_k{\\beta_k\\ket{\\phi_k}}$, we see that -\n",
"\n",
"$$ \\alpha = \\sum_k{|\\beta_k|^2e^{i(2\\pi f_kt)}} $$"
]
},
{
"cell_type": "markdown",
"id": "eb3b270f",
"metadata": {},
"source": [
"So if a) $\\ket{\\psi}$ is mixed enough in that basis and b) the \"frequencies\" $f_k$ are different enough, then for $t \\gtrapprox 0$, we see that $\\alpha \\approx 1$ and as $t$ increases, all sorts of frequencies will get mixed up and $\\alpha \\to 0$ with larger dimensions $n \\gg 1$. So the behaviour of the observer relative to the qubit states must also not have degenerate eigenvalues, or at least have sufficient number of different eigenvalues (\"frequencies\"). If we start out in a pure state of the observer system in that eigen basis though, we'll get $\\alpha = 1$. The interval during which $\\alpha \\sim 1$ (say $\\alpha > 0.5$) can then be called the \"coherence interval\" of the observer, beyond which you get \"decoherence\".\n",
"\n",
"So this is what we're seeing in the trend plot in the previous section using a random observer starting out at a random state.\n",
"\n",
"All these points correlate well with the mental model of \"observer\" that I started with, so I'm wondering whether all this should've been \"obvious\" from the get go :) I'm still irked by not being able to see why the Born rule has to hold based on this model of an observer, but that problem remains unsolved for now."
]
},
{
"cell_type": "code",
"execution_count": null,
"id": "d4e4ac68-47ba-426c-b552-357f4bbb7f13",
"metadata": {},
"outputs": [],
"source": []
}
],
"metadata": {
"kernelspec": {
"display_name": "Julia 1.8.5",
"language": "julia",
"name": "julia-1.8"
},
"language_info": {
"file_extension": ".jl",
"mimetype": "application/julia",
"name": "julia",
"version": "1.8.5"
}
},
"nbformat": 4,
"nbformat_minor": 5
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment