Created
July 5, 2020 14:17
-
-
Save nobuta05/9499b9d5ece86a23b86b741727d8c33e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"cells": [ | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"# 基本的なGPLVMの実装\n", | |
"\n", | |
"本資料は『ガウス過程と機械学習』に記載されるGPLVMのうち、最も基本的なものの実装メモです。" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"## 前準備. 環境設定\n", | |
"\n", | |
"本資料は以下の環境で実行しています。" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 1, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"name": "stdout", | |
"output_type": "stream", | |
"text": [ | |
"Julia Version 1.4.2\n", | |
"Commit 44fa15b150* (2020-05-23 18:35 UTC)\n", | |
"Platform Info:\n", | |
" OS: Linux (x86_64-pc-linux-gnu)\n", | |
" CPU: Intel(R) Core(TM) i5-8400 CPU @ 2.80GHz\n", | |
" WORD_SIZE: 64\n", | |
" LIBM: libopenlibm\n", | |
" LLVM: libLLVM-8.0.1 (ORCJIT, skylake)\n", | |
"Environment:\n", | |
" JULIA_NUM_THREADS = 6\n" | |
] | |
} | |
], | |
"source": [ | |
"versioninfo()" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 2, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"name": "stdout", | |
"output_type": "stream", | |
"text": [ | |
"\u001b[32m\u001b[1mStatus\u001b[22m\u001b[39m `~/.julia/environments/v1.4/Project.toml`\n", | |
" \u001b[90m [c52e3926]\u001b[39m\u001b[37m Atom v0.12.15\u001b[39m\n", | |
" \u001b[90m [ad839575]\u001b[39m\u001b[37m Blink v0.12.3\u001b[39m\n", | |
" \u001b[90m [d38c429a]\u001b[39m\u001b[37m Contour v0.5.3\u001b[39m\n", | |
" \u001b[90m [a93c6f00]\u001b[39m\u001b[37m DataFrames v0.21.2\u001b[39m\n", | |
" \u001b[90m [31c24e10]\u001b[39m\u001b[37m Distributions v0.23.4\u001b[39m\n", | |
" \u001b[90m [e30172f5]\u001b[39m\u001b[37m Documenter v0.24.11\u001b[39m\n", | |
" \u001b[90m [35a29f4d]\u001b[39m\u001b[37m DocumenterTools v0.1.6\u001b[39m\n", | |
" \u001b[90m [f6369f11]\u001b[39m\u001b[37m ForwardDiff v0.10.10\u001b[39m\n", | |
" \u001b[90m [34004b35]\u001b[39m\u001b[37m HypergeometricFunctions v0.2.3\u001b[39m\n", | |
" \u001b[90m [7073ff75]\u001b[39m\u001b[37m IJulia v1.21.2\u001b[39m\n", | |
" \u001b[90m [033835bb]\u001b[39m\u001b[37m JLD2 v0.1.13\u001b[39m\n", | |
" \u001b[90m [e5e0dc1b]\u001b[39m\u001b[37m Juno v0.8.2\u001b[39m\n", | |
" \u001b[90m [b964fa9f]\u001b[39m\u001b[37m LaTeXStrings v1.1.0\u001b[39m\n", | |
" \u001b[90m [5424a776]\u001b[39m\u001b[37m Mamba v0.12.4\u001b[39m\n", | |
" \u001b[90m [8314cec4]\u001b[39m\u001b[37m PGFPlotsX v1.2.6\u001b[39m\n", | |
" \u001b[90m [14b8a8f1]\u001b[39m\u001b[37m PkgTemplates v0.7.4\u001b[39m\n", | |
" \u001b[90m [f0f68f2c]\u001b[39m\u001b[37m PlotlyJS v0.13.1\u001b[39m\n", | |
" \u001b[90m [92933f4c]\u001b[39m\u001b[37m ProgressMeter v1.3.1\u001b[39m\n", | |
" \u001b[90m [6f49c342]\u001b[39m\u001b[37m RCall v0.13.7\u001b[39m\n", | |
" \u001b[90m [df47a6cb]\u001b[39m\u001b[37m RData v0.7.2\u001b[39m\n", | |
" \u001b[90m [2913bbd2]\u001b[39m\u001b[37m StatsBase v0.33.0\u001b[39m\n" | |
] | |
} | |
], | |
"source": [ | |
"using Pkg\n", | |
"Pkg.status()" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"また連続変数、今回の場合は各データに対応する潜在変数ベクトル、カーネル関数のハイパーパラメタ、の最適化が必要な場合、Meiller, \"A Scaled Conjugate Gradient Algorithm for Fast Supervised Learning\" (1991) で提案されるSCGをここでは用います。採用理由は『ガウス過程と機械学習』で挙げられていたためです。簡単な記事は **ここ** に記載しているため、SCGに関する記述は本資料では割愛します。" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"## 基本的なGPLVMの概要\n", | |
"\n", | |
"基本的なGPLVMは教師なし学習に分類される、PCAを非線形化した手法の1つです。各観測データに対応する低次元潜在変数ベクトルを導入し、各観測データは、潜在変数によるガウス過程から生じるという生成モデルを考えます。この時の事後対数尤度を最大とする潜在変数ベクトルを、勾配法等を用いて求めることで、各観測データに対応する低次元潜在変数を得ます。" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"### 表記\n", | |
"\n", | |
"以降、特に明記がなければ以下の記号を用いることとします。記号自体はぶらないようにしていますが、スカラー値としての$K$と、グラム行列としての$\\boldsymbol{K}_{\\boldsymbol{X}}$が紛らわしかったりするため、参考にされる場合はご注意ください。\n", | |
"\n", | |
"$$\n", | |
"\\begin{align}\n", | |
" N\\in\\mathbb{N} &\\quad\n", | |
" \\text{データ数}\n", | |
"\\\\\n", | |
" D\\in\\mathbb{N} &\\quad\n", | |
" \\text{観測されたデータの次元数}\n", | |
"\\\\\n", | |
" K\\in\\mathbb{N} &\\quad\n", | |
" \\text{潜在変数の次元数}\n", | |
"\\\\\n", | |
" i=1\\dots N,\\; \\boldsymbol{y}_i\\in\\mathbb{R}^D &\\quad\n", | |
" \\text{$i$番目の観測データ}\n", | |
"\\\\\n", | |
" d=1\\dots D,\\; \\boldsymbol{y}^{(d)}\\in\\mathbb{R}^{D} &\\quad\n", | |
" \\text{各観測データの$d$番目の要素のベクトル}\n", | |
"\\\\\n", | |
" \\boldsymbol{Y}:= \\begin{pmatrix} \\boldsymbol{y}_1 & \\dots & \\boldsymbol{y}_N \\end{pmatrix}^{\\top} = \\begin{pmatrix} \\boldsymbol{y}^{(1)} & \\dots & \\boldsymbol{y}^{(D)} \\end{pmatrix} \\in\\mathbb{R}^{N\\times D} &\\quad\n", | |
" \\text{観測データによる行列}\n", | |
"\\\\\n", | |
" i=1\\dots N,\\; \\boldsymbol{x}_i\\in\\mathbb{R}^K &\\quad\n", | |
" \\text{$i$番目の観測データに対応する潜在変数ベクトル}\n", | |
"\\\\\n", | |
" \\boldsymbol{X} := \\begin{pmatrix} \\boldsymbol{x}_1 & \\dots & \\boldsymbol{x}_N \\end{pmatrix}^{\\top} &\\quad\n", | |
" \\text{潜在変数ベクトルによる行列}\n", | |
"\\\\\n", | |
" k(\\cdot,\\cdot): \\mathbb{R}^D\\times \\mathbb{R}^D \\to \\mathbb{R} &\\quad\n", | |
" \\text{カーネル関数}\n", | |
"\\\\\n", | |
" \\boldsymbol{K}_{\\boldsymbol{X}} := \\begin{pmatrix} k(\\boldsymbol{x}_l, \\boldsymbol{x}_m) \\end{pmatrix} &\\quad\n", | |
" \\text{カーネル法の意味でのグラム行列}\n", | |
"\\end{align}\n", | |
"$$\n", | |
"\n", | |
"また本資料では以下のカーネル関数を採用することとします。\n", | |
"$$\n", | |
"\\begin{align}\n", | |
" k(\\boldsymbol{x}_i, \\boldsymbol{x}_j) := \\tau^2 \\exp \\left\\{ -\\left( \\frac{\\left\\| \\boldsymbol{x}_i - \\boldsymbol{x}_j \\right\\|}{\\sigma} \\right)^2 \\right\\} + \\eta^2 \\delta_{i,j}\n", | |
"\\end{align}\n", | |
"$$\n", | |
"ここで$\\delta_{i,j}$はクロネッカーのデルタとします。" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"### 生成モデル\n", | |
"\n", | |
"本資料では計算過程の実装メモに注力するため、詳細は『ガウス過程と機械学習』を参照してもらうこととして割愛します。\n", | |
"\n", | |
"基本的なGPLVMでは、観測データにおける$d$番目の要素のベクトル$\\boldsymbol{y}^{(d)}$が、潜在変数による平均$0$のガウス過程から生じると仮定します。\n", | |
"『ガウス過程と機械学習』P.190, 式(7.2), (7.3)を再掲すると、\n", | |
"$$\n", | |
"d=1\\dots D,\\; \\boldsymbol{y}^{(d)} \\sim \\mathcal{N}(0, \\boldsymbol{K}_{\\boldsymbol{X}} + \\sigma^2 I).\n", | |
"$$\n", | |
"\n", | |
"また潜在変数$\\boldsymbol{x}_i, i=1\\dots N$の事前分布として、『ガウス過程と機械学習』では互いに独立して平均$0$のガウス分布に従うとしています。つまり、\n", | |
"$$\n", | |
"i=1\\dots N,\\; \\boldsymbol{x}_i \\sim \\mathcal{N}(0,I).\n", | |
"$$\n", | |
"\n", | |
"基本的なGPLVMはこのモデルのもとで、事後対数尤度$\\log p(\\boldsymbol{X}\\mid \\boldsymbol{Y})$を最大にするような$\\boldsymbol{X}$とカーネル法のハイパーパラメタを求めます。ガウシアンGPLVMとの違いは、変分近似によって$\\boldsymbol{X}$の事後分布を求める点だと思われます。こちらはまだ確認してないです。\n", | |
"\n", | |
"事後対数尤度は以下のように、\n", | |
"$$\n", | |
"\\begin{align}\n", | |
" &p(\\boldsymbol{X} \\mid \\boldsymbol{Y}) \\propto p(\\boldsymbol{Y} \\mid \\boldsymbol{X}) p(\\boldsymbol{X})\n", | |
",\\\\\n", | |
" &\\Rightarrow \n", | |
" \\log p(\\boldsymbol{X} \\mid \\boldsymbol{Y}) = \\log p(\\boldsymbol{Y} \\mid \\boldsymbol{X}) + \\log p(\\boldsymbol{X}) + C\n", | |
",\\quad\n", | |
" \\text{$C$は定数}\n", | |
",\n", | |
"\\end{align}\n", | |
"$$\n", | |
"であることから、第一、第二項に着目して最適化すれば良いことがわかります。" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"### 勾配の導出例\n", | |
"\n", | |
"自動微分を使えばわざわざ手計算せずとも勾配を導出できるのですが、ここではあえて勾配を導出します。カーネル関数の選択に依存する箇所はそのことを明記するようにします。" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"#### 潜在変数による事後対数尤度の微分\n", | |
"\n", | |
"$n$番目の潜在変数ベクトル$\\boldsymbol{x}_n = \\begin{pmatrix} x_{n1} & x_{n2} & \\dots & x_{nK} \\end{pmatrix}$の$j$番目の要素 $x_{nj}$による事後対数尤度の微分を導出します。\n", | |
"\n", | |
"$$\n", | |
"\\frac{\\partial}{\\partial x_{nj}} \\log p(\\boldsymbol{X} \\mid \\boldsymbol{Y}) = \\frac{\\partial}{\\partial x_{nj}} \\log p(\\boldsymbol{Y} \\mid \\boldsymbol{X}) + \\frac{\\partial}{\\partial x_{nj}} \\log p(\\boldsymbol{X})\n", | |
"$$\n", | |
"\n", | |
"カーネル関数を考慮する前段階の第一項は『ガウス過程と機械学習』P.197, 式(7.29)に記述されています。上記で採用するとしたカーネル関数を考慮すると、第一項は以下のように記述できます。\n", | |
"$$\n", | |
"\\begin{align}\n", | |
" &\\frac{\\partial}{\\partial x_{nj}} \\log p(\\boldsymbol{Y} \\mid \\boldsymbol{X}) = 4\\sum_{l=1}^{N} \\frac{x_{lj} - x_{nj}}{\\sigma^2} k(\\boldsymbol{x}_l, \\boldsymbol{x}_n) G_{l,n}\n", | |
",\\\\\n", | |
" &\\text{where} \\quad\n", | |
" G := \\frac{1}{2} \\left( \\boldsymbol{K}_{\\boldsymbol{X}}^{-1}\\boldsymbol{Y}\\boldsymbol{Y}^{\\top}\\boldsymbol{K}_{\\boldsymbol{X}}^{-1} -D\\boldsymbol{K}_{\\boldsymbol{X}}^{-1} \\right)\n", | |
".\n", | |
"\\end{align}\n", | |
"$$\n", | |
"\n", | |
"また第二項についても、$\\log p(\\boldsymbol{X}) = -\\frac{1}{2}\\sum_{i=1}^{N} \\boldsymbol{x}_{i}^{\\top} \\boldsymbol{x}_{i} - \\frac{1}{2}KN\\log 2\\pi$であるため、\n", | |
"$$\n", | |
"\\frac{\\partial}{\\partial x_{nj}}\\log p(\\boldsymbol{X}) = -x_{nj}\n", | |
"$$\n", | |
"となり、これら2つから$\\frac{\\partial}{\\partial x_{nj}} \\log p(\\boldsymbol{X} \\mid \\boldsymbol{Y})$が求まります。" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"#### ハイパーパラメタによる事後対数尤度の微分\n", | |
"\n", | |
"こちらも計算ミスに気をつけながら$\\log p(\\boldsymbol{X} \\mid \\boldsymbol{Y})$を微分するだけで導出できます。$\\log p(\\boldsymbol{X})$にはハイパーパラメタが含まれていないため、$\\log p(\\boldsymbol{Y} \\mid \\boldsymbol{X})$のみに着目できます。上記で採用したカーネル関数を考慮するとそれぞれ、\n", | |
"$$\n", | |
"\\begin{align}\n", | |
" &\\frac{\\partial}{\\partial \\tau} \\log p(\\boldsymbol{Y} \\mid \\boldsymbol{X}) = \\sum_{l=1}^{N}\\sum_{m=1}^{N} L_{lm} G_{lm}\n", | |
",\\\\\n", | |
" &\\frac{\\partial}{\\partial \\sigma} \\log p(\\boldsymbol{Y} \\mid \\boldsymbol{X}) = \\sum_{l=1}^{N}\\sum_{m=1}^{N} H_{lm} G_{lm}\n", | |
",\\\\\n", | |
" &\\frac{\\partial}{\\partial \\eta} \\log p(\\boldsymbol{Y} \\mid \\boldsymbol{X}) = 2\\eta \\sum_{l=1}^{N} G_{ll}\n", | |
",\\\\\n", | |
" &\\text{where} \\quad\n", | |
" L := \\begin{pmatrix} 2\\tau \\exp \\left[ -\\sigma^{-2} \\left( \\boldsymbol{x}_l - \\boldsymbol{x}_m \\right)^{\\top} \\left( \\boldsymbol{x}_l - \\boldsymbol{x}_m \\right) \\right] \\end{pmatrix}_{lm}\n", | |
"\\end{align}\n", | |
"$$\n", | |
"となります。これら勾配を使って、最急降下法等を適用して最適な$\\boldsymbol{X}, \\tau, \\sigma, \\eta$を得ます。" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"### 計算例\n", | |
"\n", | |
"『ガウス過程と機械学習』でも使われている\"送油データ\"に対してGPLVMを適用して、低次元潜在変数表現を獲得してみます。\n", | |
"その際、変数をどのような順で更新を繰り返すかで、同じ初期値でも結果に影響を与えるかに関心があったため、以下3通りの計算を行います。\n", | |
"1. 各潜在変数ベクトルごと($n=1\\dots N$)に、他変数を固定して逐次更新\n", | |
"2. 潜在変数ベクトルの各要素ごと($j=1\\dots L$)に、他変数を固定して逐次更新\n", | |
"3. すべての潜在変数の更新と、ハイパーパラメタの更新を反復\n", | |
"\n", | |
"**ここで重要な点は各潜在変数ベクトルの初期値の選び方です。** 私が実装した限りでは、初期値を乱数で与えると、意味のありそうな解に収束せず局所解にハマってしまう印象でした。したがって以下では、観測データに対して古典的なPCAを適用して得られる低次元表現を初期値とします。" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 3, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/plain": [ | |
"SCG (generic function with 1 method)" | |
] | |
}, | |
"execution_count": 3, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"# 実行の前準備\n", | |
"\n", | |
"using LinearAlgebra, LaTeXStrings, PGFPlotsX, Random, Distributions, ForwardDiff, DelimitedFiles\n", | |
"function SCG(init, f::Function, ∇f::Function; σ=1e-4, MaxLoop=50)\n", | |
" D = length(init)\n", | |
" xₖ = zeros(D)\n", | |
" xₖ .= init\n", | |
" λₖ = 1e-6\n", | |
" λ̄ₖ = 0.0\n", | |
" rₖ = -∇f(xₖ)\n", | |
" pₖ = rₖ\n", | |
" success = true\n", | |
"\n", | |
" for loop in 1:MaxLoop\n", | |
" if success\n", | |
" σₖ = σ/norm(pₖ)\n", | |
" sₖ = (∇f(xₖ+σₖ.*pₖ) - ∇f(xₖ)) / σₖ\n", | |
" δₖ = dot(pₖ, sₖ)\n", | |
" end\n", | |
"\n", | |
" δₖ = δₖ + (λₖ - λ̄ₖ)*norm(pₖ)^2\n", | |
" if δₖ <= 0.0\n", | |
" λ̄ₖ = 2*(λₖ - δₖ/norm(pₖ)^2)\n", | |
" δₖ = -δₖ + λₖ*norm(pₖ)^2\n", | |
" λₖ = λ̄ₖ\n", | |
" end\n", | |
"\n", | |
" μₖ = dot(pₖ, rₖ)\n", | |
" αₖ = μₖ/δₖ\n", | |
" Δₖ = 2*δₖ*( f(xₖ) - f(xₖ+αₖ.*pₖ) )/μₖ^2\n", | |
" if Δₖ >= 0.0\n", | |
" xₛ = xₖ+αₖ.*pₖ\n", | |
" rₛ = - ∇f(xₛ)\n", | |
" λ̄ₛ = 0.0\n", | |
" success = true\n", | |
" if loop % D == 0\n", | |
" pₛ = rₛ\n", | |
" else\n", | |
" βₖ = (norm(rₛ)^2 - dot(rₛ, rₖ)) / μₖ\n", | |
" pₛ = rₛ + βₖ.*pₖ\n", | |
" end\n", | |
"\n", | |
" if Δₖ >= 0.75\n", | |
" λₖ = λₖ/4.0\n", | |
" end\n", | |
" xₖ = xₛ\n", | |
" rₖ = rₛ\n", | |
" pₖ = pₛ\n", | |
" λ̄ₖ = λ̄ₛ\n", | |
" else\n", | |
" λ̄ₖ = λₖ\n", | |
" end\n", | |
"\n", | |
" if Δₖ < 0.25\n", | |
" λₖ = λₖ + δₖ*(1-Δₖ)/norm(pₖ)^2\n", | |
" end\n", | |
" end\n", | |
"\n", | |
" return(xₖ)\n", | |
"end" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 4, | |
"metadata": {}, | |
"outputs": [], | |
"source": [ | |
"## 送油データ R等のパッケージから各自利用していただければ幸いです。\n", | |
"originY = readdlm(\"oil.dat\")\n", | |
"Y = originY .- mean(originY, dims=1)\n", | |
"## 送油各データのラベル情報\n", | |
"labels = readdlm(\"oil.labels\") .|> Int |> vec\n", | |
"(N,D) = size(Y)\n", | |
"K = 2\n", | |
"\n", | |
"## 古典的なPCAの適用\n", | |
"eigret = eigen(Y'*Y)\n", | |
"ords = sortperm(eigret.values, rev=true)\n", | |
"vals = eigret.values[ords]\n", | |
"## V\\in\\mathbb{R}^{N\\times D} 主成分ベクトルの行列\n", | |
"V = eigret.vectors[:,ords];" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 5, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"image/png": "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", | |
"image/svg+xml": [ | |
"<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n", | |
"<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"216.778pt\" height=\"175.685pt\" viewBox=\"0 0 216.778 175.685\" version=\"1.2\">\n", | |
"<defs>\n", | |
"<g>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407019-0-0\">\n", | |
"<path style=\"stroke:none;\" d=\"\"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407019-0-1\">\n", | |
"<path style=\"stroke:none;\" d=\"M 6.546875 -2.28125 C 6.71875 -2.28125 6.890625 -2.28125 6.890625 -2.484375 C 6.890625 -2.6875 6.71875 -2.6875 6.546875 -2.6875 L 1.171875 -2.6875 C 1 -2.6875 0.828125 -2.6875 0.828125 -2.484375 C 0.828125 -2.28125 1 -2.28125 1.171875 -2.28125 Z M 6.546875 -2.28125 \"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407019-1-0\">\n", | |
"<path style=\"stroke:none;\" d=\"\"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407019-1-1\">\n", | |
"<path style=\"stroke:none;\" d=\"M 2.875 -3.5 C 3.703125 -3.765625 4.265625 -4.46875 4.265625 -5.25 C 4.265625 -6.0625 3.40625 -6.625 2.4375 -6.625 C 1.4375 -6.625 0.6875 -6.015625 0.6875 -5.265625 C 0.6875 -4.9375 0.90625 -4.75 1.1875 -4.75 C 1.5 -4.75 1.703125 -4.96875 1.703125 -5.25 C 1.703125 -5.75 1.234375 -5.75 1.078125 -5.75 C 1.390625 -6.234375 2.046875 -6.375 2.40625 -6.375 C 2.8125 -6.375 3.359375 -6.15625 3.359375 -5.25 C 3.359375 -5.140625 3.34375 -4.5625 3.078125 -4.125 C 2.78125 -3.640625 2.4375 -3.625 2.203125 -3.609375 C 2.109375 -3.59375 1.875 -3.578125 1.8125 -3.578125 C 1.734375 -3.5625 1.65625 -3.5625 1.65625 -3.453125 C 1.65625 -3.34375 1.734375 -3.34375 1.890625 -3.34375 L 2.328125 -3.34375 C 3.15625 -3.34375 3.515625 -2.671875 3.515625 -1.703125 C 3.515625 -0.34375 2.828125 -0.0625 2.390625 -0.0625 C 1.96875 -0.0625 1.21875 -0.234375 0.875 -0.8125 C 1.21875 -0.765625 1.53125 -0.984375 1.53125 -1.359375 C 1.53125 -1.71875 1.265625 -1.921875 0.96875 -1.921875 C 0.734375 -1.921875 0.421875 -1.78125 0.421875 -1.34375 C 0.421875 -0.4375 1.34375 0.21875 2.421875 0.21875 C 3.640625 0.21875 4.546875 -0.6875 4.546875 -1.703125 C 4.546875 -2.515625 3.921875 -3.296875 2.875 -3.5 Z M 2.875 -3.5 \"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407019-1-2\">\n", | |
"<path style=\"stroke:none;\" d=\"M 1.265625 -0.765625 L 2.3125 -1.78125 C 3.859375 -3.15625 4.46875 -3.703125 4.46875 -4.6875 C 4.46875 -5.828125 3.5625 -6.625 2.359375 -6.625 C 1.234375 -6.625 0.5 -5.703125 0.5 -4.8125 C 0.5 -4.265625 1 -4.265625 1.03125 -4.265625 C 1.1875 -4.265625 1.546875 -4.375 1.546875 -4.796875 C 1.546875 -5.046875 1.359375 -5.3125 1.015625 -5.3125 C 0.9375 -5.3125 0.921875 -5.3125 0.890625 -5.296875 C 1.109375 -5.9375 1.65625 -6.3125 2.21875 -6.3125 C 3.125 -6.3125 3.5625 -5.5 3.5625 -4.6875 C 3.5625 -3.890625 3.0625 -3.109375 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.1875 0 L 4.46875 -1.734375 L 4.21875 -1.734375 C 4.15625 -1.4375 4.09375 -1 4 -0.84375 C 3.921875 -0.765625 3.265625 -0.765625 3.046875 -0.765625 Z M 1.265625 -0.765625 \"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407019-1-3\">\n", | |
"<path style=\"stroke:none;\" d=\"M 2.921875 -6.359375 C 2.921875 -6.59375 2.921875 -6.625 2.6875 -6.625 C 2.078125 -5.984375 1.203125 -5.984375 0.890625 -5.984375 L 0.890625 -5.671875 C 1.078125 -5.671875 1.671875 -5.671875 2.1875 -5.9375 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.9375 -0.3125 L 0.9375 0 C 1.296875 -0.03125 2.15625 -0.03125 2.546875 -0.03125 C 2.953125 -0.03125 3.8125 -0.03125 4.15625 0 L 4.15625 -0.3125 L 3.84375 -0.3125 C 2.953125 -0.3125 2.921875 -0.421875 2.921875 -0.78125 Z M 2.921875 -6.359375 \"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407019-1-4\">\n", | |
"<path style=\"stroke:none;\" d=\"M 4.578125 -3.1875 C 4.578125 -3.96875 4.515625 -4.765625 4.171875 -5.5 C 3.71875 -6.453125 2.90625 -6.625 2.484375 -6.625 C 1.890625 -6.625 1.15625 -6.359375 0.75 -5.4375 C 0.4375 -4.75 0.390625 -3.96875 0.390625 -3.1875 C 0.390625 -2.4375 0.421875 -1.546875 0.828125 -0.78125 C 1.265625 0.015625 1.984375 0.21875 2.46875 0.21875 C 3.015625 0.21875 3.765625 0.015625 4.203125 -0.9375 C 4.515625 -1.625 4.578125 -2.390625 4.578125 -3.1875 Z M 2.46875 0 C 2.09375 0 1.5 -0.25 1.328125 -1.203125 C 1.21875 -1.796875 1.21875 -2.71875 1.21875 -3.296875 C 1.21875 -3.9375 1.21875 -4.59375 1.296875 -5.125 C 1.484375 -6.3125 2.21875 -6.40625 2.46875 -6.40625 C 2.796875 -6.40625 3.453125 -6.21875 3.640625 -5.234375 C 3.75 -4.6875 3.75 -3.921875 3.75 -3.296875 C 3.75 -2.546875 3.75 -1.875 3.640625 -1.25 C 3.484375 -0.296875 2.921875 0 2.46875 0 Z M 2.46875 0 \"/>\n", | |
"</symbol>\n", | |
"</g>\n", | |
"<clipPath id=\"clip-1592782364407019-1\">\n", | |
" <path d=\"M 0.0820312 0 L 216.472656 0 L 216.472656 175.371094 L 0.0820312 175.371094 Z M 0.0820312 0 \"/>\n", | |
"</clipPath>\n", | |
"</defs>\n", | |
"<g id=\"surface1\">\n", | |
"<g clip-path=\"url(#clip-1592782364407019-1)\" clip-rule=\"nonzero\">\n", | |
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;\" d=\"M 0.0820312 175.371094 L 217.285156 175.371094 L 217.285156 -0.65625 L 0.0820312 -0.65625 Z M 0.0820312 175.371094 \"/>\n", | |
"</g>\n", | |
"<path style=\"fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(50%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M -11.722043 -13.449904 L -11.722043 -9.20011 M 19.435284 -13.449904 L 19.435284 -9.20011 M 50.588698 -13.449904 L 50.588698 -9.20011 M 81.746025 -13.449904 L 81.746025 -9.20011 M 112.899439 -13.449904 L 112.899439 -9.20011 M 144.052853 -13.449904 L 144.052853 -9.20011 M 175.21018 -13.449904 L 175.21018 -9.20011 M -11.722043 147.944424 L -11.722043 143.69463 M 19.435284 147.944424 L 19.435284 143.69463 M 50.588698 147.944424 L 50.588698 143.69463 M 81.746025 147.944424 L 81.746025 143.69463 M 112.899439 147.944424 L 112.899439 143.69463 M 144.052853 147.944424 L 144.052853 143.69463 M 175.21018 147.944424 L 175.21018 143.69463 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(50%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M -16.190979 11.348386 L -11.937272 11.348386 M -16.190979 52.80931 L -11.937272 52.80931 M -16.190979 94.270234 L -11.937272 94.270234 M -16.190979 135.735072 L -11.937272 135.735072 M 178.082508 11.348386 L 173.828801 11.348386 M 178.082508 52.80931 L 173.828801 52.80931 M 178.082508 94.270234 L 173.828801 94.270234 M 178.082508 135.735072 L 173.828801 135.735072 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M -16.190979 -13.449904 L -16.190979 147.944424 L 178.082508 147.944424 L 178.082508 -13.449904 Z M -16.190979 -13.449904 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407019-0-1\" x=\"17.726556\" y=\"171.226993\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407019-1-1\" x=\"25.461687\" y=\"171.226993\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407019-0-1\" x=\"48.824798\" y=\"171.226993\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407019-1-2\" x=\"56.559929\" y=\"171.226993\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407019-0-1\" x=\"79.924037\" y=\"171.226993\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407019-1-3\" x=\"87.659168\" y=\"171.226993\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407019-1-4\" x=\"114.890343\" y=\"171.226993\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407019-1-3\" x=\"145.988585\" y=\"171.226993\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407019-1-2\" x=\"177.087824\" y=\"171.226993\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407019-1-1\" x=\"208.186066\" y=\"171.226993\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407019-0-1\" x=\"3.398247\" y=\"139.341164\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407019-1-3\" x=\"11.132379\" y=\"139.341164\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407019-1-4\" x=\"11.132379\" y=\"98.368627\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407019-1-3\" x=\"11.132379\" y=\"56.981833\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407019-1-2\" x=\"11.132379\" y=\"15.59404\"/>\n", | |
"</g>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.070156 34.671379 C 110.070156 35.774916 109.177934 36.667138 108.07831 36.667138 C 106.978686 36.667138 106.086464 35.774916 106.086464 34.671379 C 106.086464 33.571754 106.978686 32.679532 108.07831 32.679532 C 109.177934 32.679532 110.070156 33.571754 110.070156 34.671379 Z M 110.070156 34.671379 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.638403 38.181567 C 93.638403 39.281192 92.746182 40.173413 91.646557 40.173413 C 90.54302 40.173413 89.650798 39.281192 89.650798 38.181567 C 89.650798 37.081943 90.54302 36.189721 91.646557 36.189721 C 92.746182 36.189721 93.638403 37.081943 93.638403 38.181567 Z M 93.638403 38.181567 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.029586 41.969597 C 59.029586 43.073135 58.137365 43.965356 57.03774 43.965356 C 55.934203 43.965356 55.041981 43.073135 55.041981 41.969597 C 55.041981 40.869973 55.934203 39.977751 57.03774 39.977751 C 58.137365 39.977751 59.029586 40.869973 59.029586 41.969597 Z M 59.029586 41.969597 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 77.719287 46.321135 C 77.719287 47.42076 76.827065 48.312981 75.727441 48.312981 C 74.627816 48.312981 73.735594 47.42076 73.735594 46.321135 C 73.735594 45.221511 74.627816 44.329289 75.727441 44.329289 C 76.827065 44.329289 77.719287 45.221511 77.719287 46.321135 Z M 77.719287 46.321135 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 75.480906 31.556428 C 75.480906 32.659966 74.588684 33.552188 73.485146 33.552188 C 72.385522 33.552188 71.4933 32.659966 71.4933 31.556428 C 71.4933 30.456804 72.385522 29.564582 73.485146 29.564582 C 74.588684 29.564582 75.480906 30.456804 75.480906 31.556428 Z M 75.480906 31.556428 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.413071 28.926722 C 83.413071 30.026346 82.520849 30.918568 81.417312 30.918568 C 80.317687 30.918568 79.425465 30.026346 79.425465 28.926722 C 79.425465 27.827098 80.317687 26.934876 81.417312 26.934876 C 82.520849 26.934876 83.413071 27.827098 83.413071 28.926722 Z M 83.413071 28.926722 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.09005 42.81486 C 108.09005 43.914484 107.197828 44.806706 106.098204 44.806706 C 104.998579 44.806706 104.106357 43.914484 104.106357 42.81486 C 104.106357 41.715235 104.998579 40.823014 106.098204 40.823014 C 107.197828 40.823014 108.09005 41.715235 108.09005 42.81486 Z M 108.09005 42.81486 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.680297 44.935843 C 112.680297 46.035468 111.788075 46.92769 110.68845 46.92769 C 109.588826 46.92769 108.696604 46.035468 108.696604 44.935843 C 108.696604 43.832306 109.588826 42.940084 110.68845 42.940084 C 111.788075 42.940084 112.680297 43.832306 112.680297 44.935843 Z M 112.680297 44.935843 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 100.275282 35.113576 C 100.275282 36.213201 99.386973 37.105422 98.283436 37.105422 C 97.183811 37.105422 96.291589 36.213201 96.291589 35.113576 C 96.291589 34.010039 97.183811 33.117817 98.283436 33.117817 C 99.386973 33.117817 100.275282 34.010039 100.275282 35.113576 Z M 100.275282 35.113576 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 81.894729 39.609905 C 81.894729 40.709529 81.002507 41.601751 79.902882 41.601751 C 78.803258 41.601751 77.911036 40.709529 77.911036 39.609905 C 77.911036 38.506367 78.803258 37.614145 79.902882 37.614145 C 81.002507 37.614145 81.894729 38.506367 81.894729 39.609905 Z M 81.894729 39.609905 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.133423 32.839976 C 106.133423 33.9396 105.241201 34.831822 104.137663 34.831822 C 103.038039 34.831822 102.145817 33.9396 102.145817 32.839976 C 102.145817 31.736438 103.038039 30.844216 104.137663 30.844216 C 105.241201 30.844216 106.133423 31.736438 106.133423 32.839976 Z M 106.133423 32.839976 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.494453 35.958839 C 52.494453 37.058463 51.602231 37.950685 50.502606 37.950685 C 49.402982 37.950685 48.51076 37.058463 48.51076 35.958839 C 48.51076 34.855301 49.402982 33.96308 50.502606 33.96308 C 51.602231 33.96308 52.494453 34.855301 52.494453 35.958839 Z M 52.494453 35.958839 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 102.541056 48.148625 C 102.541056 49.252162 101.648834 50.144384 100.54921 50.144384 C 99.445672 50.144384 98.55345 49.252162 98.55345 48.148625 C 98.55345 47.049 99.445672 46.156779 100.54921 46.156779 C 101.648834 46.156779 102.541056 47.049 102.541056 48.148625 Z M 102.541056 48.148625 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 78.376713 33.513055 C 78.376713 34.616593 77.484492 35.508815 76.384867 35.508815 C 75.285243 35.508815 74.393021 34.616593 74.393021 33.513055 C 74.393021 32.413431 75.285243 31.521209 76.384867 31.521209 C 77.484492 31.521209 78.376713 32.413431 78.376713 33.513055 Z M 78.376713 33.513055 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.325172 38.357664 C 106.325172 39.457288 105.43295 40.34951 104.329413 40.34951 C 103.229789 40.34951 102.337567 39.457288 102.337567 38.357664 C 102.337567 37.258039 103.229789 36.365817 104.329413 36.365817 C 105.43295 36.365817 106.325172 37.258039 106.325172 38.357664 Z M 106.325172 38.357664 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 101.875803 38.733336 C 101.875803 39.83296 100.983581 40.725182 99.883957 40.725182 C 98.780419 40.725182 97.888197 39.83296 97.888197 38.733336 C 97.888197 37.633712 98.780419 36.74149 99.883957 36.74149 C 100.983581 36.74149 101.875803 37.633712 101.875803 38.733336 Z M 101.875803 38.733336 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 101.750579 45.679362 C 101.750579 46.778986 100.858357 47.671208 99.758732 47.671208 C 98.655195 47.671208 97.762973 46.778986 97.762973 45.679362 C 97.762973 44.579737 98.655195 43.687515 99.758732 43.687515 C 100.858357 43.687515 101.750579 44.579737 101.750579 45.679362 Z M 101.750579 45.679362 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 146.138617 41.934378 C 146.138617 43.034002 145.246395 43.926224 144.146771 43.926224 C 143.047146 43.926224 142.154924 43.034002 142.154924 41.934378 C 142.154924 40.83084 143.047146 39.938618 144.146771 39.938618 C 145.246395 39.938618 146.138617 40.83084 146.138617 41.934378 Z M 146.138617 41.934378 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.593081 36.545827 C 83.593081 37.645451 82.700859 38.537673 81.601235 38.537673 C 80.50161 38.537673 79.609388 37.645451 79.609388 36.545827 C 79.609388 35.446203 80.50161 34.553981 81.601235 34.553981 C 82.700859 34.553981 83.593081 35.446203 83.593081 36.545827 Z M 83.593081 36.545827 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.769818 47.424673 C 103.769818 48.524297 102.877596 49.416519 101.777971 49.416519 C 100.678347 49.416519 99.786125 48.524297 99.786125 47.424673 C 99.786125 46.321135 100.678347 45.428913 101.777971 45.428913 C 102.877596 45.428913 103.769818 46.321135 103.769818 47.424673 Z M 103.769818 47.424673 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.635799 49.287382 C 85.635799 50.387006 84.743577 51.279228 83.64004 51.279228 C 82.540416 51.279228 81.648194 50.387006 81.648194 49.287382 C 81.648194 48.183844 82.540416 47.291622 83.64004 47.291622 C 84.743577 47.291622 85.635799 48.183844 85.635799 49.287382 Z M 85.635799 49.287382 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.546933 50.457445 C 90.546933 51.560982 89.654711 52.453204 88.551173 52.453204 C 87.451549 52.453204 86.559327 51.560982 86.559327 50.457445 C 86.559327 49.35782 87.451549 48.465598 88.551173 48.465598 C 89.654711 48.465598 90.546933 49.35782 90.546933 50.457445 Z M 90.546933 50.457445 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 37.138845 37.8959 C 37.138845 38.995524 36.246623 39.887746 35.146998 39.887746 C 34.047374 39.887746 33.155152 38.995524 33.155152 37.8959 C 33.155152 36.792362 34.047374 35.90014 35.146998 35.90014 C 36.246623 35.90014 37.138845 36.792362 37.138845 37.8959 Z M 37.138845 37.8959 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.981631 47.628162 C 88.981631 48.727786 88.089409 49.620008 86.989785 49.620008 C 85.890161 49.620008 84.997939 48.727786 84.997939 47.628162 C 84.997939 46.528538 85.890161 45.636316 86.989785 45.636316 C 88.089409 45.636316 88.981631 46.528538 88.981631 47.628162 Z M 88.981631 47.628162 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 60.720112 38.075909 C 60.720112 39.175534 59.82789 40.067756 58.728266 40.067756 C 57.628642 40.067756 56.73642 39.175534 56.73642 38.075909 C 56.73642 36.976285 57.628642 36.084063 58.728266 36.084063 C 59.82789 36.084063 60.720112 36.976285 60.720112 38.075909 Z M 60.720112 38.075909 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 56.89295 41.31217 C 56.89295 42.411795 56.000728 43.304017 54.89719 43.304017 C 53.797566 43.304017 52.905344 42.411795 52.905344 41.31217 C 52.905344 40.208633 53.797566 39.316411 54.89719 39.316411 C 56.000728 39.316411 56.89295 40.208633 56.89295 41.31217 Z M 56.89295 41.31217 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.659265 44.951496 C 109.659265 46.051121 108.767043 46.943343 107.663505 46.943343 C 106.563881 46.943343 105.671659 46.051121 105.671659 44.951496 C 105.671659 43.851872 106.563881 42.95965 107.663505 42.95965 C 108.767043 42.95965 109.659265 43.851872 109.659265 44.951496 Z M 109.659265 44.951496 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 47.058943 41.370869 C 47.058943 42.470493 46.166721 43.362715 45.067097 43.362715 C 43.967472 43.362715 43.075251 42.470493 43.075251 41.370869 C 43.075251 40.271245 43.967472 39.379023 45.067097 39.379023 C 46.166721 39.379023 47.058943 40.271245 47.058943 41.370869 Z M 47.058943 41.370869 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.731183 44.95541 C 88.731183 46.055034 87.838961 46.947256 86.739337 46.947256 C 85.639713 46.947256 84.747491 46.055034 84.747491 44.95541 C 84.747491 43.855785 85.639713 42.963563 86.739337 42.963563 C 87.838961 42.963563 88.731183 43.855785 88.731183 44.95541 Z M 88.731183 44.95541 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.588513 37.164121 C 87.588513 38.267659 86.696291 39.159881 85.596667 39.159881 C 84.497042 39.159881 83.604821 38.267659 83.604821 37.164121 C 83.604821 36.064497 84.497042 35.172275 85.596667 35.172275 C 86.696291 35.172275 87.588513 36.064497 87.588513 37.164121 Z M 87.588513 37.164121 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.681108 35.504902 C 119.681108 36.604526 118.788886 37.496748 117.689261 37.496748 C 116.589637 37.496748 115.697415 36.604526 115.697415 35.504902 C 115.697415 34.401364 116.589637 33.509142 117.689261 33.509142 C 118.788886 33.509142 119.681108 34.401364 119.681108 35.504902 Z M 119.681108 35.504902 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 47.974644 39.958184 C 47.974644 41.057809 47.082423 41.950031 45.982798 41.950031 C 44.879261 41.950031 43.987039 41.057809 43.987039 39.958184 C 43.987039 38.85856 44.879261 37.966338 45.982798 37.966338 C 47.082423 37.966338 47.974644 38.85856 47.974644 39.958184 Z M 47.974644 39.958184 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.636938 40.33777 C 90.636938 41.437394 89.748629 42.329616 88.645091 42.329616 C 87.545467 42.329616 86.653245 41.437394 86.653245 40.33777 C 86.653245 39.234233 87.545467 38.342011 88.645091 38.342011 C 89.748629 38.342011 90.636938 39.234233 90.636938 40.33777 Z M 90.636938 40.33777 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.048342 38.709857 C 52.048342 39.809481 51.15612 40.701703 50.056495 40.701703 C 48.956871 40.701703 48.064649 39.809481 48.064649 38.709857 C 48.064649 37.610232 48.956871 36.71801 50.056495 36.71801 C 51.15612 36.71801 52.048342 37.610232 52.048342 38.709857 Z M 52.048342 38.709857 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 76.107026 38.729423 C 76.107026 39.83296 75.214804 40.725182 74.11518 40.725182 C 73.015556 40.725182 72.123334 39.83296 72.123334 38.729423 C 72.123334 37.629798 73.015556 36.737577 74.11518 36.737577 C 75.214804 36.737577 76.107026 37.629798 76.107026 38.729423 Z M 76.107026 38.729423 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 134.895839 40.016883 C 134.895839 41.116508 134.003617 42.008729 132.900079 42.008729 C 131.800455 42.008729 130.908233 41.116508 130.908233 40.016883 C 130.908233 38.917259 131.800455 38.025037 132.900079 38.025037 C 134.003617 38.025037 134.895839 38.917259 134.895839 40.016883 Z M 134.895839 40.016883 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 62.582821 36.800189 C 62.582821 37.903726 61.690599 38.795948 60.590975 38.795948 C 59.49135 38.795948 58.599129 37.903726 58.599129 36.800189 C 58.599129 35.700564 59.49135 34.808342 60.590975 34.808342 C 61.690599 34.808342 62.582821 35.700564 62.582821 36.800189 Z M 62.582821 36.800189 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 60.109645 40.509953 C 60.109645 41.613491 59.217423 42.505713 58.117798 42.505713 C 57.018174 42.505713 56.125952 41.613491 56.125952 40.509953 C 56.125952 39.410329 57.018174 38.518107 58.117798 38.518107 C 59.217423 38.518107 60.109645 39.410329 60.109645 40.509953 Z M 60.109645 40.509953 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.445658 30.18679 C 123.445658 31.286414 122.553436 32.178636 121.453812 32.178636 C 120.350274 32.178636 119.458052 31.286414 119.458052 30.18679 C 119.458052 29.087165 120.350274 28.194943 121.453812 28.194943 C 122.553436 28.194943 123.445658 29.087165 123.445658 30.18679 Z M 123.445658 30.18679 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.226359 50.402659 C 112.226359 51.502283 111.334137 52.394505 110.234513 52.394505 C 109.134889 52.394505 108.242667 51.502283 108.242667 50.402659 C 108.242667 49.299121 109.134889 48.410813 110.234513 48.410813 C 111.334137 48.410813 112.226359 49.299121 112.226359 50.402659 Z M 112.226359 50.402659 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 56.360747 36.42843 C 56.360747 37.528054 55.468525 38.420276 54.368901 38.420276 C 53.265364 38.420276 52.373142 37.528054 52.373142 36.42843 C 52.373142 35.328805 53.265364 34.436583 54.368901 34.436583 C 55.468525 34.436583 56.360747 35.328805 56.360747 36.42843 Z M 56.360747 36.42843 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.88131 42.877472 C 163.88131 43.977096 162.989088 44.869318 161.889464 44.869318 C 160.789839 44.869318 159.897617 43.977096 159.897617 42.877472 C 159.897617 41.777848 160.789839 40.885626 161.889464 40.885626 C 162.989088 40.885626 163.88131 41.777848 163.88131 42.877472 Z M 163.88131 42.877472 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 128.779423 34.064824 C 128.779423 35.168362 127.887201 36.060584 126.787577 36.060584 C 125.687952 36.060584 124.79573 35.168362 124.79573 34.064824 C 124.79573 32.9652 125.687952 32.072978 126.787577 32.072978 C 127.887201 32.072978 128.779423 32.9652 128.779423 34.064824 Z M 128.779423 34.064824 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 123.113031 35.152709 C 123.113031 36.252333 122.220809 37.144555 121.117272 37.144555 C 120.017647 37.144555 119.125426 36.252333 119.125426 35.152709 C 119.125426 34.049171 120.017647 33.156949 121.117272 33.156949 C 122.220809 33.156949 123.113031 34.049171 123.113031 35.152709 Z M 123.113031 35.152709 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.23891 35.387504 C 119.23891 36.487128 118.346688 37.37935 117.247064 37.37935 C 116.143526 37.37935 115.251304 36.487128 115.251304 35.387504 C 115.251304 34.28788 116.143526 33.395658 117.247064 33.395658 C 118.346688 33.395658 119.23891 34.28788 119.23891 35.387504 Z M 119.23891 35.387504 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 47.21156 39.253799 C 47.21156 40.353423 46.319338 41.245645 45.219714 41.245645 C 44.120089 41.245645 43.227867 40.353423 43.227867 39.253799 C 43.227867 38.154174 44.120089 37.261953 45.219714 37.261953 C 46.319338 37.261953 47.21156 38.154174 47.21156 39.253799 Z M 47.21156 39.253799 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 72.193772 35.661432 C 72.193772 36.761056 71.301551 37.653278 70.201926 37.653278 C 69.102302 37.653278 68.21008 36.761056 68.21008 35.661432 C 68.21008 34.557894 69.102302 33.665672 70.201926 33.665672 C 71.301551 33.665672 72.193772 34.557894 72.193772 35.661432 Z M 72.193772 35.661432 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.36385 42.184826 C 49.36385 43.28445 48.471628 44.176672 47.372003 44.176672 C 46.272379 44.176672 45.380157 43.28445 45.380157 42.184826 C 45.380157 41.085202 46.272379 40.19298 47.372003 40.19298 C 48.471628 40.19298 49.36385 41.085202 49.36385 42.184826 Z M 49.36385 42.184826 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 75.75092 31.411638 C 75.75092 32.515176 74.858698 33.407398 73.759074 33.407398 C 72.655536 33.407398 71.763314 32.515176 71.763314 31.411638 C 71.763314 30.312014 72.655536 29.419792 73.759074 29.419792 C 74.858698 29.419792 75.75092 30.312014 75.75092 31.411638 Z M 75.75092 31.411638 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 60.121384 43.304017 C 60.121384 44.403641 59.229162 45.295863 58.129538 45.295863 C 57.029914 45.295863 56.137692 44.403641 56.137692 43.304017 C 56.137692 42.200479 57.029914 41.308257 58.129538 41.308257 C 59.229162 41.308257 60.121384 42.200479 60.121384 43.304017 Z M 60.121384 43.304017 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.804212 43.77752 C 120.804212 44.877145 119.91199 45.769366 118.812365 45.769366 C 117.708828 45.769366 116.820519 44.877145 116.820519 43.77752 C 116.820519 42.677896 117.708828 41.785674 118.812365 41.785674 C 119.91199 41.785674 120.804212 42.677896 120.804212 43.77752 Z M 120.804212 43.77752 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.700517 43.726648 C 108.700517 44.826272 107.808296 45.718494 106.708671 45.718494 C 105.609047 45.718494 104.716825 44.826272 104.716825 43.726648 C 104.716825 42.627024 105.609047 41.734802 106.708671 41.734802 C 107.808296 41.734802 108.700517 42.627024 108.700517 43.726648 Z M 108.700517 43.726648 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.4605 39.335977 C 116.4605 40.439515 115.568278 41.327823 114.468654 41.327823 C 113.369029 41.327823 112.476807 40.439515 112.476807 39.335977 C 112.476807 38.236353 113.369029 37.344131 114.468654 37.344131 C 115.568278 37.344131 116.4605 38.236353 116.4605 39.335977 Z M 116.4605 39.335977 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.401146 36.526261 C 120.401146 37.625885 119.508924 38.518107 118.405387 38.518107 C 117.305763 38.518107 116.413541 37.625885 116.413541 36.526261 C 116.413541 35.426637 117.305763 34.534415 118.405387 34.534415 C 119.508924 34.534415 120.401146 35.426637 120.401146 36.526261 Z M 120.401146 36.526261 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.379147 40.302551 C 99.379147 41.402175 98.486925 42.294397 97.383387 42.294397 C 96.283763 42.294397 95.391541 41.402175 95.391541 40.302551 C 95.391541 39.202926 96.283763 38.310705 97.383387 38.310705 C 98.486925 38.310705 99.379147 39.202926 99.379147 40.302551 Z M 99.379147 40.302551 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.176156 43.816653 C 84.176156 44.916277 83.283934 45.808499 82.184309 45.808499 C 81.084685 45.808499 80.192463 44.916277 80.192463 43.816653 C 80.192463 42.717028 81.084685 41.824807 82.184309 41.824807 C 83.283934 41.824807 84.176156 42.717028 84.176156 43.816653 Z M 84.176156 43.816653 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.293354 45.061067 C 145.293354 46.160692 144.401132 47.052914 143.301508 47.052914 C 142.19797 47.052914 141.305748 46.160692 141.305748 45.061067 C 141.305748 43.961443 142.19797 43.069221 143.301508 43.069221 C 144.401132 43.069221 145.293354 43.961443 145.293354 45.061067 Z M 145.293354 45.061067 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 57.104266 34.585287 C 57.104266 35.684911 56.212044 36.577133 55.112419 36.577133 C 54.012795 36.577133 53.120573 35.684911 53.120573 34.585287 C 53.120573 33.485663 54.012795 32.593441 55.112419 32.593441 C 56.212044 32.593441 57.104266 33.485663 57.104266 34.585287 Z M 57.104266 34.585287 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.050433 47.080306 C 99.050433 48.179931 98.158212 49.072153 97.054674 49.072153 C 95.95505 49.072153 95.062828 48.179931 95.062828 47.080306 C 95.062828 45.980682 95.95505 45.08846 97.054674 45.08846 C 98.158212 45.08846 99.050433 45.980682 99.050433 47.080306 Z M 99.050433 47.080306 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 66.186928 41.953944 C 66.186928 43.057482 65.294706 43.949703 64.195082 43.949703 C 63.091544 43.949703 62.199322 43.057482 62.199322 41.953944 C 62.199322 40.85432 63.091544 39.962098 64.195082 39.962098 C 65.294706 39.962098 66.186928 40.85432 66.186928 41.953944 Z M 66.186928 41.953944 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 156.203506 48.669088 C 156.203506 49.772625 155.311284 50.664847 154.21166 50.664847 C 153.112035 50.664847 152.219813 49.772625 152.219813 48.669088 C 152.219813 47.569463 153.112035 46.677241 154.21166 46.677241 C 155.311284 46.677241 156.203506 47.569463 156.203506 48.669088 Z M 156.203506 48.669088 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 10.567851 43.597511 C 10.567851 44.697135 9.679542 45.589357 8.576005 45.589357 C 7.47638 45.589357 6.584159 44.697135 6.584159 43.597511 C 6.584159 42.493973 7.47638 41.601751 8.576005 41.601751 C 9.679542 41.601751 10.567851 42.493973 10.567851 43.597511 Z M 10.567851 43.597511 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.913498 32.342993 L 54.89719 32.342993 L 54.89719 36.330598 L 50.913498 36.330598 Z M 50.913498 32.342993 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 60.821857 26.782259 L 64.809462 26.782259 L 64.809462 30.765951 L 60.821857 30.765951 Z M 60.821857 26.782259 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.064464 23.072494 L 89.048157 23.072494 L 89.048157 27.0601 L 85.064464 27.0601 Z M 85.064464 23.072494 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.996616 26.477025 L 120.984221 26.477025 L 120.984221 30.460717 L 116.996616 30.460717 Z M 116.996616 26.477025 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 65.196875 22.563771 L 69.18448 22.563771 L 69.18448 26.551377 L 65.196875 26.551377 Z M 65.196875 22.563771 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.530782 29.940255 L 109.518387 29.940255 L 109.518387 33.923947 L 105.530782 33.923947 Z M 105.530782 29.940255 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 144.894202 63.965997 L 148.877895 63.965997 L 148.877895 67.949689 L 144.894202 67.949689 Z M 144.894202 63.965997 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.041952 27.451425 L 107.025645 27.451425 L 107.025645 31.435118 L 103.041952 31.435118 Z M 103.041952 27.451425 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.640068 27.944495 L 39.623761 27.944495 L 39.623761 31.932101 L 35.640068 31.932101 Z M 35.640068 27.944495 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.222944 29.372833 L 101.206636 29.372833 L 101.206636 33.356525 L 97.222944 33.356525 Z M 97.222944 29.372833 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 46.389777 31.49773 L 50.373469 31.49773 L 50.373469 35.485335 L 46.389777 35.485335 Z M 46.389777 31.49773 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.483666 41.108681 L 98.471272 41.108681 L 98.471272 45.096287 L 94.483666 45.096287 Z M 94.483666 41.108681 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.618183 38.490714 L 101.601875 38.490714 L 101.601875 42.47832 L 97.618183 42.47832 Z M 97.618183 38.490714 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 46.479781 29.709373 L 50.467387 29.709373 L 50.467387 33.693065 L 46.479781 33.693065 Z M 46.479781 29.709373 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.924726 22.63421 L 93.912331 22.63421 L 93.912331 26.617902 L 89.924726 26.617902 Z M 89.924726 22.63421 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 40.96992 28.464958 L 44.953612 28.464958 L 44.953612 32.44865 L 40.96992 32.44865 Z M 40.96992 28.464958 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 55.816805 26.864437 L 59.800497 26.864437 L 59.800497 30.84813 L 55.816805 30.84813 Z M 55.816805 26.864437 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 74.232578 20.270604 L 78.220183 20.270604 L 78.220183 24.25821 L 74.232578 24.25821 Z M 74.232578 20.270604 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.016353 28.871936 L 108.000045 28.871936 L 108.000045 32.855629 L 104.016353 32.855629 Z M 104.016353 28.871936 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 64.954253 30.934221 L 68.937945 30.934221 L 68.937945 34.921827 L 64.954253 34.921827 Z M 64.954253 30.934221 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 67.763969 25.811772 L 71.747661 25.811772 L 71.747661 29.799378 L 67.763969 29.799378 Z M 67.763969 25.811772 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.038196 28.543223 L 118.025801 28.543223 L 118.025801 32.526915 L 114.038196 32.526915 Z M 114.038196 28.543223 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 73.066428 26.684427 L 77.054034 26.684427 L 77.054034 30.672033 L 73.066428 30.672033 Z M 73.066428 26.684427 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 61.815823 26.970095 L 65.799516 26.970095 L 65.799516 30.953787 L 61.815823 30.953787 Z M 61.815823 26.970095 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 61.432324 24.989989 L 65.416017 24.989989 L 65.416017 28.973681 L 61.432324 28.973681 Z M 61.432324 24.989989 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 61.768864 25.721767 L 65.75647 25.721767 L 65.75647 29.709373 L 61.768864 29.709373 Z M 61.768864 25.721767 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.703121 33.094337 L 120.686814 33.094337 L 120.686814 37.081943 L 116.703121 37.081943 Z M 116.703121 33.094337 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 130.348638 38.162001 L 134.336243 38.162001 L 134.336243 42.145693 L 130.348638 42.145693 Z M 130.348638 38.162001 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 42.946113 29.110645 L 46.929806 29.110645 L 46.929806 33.094337 L 42.946113 33.094337 Z M 42.946113 29.110645 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 71.293724 22.481593 L 75.277416 22.481593 L 75.277416 26.465285 L 71.293724 26.465285 Z M 71.293724 22.481593 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 20.010532 42.263091 L 23.994225 42.263091 L 23.994225 46.246783 L 20.010532 46.246783 Z M 20.010532 42.263091 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 61.96844 17.488281 L 65.956046 17.488281 L 65.956046 21.471973 L 61.96844 21.471973 Z M 61.96844 17.488281 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 72.909898 28.3593 L 76.89359 28.3593 L 76.89359 32.346906 L 72.909898 32.346906 Z M 72.909898 28.3593 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.91818 33.430877 L 133.901872 33.430877 L 133.901872 37.418483 L 129.91818 37.418483 Z M 129.91818 33.430877 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.667731 58.483528 L 133.651424 58.483528 L 133.651424 62.467221 L 129.667731 62.467221 Z M 129.667731 58.483528 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 77.183171 33.106077 L 81.166863 33.106077 L 81.166863 37.089769 L 77.183171 37.089769 Z M 77.183171 33.106077 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 69.309704 17.464801 L 73.29731 17.464801 L 73.29731 21.448494 L 69.309704 21.448494 Z M 69.309704 17.464801 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.668386 31.861662 L 129.655992 31.861662 L 129.655992 35.849268 L 125.668386 35.849268 Z M 125.668386 31.861662 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 61.894088 26.136572 L 65.877781 26.136572 L 65.877781 30.120264 L 61.894088 30.120264 Z M 61.894088 26.136572 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.09153 29.478491 L 91.079135 29.478491 L 91.079135 33.466096 L 87.09153 33.466096 Z M 87.09153 29.478491 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.368218 28.163637 L 110.351911 28.163637 L 110.351911 32.14733 L 106.368218 32.14733 Z M 106.368218 28.163637 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 58.129538 30.762038 L 62.11323 30.762038 L 62.11323 34.749644 L 58.129538 34.749644 Z M 58.129538 30.762038 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 74.342149 23.733834 L 78.329754 23.733834 L 78.329754 27.72144 L 74.342149 27.72144 Z M 74.342149 23.733834 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 62.516296 31.153363 L 66.503901 31.153363 L 66.503901 35.140969 L 62.516296 35.140969 Z M 62.516296 31.153363 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 65.509935 19.718836 L 69.49754 19.718836 L 69.49754 23.702528 L 65.509935 23.702528 Z M 65.509935 19.718836 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.643156 26.160051 L 56.626849 26.160051 L 56.626849 30.143744 L 52.643156 30.143744 Z M 52.643156 26.160051 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 53.476679 27.220543 L 57.460372 27.220543 L 57.460372 31.204236 L 53.476679 31.204236 Z M 53.476679 27.220543 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 60.426618 32.049498 L 64.414224 32.049498 L 64.414224 36.037104 L 60.426618 36.037104 Z M 60.426618 32.049498 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.418607 30.104611 L 101.402299 30.104611 L 101.402299 34.088304 L 97.418607 34.088304 Z M 97.418607 30.104611 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.619976 34.100043 L 102.603668 34.100043 L 102.603668 38.083736 L 98.619976 38.083736 Z M 98.619976 34.100043 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.251831 32.609094 L 56.239436 32.609094 L 56.239436 36.592786 L 52.251831 36.592786 Z M 52.251831 32.609094 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.628784 26.4105 L 96.61639 26.4105 L 96.61639 30.394192 L 92.628784 30.394192 Z M 92.628784 26.4105 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.634163 28.668447 L 99.617855 28.668447 L 99.617855 32.656053 L 95.634163 32.656053 Z M 95.634163 28.668447 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 53.163619 32.644313 L 57.151225 32.644313 L 57.151225 36.631919 L 53.163619 36.631919 Z M 53.163619 32.644313 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 60.203563 32.241248 L 64.187255 32.241248 L 64.187255 36.228854 L 60.203563 36.228854 Z M 60.203563 32.241248 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.778455 27.580563 L 114.766061 27.580563 L 114.766061 31.568168 L 110.778455 31.568168 Z M 110.778455 27.580563 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.703306 27.635348 L 83.686999 27.635348 L 83.686999 31.622954 L 79.703306 31.622954 Z M 79.703306 27.635348 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 102.384526 23.193805 L 106.368218 23.193805 L 106.368218 27.181411 L 102.384526 27.181411 Z M 102.384526 23.193805 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 75.880057 45.937636 L 79.867663 45.937636 L 79.867663 49.921329 L 75.880057 49.921329 Z M 75.880057 45.937636 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 66.860007 31.125971 L 70.847613 31.125971 L 70.847613 35.109663 L 66.860007 35.109663 Z M 66.860007 31.125971 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.012126 25.612196 L 85.995819 25.612196 L 85.995819 29.595888 L 82.012126 29.595888 Z M 82.012126 25.612196 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.023852 29.278915 L 110.011457 29.278915 L 110.011457 33.26652 L 106.023852 33.26652 Z M 106.023852 29.278915 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.572533 24.75128 L 93.556225 24.75128 L 93.556225 28.734972 L 89.572533 28.734972 Z M 89.572533 24.75128 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.705099 25.083907 L 84.688792 25.083907 L 84.688792 29.067599 L 80.705099 29.067599 Z M 80.705099 25.083907 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.274798 24.872591 L 95.25849 24.872591 L 95.25849 28.860197 L 91.274798 28.860197 Z M 91.274798 24.872591 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 69.35275 28.641054 L 73.336442 28.641054 L 73.336442 32.624747 L 69.35275 32.624747 Z M 69.35275 28.641054 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 51.919204 22.853352 L 55.902897 22.853352 L 55.902897 26.837044 L 51.919204 26.837044 Z M 51.919204 22.853352 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 100.686174 22.939444 L 104.669866 22.939444 L 104.669866 26.923136 L 100.686174 26.923136 Z M 100.686174 22.939444 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 62.504556 31.63078 L 66.492162 31.63078 L 66.492162 35.614473 L 62.504556 35.614473 Z M 62.504556 31.63078 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 51.883985 29.20065 L 55.867677 29.20065 L 55.867677 33.188255 L 51.883985 33.188255 Z M 51.883985 29.20065 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.970546 30.351146 L 88.954239 30.351146 L 88.954239 34.334839 L 84.970546 34.334839 Z M 84.970546 30.351146 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.064792 123.623551 C 83.064792 124.723176 82.17257 125.615398 81.072945 125.615398 C 79.973321 125.615398 79.081099 124.723176 79.081099 123.623551 C 79.081099 122.523927 79.973321 121.631705 81.072945 121.631705 C 82.17257 121.631705 83.064792 122.523927 83.064792 123.623551 Z M 79.664174 122.21478 L 82.481717 125.032323 M 79.664174 125.032323 L 82.481717 122.21478 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.624401 3.228384 C 59.624401 4.331922 58.732179 5.224143 57.632555 5.224143 C 56.532931 5.224143 55.640709 4.331922 55.640709 3.228384 C 55.640709 2.12876 56.532931 1.236538 57.632555 1.236538 C 58.732179 1.236538 59.624401 2.12876 59.624401 3.228384 Z M 56.223783 1.819613 L 59.041326 4.637155 M 56.223783 4.637155 L 59.041326 1.819613 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 57.691254 -0.0000504312 C 57.691254 1.099574 56.799032 1.991796 55.699407 1.991796 C 54.599783 1.991796 53.707561 1.099574 53.707561 -0.0000504312 C 53.707561 -1.099675 54.599783 -1.991897 55.699407 -1.991897 C 56.799032 -1.991897 57.691254 -1.099675 57.691254 -0.0000504312 Z M 54.290636 -1.408822 L 57.108179 1.408721 M 54.290636 1.408721 L 57.108179 -1.408822 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.362483 55.098564 C 153.362483 56.198188 152.470262 57.09041 151.366724 57.09041 C 150.2671 57.09041 149.374878 56.198188 149.374878 55.098564 C 149.374878 53.998939 150.2671 53.106717 151.366724 53.106717 C 152.470262 53.106717 153.362483 53.998939 153.362483 55.098564 Z M 149.957953 53.689792 L 152.779409 56.507335 M 149.957953 56.507335 L 152.779409 53.689792 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.792956 42.415708 C 129.792956 43.515332 128.900734 44.407554 127.801109 44.407554 C 126.701485 44.407554 125.809263 43.515332 125.809263 42.415708 C 125.809263 41.31217 126.701485 40.419948 127.801109 40.419948 C 128.900734 40.419948 129.792956 41.31217 129.792956 42.415708 Z M 126.392338 41.006937 L 129.209881 43.824479 M 126.392338 43.824479 L 129.209881 41.006937 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.624543 125.861933 C 94.624543 126.96547 93.732321 127.857692 92.628784 127.857692 C 91.52916 127.857692 90.636938 126.96547 90.636938 125.861933 C 90.636938 124.762308 91.52916 123.870086 92.628784 123.870086 C 93.732321 123.870086 94.624543 124.762308 94.624543 125.861933 Z M 91.220013 124.453161 L 94.037555 127.270704 M 91.220013 127.270704 L 94.037555 124.453161 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 76.153985 126.33935 C 76.153985 127.438974 75.261763 128.331196 74.162139 128.331196 C 73.062515 128.331196 72.170293 127.438974 72.170293 126.33935 C 72.170293 125.235812 73.062515 124.347503 74.162139 124.347503 C 75.261763 124.347503 76.153985 125.235812 76.153985 126.33935 Z M 72.753368 124.930578 L 75.57091 127.748121 M 72.753368 127.748121 L 75.57091 124.930578 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.113857 70.39156 C 106.113857 71.491184 105.221635 72.383406 104.12201 72.383406 C 103.022386 72.383406 102.130164 71.491184 102.130164 70.39156 C 102.130164 69.288022 103.022386 68.3958 104.12201 68.3958 C 105.221635 68.3958 106.113857 69.288022 106.113857 70.39156 Z M 102.713239 68.982788 L 105.530782 71.800331 M 102.713239 71.800331 L 105.530782 68.982788 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 51.383088 6.828578 C 51.383088 7.932115 50.490867 8.824337 49.387329 8.824337 C 48.287705 8.824337 47.395483 7.932115 47.395483 6.828578 C 47.395483 5.728953 48.287705 4.836731 49.387329 4.836731 C 50.490867 4.836731 51.383088 5.728953 51.383088 6.828578 Z M 47.978558 5.419806 L 50.7961 8.237349 M 47.978558 8.237349 L 50.7961 5.419806 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 68.88316 121.686491 C 68.88316 122.786115 67.990938 123.678337 66.891313 123.678337 C 65.791689 123.678337 64.899467 122.786115 64.899467 121.686491 C 64.899467 120.586866 65.791689 119.694645 66.891313 119.694645 C 67.990938 119.694645 68.88316 120.586866 68.88316 121.686491 Z M 65.482542 120.277719 L 68.300085 123.095262 M 65.482542 123.095262 L 68.300085 120.277719 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.297466 128.323369 C 84.297466 129.422994 83.405245 130.315216 82.30562 130.315216 C 81.205996 130.315216 80.313774 129.422994 80.313774 128.323369 C 80.313774 127.223745 81.205996 126.331523 82.30562 126.331523 C 83.405245 126.331523 84.297466 127.223745 84.297466 128.323369 Z M 80.896849 126.914598 L 83.714392 129.732141 M 80.896849 129.732141 L 83.714392 126.914598 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 137.376842 49.780452 C 137.376842 50.880076 136.48462 51.772298 135.384995 51.772298 C 134.285371 51.772298 133.393149 50.880076 133.393149 49.780452 C 133.393149 48.680827 134.285371 47.788605 135.384995 47.788605 C 136.48462 47.788605 137.376842 48.680827 137.376842 49.780452 Z M 133.976224 48.37168 L 136.793767 51.189223 M 133.976224 51.189223 L 136.793767 48.37168 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 78.724993 123.83878 C 78.724993 124.938405 77.836684 125.830627 76.733147 125.830627 C 75.633522 125.830627 74.741301 124.938405 74.741301 123.83878 C 74.741301 122.739156 75.633522 121.846934 76.733147 121.846934 C 77.836684 121.846934 78.724993 122.739156 78.724993 123.83878 Z M 75.324375 122.430009 L 78.141918 125.247552 M 75.324375 125.247552 L 78.141918 122.430009 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 150.454936 50.629628 C 150.454936 51.729252 149.562714 52.621474 148.46309 52.621474 C 147.363465 52.621474 146.471243 51.729252 146.471243 50.629628 C 146.471243 49.52609 147.363465 48.633868 148.46309 48.633868 C 149.562714 48.633868 150.454936 49.52609 150.454936 50.629628 Z M 147.054318 49.216943 L 149.871861 52.038399 M 147.054318 52.038399 L 149.871861 49.216943 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 66.539121 131.622242 C 66.539121 132.721867 65.646899 133.614089 64.547274 133.614089 C 63.44765 133.614089 62.555428 132.721867 62.555428 131.622242 C 62.555428 130.522618 63.44765 129.630396 64.547274 129.630396 C 65.646899 129.630396 66.539121 130.522618 66.539121 131.622242 Z M 63.138503 130.213471 L 65.956046 133.031014 M 63.138503 133.031014 L 65.956046 130.213471 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.229177 65.241718 C 35.229177 66.341342 34.336955 67.233564 33.23733 67.233564 C 32.137706 67.233564 31.245484 66.341342 31.245484 65.241718 C 31.245484 64.142093 32.137706 63.249871 33.23733 63.249871 C 34.336955 63.249871 35.229177 64.142093 35.229177 65.241718 Z M 31.828559 63.832946 L 34.646102 66.650489 M 31.828559 66.650489 L 34.646102 63.832946 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 81.252955 122.610019 C 81.252955 123.709643 80.360733 124.601865 79.261109 124.601865 C 78.161484 124.601865 77.269263 123.709643 77.269263 122.610019 C 77.269263 121.510394 78.161484 120.618173 79.261109 120.618173 C 80.360733 120.618173 81.252955 121.510394 81.252955 122.610019 Z M 77.852337 121.201247 L 80.66988 124.01879 M 77.852337 124.01879 L 80.66988 121.201247 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 55.085027 0.727815 C 55.085027 1.827439 54.192805 2.719661 53.09318 2.719661 C 51.993556 2.719661 51.101334 1.827439 51.101334 0.727815 C 51.101334 -0.375723 51.993556 -1.267945 53.09318 -1.267945 C 54.192805 -1.267945 55.085027 -0.375723 55.085027 0.727815 Z M 51.684409 -0.680957 L 54.501952 2.136586 M 51.684409 2.136586 L 54.501952 -0.680957 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 18.464797 53.936327 C 18.464797 55.035952 17.572575 55.928173 16.472951 55.928173 C 15.369413 55.928173 14.477192 55.035952 14.477192 53.936327 C 14.477192 52.83279 15.369413 51.940568 16.472951 51.940568 C 17.572575 51.940568 18.464797 52.83279 18.464797 53.936327 Z M 15.06418 52.523643 L 17.881722 55.345099 M 15.06418 55.345099 L 17.881722 52.523643 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 145.215089 47.362061 C 145.215089 48.461685 144.322867 49.353907 143.223243 49.353907 C 142.123618 49.353907 141.231397 48.461685 141.231397 47.362061 C 141.231397 46.258523 142.123618 45.366301 143.223243 45.366301 C 144.322867 45.366301 145.215089 46.258523 145.215089 47.362061 Z M 141.814471 45.949376 L 144.632014 48.770832 M 141.814471 48.770832 L 144.632014 45.949376 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 24.432509 64.036435 C 24.432509 65.13606 23.540287 66.028282 22.440663 66.028282 C 21.341039 66.028282 20.448817 65.13606 20.448817 64.036435 C 20.448817 62.936811 21.341039 62.044589 22.440663 62.044589 C 23.540287 62.044589 24.432509 62.936811 24.432509 64.036435 Z M 21.031892 62.627664 L 23.849434 65.445207 M 21.031892 65.445207 L 23.849434 62.627664 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 63.467216 3.463179 C 63.467216 4.566717 62.574994 5.455025 61.47537 5.455025 C 60.375746 5.455025 59.483524 4.566717 59.483524 3.463179 C 59.483524 2.363555 60.375746 1.471333 61.47537 1.471333 C 62.574994 1.471333 63.467216 2.363555 63.467216 3.463179 Z M 60.066599 2.054408 L 62.884142 4.871951 M 60.066599 4.871951 L 62.884142 2.054408 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 121.676867 68.223617 C 121.676867 69.323241 120.784645 70.215463 119.685021 70.215463 C 118.585397 70.215463 117.693175 69.323241 117.693175 68.223617 C 117.693175 67.123993 118.585397 66.231771 119.685021 66.231771 C 120.784645 66.231771 121.676867 67.123993 121.676867 68.223617 Z M 118.27625 66.814846 L 121.093792 69.632388 M 118.27625 69.632388 L 121.093792 66.814846 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.836357 127.200265 C 79.836357 128.29989 78.944135 129.192112 77.844511 129.192112 C 76.740973 129.192112 75.852665 128.29989 75.852665 127.200265 C 75.852665 126.096728 76.740973 125.204506 77.844511 125.204506 C 78.944135 125.204506 79.836357 126.096728 79.836357 127.200265 Z M 76.43574 125.787581 L 79.253282 128.609037 M 76.43574 128.609037 L 79.253282 125.787581 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.345564 123.846607 C 89.345564 124.946231 88.453342 125.838453 87.353718 125.838453 C 86.254093 125.838453 85.361872 124.946231 85.361872 123.846607 C 85.361872 122.746983 86.254093 121.854761 87.353718 121.854761 C 88.453342 121.854761 89.345564 122.746983 89.345564 123.846607 Z M 85.944946 122.437836 L 88.762489 125.255378 M 85.944946 125.255378 L 88.762489 122.437836 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 62.602387 116.196196 C 62.602387 117.299733 61.710165 118.191955 60.610541 118.191955 C 59.510917 118.191955 58.618695 117.299733 58.618695 116.196196 C 58.618695 115.096571 59.510917 114.204349 60.610541 114.204349 C 61.710165 114.204349 62.602387 115.096571 62.602387 116.196196 Z M 59.20177 114.787424 L 62.019312 117.604967 M 59.20177 117.604967 L 62.019312 114.787424 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.657685 64.502113 C 23.657685 65.601737 22.765463 66.493959 21.661926 66.493959 C 20.562301 66.493959 19.670079 65.601737 19.670079 64.502113 C 19.670079 63.402488 20.562301 62.510266 21.661926 62.510266 C 22.765463 62.510266 23.657685 63.402488 23.657685 64.502113 Z M 20.253154 63.093341 L 23.07461 65.910884 M 20.253154 65.910884 L 23.07461 63.093341 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 23.011998 61.598478 C 23.011998 62.698103 22.119776 63.590324 21.016239 63.590324 C 19.916614 63.590324 19.024393 62.698103 19.024393 61.598478 C 19.024393 60.494941 19.916614 59.602719 21.016239 59.602719 C 22.119776 59.602719 23.011998 60.494941 23.011998 61.598478 Z M 19.607467 60.189707 L 22.42501 63.00725 M 19.607467 63.00725 L 22.42501 60.189707 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 81.769505 124.414029 C 81.769505 125.513653 80.877283 126.405875 79.777658 126.405875 C 78.674121 126.405875 77.781899 125.513653 77.781899 124.414029 C 77.781899 123.314404 78.674121 122.422183 79.777658 122.422183 C 80.877283 122.422183 81.769505 123.314404 81.769505 124.414029 Z M 78.364974 123.005257 L 81.18643 125.8228 M 78.364974 125.8228 L 81.18643 123.005257 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 76.838805 127.575938 C 76.838805 128.675562 75.946583 129.567784 74.846958 129.567784 C 73.747334 129.567784 72.855112 128.675562 72.855112 127.575938 C 72.855112 126.476314 73.747334 125.584092 74.846958 125.584092 C 75.946583 125.584092 76.838805 126.476314 76.838805 127.575938 Z M 73.438187 126.167166 L 76.25573 128.984709 M 73.438187 128.984709 L 76.25573 126.167166 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.253282 117.28408 C 79.253282 118.383705 78.36106 119.275926 77.261436 119.275926 C 76.161812 119.275926 75.26959 118.383705 75.26959 117.28408 C 75.26959 116.184456 76.161812 115.292234 77.261436 115.292234 C 78.36106 115.292234 79.253282 116.184456 79.253282 117.28408 Z M 75.852665 115.875309 L 78.670207 118.692852 M 75.852665 118.692852 L 78.670207 115.875309 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.00087 128.045528 C 91.00087 129.145153 90.108648 130.037375 89.009024 130.037375 C 87.905487 130.037375 87.013265 129.145153 87.013265 128.045528 C 87.013265 126.945904 87.905487 126.053682 89.009024 126.053682 C 90.108648 126.053682 91.00087 126.945904 91.00087 128.045528 Z M 87.596339 126.636757 L 90.417795 129.4543 M 87.596339 129.4543 L 90.417795 126.636757 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.895056 129.505172 C 79.895056 130.604796 79.002834 131.497018 77.90321 131.497018 C 76.803585 131.497018 75.911364 130.604796 75.911364 129.505172 C 75.911364 128.401634 76.803585 127.509413 77.90321 127.509413 C 79.002834 127.509413 79.895056 128.401634 79.895056 129.505172 Z M 76.494438 128.096401 L 79.311981 130.913943 M 76.494438 130.913943 L 79.311981 128.096401 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 148.924854 55.399884 C 148.924854 56.503422 148.032632 57.395644 146.933007 57.395644 C 145.833383 57.395644 144.941161 56.503422 144.941161 55.399884 C 144.941161 54.30026 145.833383 53.408038 146.933007 53.408038 C 148.032632 53.408038 148.924854 54.30026 148.924854 55.399884 Z M 145.524236 53.991113 L 148.341779 56.808655 M 145.524236 56.808655 L 148.341779 53.991113 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.910069 4.484538 C 59.910069 5.584163 59.017847 6.476385 57.914309 6.476385 C 56.814685 6.476385 55.922463 5.584163 55.922463 4.484538 C 55.922463 3.384914 56.814685 2.492692 57.914309 2.492692 C 59.017847 2.492692 59.910069 3.384914 59.910069 4.484538 Z M 56.505538 3.075767 L 59.323081 5.89331 M 56.505538 5.89331 L 59.323081 3.075767 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 149.053991 52.871922 C 149.053991 53.971546 148.161769 54.863768 147.062145 54.863768 C 145.96252 54.863768 145.070299 53.971546 145.070299 52.871922 C 145.070299 51.772298 145.96252 50.880076 147.062145 50.880076 C 148.161769 50.880076 149.053991 51.772298 149.053991 52.871922 Z M 145.653373 51.463151 L 148.470916 54.280694 M 145.653373 54.280694 L 148.470916 51.463151 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.52186 64.60777 C 28.52186 65.707395 27.629638 66.599617 26.530013 66.599617 C 25.430389 66.599617 24.538167 65.707395 24.538167 64.60777 C 24.538167 63.508146 25.430389 62.615924 26.530013 62.615924 C 27.629638 62.615924 28.52186 63.508146 28.52186 64.60777 Z M 25.121242 63.198999 L 27.938785 66.016542 M 25.121242 66.016542 L 27.938785 63.198999 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.063482 125.897152 C 91.063482 126.996776 90.17126 127.888998 89.071636 127.888998 C 87.968099 127.888998 87.075877 126.996776 87.075877 125.897152 C 87.075877 124.797528 87.968099 123.905306 89.071636 123.905306 C 90.17126 123.905306 91.063482 124.797528 91.063482 125.897152 Z M 87.662865 124.488381 L 90.480408 127.305923 M 87.662865 127.305923 L 90.480408 124.488381 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.451421 58.753543 C 28.451421 59.85708 27.559199 60.749302 26.459575 60.749302 C 25.35995 60.749302 24.467729 59.85708 24.467729 58.753543 C 24.467729 57.653918 25.35995 56.761696 26.459575 56.761696 C 27.559199 56.761696 28.451421 57.653918 28.451421 58.753543 Z M 25.050803 57.344771 L 27.868346 60.162314 M 25.050803 60.162314 L 27.868346 57.344771 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 62.238455 118.360225 C 62.238455 119.463763 61.346233 120.355985 60.242695 120.355985 C 59.143071 120.355985 58.250849 119.463763 58.250849 118.360225 C 58.250849 117.260601 59.143071 116.368379 60.242695 116.368379 C 61.346233 116.368379 62.238455 117.260601 62.238455 118.360225 Z M 58.833924 116.951454 L 61.651467 119.768996 M 58.833924 119.768996 L 61.651467 116.951454 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.303984 124.054009 C 92.303984 125.153634 91.411762 126.045856 90.312138 126.045856 C 89.2086 126.045856 88.316378 125.153634 88.316378 124.054009 C 88.316378 122.950472 89.2086 122.062163 90.312138 122.062163 C 91.411762 122.062163 92.303984 122.950472 92.303984 124.054009 Z M 88.899453 122.645238 L 91.720909 125.462781 M 88.899453 125.462781 L 91.720909 122.645238 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.529487 127.622897 C 89.529487 128.722521 88.637265 129.614743 87.537641 129.614743 C 86.438016 129.614743 85.545794 128.722521 85.545794 127.622897 C 85.545794 126.519359 86.438016 125.627137 87.537641 125.627137 C 88.637265 125.627137 89.529487 126.519359 89.529487 127.622897 Z M 86.128869 126.214126 L 88.946412 129.031668 M 86.128869 129.031668 L 88.946412 126.214126 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.553294 125.431475 C 87.553294 126.531099 86.661072 127.423321 85.561447 127.423321 C 84.461823 127.423321 83.569601 126.531099 83.569601 125.431475 C 83.569601 124.33185 84.461823 123.439629 85.561447 123.439629 C 86.661072 123.439629 87.553294 124.33185 87.553294 125.431475 Z M 84.152676 124.022703 L 86.970219 126.840246 M 84.152676 126.840246 L 86.970219 124.022703 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.467487 48.4069 C 157.467487 49.506524 156.579178 50.398746 155.47564 50.398746 C 154.376016 50.398746 153.483794 49.506524 153.483794 48.4069 C 153.483794 47.307275 154.376016 46.415053 155.47564 46.415053 C 156.579178 46.415053 157.467487 47.307275 157.467487 48.4069 Z M 154.066869 46.998128 L 156.884412 49.815671 M 154.066869 49.815671 L 156.884412 46.998128 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 100.435725 124.821007 C 100.435725 125.920631 99.543503 126.812853 98.439966 126.812853 C 97.340342 126.812853 96.44812 125.920631 96.44812 124.821007 C 96.44812 123.71747 97.340342 122.825248 98.439966 122.825248 C 99.543503 122.825248 100.435725 123.71747 100.435725 124.821007 Z M 97.031194 123.408323 L 99.848737 126.229779 M 97.031194 126.229779 L 99.848737 123.408323 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 142.87105 41.507833 C 142.87105 42.607457 141.978828 43.499679 140.879204 43.499679 C 139.779579 43.499679 138.887357 42.607457 138.887357 41.507833 C 138.887357 40.408209 139.779579 39.515987 140.879204 39.515987 C 141.978828 39.515987 142.87105 40.408209 142.87105 41.507833 Z M 139.470432 40.099062 L 142.287975 42.916604 M 139.470432 42.916604 L 142.287975 40.099062 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.876628 115.691386 C 84.876628 116.79101 83.984406 117.683232 82.884782 117.683232 C 81.785158 117.683232 80.892936 116.79101 80.892936 115.691386 C 80.892936 114.591762 81.785158 113.69954 82.884782 113.69954 C 83.984406 113.69954 84.876628 114.591762 84.876628 115.691386 Z M 81.47601 114.282615 L 84.293553 117.100157 M 81.47601 117.100157 L 84.293553 114.282615 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.87418 122.473055 C 87.87418 123.572679 86.981959 124.464901 85.882334 124.464901 C 84.778797 124.464901 83.886575 123.572679 83.886575 122.473055 C 83.886575 121.369517 84.778797 120.477295 85.882334 120.477295 C 86.981959 120.477295 87.87418 121.369517 87.87418 122.473055 Z M 84.46965 121.064283 L 87.291106 123.881826 M 84.46965 123.881826 L 87.291106 121.064283 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.962592 64.478633 C 25.962592 65.578257 25.07037 66.470479 23.966832 66.470479 C 22.867208 66.470479 21.974986 65.578257 21.974986 64.478633 C 21.974986 63.379009 22.867208 62.486787 23.966832 62.486787 C 25.07037 62.486787 25.962592 63.379009 25.962592 64.478633 Z M 22.558061 63.069862 L 25.379517 65.887404 M 22.558061 65.887404 L 25.379517 63.069862 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.817929 128.812526 C 84.817929 129.91215 83.925707 130.804372 82.826083 130.804372 C 81.722545 130.804372 80.830324 129.91215 80.830324 128.812526 C 80.830324 127.712902 81.722545 126.82068 82.826083 126.82068 C 83.925707 126.82068 84.817929 127.712902 84.817929 128.812526 Z M 81.413398 127.403755 L 84.234854 130.221297 M 81.413398 130.221297 L 84.234854 127.403755 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 25.833454 65.844359 C 25.833454 66.943983 24.941232 67.836205 23.841608 67.836205 C 22.73807 67.836205 21.845849 66.943983 21.845849 65.844359 C 21.845849 64.744734 22.73807 63.852512 23.841608 63.852512 C 24.941232 63.852512 25.833454 64.744734 25.833454 65.844359 Z M 22.432837 64.435587 L 25.250379 67.25313 M 22.432837 67.25313 L 25.250379 64.435587 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.48563 127.45854 C 82.48563 128.562078 81.593408 129.4543 80.489871 129.4543 C 79.390246 129.4543 78.498024 128.562078 78.498024 127.45854 C 78.498024 126.358916 79.390246 125.466694 80.489871 125.466694 C 81.593408 125.466694 82.48563 126.358916 82.48563 127.45854 Z M 79.081099 126.049769 L 81.902555 128.871225 M 79.081099 128.871225 L 81.902555 126.049769 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.235182 126.671976 C 82.235182 127.771601 81.34296 128.663822 80.243336 128.663822 C 79.139798 128.663822 78.247576 127.771601 78.247576 126.671976 C 78.247576 125.572352 79.139798 124.68013 80.243336 124.68013 C 81.34296 124.68013 82.235182 125.572352 82.235182 126.671976 Z M 78.834564 125.263205 L 81.652107 128.080748 M 78.834564 128.080748 L 81.652107 125.263205 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 1.993912 49.295208 C 1.993912 50.394832 1.10169 51.287054 -0.00184763 51.287054 C -1.101472 51.287054 -1.993694 50.394832 -1.993694 49.295208 C -1.993694 48.195584 -1.101472 47.303362 -0.00184763 47.303362 C 1.10169 47.303362 1.993912 48.195584 1.993912 49.295208 Z M -1.410619 47.886437 L 1.410837 50.70398 M -1.410619 50.70398 L 1.410837 47.886437 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 67.490041 10.135277 C 67.490041 11.234901 66.597819 12.127123 65.498195 12.127123 C 64.398571 12.127123 63.506349 11.234901 63.506349 10.135277 C 63.506349 9.035653 64.398571 8.143431 65.498195 8.143431 C 66.597819 8.143431 67.490041 9.035653 67.490041 10.135277 Z M 64.089424 8.726506 L 66.906966 11.544048 M 64.089424 11.544048 L 66.906966 8.726506 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 75.539604 131.954869 C 75.539604 133.054493 74.647383 133.946715 73.547758 133.946715 C 72.448134 133.946715 71.555912 133.054493 71.555912 131.954869 C 71.555912 130.855245 72.448134 129.963023 73.547758 129.963023 C 74.647383 129.963023 75.539604 130.855245 75.539604 131.954869 Z M 72.138987 130.546098 L 74.95653 133.36364 M 72.138987 133.36364 L 74.95653 130.546098 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.401004 128.127707 C 85.401004 129.231244 84.508782 130.123466 83.405245 130.123466 C 82.30562 130.123466 81.413398 129.231244 81.413398 128.127707 C 81.413398 127.028082 82.30562 126.13586 83.405245 126.13586 C 84.508782 126.13586 85.401004 127.028082 85.401004 128.127707 Z M 81.996473 126.718935 L 84.814016 129.536478 M 81.996473 129.536478 L 84.814016 126.718935 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 74.721734 127.348969 C 74.721734 128.448593 73.829512 129.340815 72.729888 129.340815 C 71.626351 129.340815 70.734129 128.448593 70.734129 127.348969 C 70.734129 126.249345 71.626351 125.357123 72.729888 125.357123 C 73.829512 125.357123 74.721734 126.249345 74.721734 127.348969 Z M 71.321117 125.940198 L 74.13866 128.757741 M 71.321117 128.757741 L 74.13866 125.940198 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.759387 130.960902 C 95.759387 132.060527 94.867165 132.952749 93.767541 132.952749 C 92.667916 132.952749 91.775695 132.060527 91.775695 130.960902 C 91.775695 129.861278 92.667916 128.969056 93.767541 128.969056 C 94.867165 128.969056 95.759387 129.861278 95.759387 130.960902 Z M 92.358769 129.552131 L 95.176312 132.369674 M 92.358769 132.369674 L 95.176312 129.552131 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.276762 134.494571 C 79.276762 135.598108 78.38454 136.49033 77.284916 136.49033 C 76.185291 136.49033 75.293069 135.598108 75.293069 134.494571 C 75.293069 133.394946 76.185291 132.502724 77.284916 132.502724 C 78.38454 132.502724 79.276762 133.394946 79.276762 134.494571 Z M 75.876144 133.085799 L 78.693687 135.907255 M 75.876144 135.907255 L 78.693687 133.085799 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.214961 117.014066 C 86.214961 118.11369 85.322739 119.005912 84.223115 119.005912 C 83.12349 119.005912 82.231268 118.11369 82.231268 117.014066 C 82.231268 115.914441 83.12349 115.02222 84.223115 115.02222 C 85.322739 115.02222 86.214961 115.914441 86.214961 117.014066 Z M 82.814343 115.605294 L 85.631886 118.422837 M 82.814343 118.422837 L 85.631886 115.605294 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.590633 27.459252 C 86.590633 28.562789 85.698411 29.455011 84.598787 29.455011 C 83.499163 29.455011 82.606941 28.562789 82.606941 27.459252 C 82.606941 26.359627 83.499163 25.467406 84.598787 25.467406 C 85.698411 25.467406 86.590633 26.359627 86.590633 27.459252 Z M 83.190016 26.05048 L 86.007558 28.868023 M 83.190016 28.868023 L 86.007558 26.05048 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 29.644963 61.484994 C 29.644963 62.584618 28.752742 63.47684 27.653117 63.47684 C 26.553493 63.47684 25.661271 62.584618 25.661271 61.484994 C 25.661271 60.385369 26.553493 59.493148 27.653117 59.493148 C 28.752742 59.493148 29.644963 60.385369 29.644963 61.484994 Z M 26.244346 60.076222 L 29.061889 62.893765 M 26.244346 62.893765 L 29.061889 60.076222 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.154014 60.913659 C 28.154014 62.013283 27.261792 62.905505 26.162168 62.905505 C 25.05863 62.905505 24.166408 62.013283 24.166408 60.913659 C 24.166408 59.814034 25.05863 58.921813 26.162168 58.921813 C 27.261792 58.921813 28.154014 59.814034 28.154014 60.913659 Z M 24.753396 59.504887 L 27.570939 62.32243 M 24.753396 62.32243 L 27.570939 59.504887 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 81.444704 128.644256 C 81.444704 129.747794 80.552483 130.640016 79.452858 130.640016 C 78.353234 130.640016 77.461012 129.747794 77.461012 128.644256 C 77.461012 127.544632 78.353234 126.65241 79.452858 126.65241 C 80.552483 126.65241 81.444704 127.544632 81.444704 128.644256 Z M 78.044087 127.235485 L 80.86163 130.053028 M 78.044087 130.053028 L 80.86163 127.235485 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.746053 67.530971 C 33.746053 68.634509 32.857745 69.522817 31.754207 69.522817 C 30.654583 69.522817 29.762361 68.634509 29.762361 67.530971 C 29.762361 66.431347 30.654583 65.539125 31.754207 65.539125 C 32.857745 65.539125 33.746053 66.431347 33.746053 67.530971 Z M 30.345436 66.1222 L 33.162979 68.939742 M 30.345436 68.939742 L 33.162979 66.1222 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.558673 129.544305 C 90.558673 130.643929 89.666451 131.536151 88.566826 131.536151 C 87.463289 131.536151 86.571067 130.643929 86.571067 129.544305 C 86.571067 128.44468 87.463289 127.552458 88.566826 127.552458 C 89.666451 127.552458 90.558673 128.44468 90.558673 129.544305 Z M 87.158055 128.135533 L 89.975598 130.953076 M 87.158055 130.953076 L 89.975598 128.135533 \" transform=\"matrix(0.99821,0,0,-0.99821,35.779188,147.878856)\"/>\n", | |
"</g>\n", | |
"</svg>\n", | |
"\n" | |
], | |
"text/plain": [ | |
"Axis(PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(), false), Any[Plot(false, true, PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(\"only_marks\" => nothing), true), Table(PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(), false), TableData([0.8452806343666234 -0.4374246713807611; 0.31782328801765264 -0.35283054570019073; … ; 2.3260727739882325 -0.09982693477217132; -2.348483863011309 -0.2222214394143747], [\"x\", \"y\"], Int64[], true)), Any[]), Plot(false, true, PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(\"only_marks\" => nothing), true), Table(PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(), false), TableData([-0.9256362939316316 -0.44555187472635377; -0.6075589591070245 -0.5797257850966302; … ; -0.8944883960293535 -0.5213174128923601; 0.1675201164262458 -0.49363157669947355], [\"x\", \"y\"], Int64[], true)), Any[]), Plot(false, true, PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(\"only_marks\" => nothing), true), Table(PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(), false), TableData([-0.02151045942758559 1.7078955605236368; -0.7739103507728556 -1.1957885389730967; … ; -1.604509764900999 0.3550790250064003; 0.21898059772837114 1.8507256949228967], [\"x\", \"y\"], Int64[], true)), Any[])])" | |
] | |
}, | |
"execution_count": 5, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"## 古典的なPCAでの2次元可視化\n", | |
"@pgf Axis(\n", | |
" [\n", | |
" PlotInc(\n", | |
" {only_marks},\n", | |
" Table(\n", | |
" x=(Y*V[:,1:2])[findall(e->e==label, labels),1],\n", | |
" y=(Y*V[:,1:2])[findall(e->e==label, labels),2]\n", | |
" )\n", | |
" )\n", | |
" for label in unique(labels)\n", | |
" ]...\n", | |
")" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 6, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/plain": [ | |
"∂k∂x (generic function with 1 method)" | |
] | |
}, | |
"execution_count": 6, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"k(τ,σ,η,x,y,l,m) = l==m ? τ^2*exp(-(norm(x-y)/σ)^2) + η^2 : τ^2*exp(-(norm(x-y)/σ)^2) + η*0.0\n", | |
"∂k∂x(n,j,τ,σ,η,x,y,l,m) = l==m ? 0.0 :\n", | |
" l!=m && n==l ? ((τ/σ)^2)*(y[j] - x[j])*exp(-(norm(y-x)/σ)^2) :\n", | |
" l!=m && n==m ? ((τ/σ)^2)*(x[j] - y[j])*exp(-(norm(x-y)/σ)^2) : 0.0" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 7, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/plain": [ | |
"logq (generic function with 1 method)" | |
] | |
}, | |
"execution_count": 7, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"function logq(X)\n", | |
" -0.5*sum([norm(X[i,:])^2 for i in 1:N]) - 0.5*N*D*log(2π)\n", | |
"end" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 8, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/plain": [ | |
"logp (generic function with 1 method)" | |
] | |
}, | |
"execution_count": 8, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"function logp(τ,σ,η,Y,X)\n", | |
" local Kₓ = [\n", | |
" k(τ,σ,η,X[l,:],X[m,:],l,m)\n", | |
" for l in 1:N, m in 1:N\n", | |
" ]\n", | |
" local invKₓ = inv(Kₓ)\n", | |
" -0.5*tr(invKₓ*Y*Y')-0.5*D*logdet(Kₓ) - 0.5*N*D*log(2π)\n", | |
"end" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 9, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/plain": [ | |
"∂logp∂X (generic function with 1 method)" | |
] | |
}, | |
"execution_count": 9, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"function ∂logp∂X_col(j,τ,σ,η,Y,X)\n", | |
" local Kₓ = [\n", | |
" k(τ,σ,η,X[l,:],X[m,:],l,m)\n", | |
" for l in 1:N, m in 1:N\n", | |
" ]\n", | |
" local invKₓ = inv(Kₓ)\n", | |
" G = 0.5 .* (invKₓ*Y*Y'*invKₓ - D .* invKₓ)\n", | |
" \n", | |
" [\n", | |
" sum([\n", | |
" G[n,l] * (X[l,j] - X[n,j]) * exp(-(norm(X[l,:]-X[n,:])/σ)^2)\n", | |
" for l in 1:N\n", | |
" ])\n", | |
" for n in 1:N\n", | |
" ] .* (4.0*(τ/σ)^2)\n", | |
"end\n", | |
"\n", | |
"function ∂logp∂X_row(n,τ,σ,η,Y,X)\n", | |
" local Kₓ = [\n", | |
" k(τ,σ,η,X[l,:],X[m,:],l,m)\n", | |
" for l in 1:N, m in 1:N\n", | |
" ]\n", | |
" local invKₓ = inv(Kₓ)\n", | |
" G = 0.5 .* (invKₓ*Y*Y'*invKₓ - D .* invKₓ)\n", | |
" \n", | |
" [\n", | |
" sum([\n", | |
" G[n,l] * (X[l,j] - X[n,j]) * exp(-(norm(X[l,:]-X[n,:])/σ)^2)\n", | |
" for l in 1:N\n", | |
" ])\n", | |
" for j in 1:K\n", | |
" ] .* (4.0*(τ/σ)^2)\n", | |
"end\n", | |
"\n", | |
"function ∂logp∂X(τ,σ,η,Y,X)\n", | |
" local Kₓ = [\n", | |
" k(τ,σ,η,X[l,:],X[m,:],l,m)\n", | |
" for l in 1:N, m in 1:N\n", | |
" ]\n", | |
" local invKₓ = inv(Kₓ)\n", | |
" G = 0.5 .* (invKₓ*Y*Y'*invKₓ - D .* invKₓ)\n", | |
" \n", | |
" [\n", | |
" sum([\n", | |
" G[n,l]*(X[l,j]-X[n,j])*exp(-(norm(X[l,:]-X[n,:])/σ)^2)\n", | |
" for l in 1:N\n", | |
" ])\n", | |
" for n in 1:N, j in 1:K\n", | |
" ] .* (4.0 * (τ/σ)^2)\n", | |
"end" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 10, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/plain": [ | |
"∂logp∂τση (generic function with 1 method)" | |
] | |
}, | |
"execution_count": 10, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"function ∂logp∂τση(τ,σ,η,Y,X)\n", | |
" local Kₓ = [\n", | |
" k(τ,σ,η,X[l,:],X[m,:],l,m)\n", | |
" for l in 1:N, m in 1:N\n", | |
" ]\n", | |
" local invKₓ = inv(Kₓ)\n", | |
" G = 0.5 .* (invKₓ*Y*Y'*invKₓ - D .* invKₓ)\n", | |
" \n", | |
" local L = [\n", | |
" exp(-(norm(X[l,:]-X[m,:])/σ)^2)\n", | |
" for l in 1:N, m in 1:N\n", | |
" ].*(2τ)\n", | |
" \n", | |
" local H = [\n", | |
" (2.0/σ) * ((τ*norm(X[l,:]-X[m,:])/σ)^2) * exp(-(norm(X[l,:]-X[m,:])/σ)^2)\n", | |
" for l in 1:N, m in 1:N\n", | |
" ]\n", | |
" \n", | |
" [\n", | |
" sum(L.*G)\n", | |
" sum(H.*G)\n", | |
" sum(diag(G))*(2η)\n", | |
" ]\n", | |
"end" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 11, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"text/plain": [ | |
"PLL (generic function with 1 method)" | |
] | |
}, | |
"execution_count": 11, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"# PLL...posterior log likelihood\n", | |
"function PLL(τ,σ,η,Y,X)\n", | |
" logq(X) + logp(τ,σ,η,Y,X)\n", | |
"end" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"#### 1. 各潜在変数ベクトルごと($n=1\\dots N$)に、他変数を固定して逐次更新" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 12, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"name": "stdout", | |
"output_type": "stream", | |
"text": [ | |
"[DONE] loop: 1, logp: -329.76942525946106, (τ,σ,η): (1.0220229522952078, 4.994227231779866, -0.2390030587154211)\n", | |
"[DONE] loop: 2, logp: -222.93321325107013, (τ,σ,η): (1.721472455270631, 4.757209447385623, -0.22363029899063636)\n", | |
"[DONE] loop: 3, logp: 55.52938272442907, (τ,σ,η): (2.40375817100968, 4.2431983680026235, -0.1774317318237547)\n", | |
"[DONE] loop: 4, logp: 354.95741415830844, (τ,σ,η): (2.6733247280946473, 3.8754278698557103, -0.20249240548327233)\n", | |
"[DONE] loop: 5, logp: 550.1696127981659, (τ,σ,η): (2.6764748227046375, 3.8698142076736834, -0.16611410379714692)\n", | |
"[DONE] loop: 6, logp: 740.8196524521732, (τ,σ,η): (3.1050094223892244, 3.0105843163615518, -0.13738941696273393)\n", | |
"[DONE] loop: 7, logp: 963.6889823799129, (τ,σ,η): (3.497058290743304, 1.5572035862205158, -0.12513246997138686)\n", | |
"[DONE] loop: 8, logp: 1147.2670180317314, (τ,σ,η): (3.443411939761093, 1.5311371278947583, -0.11778881253077375)\n", | |
"[DONE] loop: 9, logp: 1207.4277751701843, (τ,σ,η): (3.4062664757811807, 1.4391186915513354, -0.11216805709701501)\n", | |
"[DONE] loop: 10, logp: 1254.5562190213573, (τ,σ,η): (3.217160839505723, 1.3371673040455638, -0.10934650176208804)\n", | |
"[DONE] loop: 11, logp: 1281.2445093223846, (τ,σ,η): (3.174348739441772, 1.382181505639216, -0.1090596733527549)\n", | |
"[DONE] loop: 12, logp: 1296.049951045909, (τ,σ,η): (3.1470898830649117, 1.3310723259094799, -0.10850948363498447)\n", | |
"[DONE] loop: 13, logp: 1312.3189497301005, (τ,σ,η): (3.103764661400465, 1.2840195152708964, -0.10730567138213766)\n", | |
"[DONE] loop: 14, logp: 1339.4899390931737, (τ,σ,η): (3.073086352215127, 1.2418113487986293, -0.10535607616324999)\n", | |
"[DONE] loop: 15, logp: 1363.0920642908854, (τ,σ,η): (3.0354490270051038, 1.2009850806925757, -0.10383416933622973)\n", | |
"[DONE] loop: 16, logp: 1385.6066792662828, (τ,σ,η): (2.998978526425053, 1.1606143406256746, -0.10236415814182827)\n", | |
"[DONE] loop: 17, logp: 1412.7148478765894, (τ,σ,η): (2.9674364523607046, 1.1216229404748759, -0.10066714942333792)\n", | |
"[DONE] loop: 18, logp: 1445.0405119845013, (τ,σ,η): (2.94114339448924, 1.0848029250086053, -0.09877004032201725)\n", | |
"[DONE] loop: 19, logp: 1480.7103943547677, (τ,σ,η): (2.9184932221492823, 1.050726189856799, -0.09674490214059005)\n", | |
"[DONE] loop: 20, logp: 1522.4666568207977, (τ,σ,η): (2.902288227873706, 1.0164348200021025, -0.09431099531467553)\n", | |
"[DONE] loop: 21, logp: 1564.647752661484, (τ,σ,η): (2.8876738656388534, 0.9821883262474628, -0.0918981238297172)\n", | |
"[DONE] loop: 22, logp: 1606.1764504492844, (τ,σ,η): (2.8738021921444057, 0.9474864635825055, -0.08952307735910485)\n", | |
"[DONE] loop: 23, logp: 1628.1262603758541, (τ,σ,η): (2.8525880044170737, 0.9195543032370728, -0.08832984176885823)\n", | |
"[DONE] loop: 24, logp: 1653.7898068628233, (τ,σ,η): (2.7967657694362615, 0.8824527340433573, -0.08693541348106569)\n", | |
"[DONE] loop: 25, logp: 1670.0690180125252, (τ,σ,η): (2.6090424466604856, 0.9181549084749302, -0.08717873040461686)\n", | |
"[DONE] loop: 26, logp: 1679.7629029335253, (τ,σ,η): (2.59981999897341, 0.8721639116682075, -0.08636985881643795)\n", | |
"[DONE] loop: 27, logp: 1687.6982395156506, (τ,σ,η): (2.581707541693314, 0.8389171640610554, -0.08564016384492706)\n", | |
"[DONE] loop: 28, logp: 1698.7734291803722, (τ,σ,η): (2.5621558499731036, 0.7990692080047878, -0.0844508246665251)\n", | |
"[DONE] loop: 29, logp: 1800.4806098991953, (τ,σ,η): (2.518503994526969, 0.7708913226225931, -0.07990021942566766)\n", | |
"[DONE] loop: 30, logp: 1810.831926583387, (τ,σ,η): (2.4986796327683853, 0.7958922284237372, -0.07930424810891464)\n", | |
"[DONE] loop: 31, logp: 1825.588504672773, (τ,σ,η): (2.2873049960104392, 0.757014926171951, -0.07853687084547557)\n", | |
"[DONE] loop: 32, logp: 1830.9109271117586, (τ,σ,η): (2.2478108738051965, 0.7790339245716953, -0.07923248852068004)\n", | |
"[DONE] loop: 33, logp: 1835.4919580919054, (τ,σ,η): (2.218144712918417, 0.7512578164281765, -0.07885461031124012)\n", | |
"[DONE] loop: 34, logp: 1839.839461400291, (τ,σ,η): (2.162722358629101, 0.7741714068588937, -0.07916550229058897)\n", | |
"[DONE] loop: 35, logp: 1843.4046218369585, (τ,σ,η): (2.14628895696164, 0.7482921221721774, -0.07873465294198413)\n", | |
"[DONE] loop: 36, logp: 1851.9999420098952, (τ,σ,η): (1.505553281113512, 0.7687020195937053, -0.07832588420038016)\n", | |
"[DONE] loop: 37, logp: 1880.686208612392, (τ,σ,η): (1.5062063753599735, 0.6965005411519112, -0.07876516684266176)\n", | |
"[DONE] loop: 38, logp: 1886.8794181623066, (τ,σ,η): (1.490389512804937, 0.6659860527575514, -0.07828092483312274)\n", | |
"[DONE] loop: 39, logp: 1894.8514534054261, (τ,σ,η): (1.3726755052441983, 0.6034748693829513, -0.07773349443223872)\n", | |
"[DONE] loop: 40, logp: 1903.6926293898164, (τ,σ,η): (1.3442521775397598, 0.6257528917656312, -0.07766323896100204)\n", | |
"[DONE] loop: 41, logp: 1909.6900258145447, (τ,σ,η): (1.3181114141489405, 0.5953658628243179, -0.0772186411472281)\n", | |
"[DONE] loop: 42, logp: 1917.0770718017607, (τ,σ,η): (1.2773639678418198, 0.5924225673368058, -0.07671360946382103)\n", | |
"[DONE] loop: 43, logp: 1924.1554431284562, (τ,σ,η): (1.2313678524687925, 0.571023068610633, -0.07745866418462755)\n", | |
"[DONE] loop: 44, logp: 1948.3881248902076, (τ,σ,η): (0.772284745464354, 0.42413637765571455, -0.07525521827636314)\n", | |
"[DONE] loop: 45, logp: 1968.237142512024, (τ,σ,η): (0.7589317660840986, 0.44424168668160285, -0.07510128630157327)\n", | |
"[DONE] loop: 46, logp: 1978.3743294281662, (τ,σ,η): (0.7459018852414738, 0.4265037324118765, -0.07441778831918787)\n", | |
"[DONE] loop: 47, logp: 1988.3729253357938, (τ,σ,η): (0.7362277331876587, 0.4012513553008697, -0.0731355153291715)\n", | |
"[DONE] loop: 48, logp: 2026.057706117122, (τ,σ,η): (0.7360739291074052, 0.3433014242539252, -0.06810002005325207)\n", | |
"[DONE] loop: 49, logp: 2127.7602858969744, (τ,σ,η): (0.7327500672439282, 0.30945946651242395, -0.06258695285320798)\n", | |
"[DONE] loop: 50, logp: 2227.7722477815, (τ,σ,η): (0.7296083435146268, 0.28174368530515786, -0.057705372547382984)\n", | |
"[DONE] loop: 51, logp: 2283.3719631000936, (τ,σ,η): (0.7256851619177651, 0.26726314737331275, -0.05582105613987121)\n", | |
"[DONE] loop: 52, logp: 2340.4733517980617, (τ,σ,η): (0.7205561999062157, 0.2585431073069966, -0.05368595191728335)\n", | |
"[DONE] loop: 53, logp: 2382.213657136877, (τ,σ,η): (0.6581897270160346, 0.26189079200063703, -0.05293152879964151)\n", | |
"[DONE] loop: 54, logp: 2402.263503367714, (τ,σ,η): (0.6574175246069314, 0.25228250160931565, -0.05239329627171181)\n", | |
"[DONE] loop: 55, logp: 2417.3990647601563, (τ,σ,η): (0.6486723504106449, 0.24704205799559573, -0.05242686013618994)\n", | |
"[DONE] loop: 56, logp: 2428.9359809916355, (τ,σ,η): (0.6423586379362533, 0.2494130814435703, -0.05203287192760472)\n", | |
"[DONE] loop: 57, logp: 2437.972300875864, (τ,σ,η): (0.6401296664448826, 0.2460028872144156, -0.05187319530799609)\n", | |
"[DONE] loop: 58, logp: 2446.4321037695167, (τ,σ,η): (0.6119454869574898, 0.2374670220221348, -0.051815985599905474)\n", | |
"[DONE] loop: 59, logp: 2453.134688561467, (τ,σ,η): (0.6108225896213304, 0.23970958663963343, -0.05146742173275164)\n", | |
"[DONE] loop: 60, logp: 2458.62607879491, (τ,σ,η): (0.5898364132950884, 0.23584111147441358, -0.05154401395983738)\n", | |
"[DONE] loop: 61, logp: 2463.0643036287333, (τ,σ,η): (0.5898305473589924, 0.23536793197125327, -0.051282772884260995)\n", | |
"[DONE] loop: 62, logp: 2466.7906300830577, (τ,σ,η): (0.5894550784124691, 0.23477672275433392, -0.051186836020229456)\n", | |
"[DONE] loop: 63, logp: 2470.0076912268137, (τ,σ,η): (0.5885906992388766, 0.23424307750055073, -0.051204584636412885)\n", | |
"[DONE] loop: 64, logp: 2472.826034191426, (τ,σ,η): (0.5885266016978344, 0.23364711787947084, -0.05111452188176141)\n", | |
"[DONE] loop: 65, logp: 2475.326424544354, (τ,σ,η): (0.5885111067527835, 0.23314597130738784, -0.05108158866792695)\n", | |
"[DONE] loop: 66, logp: 2477.5622280668827, (τ,σ,η): (0.5885596445234518, 0.23270400210597073, -0.05105556987258028)\n", | |
"[DONE] loop: 67, logp: 2479.577060334878, (τ,σ,η): (0.5886215882573961, 0.23228971675706298, -0.05102941079875496)\n", | |
"[DONE] loop: 68, logp: 2481.404609972988, (τ,σ,η): (0.5886907780180145, 0.23190311394583266, -0.05100505541192333)\n", | |
"[DONE] loop: 69, logp: 2483.071515735955, (τ,σ,η): (0.5887691147202084, 0.23154479151016807, -0.05098259983799506)\n", | |
"[DONE] loop: 70, logp: 2484.5995771286885, (τ,σ,η): (0.5888719601872646, 0.23121443761841293, -0.05096075906271263)\n", | |
"[DONE] loop: 71, logp: 2486.0074493058232, (τ,σ,η): (0.5896264389551872, 0.23098936336459597, -0.05093086590746503)\n", | |
"[DONE] loop: 72, logp: 2487.309640983602, (τ,σ,η): (0.5897107001907732, 0.23074837944315882, -0.05093074872465779)\n", | |
"[DONE] loop: 73, logp: 2488.518702046415, (τ,σ,η): (0.5909136399249019, 0.2307040653712751, -0.05092798107302832)\n", | |
"[DONE] loop: 74, logp: 2489.644927917035, (τ,σ,η): (0.5909737334709235, 0.23045679402511746, -0.05091134362877886)\n", | |
"[DONE] loop: 75, logp: 2490.698141128503, (τ,σ,η): (0.5913145449813146, 0.23025874978766186, -0.050890190846312036)\n", | |
"[DONE] loop: 76, logp: 2491.68517804091, (τ,σ,η): (0.5913912426219992, 0.23009052993709656, -0.05088994330353379)\n", | |
"[DONE] loop: 77, logp: 2492.6127580164425, (τ,σ,η): (0.5926072890765429, 0.23012067811220502, -0.05088632603356229)\n", | |
"[DONE] loop: 78, logp: 2493.4857155625746, (τ,σ,η): (0.5930958730553468, 0.23001502645515431, -0.05088009855395339)\n", | |
"[DONE] loop: 79, logp: 2494.3096815827353, (τ,σ,η): (0.5934949009008395, 0.2299153231905589, -0.05087336541490457)\n", | |
"[DONE] loop: 80, logp: 2495.0882829542493, (τ,σ,η): (0.5938974541861313, 0.22985459697610575, -0.0508708703590839)\n", | |
"[DONE] loop: 81, logp: 2495.8248331155323, (τ,σ,η): (0.594049562672969, 0.22972454799429864, -0.050861247126201596)\n", | |
"[DONE] loop: 82, logp: 2496.522985258019, (τ,σ,η): (0.5941058510955537, 0.22962424197106965, -0.05085841808379628)\n", | |
"[DONE] loop: 83, logp: 2497.1851041164896, (τ,σ,η): (0.5944458214302564, 0.22959120408176825, -0.050846983648553376)\n", | |
"[DONE] loop: 84, logp: 2497.813639473717, (τ,σ,η): (0.5945048263895917, 0.22947332344133917, -0.05085077705863182)\n", | |
"[DONE] loop: 85, logp: 2498.411528247058, (τ,σ,η): (0.5948189059934803, 0.2294465488862706, -0.05083731156955443)\n", | |
"[DONE] loop: 86, logp: 2498.979973471976, (τ,σ,η): (0.594912016248988, 0.22934874768929828, -0.05084069738774673)\n", | |
"[DONE] loop: 87, logp: 2499.521330333286, (τ,σ,η): (0.59505034366062, 0.22928007090271973, -0.05083411893940149)\n", | |
"[DONE] loop: 88, logp: 2500.0370677739606, (τ,σ,η): (0.5952569532779982, 0.22922534611078943, -0.05082720552414216)\n", | |
"[DONE] loop: 89, logp: 2500.5288005527705, (τ,σ,η): (0.5955707028045016, 0.22919456562390086, -0.05082015445190956)\n", | |
"[DONE] loop: 90, logp: 2500.9978688082424, (τ,σ,η): (0.5959433714865874, 0.22918008190190614, -0.050815916882798205)\n", | |
"[DONE] loop: 91, logp: 2501.4454757452263, (τ,σ,η): (0.5963081210905934, 0.22916999298162957, -0.050813733699735956)\n", | |
"[DONE] loop: 92, logp: 2501.872786548725, (τ,σ,η): (0.5966540152213201, 0.22916094160981065, -0.05081167178062483)\n", | |
"[DONE] loop: 93, logp: 2502.280931227609, (τ,σ,η): (0.596984146359275, 0.22915232692159573, -0.050809325946122474)\n", | |
"[DONE] loop: 94, logp: 2502.6709690122484, (τ,σ,η): (0.5973028913261603, 0.22914429842541925, -0.05080666919889216)\n", | |
"[DONE] loop: 95, logp: 2503.043907441624, (τ,σ,η): (0.5976130802982598, 0.22913701894176747, -0.05080373612583172)\n", | |
"[DONE] loop: 96, logp: 2503.4007025763744, (τ,σ,η): (0.5979151485338247, 0.2291302971302758, -0.05080056359169611)\n", | |
"[DONE] loop: 97, logp: 2503.742283216024, (τ,σ,η): (0.5982086075700902, 0.22912377889634805, -0.050797132765924145)\n", | |
"[DONE] loop: 98, logp: 2504.069560286796, (τ,σ,η): (0.5984922075056532, 0.22911693095725968, -0.050793407907806364)\n", | |
"[DONE] loop: 99, logp: 2504.383439679684, (τ,σ,η): (0.5987642714322274, 0.2291090810522016, -0.05078933181342891)\n", | |
"[DONE] loop: 100, logp: 2504.6848350589858, (τ,σ,η): (0.5990227341345246, 0.2290994112488946, -0.05078483335640297)\n" | |
] | |
} | |
], | |
"source": [ | |
"# GPLVMの最適化 各データ点毎更新 loop n=1...N\n", | |
"X = Y*V[:,1:2]\n", | |
"τ = 1.0\n", | |
"σ = 5.0\n", | |
"η = 1.0\n", | |
"\n", | |
"for loop in 1:100\n", | |
"for n in 1:N\n", | |
" xₛ = SCG(\n", | |
" X[n,:],\n", | |
" x -> -PLL(\n", | |
" τ,σ,η,Y,\n", | |
" X.*(ones(N,K) - Matrix(1.0I,N,N)[:,n]*ones(1,K)) + (Matrix(1.0I,N,N)[:,n]*x')\n", | |
" ),\n", | |
" x -> -∂logp∂X_row(\n", | |
" n,τ,σ,η,Y,\n", | |
" X.*(ones(N,K) - Matrix(1.0I,N,N)[:,n]*ones(1,K)) + (Matrix(1.0I,N,N)[:,n]*x')\n", | |
" ) + x,\n", | |
" MaxLoop=3\n", | |
" )\n", | |
" X = X.*(ones(N,K) - Matrix(1.0I,N,N)[:,n]*ones(1,K)) + (Matrix(1.0I,N,N)[:,n]*xₛ')\n", | |
"end\n", | |
" θₛ = SCG(\n", | |
" [τ,σ,η],\n", | |
" θ -> -logp(θ...,Y,X),\n", | |
" θ -> -∂logp∂τση(θ...,Y,X),\n", | |
" MaxLoop=3\n", | |
" )\n", | |
" τ = θₛ[1]\n", | |
" σ = θₛ[2]\n", | |
" η = θₛ[3]\n", | |
" \n", | |
" println(\"[DONE] loop: $(loop), logp: $(logp(τ,σ,η,Y,X)), (τ,σ,η): $((τ,σ,η))\")\n", | |
"end" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 13, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"image/png": "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11FUHXQ5VK9TAyCkFQ76WV7iCJT6uKTOHTMXAkJk5Q8LR62wYZfWhnNT3boqSmtDUsKwlayBQ1lbYoAStTk+PXXGdQ0RpbQmlJXs9Lm0nGS3oqCoOqC7EoYcczyrRAxQojbn8sPGTTl5U7Fq27aUpiWjpu10OBXdc83/Pq6ovL6T+jvuA+2nydjBESiAjO3VV9WGPrruovK9hU6X++gp086a/fPE1EzdKsldAAAQP0lEQVRWkogB2h/n5hMP8y0jKwMj732RpSNigPb3gefEDq9JRAxQOuhBPUK0E5TrWC4iBih1KE+FWNdi7Mn0JGKAUmdm90TEAKXOj0ZZD6KO4w2VCR0KUG4sooPiiyNQYkoSdRKvRCIiYoASETFAiYgYoEREDFAiImKAEhExQImIGKBERAxQIiIGKBERMUCJiBigREQMUCIiBigREQOUiIgYoEREcR6gW7ZssW2bxSUiBmhHmaa5efPm+fPnjxs3rqqqisUlIgZoh5SVld1www0fffSRlNKyLFaWiPq8I/ZMpJycnKeffhrAkiVLWFYi4giUiIgYoEREDFAiIgYoEVF8a+8gUllZWfuncwohsrOzFaWTKXzPPfe0urygoGDatGncNkTUg1avXr1mzZr21xFSylZfKCoq+tnPfnbIAP3tb387adKklguXLFkyb9688vLyrKys9t/b1o8mIurNmuOrzRFofn7++++/z0oREbWF+0CJiHpNgMZGtpyeExED9DBy8/vvv9+wYcO7774L4IUXXti2bVt5eTlLTER91RE7kmNZ1n333edwOBRFie1htSxr0KBBl1xySes/mAeRiChOc3N/fPVYijFAiSjeA5QHkYiIOokBSkTEACUiYoASETFAiYgYoERExAAlImKAEhExQImIGKBERAxQIiJigBIRMUCJiBigREQMUCIiBigRETFAiYgYoEREDFAior5KYwniTlXJnlBTQ1pOvjcxhdUgYoBSh+z45pNXHvqfaKhJ17RQODTkmOMvm/f7hJR0VoaoR/CpnHFj21ern1n0n+kJeorPAUBKWVwbcfpSb3vkbbcvkfUh6v74YoDGB9u2Fl59stNuqg+YyT4dtgybdtS03Q49bdAxM2+8K3fIKFaJqJvjiweR4kNx4WZpRjwODZChiBEy7ahpWZYMR41927957L+uePH+2yzTYKGIuhP3gcYHf0ON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N83pWVRU9PHHH7e1fi8N0Egk0vzfln7xi1+ceOKJ4XA49u2MGTN+97vfNb8aDodXrVo1b9682KV1va3x3eknP/nJypUrm7+1bXvNmjVz5szpVZU8ZCO7TV5e3qmnntqyMVu2bKmvr589e3bzNp06depNN93UvP6sWbOavwXw1VdfVVRU/PrXv+7BjS6ljB316s2/wps2bRo9evRzzz0X+/aMM8649NJLY1c/x7z99ttJSUkta9udbr755pycnE2bNi1btuzll19+4YUX7rrrrlGjRrVX9N7DNM2nnnpq8eLFRx99NIDLLrvsscceW7lyZfMKEyZM0HW9rKws9m1jY+NPf/rTDRs2xK5l/tGPfnTRRReFQqHe2fjuFA6Hp06d+tRTT8Xmlb/61a8uu+yyliv0hkoespHdaceOHcOHD1+/fr2U0u/3n3nmmY888kjzqxUVFU6nc+zYsS2vtLnlllti15t9++23w4cPX7hwYU81/ssvv3z88cdvvvlmAJmZmX/4wx/+9Kc/1dTU9Ehj/vrXvz7yyCOxg2mTJk166KGHnnvuueZXYzs95s6d27zk+eefv//++0OhkGmab7zxRl5eXvt3Ieg69913X6shWVJS0tZbetczkaSUn3/+ucPhUBRFCBG734TX623+CxAIBBoaGlreIigajT799NPfffedoiinnXbaBRdc0Gsb380Mw3jmmWcqKytN0xw1atRll13W8uBGL6lk+43sZlVVVX/+85+FEIFAYPr06Qdc215WVpaQkNDyjJaysrJnn322uLg4LS1t5syZLeeh3WzPnj1VVVWapsU6npQyGo2OHTu2R24NtXHjxmg0qqpqrDG2bVuWNXny5OYVdu7cOXjw4Jbnrqxfv3758uXV1dVDhgy58sore+qmXJs2baqtrT14ecsB8gH4UDkiok7itfBERAxQIiIGKBERA5SIiAFKREQMUCIiBigREQOUiCg+/X+nb0r87S3y1AAAAABJRU5ErkJggg==", | |
"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=\"214.876pt\" height=\"175.686pt\" viewBox=\"0 0 214.876 175.686\" version=\"1.2\">\n", | |
"<defs>\n", | |
"<g>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407020-0-0\">\n", | |
"<path style=\"stroke:none;\" d=\"\"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407020-0-1\">\n", | |
"<path style=\"stroke:none;\" d=\"M 6.546875 -2.28125 C 6.71875 -2.28125 6.890625 -2.28125 6.890625 -2.484375 C 6.890625 -2.6875 6.71875 -2.6875 6.546875 -2.6875 L 1.171875 -2.6875 C 1 -2.6875 0.828125 -2.6875 0.828125 -2.484375 C 0.828125 -2.28125 1 -2.28125 1.171875 -2.28125 Z M 6.546875 -2.28125 \"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407020-1-0\">\n", | |
"<path style=\"stroke:none;\" d=\"\"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407020-1-1\">\n", | |
"<path style=\"stroke:none;\" d=\"M 2.921875 -6.359375 C 2.921875 -6.59375 2.921875 -6.625 2.6875 -6.625 C 2.078125 -5.984375 1.203125 -5.984375 0.890625 -5.984375 L 0.890625 -5.671875 C 1.078125 -5.671875 1.671875 -5.671875 2.1875 -5.9375 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.9375 -0.3125 L 0.9375 0 C 1.296875 -0.03125 2.15625 -0.03125 2.546875 -0.03125 C 2.953125 -0.03125 3.8125 -0.03125 4.15625 0 L 4.15625 -0.3125 L 3.84375 -0.3125 C 2.953125 -0.3125 2.921875 -0.421875 2.921875 -0.78125 Z M 2.921875 -6.359375 \"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407020-1-2\">\n", | |
"<path style=\"stroke:none;\" d=\"M 4.46875 -2 C 4.46875 -3.1875 3.640625 -4.171875 2.578125 -4.171875 C 2.09375 -4.171875 1.671875 -4.015625 1.3125 -3.671875 L 1.3125 -5.609375 C 1.515625 -5.546875 1.84375 -5.46875 2.15625 -5.46875 C 3.375 -5.46875 4.078125 -6.375 4.078125 -6.515625 C 4.078125 -6.5625 4.046875 -6.625 3.96875 -6.625 C 3.96875 -6.625 3.9375 -6.625 3.890625 -6.59375 C 3.703125 -6.5 3.203125 -6.296875 2.546875 -6.296875 C 2.140625 -6.296875 1.6875 -6.375 1.21875 -6.578125 C 1.140625 -6.609375 1.125 -6.609375 1.109375 -6.609375 C 1 -6.609375 1 -6.53125 1 -6.375 L 1 -3.421875 C 1 -3.25 1 -3.171875 1.140625 -3.171875 C 1.21875 -3.171875 1.234375 -3.203125 1.265625 -3.265625 C 1.375 -3.421875 1.75 -3.953125 2.546875 -3.953125 C 3.078125 -3.953125 3.3125 -3.5 3.40625 -3.3125 C 3.5625 -2.953125 3.578125 -2.5625 3.578125 -2.0625 C 3.578125 -1.71875 3.578125 -1.125 3.34375 -0.703125 C 3.09375 -0.3125 2.734375 -0.0625 2.28125 -0.0625 C 1.546875 -0.0625 0.984375 -0.59375 0.8125 -1.171875 C 0.84375 -1.15625 0.875 -1.15625 0.984375 -1.15625 C 1.3125 -1.15625 1.484375 -1.40625 1.484375 -1.640625 C 1.484375 -1.875 1.3125 -2.125 0.984375 -2.125 C 0.84375 -2.125 0.5 -2.0625 0.5 -1.59375 C 0.5 -0.75 1.1875 0.21875 2.296875 0.21875 C 3.453125 0.21875 4.46875 -0.734375 4.46875 -2 Z M 4.46875 -2 \"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407020-1-3\">\n", | |
"<path style=\"stroke:none;\" d=\"M 4.578125 -3.1875 C 4.578125 -3.96875 4.515625 -4.765625 4.171875 -5.5 C 3.71875 -6.453125 2.90625 -6.625 2.484375 -6.625 C 1.890625 -6.625 1.15625 -6.359375 0.75 -5.4375 C 0.4375 -4.75 0.390625 -3.96875 0.390625 -3.1875 C 0.390625 -2.4375 0.421875 -1.546875 0.828125 -0.78125 C 1.265625 0.015625 1.984375 0.21875 2.46875 0.21875 C 3.015625 0.21875 3.765625 0.015625 4.203125 -0.9375 C 4.515625 -1.625 4.578125 -2.390625 4.578125 -3.1875 Z M 2.46875 0 C 2.09375 0 1.5 -0.25 1.328125 -1.203125 C 1.21875 -1.796875 1.21875 -2.71875 1.21875 -3.296875 C 1.21875 -3.9375 1.21875 -4.59375 1.296875 -5.125 C 1.484375 -6.3125 2.21875 -6.40625 2.46875 -6.40625 C 2.796875 -6.40625 3.453125 -6.21875 3.640625 -5.234375 C 3.75 -4.6875 3.75 -3.921875 3.75 -3.296875 C 3.75 -2.546875 3.75 -1.875 3.640625 -1.25 C 3.484375 -0.296875 2.921875 0 2.46875 0 Z M 2.46875 0 \"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407020-1-4\">\n", | |
"<path style=\"stroke:none;\" d=\"M 1.265625 -0.765625 L 2.3125 -1.78125 C 3.859375 -3.15625 4.46875 -3.703125 4.46875 -4.6875 C 4.46875 -5.828125 3.5625 -6.625 2.359375 -6.625 C 1.234375 -6.625 0.5 -5.703125 0.5 -4.8125 C 0.5 -4.265625 1 -4.265625 1.03125 -4.265625 C 1.1875 -4.265625 1.546875 -4.375 1.546875 -4.796875 C 1.546875 -5.046875 1.359375 -5.3125 1.015625 -5.3125 C 0.9375 -5.3125 0.921875 -5.3125 0.890625 -5.296875 C 1.109375 -5.9375 1.65625 -6.3125 2.21875 -6.3125 C 3.125 -6.3125 3.5625 -5.5 3.5625 -4.6875 C 3.5625 -3.890625 3.0625 -3.109375 2.515625 -2.5 L 0.609375 -0.375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.1875 0 L 4.46875 -1.734375 L 4.21875 -1.734375 C 4.15625 -1.4375 4.09375 -1 4 -0.84375 C 3.921875 -0.765625 3.265625 -0.765625 3.046875 -0.765625 Z M 1.265625 -0.765625 \"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407020-2-0\">\n", | |
"<path style=\"stroke:none;\" d=\"\"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407020-2-1\">\n", | |
"<path style=\"stroke:none;\" d=\"M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.046875 1.375 -1.046875 C 1.09375 -1.046875 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.375 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 \"/>\n", | |
"</symbol>\n", | |
"</g>\n", | |
"<clipPath id=\"clip-1592782364407020-1\">\n", | |
" <path d=\"M 0.128906 0 L 214.621094 0 L 214.621094 175.371094 L 0.128906 175.371094 Z M 0.128906 0 \"/>\n", | |
"</clipPath>\n", | |
"</defs>\n", | |
"<g id=\"surface1\">\n", | |
"<g clip-path=\"url(#clip-1592782364407020-1)\" clip-rule=\"nonzero\">\n", | |
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;\" d=\"M 0.128906 175.371094 L 215.425781 175.371094 L 215.425781 -0.65625 L 0.128906 -0.65625 Z M 0.128906 175.371094 \"/>\n", | |
"</g>\n", | |
"<path style=\"fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(50%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M -11.22101 -13.451897 L -11.22101 -9.198215 M 15.142431 -13.451897 L 15.142431 -9.198215 M 41.501959 -13.451897 L 41.501959 -9.198215 M 67.861487 -13.451897 L 67.861487 -9.198215 M 94.224928 -13.451897 L 94.224928 -9.198215 M 120.584455 -13.451897 L 120.584455 -9.198215 M 146.943983 -13.451897 L 146.943983 -9.198215 M 173.307424 -13.451897 L 173.307424 -9.198215 M -11.22101 147.945425 L -11.22101 143.695656 M 15.142431 147.945425 L 15.142431 143.695656 M 41.501959 147.945425 L 41.501959 143.695656 M 67.861487 147.945425 L 67.861487 143.695656 M 94.224928 147.945425 L 94.224928 143.695656 M 120.584455 147.945425 L 120.584455 143.695656 M 146.943983 147.945425 L 146.943983 143.695656 M 173.307424 147.945425 L 173.307424 143.695656 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(50%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M -16.190814 23.958596 L -11.937131 23.958596 M -16.190814 77.432906 L -11.937131 77.432906 M -16.190814 130.911128 L -11.937131 130.911128 M 178.081567 23.958596 L 173.831797 23.958596 M 178.081567 77.432906 L 173.831797 77.432906 M 178.081567 130.911128 L 173.831797 130.911128 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M -16.190814 -13.451897 L -16.190814 147.945425 L 178.081567 147.945425 L 178.081567 -13.451897 Z M -16.190814 -13.451897 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407020-0-1\" x=\"14.405275\" y=\"171.228966\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407020-1-1\" x=\"22.139452\" y=\"171.228966\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407020-2-1\" x=\"27.112564\" y=\"171.228966\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407020-1-2\" x=\"29.874627\" y=\"171.228966\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407020-0-1\" x=\"44.586334\" y=\"171.228966\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407020-1-1\" x=\"52.32051\" y=\"171.228966\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407020-0-1\" x=\"67.032216\" y=\"171.228966\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407020-1-3\" x=\"74.767392\" y=\"171.228966\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407020-2-1\" x=\"79.739505\" y=\"171.228966\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407020-1-2\" x=\"82.501568\" y=\"171.228966\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407020-1-3\" x=\"101.080363\" y=\"171.228966\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407020-1-3\" x=\"123.527244\" y=\"171.228966\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407020-2-1\" x=\"128.499357\" y=\"171.228966\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407020-1-2\" x=\"131.261421\" y=\"171.228966\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407020-1-1\" x=\"153.708302\" y=\"171.228966\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407020-1-1\" x=\"176.154185\" y=\"171.228966\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407020-2-1\" x=\"181.126298\" y=\"171.228966\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407020-1-2\" x=\"183.88936\" y=\"171.228966\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407020-1-4\" x=\"206.335243\" y=\"171.228966\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407020-0-1\" x=\"3.444865\" y=\"126.756451\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407020-1-1\" x=\"11.179042\" y=\"126.756451\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407020-1-3\" x=\"11.179042\" y=\"73.790116\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407020-1-1\" x=\"11.179042\" y=\"20.408524\"/>\n", | |
"</g>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.383922 58.406774 C 91.383922 59.506392 90.491705 60.398609 89.392087 60.398609 C 88.288555 60.398609 87.396339 59.506392 87.396339 58.406774 C 87.396339 57.307156 88.288555 56.414939 89.392087 56.414939 C 90.491705 56.414939 91.383922 57.307156 91.383922 58.406774 Z M 91.383922 58.406774 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.761718 60.699928 C 90.761718 61.799546 89.869501 62.691762 88.76597 62.691762 C 87.666352 62.691762 86.774135 61.799546 86.774135 60.699928 C 86.774135 59.600309 87.666352 58.708093 88.76597 58.708093 C 89.869501 58.708093 90.761718 59.600309 90.761718 60.699928 Z M 90.761718 60.699928 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 47.587034 44.307401 C 47.587034 45.407019 46.694817 46.299235 45.591286 46.299235 C 44.491668 46.299235 43.599451 45.407019 43.599451 44.307401 C 43.599451 43.207782 44.491668 42.315566 45.591286 42.315566 C 46.694817 42.315566 47.587034 43.207782 47.587034 44.307401 Z M 47.587034 44.307401 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.767757 62.0226 C 89.767757 63.122218 88.87554 64.014435 87.775922 64.014435 C 86.676304 64.014435 85.784087 63.122218 85.784087 62.0226 C 85.784087 60.922982 86.676304 60.030765 87.775922 60.030765 C 88.87554 60.030765 89.767757 60.922982 89.767757 62.0226 Z M 89.767757 62.0226 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.43978 44.945257 C 50.43978 46.048789 49.547563 46.941005 48.444032 46.941005 C 47.344414 46.941005 46.452197 46.048789 46.452197 44.945257 C 46.452197 43.845639 47.344414 42.953422 48.444032 42.953422 C 49.547563 42.953422 50.43978 43.845639 50.43978 44.945257 Z M 50.43978 44.945257 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.404222 46.956658 C 52.404222 48.056276 51.512005 48.948493 50.408474 48.948493 C 49.308856 48.948493 48.416639 48.056276 48.416639 46.956658 C 48.416639 45.85704 49.308856 44.964823 50.408474 44.964823 C 51.512005 44.964823 52.404222 45.85704 52.404222 46.956658 Z M 52.404222 46.956658 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.910082 61.975641 C 92.910082 63.075259 92.021778 63.967476 90.918247 63.967476 C 89.818629 63.967476 88.926412 63.075259 88.926412 61.975641 C 88.926412 60.876023 89.818629 59.983806 90.918247 59.983806 C 92.021778 59.983806 92.910082 60.876023 92.910082 61.975641 Z M 92.910082 61.975641 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.426628 62.351311 C 93.426628 63.450929 92.534412 64.343146 91.43088 64.343146 C 90.331262 64.343146 89.439045 63.450929 89.439045 62.351311 C 89.439045 61.251693 90.331262 60.359476 91.43088 60.359476 C 92.534412 60.359476 93.426628 61.251693 93.426628 62.351311 Z M 93.426628 62.351311 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.573883 58.712006 C 90.573883 59.815537 89.681666 60.707754 88.582048 60.707754 C 87.478516 60.707754 86.5863 59.815537 86.5863 58.712006 C 86.5863 57.612388 87.478516 56.720171 88.582048 56.720171 C 89.681666 56.720171 90.573883 57.612388 90.573883 58.712006 Z M 90.573883 58.712006 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.540789 60.962114 C 89.540789 62.065645 88.648573 62.957862 87.548955 62.957862 C 86.445423 62.957862 85.553207 62.065645 85.553207 60.962114 C 85.553207 59.862496 86.445423 58.970279 87.548955 58.970279 C 88.648573 58.970279 89.540789 59.862496 89.540789 60.962114 Z M 89.540789 60.962114 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.804763 57.898054 C 90.804763 58.997672 89.912546 59.889889 88.812928 59.889889 C 87.71331 59.889889 86.821094 58.997672 86.821094 57.898054 C 86.821094 56.798436 87.71331 55.906219 88.812928 55.906219 C 89.912546 55.906219 90.804763 56.798436 90.804763 57.898054 Z M 90.804763 57.898054 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 47.043095 44.002168 C 47.043095 45.101787 46.150878 45.994003 45.05126 45.994003 C 43.951642 45.994003 43.059425 45.101787 43.059425 44.002168 C 43.059425 42.90255 43.951642 42.010334 45.05126 42.010334 C 46.150878 42.010334 47.043095 42.90255 47.043095 44.002168 Z M 47.043095 44.002168 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.056997 61.572578 C 92.056997 62.676109 91.164781 63.568326 90.065163 63.568326 C 88.961631 63.568326 88.069414 62.676109 88.069414 61.572578 C 88.069414 60.47296 88.961631 59.580743 90.065163 59.580743 C 91.164781 59.580743 92.056997 60.47296 92.056997 61.572578 Z M 92.056997 61.572578 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.823276 48.251938 C 50.823276 49.351556 49.93106 50.243773 48.827528 50.243773 C 47.72791 50.243773 46.835693 49.351556 46.835693 48.251938 C 46.835693 47.15232 47.72791 46.260103 48.827528 46.260103 C 49.93106 46.260103 50.823276 47.15232 50.823276 48.251938 Z M 50.823276 48.251938 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.387835 59.17768 C 91.387835 60.281212 90.495618 61.173429 89.396 61.173429 C 88.292469 61.173429 87.400252 60.281212 87.400252 59.17768 C 87.400252 58.078062 88.292469 57.185846 89.396 57.185846 C 90.495618 57.185846 91.387835 58.078062 91.387835 59.17768 Z M 91.387835 59.17768 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.593449 58.614175 C 90.593449 59.717706 89.701232 60.609923 88.601614 60.609923 C 87.501996 60.609923 86.609779 59.717706 86.609779 58.614175 C 86.609779 57.514557 87.501996 56.62234 88.601614 56.62234 C 89.701232 56.62234 90.593449 57.514557 90.593449 58.614175 Z M 90.593449 58.614175 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.344789 60.300778 C 91.344789 61.400396 90.452572 62.292613 89.352954 62.292613 C 88.249423 62.292613 87.357206 61.400396 87.357206 60.300778 C 87.357206 59.20116 88.249423 58.308943 89.352954 58.308943 C 90.452572 58.308943 91.344789 59.20116 91.344789 60.300778 Z M 91.344789 60.300778 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.363678 58.661134 C 95.363678 59.760752 94.471461 60.652969 93.371843 60.652969 C 92.272225 60.652969 91.380008 59.760752 91.380008 58.661134 C 91.380008 57.557603 92.272225 56.665386 93.371843 56.665386 C 94.471461 56.665386 95.363678 57.557603 95.363678 58.661134 Z M 95.363678 58.661134 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.697319 60.382956 C 89.697319 61.482574 88.805102 62.374791 87.705484 62.374791 C 86.605866 62.374791 85.713649 61.482574 85.713649 60.382956 C 85.713649 59.283338 86.605866 58.391121 87.705484 58.391121 C 88.805102 58.391121 89.697319 59.283338 89.697319 60.382956 Z M 89.697319 60.382956 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.740026 60.480787 C 91.740026 61.580405 90.847809 62.472621 89.748191 62.472621 C 88.644659 62.472621 87.752443 61.580405 87.752443 60.480787 C 87.752443 59.377255 88.644659 58.485038 89.748191 58.485038 C 90.847809 58.485038 91.740026 59.377255 91.740026 60.480787 Z M 91.740026 60.480787 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.569969 62.116517 C 90.569969 63.216135 89.677753 64.108352 88.578135 64.108352 C 87.478516 64.108352 86.5863 63.216135 86.5863 62.116517 C 86.5863 61.012986 87.478516 60.120769 88.578135 60.120769 C 89.677753 60.120769 90.569969 61.012986 90.569969 62.116517 Z M 90.569969 62.116517 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.493492 62.836552 C 91.493492 63.93617 90.601275 64.828387 89.501657 64.828387 C 88.398126 64.828387 87.509822 63.93617 87.509822 62.836552 C 87.509822 61.736934 88.398126 60.844717 89.501657 60.844717 C 90.601275 60.844717 91.493492 61.736934 91.493492 62.836552 Z M 91.493492 62.836552 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 44.78516 44.041301 C 44.78516 45.140919 43.892943 46.033136 42.793325 46.033136 C 41.693707 46.033136 40.80149 45.140919 40.80149 44.041301 C 40.80149 42.941683 41.693707 42.049466 42.793325 42.049466 C 43.892943 42.049466 44.78516 42.941683 44.78516 44.041301 Z M 44.78516 44.041301 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.299956 60.652969 C 90.299956 61.752587 89.40774 62.644804 88.304208 62.644804 C 87.20459 62.644804 86.312373 61.752587 86.312373 60.652969 C 86.312373 59.553351 87.20459 58.661134 88.304208 58.661134 C 89.40774 58.661134 90.299956 59.553351 90.299956 60.652969 Z M 90.299956 60.652969 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.179719 49.492432 C 49.179719 50.595964 48.287502 51.48818 47.187884 51.48818 C 46.084353 51.48818 45.192136 50.595964 45.192136 49.492432 C 45.192136 48.392814 46.084353 47.500597 47.187884 47.500597 C 48.287502 47.500597 49.179719 48.392814 49.179719 49.492432 Z M 49.179719 49.492432 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 47.927485 43.998255 C 47.927485 45.097873 47.035268 45.99009 45.93565 45.99009 C 44.836032 45.99009 43.943815 45.097873 43.943815 43.998255 C 43.943815 42.898637 44.836032 42.00642 45.93565 42.00642 C 47.035268 42.00642 47.927485 42.898637 47.927485 43.998255 Z M 47.927485 43.998255 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.612676 61.153862 C 92.612676 62.25348 91.720459 63.145697 90.620841 63.145697 C 89.521223 63.145697 88.629007 62.25348 88.629007 61.153862 C 88.629007 60.050331 89.521223 59.158114 90.620841 59.158114 C 91.720459 59.158114 92.612676 60.050331 92.612676 61.153862 Z M 92.612676 61.153862 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 46.287841 43.990429 C 46.287841 45.090047 45.395624 45.982264 44.296006 45.982264 C 43.192475 45.982264 42.300258 45.090047 42.300258 43.990429 C 42.300258 42.886897 43.192475 41.994681 44.296006 41.994681 C 45.395624 41.994681 46.287841 42.886897 46.287841 43.990429 Z M 46.287841 43.990429 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.871288 61.654756 C 90.871288 62.754374 89.979071 63.646591 88.879453 63.646591 C 87.775922 63.646591 86.883705 62.754374 86.883705 61.654756 C 86.883705 60.555138 87.775922 59.662921 88.879453 59.662921 C 89.979071 59.662921 90.871288 60.555138 90.871288 61.654756 Z M 90.871288 61.654756 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.939939 60.343823 C 89.939939 61.443442 89.047722 62.335658 87.944191 62.335658 C 86.844573 62.335658 85.952356 61.443442 85.952356 60.343823 C 85.952356 59.244205 86.844573 58.351989 87.944191 58.351989 C 89.047722 58.351989 89.939939 59.244205 89.939939 60.343823 Z M 89.939939 60.343823 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.068737 57.377594 C 92.068737 58.477212 91.17652 59.369429 90.076902 59.369429 C 88.973371 59.369429 88.081154 58.477212 88.081154 57.377594 C 88.081154 56.274063 88.973371 55.381846 90.076902 55.381846 C 91.17652 55.381846 92.068737 56.274063 92.068737 57.377594 Z M 92.068737 57.377594 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 47.755303 51.452961 C 47.755303 52.556493 46.863086 53.444796 45.763468 53.444796 C 44.66385 53.444796 43.771633 52.556493 43.771633 51.452961 C 43.771633 50.353343 44.66385 49.461126 45.763468 49.461126 C 46.863086 49.461126 47.755303 50.353343 47.755303 51.452961 Z M 47.755303 51.452961 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.331262 60.59427 C 90.331262 61.693888 89.439045 62.586105 88.339427 62.586105 C 87.239809 62.586105 86.347593 61.693888 86.347593 60.59427 C 86.347593 59.494652 87.239809 58.602435 88.339427 58.602435 C 89.439045 58.602435 90.331262 59.494652 90.331262 60.59427 Z M 90.331262 60.59427 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 46.816127 44.323053 C 46.816127 45.422672 45.92391 46.314888 44.820379 46.314888 C 43.720761 46.314888 42.828544 45.422672 42.828544 44.323053 C 42.828544 43.223435 43.720761 42.331219 44.820379 42.331219 C 45.92391 42.331219 46.816127 43.223435 46.816127 44.323053 Z M 46.816127 44.323053 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.188599 61.419962 C 89.188599 62.523493 88.296382 63.41571 87.192851 63.41571 C 86.093232 63.41571 85.201016 62.523493 85.201016 61.419962 C 85.201016 60.320344 86.093232 59.428127 87.192851 59.428127 C 88.296382 59.428127 89.188599 60.320344 89.188599 61.419962 Z M 89.188599 61.419962 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.534073 59.811624 C 94.534073 60.915155 93.641856 61.807372 92.542238 61.807372 C 91.44262 61.807372 90.550403 60.915155 90.550403 59.811624 C 90.550403 58.712006 91.44262 57.819789 92.542238 57.819789 C 93.641856 57.819789 94.534073 58.712006 94.534073 59.811624 Z M 94.534073 59.811624 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.868448 49.742879 C 49.868448 50.842497 48.976231 51.734714 47.876613 51.734714 C 46.776995 51.734714 45.884778 50.842497 45.884778 49.742879 C 45.884778 48.643261 46.776995 47.751044 47.876613 47.751044 C 48.976231 47.751044 49.868448 48.643261 49.868448 49.742879 Z M 49.868448 49.742879 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 47.845307 44.029561 C 47.845307 45.133092 46.95309 46.025309 45.853472 46.025309 C 44.753854 46.025309 43.861637 45.133092 43.861637 44.029561 C 43.861637 42.929943 44.753854 42.037726 45.853472 42.037726 C 46.95309 42.037726 47.845307 42.929943 47.845307 44.029561 Z M 47.845307 44.029561 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.366143 57.127147 C 92.366143 58.226765 91.473926 59.118982 90.374308 59.118982 C 89.27469 59.118982 88.382473 58.226765 88.382473 57.127147 C 88.382473 56.027529 89.27469 55.135312 90.374308 55.135312 C 91.473926 55.135312 92.366143 56.027529 92.366143 57.127147 Z M 92.366143 57.127147 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.297492 61.88955 C 93.297492 62.989168 92.405275 63.881385 91.305657 63.881385 C 90.206039 63.881385 89.313822 62.989168 89.313822 61.88955 C 89.313822 60.789932 90.206039 59.897715 91.305657 59.897715 C 92.405275 59.897715 93.297492 60.789932 93.297492 61.88955 Z M 93.297492 61.88955 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 47.414852 44.487409 C 47.414852 45.587027 46.522635 46.479244 45.423017 46.479244 C 44.319486 46.479244 43.427269 45.587027 43.427269 44.487409 C 43.427269 43.387791 44.319486 42.495574 45.423017 42.495574 C 46.522635 42.495574 47.414852 43.387791 47.414852 44.487409 Z M 47.414852 44.487409 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.762489 58.461559 C 97.762489 59.561177 96.870272 60.453394 95.770654 60.453394 C 94.671036 60.453394 93.778819 59.561177 93.778819 58.461559 C 93.778819 57.361941 94.671036 56.469724 95.770654 56.469724 C 96.870272 56.469724 97.762489 57.361941 97.762489 58.461559 Z M 97.762489 58.461559 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.929648 57.428466 C 92.929648 58.531997 92.041344 59.424214 90.937813 59.424214 C 89.838195 59.424214 88.945978 58.531997 88.945978 57.428466 C 88.945978 56.328848 89.838195 55.436631 90.937813 55.436631 C 92.041344 55.436631 92.929648 56.328848 92.929648 57.428466 Z M 92.929648 57.428466 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.148789 59.45552 C 93.148789 60.555138 92.256572 61.447355 91.156954 61.447355 C 90.057336 61.447355 89.165119 60.555138 89.165119 59.45552 C 89.165119 58.355902 90.057336 57.463685 91.156954 57.463685 C 92.256572 57.463685 93.148789 58.355902 93.148789 59.45552 Z M 93.148789 59.45552 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.244832 57.901967 C 92.244832 59.001585 91.352616 59.893802 90.252998 59.893802 C 89.15338 59.893802 88.261163 59.001585 88.261163 57.901967 C 88.261163 56.802349 89.15338 55.910132 90.252998 55.910132 C 91.352616 55.910132 92.244832 56.802349 92.244832 57.901967 Z M 92.244832 57.901967 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 46.240882 43.806507 C 46.240882 44.906125 45.348665 45.798342 44.249047 45.798342 C 43.149429 45.798342 42.257213 44.906125 42.257213 43.806507 C 42.257213 42.702976 43.149429 41.814672 44.249047 41.814672 C 45.348665 41.814672 46.240882 42.702976 46.240882 43.806507 Z M 46.240882 43.806507 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.071936 48.173673 C 50.071936 49.277205 49.179719 50.169421 48.076188 50.169421 C 46.97657 50.169421 46.084353 49.277205 46.084353 48.173673 C 46.084353 47.074055 46.97657 46.181838 48.076188 46.181838 C 49.179719 46.181838 50.071936 47.074055 50.071936 48.173673 Z M 50.071936 48.173673 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 48.091841 51.406003 C 48.091841 52.505621 47.199624 53.397837 46.100006 53.397837 C 45.000388 53.397837 44.108171 52.505621 44.108171 51.406003 C 44.108171 50.302471 45.000388 49.410254 46.100006 49.410254 C 47.199624 49.410254 48.091841 50.302471 48.091841 51.406003 Z M 48.091841 51.406003 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.568916 44.475669 C 50.568916 45.575288 49.6767 46.467504 48.577081 46.467504 C 47.477463 46.467504 46.585247 45.575288 46.585247 44.475669 C 46.585247 43.376051 47.477463 42.483835 48.577081 42.483835 C 49.6767 42.483835 50.568916 43.376051 50.568916 44.475669 Z M 50.568916 44.475669 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 48.467511 50.564658 C 48.467511 51.668189 47.575294 52.560406 46.471763 52.560406 C 45.372145 52.560406 44.479928 51.668189 44.479928 50.564658 C 44.479928 49.46504 45.372145 48.572823 46.471763 48.572823 C 47.575294 48.572823 48.467511 49.46504 48.467511 50.564658 Z M 48.467511 50.564658 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.882689 59.44378 C 92.882689 60.543398 91.990472 61.435615 90.886941 61.435615 C 89.787323 61.435615 88.895106 60.543398 88.895106 59.44378 C 88.895106 58.344162 89.787323 57.451945 90.886941 57.451945 C 91.990472 57.451945 92.882689 58.344162 92.882689 59.44378 Z M 92.882689 59.44378 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.802637 59.694227 C 91.802637 60.793845 90.910421 61.686062 89.810802 61.686062 C 88.711184 61.686062 87.818968 60.793845 87.818968 59.694227 C 87.818968 58.594609 88.711184 57.702392 89.810802 57.702392 C 90.910421 57.702392 91.802637 58.594609 91.802637 59.694227 Z M 91.802637 59.694227 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.283965 58.911581 C 92.283965 60.011199 91.391748 60.903416 90.29213 60.903416 C 89.192512 60.903416 88.300295 60.011199 88.300295 58.911581 C 88.300295 57.811963 89.192512 56.919746 90.29213 56.919746 C 91.391748 56.919746 92.283965 57.811963 92.283965 58.911581 Z M 92.283965 58.911581 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.538325 58.676787 C 92.538325 59.776405 91.646108 60.668622 90.54649 60.668622 C 89.442959 60.668622 88.550742 59.776405 88.550742 58.676787 C 88.550742 57.577169 89.442959 56.684952 90.54649 56.684952 C 91.646108 56.684952 92.538325 57.577169 92.538325 58.676787 Z M 92.538325 58.676787 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.17652 60.555138 C 91.17652 61.654756 90.284303 62.546973 89.180772 62.546973 C 88.081154 62.546973 87.188937 61.654756 87.188937 60.555138 C 87.188937 59.451607 88.081154 58.55939 89.180772 58.55939 C 90.284303 58.55939 91.17652 59.451607 91.17652 60.555138 Z M 91.17652 60.555138 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.382134 61.795632 C 90.382134 62.899164 89.489917 63.79138 88.386386 63.79138 C 87.286768 63.79138 86.394551 62.899164 86.394551 61.795632 C 86.394551 60.696014 87.286768 59.803798 88.386386 59.803798 C 89.489917 59.803798 90.382134 60.696014 90.382134 61.795632 Z M 90.382134 61.795632 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.484988 59.545524 C 95.484988 60.645142 94.592771 61.537359 93.493153 61.537359 C 92.393535 61.537359 91.501318 60.645142 91.501318 59.545524 C 91.501318 58.445906 92.393535 57.553689 93.493153 57.553689 C 94.592771 57.553689 95.484988 58.445906 95.484988 59.545524 Z M 95.484988 59.545524 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 48.475337 43.18039 C 48.475337 44.280008 47.583121 45.172225 46.483503 45.172225 C 45.383885 45.172225 44.491668 44.280008 44.491668 43.18039 C 44.491668 42.080772 45.383885 41.188555 46.483503 41.188555 C 47.583121 41.188555 48.475337 42.080772 48.475337 43.18039 Z M 48.475337 43.18039 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.219566 60.656882 C 91.219566 61.760413 90.327349 62.65263 89.227731 62.65263 C 88.128113 62.65263 87.235896 61.760413 87.235896 60.656882 C 87.235896 59.557264 88.128113 58.665047 89.227731 58.665047 C 90.327349 58.665047 91.219566 59.557264 91.219566 60.656882 Z M 91.219566 60.656882 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.751051 49.136328 C 49.751051 50.235946 48.858834 51.128163 47.759216 51.128163 C 46.655685 51.128163 45.763468 50.235946 45.763468 49.136328 C 45.763468 48.032797 46.655685 47.14058 47.759216 47.14058 C 48.858834 47.14058 49.751051 48.032797 49.751051 49.136328 Z M 49.751051 49.136328 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.758576 60.312518 C 97.758576 61.412136 96.866359 62.304352 95.766741 62.304352 C 94.667123 62.304352 93.774906 61.412136 93.774906 60.312518 C 93.774906 59.2129 94.667123 58.320683 95.766741 58.320683 C 96.866359 58.320683 97.758576 59.2129 97.758576 60.312518 Z M 97.758576 60.312518 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 48.170105 62.042166 C 48.170105 63.141784 47.277889 64.034001 46.178271 64.034001 C 45.078652 64.034001 44.186436 63.141784 44.186436 62.042166 C 44.186436 60.942548 45.078652 60.050331 46.178271 60.050331 C 47.277889 60.050331 48.170105 60.942548 48.170105 62.042166 Z M 48.170105 62.042166 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 45.000388 38.464946 L 48.984058 38.464946 L 48.984058 42.448616 L 45.000388 42.448616 Z M 45.000388 38.464946 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.921107 50.822931 L 54.904777 50.822931 L 54.904777 54.806601 L 50.921107 54.806601 Z M 50.921107 50.822931 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 55.624812 52.270827 L 59.608481 52.270827 L 59.608481 56.254496 L 55.624812 56.254496 Z M 55.624812 52.270827 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 100.638714 64.984916 L 104.622384 64.984916 L 104.622384 68.968586 L 100.638714 68.968586 Z M 100.638714 64.984916 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 51.793758 51.992987 L 55.781341 51.992987 L 55.781341 55.98057 L 51.793758 55.98057 Z M 51.793758 51.992987 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 58.144933 50.517699 L 62.132516 50.517699 L 62.132516 54.501369 L 58.144933 54.501369 Z M 58.144933 50.517699 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 73.76264 91.058778 L 77.750223 91.058778 L 77.750223 95.046361 L 73.76264 95.046361 Z M 73.76264 91.058778 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 69.023716 53.789161 L 73.011299 53.789161 L 73.011299 57.776744 L 69.023716 57.776744 Z M 69.023716 53.789161 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 42.296345 38.985406 L 46.280015 38.985406 L 46.280015 42.969075 L 42.296345 42.969075 Z M 42.296345 38.985406 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 56.250929 49.234159 L 60.234598 49.234159 L 60.234598 53.217829 L 56.250929 53.217829 Z M 56.250929 49.234159 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 44.491668 38.4219 L 48.475337 38.4219 L 48.475337 42.409483 L 44.491668 42.409483 Z M 44.491668 38.4219 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 72.7452 85.404158 L 76.732783 85.404158 L 76.732783 89.387828 L 72.7452 89.387828 Z M 72.7452 85.404158 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 72.365616 85.666345 L 76.349286 85.666345 L 76.349286 89.653928 L 72.365616 89.653928 Z M 72.365616 85.666345 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 43.62293 38.83279 L 47.6066 38.83279 L 47.6066 42.820373 L 43.62293 42.820373 Z M 43.62293 38.83279 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 69.970718 84.734996 L 73.958301 84.734996 L 73.958301 88.722579 L 69.970718 88.722579 Z M 69.970718 84.734996 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.856708 56.661473 L 53.840378 56.661473 L 53.840378 60.649056 L 49.856708 60.649056 Z M 49.856708 56.661473 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 44.671676 39.094976 L 48.659259 39.094976 L 48.659259 43.082559 L 44.671676 43.082559 Z M 44.671676 39.094976 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 53.061645 57.847182 L 57.045315 57.847182 L 57.045315 61.830851 L 53.061645 61.830851 Z M 53.061645 57.847182 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 69.853321 86.233763 L 73.836991 86.233763 L 73.836991 90.221346 L 69.853321 90.221346 Z M 69.853321 86.233763 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.490313 51.891243 L 56.477896 51.891243 L 56.477896 55.878826 L 52.490313 55.878826 Z M 52.490313 51.891243 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 51.609836 60.077724 L 55.593506 60.077724 L 55.593506 64.061393 L 51.609836 64.061393 Z M 51.609836 60.077724 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 100.654367 65.258842 L 104.64195 65.258842 L 104.64195 69.246425 L 100.654367 69.246425 Z M 100.654367 65.258842 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.185081 59.713793 L 56.168751 59.713793 L 56.168751 63.697463 L 52.185081 63.697463 Z M 52.185081 59.713793 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 45.30562 39.486299 L 49.28929 39.486299 L 49.28929 43.473882 L 45.30562 43.473882 Z M 45.30562 39.486299 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.514131 50.341604 L 54.501714 50.341604 L 54.501714 54.329187 L 50.514131 54.329187 Z M 50.514131 50.341604 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 45.696943 39.091063 L 49.684526 39.091063 L 49.684526 43.078646 L 45.696943 43.078646 Z M 45.696943 39.091063 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 68.38586 51.382523 L 72.369529 51.382523 L 72.369529 55.370106 L 68.38586 55.370106 Z M 68.38586 51.382523 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.531947 48.271504 L 99.515617 48.271504 L 99.515617 52.255174 L 95.531947 52.255174 Z M 95.531947 48.271504 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.26581 59.248119 L 53.24948 59.248119 L 53.24948 63.231788 L 49.26581 63.231788 Z M 49.26581 59.248119 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 53.586018 54.3331 L 57.573601 54.3331 L 57.573601 58.31677 L 53.586018 58.31677 Z M 53.586018 54.3331 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 46.033481 61.165602 L 50.017151 61.165602 L 50.017151 65.149272 L 46.033481 65.149272 Z M 46.033481 61.165602 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.278999 56.332761 L 56.262668 56.332761 L 56.262668 60.316431 L 52.278999 60.316431 Z M 52.278999 56.332761 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.588144 50.705534 L 56.571814 50.705534 L 56.571814 54.689204 L 52.588144 54.689204 Z M 52.588144 50.705534 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.05632 48.248025 L 100.043903 48.248025 L 100.043903 52.235608 L 96.05632 52.235608 Z M 96.05632 48.248025 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 73.543499 89.168687 L 77.527169 89.168687 L 77.527169 93.15627 L 73.543499 93.15627 Z M 73.543499 89.168687 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 72.056471 83.623638 L 76.044054 83.623638 L 76.044054 87.607308 L 72.056471 87.607308 Z M 72.056471 83.623638 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 53.014686 57.725872 L 56.998356 57.725872 L 56.998356 61.709541 L 53.014686 61.709541 Z M 53.014686 57.725872 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 100.540883 63.466582 L 104.528466 63.466582 L 104.528466 67.450252 L 100.540883 67.450252 Z M 100.540883 63.466582 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.357263 52.975208 L 56.340933 52.975208 L 56.340933 56.962791 L 52.357263 56.962791 Z M 52.357263 52.975208 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 71.414701 84.414111 L 75.402284 84.414111 L 75.402284 88.397781 L 71.414701 88.397781 Z M 71.414701 84.414111 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 68.804575 53.70307 L 72.792158 53.70307 L 72.792158 57.690652 L 68.804575 57.690652 Z M 68.804575 53.70307 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 46.784821 37.502291 L 50.768491 37.502291 L 50.768491 41.489874 L 46.784821 41.489874 Z M 46.784821 37.502291 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 53.476447 51.74254 L 57.460117 51.74254 L 57.460117 55.730123 L 53.476447 55.730123 Z M 53.476447 51.74254 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 48.264023 36.535723 L 52.247693 36.535723 L 52.247693 40.523306 L 48.264023 40.523306 Z M 48.264023 36.535723 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.020725 58.903754 L 56.004395 58.903754 L 56.004395 62.887424 L 52.020725 62.887424 Z M 52.020725 58.903754 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.719745 51.656449 L 53.707328 51.656449 L 53.707328 55.644032 L 49.719745 55.644032 Z M 49.719745 51.656449 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 44.597325 39.19672 L 48.584908 39.19672 L 48.584908 43.184303 L 44.597325 43.184303 Z M 44.597325 39.19672 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 45.829993 38.789744 L 49.813663 38.789744 L 49.813663 42.773414 L 45.829993 42.773414 Z M 45.829993 38.789744 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 69.720272 85.552861 L 73.703941 85.552861 L 73.703941 89.540444 L 69.720272 89.540444 Z M 69.720272 85.552861 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 70.15464 53.43697 L 74.13831 53.43697 L 74.13831 57.420639 L 70.15464 57.420639 Z M 70.15464 53.43697 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 43.716848 39.873709 L 47.700518 39.873709 L 47.700518 43.857379 L 43.716848 43.857379 Z M 43.716848 39.873709 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 56.395718 52.356918 L 60.379388 52.356918 L 60.379388 56.344501 L 56.395718 56.344501 Z M 56.395718 52.356918 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 70.138987 85.435464 L 74.122657 85.435464 L 74.122657 89.423047 L 70.138987 89.423047 Z M 70.138987 85.435464 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 44.886904 38.492338 L 48.874487 38.492338 L 48.874487 42.476008 L 44.886904 42.476008 Z M 44.886904 38.492338 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.330209 61.290826 L 54.313879 61.290826 L 54.313879 65.278408 L 50.330209 65.278408 Z M 50.330209 61.290826 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 69.575482 50.948154 L 73.559152 50.948154 L 73.559152 54.935737 L 69.575482 54.935737 Z M 69.575482 50.948154 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 54.767814 53.249135 L 58.751484 53.249135 L 58.751484 57.232804 L 54.767814 57.232804 Z M 54.767814 53.249135 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 57.495336 51.660363 L 61.482919 51.660363 L 61.482919 55.647946 L 57.495336 55.647946 Z M 57.495336 51.660363 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 74.232228 83.471022 L 78.219811 83.471022 L 78.219811 87.454692 L 74.232228 87.454692 Z M 74.232228 83.471022 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 51.320257 50.572484 L 55.303927 50.572484 L 55.303927 54.560067 L 51.320257 54.560067 Z M 51.320257 50.572484 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 54.971302 53.95743 L 58.954972 53.95743 L 58.954972 57.941099 L 54.971302 57.941099 Z M 54.971302 53.95743 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 70.377695 51.656449 L 74.361364 51.656449 L 74.361364 55.640119 L 70.377695 55.640119 Z M 70.377695 51.656449 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 55.722642 53.272614 L 59.710225 53.272614 L 59.710225 57.256284 L 55.722642 57.256284 Z M 55.722642 53.272614 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 54.924343 53.55828 L 58.911926 53.55828 L 58.911926 57.545863 L 54.924343 57.545863 Z M 54.924343 53.55828 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 56.063093 51.593838 L 60.050676 51.593838 L 60.050676 55.577507 L 56.063093 55.577507 Z M 56.063093 51.593838 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 51.386782 60.774279 L 55.370451 60.774279 L 55.370451 64.757949 L 51.386782 64.757949 Z M 51.386782 60.774279 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 51.030678 55.510982 L 55.018261 55.510982 L 55.018261 59.498565 L 51.030678 59.498565 Z M 51.030678 55.510982 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 56.947484 49.421994 L 60.935067 49.421994 L 60.935067 53.409577 L 56.947484 53.409577 Z M 56.947484 49.421994 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.987632 60.703841 L 54.971302 60.703841 L 54.971302 64.687511 L 50.987632 64.687511 Z M 50.987632 60.703841 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.704092 51.460788 L 53.691675 51.460788 L 53.691675 55.448371 L 49.704092 55.448371 Z M 49.704092 51.460788 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 71.852983 84.288887 L 75.836653 84.288887 L 75.836653 88.27647 L 71.852983 88.27647 Z M 71.852983 84.288887 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 67.939751 131.897263 C 67.939751 132.996881 67.047534 133.889097 65.947916 133.889097 C 64.848298 133.889097 63.956082 132.996881 63.956082 131.897263 C 63.956082 130.797644 64.848298 129.905428 65.947916 129.905428 C 67.047534 129.905428 67.939751 130.797644 67.939751 131.897263 Z M 64.539153 130.488499 L 67.35668 133.306026 M 64.539153 133.306026 L 67.35668 130.488499 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.105274 7.464325 C 38.105274 8.563943 37.213057 9.45616 36.113439 9.45616 C 35.013821 9.45616 34.121604 8.563943 34.121604 7.464325 C 34.121604 6.360794 35.013821 5.468577 36.113439 5.468577 C 37.213057 5.468577 38.105274 6.360794 38.105274 7.464325 Z M 34.704676 6.055562 L 37.522202 8.873089 M 34.704676 8.873089 L 37.522202 6.055562 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.473456 7.773471 C 36.473456 8.873089 35.581239 9.765306 34.481621 9.765306 C 33.382003 9.765306 32.489787 8.873089 32.489787 7.773471 C 32.489787 6.673853 33.382003 5.781636 34.481621 5.781636 C 35.581239 5.781636 36.473456 6.673853 36.473456 7.773471 Z M 33.072858 6.364707 L 35.890385 9.182234 M 33.072858 9.182234 L 35.890385 6.364707 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.252545 88.624748 C 162.252545 89.724366 161.360328 90.616583 160.26071 90.616583 C 159.161092 90.616583 158.268875 89.724366 158.268875 88.624748 C 158.268875 87.52513 159.161092 86.632913 160.26071 86.632913 C 161.360328 86.632913 162.252545 87.52513 162.252545 88.624748 Z M 158.851947 87.215985 L 161.669474 90.033511 M 158.851947 90.033511 L 161.669474 87.215985 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.884363 97.691705 C 163.884363 98.791324 162.992146 99.68354 161.892528 99.68354 C 160.79291 99.68354 159.900693 98.791324 159.900693 97.691705 C 159.900693 96.588174 160.79291 95.695957 161.892528 95.695957 C 162.992146 95.695957 163.884363 96.588174 163.884363 97.691705 Z M 160.483764 96.282942 L 163.301291 99.100469 M 160.483764 99.100469 L 163.301291 96.282942 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 65.079179 131.478547 C 65.079179 132.578165 64.186962 133.470382 63.087344 133.470382 C 61.983813 133.470382 61.091596 132.578165 61.091596 131.478547 C 61.091596 130.375015 61.983813 129.482799 63.087344 129.482799 C 64.186962 129.482799 65.079179 130.375015 65.079179 131.478547 Z M 61.678581 130.069783 L 64.496107 132.88731 M 61.678581 132.88731 L 64.496107 130.069783 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 67.693218 133.90475 C 67.693218 135.004368 66.801001 135.896585 65.701383 135.896585 C 64.597852 135.896585 63.705635 135.004368 63.705635 133.90475 C 63.705635 132.801219 64.597852 131.912915 65.701383 131.912915 C 66.801001 131.912915 67.693218 132.801219 67.693218 133.90475 Z M 64.292619 132.495987 L 67.110146 135.313514 M 64.292619 135.313514 L 67.110146 132.495987 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.285376 0.0017928 C 49.285376 1.101411 48.39316 1.993628 47.289628 1.993628 C 46.19001 1.993628 45.297793 1.101411 45.297793 0.0017928 C 45.297793 -1.101738 46.19001 -1.993955 47.289628 -1.993955 C 48.39316 -1.993955 49.285376 -1.101738 49.285376 0.0017928 Z M 45.880865 -1.410884 L 48.698392 1.410556 M 45.880865 1.410556 L 48.698392 -1.410884 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.469543 8.751779 C 36.469543 9.851397 35.577326 10.743613 34.477708 10.743613 C 33.374177 10.743613 32.48196 9.851397 32.48196 8.751779 C 32.48196 7.648247 33.374177 6.75603 34.477708 6.75603 C 35.577326 6.75603 36.469543 7.648247 36.469543 8.751779 Z M 33.068945 7.343015 L 35.886472 10.160542 M 33.068945 10.160542 L 35.886472 7.343015 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.601708 132.570338 C 99.601708 133.669956 98.709491 134.562173 97.609873 134.562173 C 96.510255 134.562173 95.618038 133.669956 95.618038 132.570338 C 95.618038 131.466807 96.510255 130.57459 97.609873 130.57459 C 98.709491 130.57459 99.601708 131.466807 99.601708 132.570338 Z M 96.20111 131.161575 L 99.018636 133.979102 M 96.20111 133.979102 L 99.018636 131.161575 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 66.898832 132.069445 C 66.898832 133.169063 66.006615 134.06128 64.906997 134.06128 C 63.807379 134.06128 62.915162 133.169063 62.915162 132.069445 C 62.915162 130.969827 63.807379 130.07761 64.906997 130.07761 C 66.006615 130.07761 66.898832 130.969827 66.898832 132.069445 Z M 63.498233 130.660681 L 66.31576 133.478208 M 63.498233 133.478208 L 66.31576 130.660681 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.062923 98.908721 C 161.062923 100.008339 160.170706 100.900555 159.067175 100.900555 C 157.967557 100.900555 157.07534 100.008339 157.07534 98.908721 C 157.07534 97.809102 157.967557 96.916886 159.067175 96.916886 C 160.170706 96.916886 161.062923 97.809102 161.062923 98.908721 Z M 157.658411 97.499957 L 160.475938 100.317484 M 157.658411 100.317484 L 160.475938 97.499957 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 67.20015 134.331293 C 67.20015 135.434824 66.307934 136.327041 65.208316 136.327041 C 64.108698 136.327041 63.216481 135.434824 63.216481 134.331293 C 63.216481 133.231675 64.108698 132.339458 65.208316 132.339458 C 66.307934 132.339458 67.20015 133.231675 67.20015 134.331293 Z M 63.799552 132.922529 L 66.617079 135.743969 M 63.799552 135.743969 L 66.617079 132.922529 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.601161 97.280816 C 160.601161 98.380434 159.708945 99.272651 158.609327 99.272651 C 157.505795 99.272651 156.613578 98.380434 156.613578 97.280816 C 156.613578 96.177285 157.505795 95.288981 158.609327 95.288981 C 159.708945 95.288981 160.601161 96.177285 160.601161 97.280816 Z M 157.200563 95.872053 L 160.01809 98.68958 M 157.200563 98.68958 L 160.01809 95.872053 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 69.982458 133.486035 C 69.982458 134.585653 69.090241 135.477869 67.990623 135.477869 C 66.891005 135.477869 65.998788 134.585653 65.998788 133.486035 C 65.998788 132.386417 66.891005 131.4942 67.990623 131.4942 C 69.090241 131.4942 69.982458 132.386417 69.982458 133.486035 Z M 66.58186 132.077271 L 69.399387 134.894798 M 66.58186 134.894798 L 69.399387 132.077271 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 4.498441 101.186221 C 4.498441 102.289753 3.606224 103.181969 2.506606 103.181969 C 1.406988 103.181969 0.514771 102.289753 0.514771 101.186221 C 0.514771 100.086603 1.406988 99.194386 2.506606 99.194386 C 3.606224 99.194386 4.498441 100.086603 4.498441 101.186221 Z M 1.097843 99.777458 L 3.91537 102.594985 M 1.097843 102.594985 L 3.91537 99.777458 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 67.07884 132.675996 C 67.07884 133.779527 66.186624 134.671744 65.087005 134.671744 C 63.987387 134.671744 63.095171 133.779527 63.095171 132.675996 C 63.095171 131.576378 63.987387 130.684161 65.087005 130.684161 C 66.186624 130.684161 67.07884 131.576378 67.07884 132.675996 Z M 63.678242 131.267232 L 66.495769 134.088672 M 63.678242 134.088672 L 66.495769 131.267232 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.653465 7.448672 C 36.653465 8.548291 35.761248 9.440507 34.66163 9.440507 C 33.562012 9.440507 32.669795 8.548291 32.669795 7.448672 C 32.669795 6.345141 33.562012 5.452924 34.66163 5.452924 C 35.761248 5.452924 36.653465 6.345141 36.653465 7.448672 Z M 33.252867 6.039909 L 36.070393 8.857436 M 33.252867 8.857436 L 36.070393 6.039909 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 39.604042 62.190869 C 39.604042 63.290487 38.711825 64.182704 37.612207 64.182704 C 36.512589 64.182704 35.620372 63.290487 35.620372 62.190869 C 35.620372 61.091251 36.512589 60.199034 37.612207 60.199034 C 38.711825 60.199034 39.604042 61.091251 39.604042 62.190869 Z M 36.203443 60.782105 L 39.02097 63.599632 M 36.203443 63.599632 L 39.02097 60.782105 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.66556 97.472565 C 161.66556 98.572183 160.773344 99.464399 159.669812 99.464399 C 158.570194 99.464399 157.677977 98.572183 157.677977 97.472565 C 157.677977 96.372946 158.570194 95.48073 159.669812 95.48073 C 160.773344 95.48073 161.66556 96.372946 161.66556 97.472565 Z M 158.261049 96.063801 L 161.082489 98.881328 M 158.261049 98.881328 L 161.082489 96.063801 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 3.653183 102.364104 C 3.653183 103.463722 2.760966 104.355939 1.661348 104.355939 C 0.557817 104.355939 -0.3344 103.463722 -0.3344 102.364104 C -0.3344 101.264486 0.557817 100.372269 1.661348 100.372269 C 2.760966 100.372269 3.653183 101.264486 3.653183 102.364104 Z M 0.252585 100.955341 L 3.070112 103.772867 M 0.252585 103.772867 L 3.070112 100.955341 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 37.033048 5.711198 C 37.033048 6.810816 36.140832 7.703033 35.041214 7.703033 C 33.937682 7.703033 33.045465 6.810816 33.045465 5.711198 C 33.045465 4.61158 33.937682 3.719363 35.041214 3.719363 C 36.140832 3.719363 37.033048 4.61158 37.033048 5.711198 Z M 33.63245 4.302434 L 36.449977 7.119961 M 33.63245 7.119961 L 36.449977 4.302434 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 62.555145 118.713585 C 62.555145 119.813203 61.662928 120.70542 60.56331 120.70542 C 59.459778 120.70542 58.567562 119.813203 58.567562 118.713585 C 58.567562 117.613967 59.459778 116.721751 60.56331 116.721751 C 61.662928 116.721751 62.555145 117.613967 62.555145 118.713585 Z M 59.150633 117.304822 L 61.972073 120.122349 M 59.150633 120.122349 L 61.972073 117.304822 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 66.773608 134.033887 C 66.773608 135.133505 65.881391 136.025722 64.77786 136.025722 C 63.678242 136.025722 62.786025 135.133505 62.786025 134.033887 C 62.786025 132.930356 63.678242 132.038139 64.77786 132.038139 C 65.881391 132.038139 66.773608 132.930356 66.773608 134.033887 Z M 63.369097 132.625124 L 66.186624 135.44265 M 63.369097 135.44265 L 66.186624 132.625124 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 65.7953 132.793393 C 65.7953 133.896924 64.903084 134.789141 63.803466 134.789141 C 62.703847 134.789141 61.811631 133.896924 61.811631 132.793393 C 61.811631 131.693775 62.703847 130.801558 63.803466 130.801558 C 64.903084 130.801558 65.7953 131.693775 65.7953 132.793393 Z M 62.394702 131.384629 L 65.212229 134.202156 M 62.394702 134.202156 L 65.212229 131.384629 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.232077 133.994755 C 98.232077 135.094373 97.33986 135.98659 96.240242 135.98659 C 95.140624 135.98659 94.248407 135.094373 94.248407 133.994755 C 94.248407 132.895137 95.140624 132.00292 96.240242 132.00292 C 97.33986 132.00292 98.232077 132.895137 98.232077 133.994755 Z M 94.831479 132.585991 L 97.649005 135.403518 M 94.831479 135.403518 L 97.649005 132.585991 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 3.12881 102.919783 C 3.12881 104.019401 2.236593 104.911618 1.136975 104.911618 C 0.0373572 104.911618 -0.85486 104.019401 -0.85486 102.919783 C -0.85486 101.820165 0.0373572 100.927948 1.136975 100.927948 C 2.236593 100.927948 3.12881 101.820165 3.12881 102.919783 Z M -0.271788 101.511019 L 2.545739 104.328546 M -0.271788 104.328546 L 2.545739 101.511019 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 1.993973 101.980607 C 1.993973 103.080225 1.101756 103.972442 -0.0017751 103.972442 C -1.101393 103.972442 -1.99361 103.080225 -1.99361 101.980607 C -1.99361 100.880989 -1.101393 99.988772 -0.0017751 99.988772 C 1.101756 99.988772 1.993973 100.880989 1.993973 101.980607 Z M -1.410538 100.571844 L 1.406988 103.389371 M -1.410538 103.389371 L 1.406988 100.571844 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 67.204064 133.693436 C 67.204064 134.793054 66.311847 135.685271 65.212229 135.685271 C 64.112611 135.685271 63.220394 134.793054 63.220394 133.693436 C 63.220394 132.593818 64.112611 131.701601 65.212229 131.701601 C 66.311847 131.701601 67.204064 132.593818 67.204064 133.693436 Z M 63.803466 132.284672 L 66.620992 135.102199 M 63.803466 135.102199 L 66.620992 132.284672 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 68.068888 132.859918 C 68.068888 133.959536 67.176671 134.851752 66.077053 134.851752 C 64.973522 134.851752 64.081305 133.959536 64.081305 132.859918 C 64.081305 131.756386 64.973522 130.864169 66.077053 130.864169 C 67.176671 130.864169 68.068888 131.756386 68.068888 132.859918 Z M 64.66829 131.451154 L 67.485816 134.268681 M 64.66829 134.268681 L 67.485816 131.451154 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 100.501751 132.355111 C 100.501751 133.458642 99.609534 134.346946 98.509916 134.346946 C 97.410298 134.346946 96.518081 133.458642 96.518081 132.355111 C 96.518081 131.255493 97.410298 130.363276 98.509916 130.363276 C 99.609534 130.363276 100.501751 131.255493 100.501751 132.355111 Z M 97.101153 130.946347 L 99.91868 133.763874 M 97.101153 133.763874 L 99.91868 130.946347 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 67.485816 130.551111 C 67.485816 131.650729 66.5936 132.542946 65.493982 132.542946 C 64.394363 132.542946 63.502147 131.650729 63.502147 130.551111 C 63.502147 129.451493 64.394363 128.559276 65.493982 128.559276 C 66.5936 128.559276 67.485816 129.451493 67.485816 130.551111 Z M 64.085218 129.142348 L 66.902745 131.959874 M 64.085218 131.959874 L 66.902745 129.142348 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 68.127586 133.216022 C 68.127586 134.31564 67.23537 135.207856 66.135752 135.207856 C 65.036133 135.207856 64.143917 134.31564 64.143917 133.216022 C 64.143917 132.116404 65.036133 131.224187 66.135752 131.224187 C 67.23537 131.224187 68.127586 132.116404 68.127586 133.216022 Z M 64.726988 131.807258 L 67.544515 134.624785 M 64.726988 134.624785 L 67.544515 131.807258 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.089977 88.425173 C 163.089977 89.524791 162.19776 90.417008 161.098142 90.417008 C 159.998524 90.417008 159.106307 89.524791 159.106307 88.425173 C 159.106307 87.325555 159.998524 86.433338 161.098142 86.433338 C 162.19776 86.433338 163.089977 87.325555 163.089977 88.425173 Z M 159.689378 87.01641 L 162.506905 89.833937 M 159.689378 89.833937 L 162.506905 87.01641 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 37.451764 7.135614 C 37.451764 8.235232 36.559547 9.127449 35.459929 9.127449 C 34.360311 9.127449 33.468094 8.235232 33.468094 7.135614 C 33.468094 6.035996 34.360311 5.143779 35.459929 5.143779 C 36.559547 5.143779 37.451764 6.035996 37.451764 7.135614 Z M 34.051166 5.726851 L 36.868693 8.544377 M 34.051166 8.544377 L 36.868693 5.726851 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.812137 88.679533 C 162.812137 89.783065 161.91992 90.675281 160.820302 90.675281 C 159.720684 90.675281 158.828467 89.783065 158.828467 88.679533 C 158.828467 87.579915 159.720684 86.687698 160.820302 86.687698 C 161.91992 86.687698 162.812137 87.579915 162.812137 88.679533 Z M 159.411539 87.27077 L 162.229066 90.088297 M 159.411539 90.088297 L 162.229066 87.27077 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 3.109244 100.994473 C 3.109244 102.094091 2.217027 102.986308 1.117409 102.986308 C 0.0177911 102.986308 -0.874426 102.094091 -0.874426 100.994473 C -0.874426 99.894855 0.0177911 99.002638 1.117409 99.002638 C 2.217027 99.002638 3.109244 99.894855 3.109244 100.994473 Z M -0.291354 99.58571 L 2.526172 102.403236 M -0.291354 102.403236 L 2.526172 99.58571 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 66.413591 130.848517 C 66.413591 131.948135 65.521374 132.840351 64.421756 132.840351 C 63.322138 132.840351 62.429921 131.948135 62.429921 130.848517 C 62.429921 129.748898 63.322138 128.856682 64.421756 128.856682 C 65.521374 128.856682 66.413591 129.748898 66.413591 130.848517 Z M 63.012993 129.439753 L 65.830519 132.25728 M 63.012993 132.25728 L 65.830519 129.439753 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 3.402736 102.285839 C 3.402736 103.389371 2.51052 104.281587 1.410901 104.281587 C 0.30737 104.281587 -0.584847 103.389371 -0.584847 102.285839 C -0.584847 101.186221 0.30737 100.294004 1.410901 100.294004 C 2.51052 100.294004 3.402736 101.186221 3.402736 102.285839 Z M -0.0017751 100.877076 L 2.819665 103.694603 M -0.0017751 103.694603 L 2.819665 100.877076 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.157725 133.990841 C 98.157725 135.094373 97.265509 135.982676 96.165891 135.982676 C 95.062359 135.982676 94.170142 135.094373 94.170142 133.990841 C 94.170142 132.891223 95.062359 131.999007 96.165891 131.999007 C 97.265509 131.999007 98.157725 132.891223 98.157725 133.990841 Z M 94.757127 132.582078 L 97.574654 135.399605 M 94.757127 135.399605 L 97.574654 132.582078 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 65.834433 131.169401 C 65.834433 132.26902 64.942216 133.161236 63.842598 133.161236 C 62.74298 133.161236 61.850763 132.26902 61.850763 131.169401 C 61.850763 130.069783 62.74298 129.177567 63.842598 129.177567 C 64.942216 129.177567 65.834433 130.069783 65.834433 131.169401 Z M 62.433834 129.760638 L 65.251361 132.578165 M 62.433834 132.578165 L 65.251361 129.760638 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 67.055361 131.114616 C 67.055361 132.218148 66.163144 133.110364 65.063526 133.110364 C 63.963908 133.110364 63.071691 132.218148 63.071691 131.114616 C 63.071691 130.014998 63.963908 129.122781 65.063526 129.122781 C 66.163144 129.122781 67.055361 130.014998 67.055361 131.114616 Z M 63.654763 129.705853 L 66.472289 132.527293 M 63.654763 132.527293 L 66.472289 129.705853 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 67.188411 130.879822 C 67.188411 131.97944 66.296194 132.871657 65.196576 132.871657 C 64.096958 132.871657 63.204741 131.97944 63.204741 130.879822 C 63.204741 129.780204 64.096958 128.887987 65.196576 128.887987 C 66.296194 128.887987 67.188411 129.780204 67.188411 130.879822 Z M 63.787813 129.471059 L 66.605339 132.288586 M 63.787813 132.288586 L 66.605339 129.471059 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.415114 88.883021 C 161.415114 89.982639 160.522897 90.874856 159.423279 90.874856 C 158.323661 90.874856 157.431444 89.982639 157.431444 88.883021 C 157.431444 87.77949 158.323661 86.887273 159.423279 86.887273 C 160.522897 86.887273 161.415114 87.77949 161.415114 88.883021 Z M 158.014515 87.474258 L 160.832042 90.291785 M 158.014515 90.291785 L 160.832042 87.474258 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 64.875691 130.47676 C 64.875691 131.576378 63.983474 132.468594 62.883856 132.468594 C 61.784238 132.468594 60.892021 131.576378 60.892021 130.47676 C 60.892021 129.377141 61.784238 128.484925 62.883856 128.484925 C 63.983474 128.484925 64.875691 129.377141 64.875691 130.47676 Z M 61.475093 129.067996 L 64.292619 131.885523 M 61.475093 131.885523 L 64.292619 129.067996 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.724259 96.846447 C 161.724259 97.949979 160.832042 98.842196 159.732424 98.842196 C 158.632806 98.842196 157.740589 97.949979 157.740589 96.846447 C 157.740589 95.746829 158.632806 94.854613 159.732424 94.854613 C 160.832042 94.854613 161.724259 95.746829 161.724259 96.846447 Z M 158.323661 95.437684 L 161.141187 98.255211 M 158.323661 98.255211 L 161.141187 95.437684 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 101.879209 131.963787 C 101.879209 133.063406 100.986992 133.955622 99.88346 133.955622 C 98.783842 133.955622 97.891626 133.063406 97.891626 131.963787 C 97.891626 130.860256 98.783842 129.971953 99.88346 129.971953 C 100.986992 129.971953 101.879209 130.860256 101.879209 131.963787 Z M 98.474697 130.555024 L 101.292224 133.372551 M 98.474697 133.372551 L 101.292224 130.555024 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 66.366632 132.24554 C 66.366632 133.345158 65.478329 134.237375 64.374797 134.237375 C 63.275179 134.237375 62.382962 133.345158 62.382962 132.24554 C 62.382962 131.145922 63.275179 130.253705 64.374797 130.253705 C 65.478329 130.253705 66.366632 131.145922 66.366632 132.24554 Z M 62.966034 130.836777 L 65.783561 133.654304 M 62.966034 133.654304 L 65.783561 130.836777 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 2.870537 102.579332 C 2.870537 103.67895 1.97832 104.571167 0.874789 104.571167 C -0.224829 104.571167 -1.117046 103.67895 -1.117046 102.579332 C -1.117046 101.479714 -0.224829 100.587497 0.874789 100.587497 C 1.97832 100.587497 2.870537 101.479714 2.870537 102.579332 Z M -0.533975 101.170568 L 2.287465 103.988095 M -0.533975 103.988095 L 2.287465 101.170568 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 67.62278 131.59203 C 67.62278 132.691649 66.730563 133.583865 65.630945 133.583865 C 64.531327 133.583865 63.63911 132.691649 63.63911 131.59203 C 63.63911 130.488499 64.531327 129.596282 65.630945 129.596282 C 66.730563 129.596282 67.62278 130.488499 67.62278 131.59203 Z M 64.222181 130.183267 L 67.039708 133.000794 M 64.222181 133.000794 L 67.039708 130.183267 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 3.203162 101.827991 C 3.203162 102.927609 2.310945 103.819826 1.211327 103.819826 C 0.111709 103.819826 -0.780508 102.927609 -0.780508 101.827991 C -0.780508 100.72446 0.111709 99.836156 1.211327 99.836156 C 2.310945 99.836156 3.203162 100.72446 3.203162 101.827991 Z M -0.197437 100.419228 L 2.62009 103.236755 M -0.197437 103.236755 L 2.62009 100.419228 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 67.004489 132.253367 C 67.004489 133.352985 66.112272 134.245201 65.012654 134.245201 C 63.913036 134.245201 63.020819 133.352985 63.020819 132.253367 C 63.020819 131.153749 63.913036 130.261532 65.012654 130.261532 C 66.112272 130.261532 67.004489 131.153749 67.004489 132.253367 Z M 63.603891 130.844603 L 66.421417 133.66213 M 63.603891 133.66213 L 66.421417 130.844603 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 67.407552 133.66213 C 67.407552 134.765661 66.515335 135.657878 65.415717 135.657878 C 64.316099 135.657878 63.423882 134.765661 63.423882 133.66213 C 63.423882 132.562512 64.316099 131.670295 65.415717 131.670295 C 66.515335 131.670295 67.407552 132.562512 67.407552 133.66213 Z M 64.006954 132.253367 L 66.82448 135.070893 M 64.006954 135.070893 L 66.82448 132.253367 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 44.178609 61.044292 C 44.178609 62.14391 43.286392 63.036127 42.186774 63.036127 C 41.083243 63.036127 40.191026 62.14391 40.191026 61.044292 C 40.191026 59.940761 41.083243 59.048544 42.186774 59.048544 C 43.286392 59.048544 44.178609 59.940761 44.178609 61.044292 Z M 40.778011 59.631615 L 43.595538 62.453055 M 40.778011 62.453055 L 43.595538 59.631615 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.680519 5.296395 C 38.680519 6.396013 37.788302 7.28823 36.688684 7.28823 C 35.589066 7.28823 34.696849 6.396013 34.696849 5.296395 C 34.696849 4.196777 35.589066 3.30456 36.688684 3.30456 C 37.788302 3.30456 38.680519 4.196777 38.680519 5.296395 Z M 35.279921 3.887632 L 38.097447 6.705158 M 35.279921 6.705158 L 38.097447 3.887632 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 68.072801 134.147371 C 68.072801 135.246989 67.180584 136.139206 66.080966 136.139206 C 64.977435 136.139206 64.085218 135.246989 64.085218 134.147371 C 64.085218 133.047753 64.977435 132.155536 66.080966 132.155536 C 67.180584 132.155536 68.072801 133.047753 68.072801 134.147371 Z M 64.672203 132.738607 L 67.48973 135.556134 M 64.672203 135.556134 L 67.48973 132.738607 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 66.546641 132.374677 C 66.546641 133.474295 65.654424 134.366512 64.554806 134.366512 C 63.455188 134.366512 62.562971 133.474295 62.562971 132.374677 C 62.562971 131.275059 63.455188 130.382842 64.554806 130.382842 C 65.654424 130.382842 66.546641 131.275059 66.546641 132.374677 Z M 63.146043 130.965913 L 65.963569 133.78344 M 63.146043 133.78344 L 65.963569 130.965913 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 68.072801 134.495648 C 68.072801 135.595266 67.180584 136.487483 66.077053 136.487483 C 64.977435 136.487483 64.085218 135.595266 64.085218 134.495648 C 64.085218 133.39603 64.977435 132.503813 66.077053 132.503813 C 67.180584 132.503813 68.072801 133.39603 68.072801 134.495648 Z M 64.66829 133.086885 L 67.485816 135.904412 M 64.66829 135.904412 L 67.485816 133.086885 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 66.374459 130.437627 C 66.374459 131.537245 65.482242 132.429462 64.378711 132.429462 C 63.279092 132.429462 62.386876 131.537245 62.386876 130.437627 C 62.386876 129.338009 63.279092 128.445792 64.378711 128.445792 C 65.482242 128.445792 66.374459 129.338009 66.374459 130.437627 Z M 62.969947 129.028864 L 65.787474 131.846391 M 62.969947 131.846391 L 65.787474 129.028864 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 68.554129 134.444776 C 68.554129 135.544394 67.661912 136.436611 66.562294 136.436611 C 65.458762 136.436611 64.566546 135.544394 64.566546 134.444776 C 64.566546 133.341245 65.458762 132.449028 66.562294 132.449028 C 67.661912 132.449028 68.554129 133.341245 68.554129 134.444776 Z M 65.15353 133.036013 L 67.971057 135.85354 M 65.15353 135.85354 L 67.971057 133.036013 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 101.296137 130.848517 C 101.296137 131.948135 100.40392 132.840351 99.304302 132.840351 C 98.204684 132.840351 97.312467 131.948135 97.312467 130.848517 C 97.312467 129.744985 98.204684 128.852768 99.304302 128.852768 C 100.40392 128.852768 101.296137 129.744985 101.296137 130.848517 Z M 97.895539 129.43584 L 100.713066 132.25728 M 97.895539 132.25728 L 100.713066 129.43584 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 55.41741 41.935982 C 55.41741 43.0356 54.525193 43.927817 53.425575 43.927817 C 52.325957 43.927817 51.433741 43.0356 51.433741 41.935982 C 51.433741 40.836364 52.325957 39.944147 53.425575 39.944147 C 54.525193 39.944147 55.41741 40.836364 55.41741 41.935982 Z M 52.016812 40.527219 L 54.834339 43.344746 M 52.016812 43.344746 L 54.834339 40.527219 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 3.997548 101.694941 C 3.997548 102.794559 3.105331 103.686776 2.005713 103.686776 C 0.906095 103.686776 0.0138778 102.794559 0.0138778 101.694941 C 0.0138778 100.595323 0.906095 99.703107 2.005713 99.703107 C 3.105331 99.703107 3.997548 100.595323 3.997548 101.694941 Z M 0.596949 100.286178 L 3.414476 103.103705 M 0.596949 103.103705 L 3.414476 100.286178 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 4.071899 102.438455 C 4.071899 103.538073 3.179682 104.43029 2.080064 104.43029 C 0.980446 104.43029 0.0882292 103.538073 0.0882292 102.438455 C 0.0882292 101.338837 0.980446 100.446621 2.080064 100.446621 C 3.179682 100.446621 4.071899 101.338837 4.071899 102.438455 Z M 0.671301 101.029692 L 3.488827 103.847219 M 0.671301 103.847219 L 3.488827 101.029692 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 66.429244 132.351197 C 66.429244 133.450815 65.537027 134.343032 64.437409 134.343032 C 63.333878 134.343032 62.441661 133.450815 62.441661 132.351197 C 62.441661 131.251579 63.333878 130.359363 64.437409 130.359363 C 65.537027 130.359363 66.429244 131.251579 66.429244 132.351197 Z M 63.024732 130.942434 L 65.846172 133.759961 M 63.024732 133.759961 L 65.846172 130.942434 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 4.752801 102.258447 C 4.752801 103.358065 3.860584 104.250282 2.760966 104.250282 C 1.661348 104.250282 0.769132 103.358065 0.769132 102.258447 C 0.769132 101.158829 1.661348 100.266612 2.760966 100.266612 C 3.860584 100.266612 4.752801 101.158829 4.752801 102.258447 Z M 1.352203 100.849683 L 4.16973 103.66721 M 1.352203 103.66721 L 4.16973 100.849683 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 66.350979 131.498113 C 66.350979 132.597731 65.458762 133.489948 64.359144 133.489948 C 63.259526 133.489948 62.36731 132.597731 62.36731 131.498113 C 62.36731 130.398495 63.259526 129.506278 64.359144 129.506278 C 65.458762 129.506278 66.350979 130.398495 66.350979 131.498113 Z M 62.950381 130.08935 L 65.767908 132.906876 M 62.950381 132.906876 L 65.767908 130.08935 \" transform=\"matrix(0.998216,0,0,-0.998216,35.825991,147.880696)\"/>\n", | |
"</g>\n", | |
"</svg>\n", | |
"\n" | |
], | |
"text/plain": [ | |
"Axis(PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(), false), Any[Plot(false, true, PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(\"only_marks\" => nothing), true), Table(PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(), false), TableData([0.40833208019082473 -0.3558003411188564; 0.3965136210726314 -0.3129027744849499; … ; 0.5292612256561161 -0.3201660675318003; -0.41129434531978054 -0.2878297160470624], [\"x\", \"y\"], Int64[], true)), Any[]), Plot(false, true, PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(\"only_marks\" => nothing), true), Table(PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(), false), TableData([-0.39584927010697535 -0.6914406723042504; -0.2835594556726163 -0.4603785153808626; … ; -0.3066124036020477 -0.4483961730121771; 0.11346112042755896 0.16548094945044511], [\"x\", \"y\"], Int64[], true)), Any[]), Plot(false, true, PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(\"only_marks\" => nothing), true), Table(PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(), false), TableData([-0.03632881837001716 1.0184332245101355; -0.6022171939326656 -1.3084273770697943; … ; -1.2347918848219928 0.4642032436872349; -0.06643634182177122 1.010963544472276], [\"x\", \"y\"], Int64[], true)), Any[])])" | |
] | |
}, | |
"execution_count": 13, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"@pgf Axis(\n", | |
" [\n", | |
" PlotInc(\n", | |
" {only_marks},\n", | |
" Table(\n", | |
" x=X[findall(e->e==label, labels),1],\n", | |
" y=X[findall(e->e==label, labels),2]\n", | |
" )\n", | |
" )\n", | |
" for label in unique(labels)\n", | |
" ]...\n", | |
")" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"#### 2. 潜在変数ベクトルの各要素ごと($j=1\\dots L$)に、他変数を固定して逐次更新" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 14, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"name": "stdout", | |
"output_type": "stream", | |
"text": [ | |
"[DONE] loop: 1, logp: -550.7526810512466, (τ,σ,η): (1.419704968403417, 4.903887571140026, -0.26815890902049905)\n", | |
"[DONE] loop: 2, logp: -153.74028329268776, (τ,σ,η): (1.6071497472123126, 4.814204028407499, -0.25043894451744486)\n", | |
"[DONE] loop: 3, logp: 173.97231450316576, (τ,σ,η): (1.6115719715894437, 4.810974612745392, -0.19907306968998562)\n", | |
"[DONE] loop: 4, logp: 473.0219387442189, (τ,σ,η): (1.6998502756815947, 4.745946537699605, -0.1839573519664241)\n", | |
"[DONE] loop: 5, logp: 625.8995837881744, (τ,σ,η): (1.8577900304316435, 4.616986250010838, -0.17485932870285154)\n", | |
"[DONE] loop: 6, logp: 720.2448346166798, (τ,σ,η): (2.131950459563166, 4.342865293217436, -0.16978084171427807)\n", | |
"[DONE] loop: 7, logp: 866.2851368675733, (τ,σ,η): (2.1366468713394178, 4.335865995362045, -0.14602822044166852)\n", | |
"[DONE] loop: 8, logp: 1074.0283766003286, (τ,σ,η): (2.6583991241200327, 3.5411775934670793, -0.1372949080441395)\n", | |
"[DONE] loop: 9, logp: 1128.6192639893002, (τ,σ,η): (2.779934175376376, 2.918267295031082, -0.13145564793629363)\n", | |
"[DONE] loop: 10, logp: 1200.6867711739856, (τ,σ,η): (2.812964207049082, 2.2376196195595286, -0.125296630850861)\n", | |
"[DONE] loop: 11, logp: 1310.7698584633504, (τ,σ,η): (2.8134535082560888, 2.198001647228261, -0.1146497852545648)\n", | |
"[DONE] loop: 12, logp: 1403.3699267891607, (τ,σ,η): (2.8075021198691674, 1.9873062940512207, -0.10863425190264216)\n", | |
"[DONE] loop: 13, logp: 1433.6260280569923, (τ,σ,η): (2.75100569394755, 1.850878320586589, -0.10364355242877382)\n", | |
"[DONE] loop: 14, logp: 1454.5686497364936, (τ,σ,η): (2.5962210686581337, 1.6984576490884908, -0.10141544893405097)\n", | |
"[DONE] loop: 15, logp: 1486.3687580171486, (τ,σ,η): (1.4127977730257588, 1.4843228166898492, -0.08808927933284179)\n", | |
"[DONE] loop: 16, logp: 1576.6866766937796, (τ,σ,η): (1.3961560543912386, 1.344556488302233, -0.09555675950631687)\n", | |
"[DONE] loop: 17, logp: 1652.4269194275762, (τ,σ,η): (1.3432720477276394, 1.1495876704507642, -0.09208203440778813)\n", | |
"[DONE] loop: 18, logp: 1756.85700403392, (τ,σ,η): (1.319607110372401, 0.9013018997676848, -0.08046977986634529)\n", | |
"[DONE] loop: 19, logp: 1899.6541074984739, (τ,σ,η): (1.296372548755079, 0.7752375278454121, -0.07304405299971528)\n", | |
"[DONE] loop: 20, logp: 2062.8726801326325, (τ,σ,η): (1.2812813948782162, 0.7245885760775091, -0.06723941758590868)\n", | |
"[DONE] loop: 21, logp: 2146.0849692521756, (τ,σ,η): (1.2592451601996915, 0.6841554478488313, -0.06306830630431647)\n", | |
"[DONE] loop: 22, logp: 2222.876223298372, (τ,σ,η): (1.2261004455366675, 0.6416079285205708, -0.05985464326776848)\n", | |
"[DONE] loop: 23, logp: 2276.9034183790714, (τ,σ,η): (1.2075528141304177, 0.6082111152667549, -0.05764013221308538)\n", | |
"[DONE] loop: 24, logp: 2330.148848348584, (τ,σ,η): (1.1852845266189638, 0.5774852385988957, -0.05517977832603938)\n", | |
"[DONE] loop: 25, logp: 2369.6658331972826, (τ,σ,η): (1.1607710056625606, 0.5508459442124611, -0.053624257938917244)\n", | |
"[DONE] loop: 26, logp: 2403.068705303834, (τ,σ,η): (1.0122388406987335, 0.5681086346351695, -0.053137220870461944)\n", | |
"[DONE] loop: 27, logp: 2430.418352655492, (τ,σ,η): (1.0007840618143105, 0.5437818983172675, -0.05274539430442399)\n", | |
"[DONE] loop: 28, logp: 2450.321280357231, (τ,σ,η): (0.9878193745425243, 0.5243837396726317, -0.05186005684556297)\n", | |
"[DONE] loop: 29, logp: 2475.7593561396293, (τ,σ,η): (0.8234759159154051, 0.5326077056676559, -0.05122815426294178)\n", | |
"[DONE] loop: 30, logp: 2497.8978518604813, (τ,σ,η): (0.8193425672952089, 0.5093633057188309, -0.05119889883580439)\n", | |
"[DONE] loop: 31, logp: 2510.2862106096914, (τ,σ,η): (0.8099510196580454, 0.4947777416040929, -0.05071024350395896)\n", | |
"[DONE] loop: 32, logp: 2524.942487812135, (τ,σ,η): (0.6891844684508155, 0.4925958906585578, -0.050342253005071884)\n", | |
"[DONE] loop: 33, logp: 2537.4393160899576, (τ,σ,η): (0.6883599910773536, 0.47829126037528175, -0.05021042598375264)\n", | |
"[DONE] loop: 34, logp: 2545.0646447143185, (τ,σ,η): (0.6848351180386308, 0.47075990723888606, -0.04993345220757351)\n", | |
"[DONE] loop: 35, logp: 2554.285219263447, (τ,σ,η): (0.6375668448274148, 0.4532629174329379, -0.04949562107096353)\n", | |
"[DONE] loop: 36, logp: 2562.192999273209, (τ,σ,η): (0.6347187569509264, 0.4548779564784246, -0.0492654890303105)\n", | |
"[DONE] loop: 37, logp: 2568.8773120360324, (τ,σ,η): (0.6220871970665662, 0.45213546540788685, -0.049035123179583424)\n", | |
"[DONE] loop: 38, logp: 2573.7785368791824, (τ,σ,η): (0.6222729463345736, 0.45011124446634854, -0.048835764293731404)\n", | |
"[DONE] loop: 39, logp: 2577.3909119387795, (τ,σ,η): (0.6211083237088113, 0.44950431550964093, -0.04871834818148304)\n", | |
"[DONE] loop: 40, logp: 2580.253192688069, (τ,σ,η): (0.6209493244204866, 0.4490780219372436, -0.04863671208496014)\n", | |
"[DONE] loop: 41, logp: 2582.812018004973, (τ,σ,η): (0.6210591194892746, 0.44833880388507596, -0.04856619753510931)\n", | |
"[DONE] loop: 42, logp: 2585.2171360038205, (τ,σ,η): (0.6210163262326691, 0.4483916895332206, -0.04850173201345495)\n", | |
"[DONE] loop: 43, logp: 2587.5400755350106, (τ,σ,η): (0.6210490997842626, 0.44798124876767764, -0.04842243442338044)\n", | |
"[DONE] loop: 44, logp: 2589.425919149851, (τ,σ,η): (0.6210696261625168, 0.44775945571235376, -0.048356335204978555)\n", | |
"[DONE] loop: 45, logp: 2590.9768794222996, (τ,σ,η): (0.6210719057285323, 0.4479988043514143, -0.04832039839757454)\n", | |
"[DONE] loop: 46, logp: 2592.1245037136773, (τ,σ,η): (0.6211228329612868, 0.44785482252299497, -0.0482764156221569)\n", | |
"[DONE] loop: 47, logp: 2593.222115568185, (τ,σ,η): (0.6210800405813045, 0.44837266288440686, -0.04826341323446695)\n", | |
"[DONE] loop: 48, logp: 2594.147199740983, (τ,σ,η): (0.6211110429402849, 0.4484476957565902, -0.04823667812502703)\n", | |
"[DONE] loop: 49, logp: 2594.836536862395, (τ,σ,η): (0.6210954342400485, 0.44873580345982383, -0.04823419558818441)\n", | |
"[DONE] loop: 50, logp: 2595.4818910075496, (τ,σ,η): (0.6210789826376374, 0.4487476913275047, -0.04821883345781692)\n", | |
"[DONE] loop: 51, logp: 2596.0317134165957, (τ,σ,η): (0.6210353150422171, 0.4489956467217782, -0.04821805273322185)\n", | |
"[DONE] loop: 52, logp: 2596.572049408977, (τ,σ,η): (0.6209907273023393, 0.4491008731546691, -0.04820780685537491)\n", | |
"[DONE] loop: 53, logp: 2597.064223001245, (τ,σ,η): (0.6209419975601937, 0.4492421182721965, -0.048206008380805326)\n", | |
"[DONE] loop: 54, logp: 2597.5429169128433, (τ,σ,η): (0.6208621228375617, 0.4494173712756145, -0.04820096382285567)\n", | |
"[DONE] loop: 55, logp: 2597.9869781432794, (τ,σ,η): (0.6207937319063881, 0.4495519865036767, -0.04819948907217899)\n", | |
"[DONE] loop: 56, logp: 2598.421857753005, (τ,σ,η): (0.6206939125765616, 0.4497316257046924, -0.04819599556800352)\n", | |
"[DONE] loop: 57, logp: 2598.827016124968, (τ,σ,η): (0.6202106136048116, 0.44976888666265236, -0.04818739997572365)\n", | |
"[DONE] loop: 58, logp: 2599.23314807838, (τ,σ,η): (0.6201196413263015, 0.44995091945543825, -0.048194132083551264)\n", | |
"[DONE] loop: 59, logp: 2599.611580643131, (τ,σ,η): (0.6194394906543733, 0.4498687105991926, -0.04819513379531915)\n", | |
"[DONE] loop: 60, logp: 2599.9884877730215, (τ,σ,η): (0.6193654876696882, 0.4500582432296906, -0.04819327144847579)\n", | |
"[DONE] loop: 61, logp: 2600.347553328051, (τ,σ,η): (0.6189511617249858, 0.45004101850502437, -0.04819236228694314)\n", | |
"[DONE] loop: 62, logp: 2600.7025667257653, (τ,σ,η): (0.6188874083248395, 0.4501748938224683, -0.04819177844135631)\n", | |
"[DONE] loop: 63, logp: 2601.0519918861532, (τ,σ,η): (0.6188415012364117, 0.45022649920175317, -0.048192437982115956)\n", | |
"[DONE] loop: 64, logp: 2601.3936910001535, (τ,σ,η): (0.6187523838533583, 0.4503083006785088, -0.048189845944914295)\n", | |
"[DONE] loop: 65, logp: 2601.731764295398, (τ,σ,η): (0.6184971355661772, 0.4503127201640264, -0.04818978467574746)\n", | |
"[DONE] loop: 66, logp: 2602.0577984695688, (τ,σ,η): (0.6183355803811068, 0.450178494532414, -0.048186740025307595)\n", | |
"[DONE] loop: 67, logp: 2602.374044023956, (τ,σ,η): (0.6182908579340127, 0.450232567876352, -0.04819138192807189)\n", | |
"[DONE] loop: 68, logp: 2602.6795251430153, (τ,σ,η): (0.6180709982506739, 0.45008055484263515, -0.04818274651962278)\n", | |
"[DONE] loop: 69, logp: 2602.97728568916, (τ,σ,η): (0.6180399387994142, 0.45015673157528263, -0.04819322897758608)\n", | |
"[DONE] loop: 70, logp: 2603.2701828986114, (τ,σ,η): (0.617929446581661, 0.45005369896192, -0.04818872651179026)\n", | |
"[DONE] loop: 71, logp: 2603.556894408933, (τ,σ,η): (0.6179058835433262, 0.4501366538533091, -0.04819612374574394)\n", | |
"[DONE] loop: 72, logp: 2603.844242237617, (τ,σ,η): (0.6177721238157837, 0.450045064332454, -0.04819298179322186)\n", | |
"[DONE] loop: 73, logp: 2604.1250354671133, (τ,σ,η): (0.617758128369627, 0.45012934832053614, -0.04819949974408751)\n", | |
"[DONE] loop: 74, logp: 2604.408275985695, (τ,σ,η): (0.6176620352108746, 0.4501288820828622, -0.04819919526604633)\n", | |
"[DONE] loop: 75, logp: 2604.6864331578704, (τ,σ,η): (0.6176738517245193, 0.45016802486607554, -0.04820338019561548)\n", | |
"[DONE] loop: 76, logp: 2604.9666934630072, (τ,σ,η): (0.6176767800633494, 0.45016643700211706, -0.04820513046964469)\n", | |
"[DONE] loop: 77, logp: 2605.245546257716, (τ,σ,η): (0.6176982190439678, 0.4502134662015662, -0.048208240060638584)\n", | |
"[DONE] loop: 78, logp: 2605.5266891361457, (τ,σ,η): (0.6177267463917261, 0.45024126412890914, -0.04821038447320706)\n", | |
"[DONE] loop: 79, logp: 2605.810996398049, (τ,σ,η): (0.6178038161300867, 0.450305577771367, -0.04821341015703484)\n", | |
"[DONE] loop: 80, logp: 2606.0974264135452, (τ,σ,η): (0.6180007440657096, 0.45032300164745154, -0.048216582287948055)\n", | |
"[DONE] loop: 81, logp: 2606.3891683985344, (τ,σ,η): (0.6180273029944462, 0.4503813403558441, -0.04822175852470345)\n", | |
"[DONE] loop: 82, logp: 2606.683388604785, (τ,σ,η): (0.6181542375510365, 0.4504593555276097, -0.04822303799403031)\n", | |
"[DONE] loop: 83, logp: 2606.9872148984864, (τ,σ,η): (0.6185559626642048, 0.450529797647993, -0.04823038452572157)\n", | |
"[DONE] loop: 84, logp: 2607.2959491915913, (τ,σ,η): (0.6185739717196022, 0.45057367518388414, -0.04823273769335103)\n", | |
"[DONE] loop: 85, logp: 2607.6186619365058, (τ,σ,η): (0.6186667247521673, 0.4506454172164063, -0.04823672001565814)\n", | |
"[DONE] loop: 86, logp: 2607.9490641139323, (τ,σ,η): (0.6190043970257461, 0.4506762432917319, -0.04823875289588544)\n", | |
"[DONE] loop: 87, logp: 2608.297168791432, (τ,σ,η): (0.6190368038596114, 0.4507410473527283, -0.04824541783140046)\n", | |
"[DONE] loop: 88, logp: 2608.6569881106793, (τ,σ,η): (0.6193224623358347, 0.45088503920869305, -0.04824687084986346)\n", | |
"[DONE] loop: 89, logp: 2609.040598533363, (τ,σ,η): (0.6194095573715933, 0.4508459469581278, -0.048251718844814204)\n", | |
"[DONE] loop: 90, logp: 2609.4417665970664, (τ,σ,η): (0.6199531480301845, 0.45098160290426675, -0.048255588857536724)\n", | |
"[DONE] loop: 91, logp: 2609.875052870218, (τ,σ,η): (0.6201838572628077, 0.45109107806488796, -0.0482589105214507)\n", | |
"[DONE] loop: 92, logp: 2610.337092725685, (τ,σ,η): (0.6202165324127636, 0.4510404418071411, -0.048260150342968336)\n", | |
"[DONE] loop: 93, logp: 2610.8447060356443, (τ,σ,η): (0.6203982042278382, 0.45102513138289385, -0.04825898224151871)\n", | |
"[DONE] loop: 94, logp: 2611.401958049572, (τ,σ,η): (0.6204589231706392, 0.4509977967583849, -0.048258370567639965)\n", | |
"[DONE] loop: 95, logp: 2612.0322281286003, (τ,σ,η): (0.620844167393342, 0.4510282396728835, -0.04825768959324842)\n", | |
"[DONE] loop: 96, logp: 2612.7528778798946, (τ,σ,η): (0.6208641772958684, 0.4509807287360682, -0.0482518537269527)\n", | |
"[DONE] loop: 97, logp: 2613.6091959444725, (τ,σ,η): (0.620896250700725, 0.4509282349391801, -0.04824306748408385)\n", | |
"[DONE] loop: 98, logp: 2614.657321233683, (τ,σ,η): (0.6209279042173359, 0.45075314577195374, -0.04822344177448691)\n", | |
"[DONE] loop: 99, logp: 2616.015169066582, (τ,σ,η): (0.6209556370407645, 0.45055337890494146, -0.04819391890705613)\n", | |
"[DONE] loop: 100, logp: 2617.8114848286464, (τ,σ,η): (0.6209683244024089, 0.4501530707440033, -0.048140019041248254)\n" | |
] | |
} | |
], | |
"source": [ | |
"# GPLVMの最適化 各潜在変数毎更新 loop coefId=1,2\n", | |
"X = Y*V[:,1:2]\n", | |
"τ = 1.0\n", | |
"σ = 5.0\n", | |
"η = 1.0\n", | |
"\n", | |
"for loop in 1:100\n", | |
"for coefId in [1,2]\n", | |
" xₛ = SCG(\n", | |
" X[:,coefId],\n", | |
" x -> -PLL(\n", | |
" τ,σ,η,Y,\n", | |
" X.*(ones(N,K) - ones(N,1)*Matrix(1.0I,K,K)[:,coefId]') + (x*Matrix(1.0I,K,K)[:,coefId]')\n", | |
" ),\n", | |
" x -> -∂logp∂X_col(\n", | |
" coefId,τ,σ,η,Y,\n", | |
" X.*(ones(N,K) - ones(N,1)*Matrix(1.0I,K,K)[:,coefId]') + (x*Matrix(1.0I,K,K)[:,coefId]')\n", | |
" ) + x,\n", | |
" MaxLoop=3\n", | |
" )\n", | |
" X = X.*(ones(N,K) - ones(N,1)*Matrix(1.0I,K,K)[:,coefId]') + (xₛ*Matrix(1.0I,K,K)[:,coefId]')\n", | |
"end\n", | |
" θₛ = SCG(\n", | |
" [τ,σ,η],\n", | |
" θ -> -logp(θ...,Y,X),\n", | |
" θ -> -∂logp∂τση(θ...,Y,X),\n", | |
" MaxLoop=3\n", | |
" )\n", | |
" τ = θₛ[1]\n", | |
" σ = θₛ[2]\n", | |
" η = θₛ[3]\n", | |
" \n", | |
" println(\"[DONE] loop: $(loop), logp: $(logp(τ,σ,η,Y,X)), (τ,σ,η): $((τ,σ,η))\")\n", | |
"end" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 15, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"image/png": "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0tPTLctqvCQej9u2nZ6eztBJAdXV1ZMmTZo7d26T/juj86i47LLLLrvsssN91V133XXhhRdOnDix4df169cPHjy4nW+DIUOGdPJZTU888cQm7e76+noA/fv3Z+50dPF4fPLkyU8//fSBnbxDfCu/VUp1AJ944onTTjvtQG4CePHFF7nvtn9jx44tKyuzbbtxOwXAhRdeyOJ0aI7j/PKXv3zooYcO5Obu3btXrFjBVmc78tJLL3300UeXXXbZK6+80rDNdu/enao93AamaR74b4c2ZsyYQCDw/vvvHxgV/9577/Xt23fYsGGpvflSYNsd2i233FJQULBhw4YNGzZIKW3bXrJkyfXXX58K65Yal3x98MEHuq43X7sXX3wx9a5vs237b3/72/Tp0/v16wdg/PjxTz755OLFizv0Ss2dO/e0006rqqqSUm7btq1///6rVq1KycsTi4uLn3nmmYcffrhhfpN77rnn6aef/vzzz1NvTR999NEWM2fv3r0psHYpcoON4uLiFmeLGDx4cPMBgynw1+7DDz/0eDyKogghGq4ODgQCAwYM6NDrtWHDhrlz5/r9ftM0J02a1KNHj5RsiNXU1GzevFnXdSGEEMJ1Xdu2i4qKCgsLU2xNN2zY0OK9xIcPH54Ca8d7ExERHTZOdUxExOgkImJ0EhExOomIGJ1ERIxOIiJidBIRHRX/Px9SAYE+8j63AAAAAElFTkSuQmCC", | |
"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=\"214.04pt\" height=\"177.035pt\" viewBox=\"0 0 214.04 177.035\" version=\"1.2\">\n", | |
"<defs>\n", | |
"<g>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407021-0-0\">\n", | |
"<path style=\"stroke:none;\" d=\"\"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407021-0-1\">\n", | |
"<path style=\"stroke:none;\" d=\"M 6.53125 -2.28125 C 6.703125 -2.28125 6.875 -2.28125 6.875 -2.484375 C 6.875 -2.671875 6.703125 -2.671875 6.53125 -2.671875 L 1.171875 -2.671875 C 1 -2.671875 0.828125 -2.671875 0.828125 -2.484375 C 0.828125 -2.28125 1 -2.28125 1.171875 -2.28125 Z M 6.53125 -2.28125 \"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407021-1-0\">\n", | |
"<path style=\"stroke:none;\" d=\"\"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407021-1-1\">\n", | |
"<path style=\"stroke:none;\" d=\"M 1.265625 -0.765625 L 2.3125 -1.78125 C 3.859375 -3.15625 4.453125 -3.6875 4.453125 -4.671875 C 4.453125 -5.8125 3.5625 -6.59375 2.34375 -6.59375 C 1.234375 -6.59375 0.5 -5.6875 0.5 -4.796875 C 0.5 -4.25 0.984375 -4.25 1.015625 -4.25 C 1.1875 -4.25 1.53125 -4.375 1.53125 -4.78125 C 1.53125 -5.03125 1.359375 -5.296875 1.015625 -5.296875 C 0.9375 -5.296875 0.90625 -5.296875 0.875 -5.28125 C 1.109375 -5.921875 1.640625 -6.296875 2.21875 -6.296875 C 3.125 -6.296875 3.546875 -5.484375 3.546875 -4.671875 C 3.546875 -3.890625 3.046875 -3.09375 2.5 -2.484375 L 0.609375 -0.359375 C 0.5 -0.25 0.5 -0.234375 0.5 0 L 4.171875 0 L 4.453125 -1.71875 L 4.203125 -1.71875 C 4.15625 -1.421875 4.078125 -0.984375 3.984375 -0.84375 C 3.90625 -0.765625 3.265625 -0.765625 3.046875 -0.765625 Z M 1.265625 -0.765625 \"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407021-1-2\">\n", | |
"<path style=\"stroke:none;\" d=\"M 2.90625 -6.34375 C 2.90625 -6.578125 2.90625 -6.59375 2.6875 -6.59375 C 2.078125 -5.96875 1.203125 -5.96875 0.875 -5.96875 L 0.875 -5.65625 C 1.078125 -5.65625 1.671875 -5.65625 2.171875 -5.90625 L 2.171875 -0.78125 C 2.171875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.9375 -0.3125 L 0.9375 0 C 1.28125 -0.03125 2.15625 -0.03125 2.546875 -0.03125 C 2.9375 -0.03125 3.796875 -0.03125 4.15625 0 L 4.15625 -0.3125 L 3.828125 -0.3125 C 2.9375 -0.3125 2.90625 -0.421875 2.90625 -0.78125 Z M 2.90625 -6.34375 \"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407021-1-3\">\n", | |
"<path style=\"stroke:none;\" d=\"M 4.5625 -3.171875 C 4.5625 -3.96875 4.5 -4.75 4.15625 -5.484375 C 3.703125 -6.4375 2.890625 -6.59375 2.484375 -6.59375 C 1.875 -6.59375 1.15625 -6.34375 0.75 -5.421875 C 0.4375 -4.734375 0.390625 -3.96875 0.390625 -3.171875 C 0.390625 -2.421875 0.421875 -1.53125 0.828125 -0.78125 C 1.265625 0.015625 1.984375 0.21875 2.46875 0.21875 C 3 0.21875 3.75 0.015625 4.1875 -0.9375 C 4.5 -1.609375 4.5625 -2.390625 4.5625 -3.171875 Z M 2.46875 0 C 2.078125 0 1.5 -0.25 1.3125 -1.203125 C 1.203125 -1.796875 1.203125 -2.703125 1.203125 -3.28125 C 1.203125 -3.921875 1.203125 -4.578125 1.28125 -5.109375 C 1.46875 -6.296875 2.21875 -6.375 2.46875 -6.375 C 2.796875 -6.375 3.453125 -6.203125 3.640625 -5.21875 C 3.734375 -4.671875 3.734375 -3.90625 3.734375 -3.28125 C 3.734375 -2.546875 3.734375 -1.875 3.625 -1.234375 C 3.484375 -0.296875 2.90625 0 2.46875 0 Z M 2.46875 0 \"/>\n", | |
"</symbol>\n", | |
"</g>\n", | |
"<clipPath id=\"clip-1592782364407021-1\">\n", | |
" <path d=\"M 0.101562 0 L 212.980469 0 L 212.980469 176.074219 L 0.101562 176.074219 Z M 0.101562 0 \"/>\n", | |
"</clipPath>\n", | |
"<clipPath id=\"clip-1592782364407021-2\">\n", | |
" <path d=\"M 19 6 L 212.980469 6 L 212.980469 160 L 19 160 Z M 19 6 \"/>\n", | |
"</clipPath>\n", | |
"<clipPath id=\"clip-1592782364407021-3\">\n", | |
" <path d=\"M 19 1 L 212.980469 1 L 212.980469 163 L 19 163 Z M 19 1 \"/>\n", | |
"</clipPath>\n", | |
"</defs>\n", | |
"<g id=\"surface1\">\n", | |
"<g clip-path=\"url(#clip-1592782364407021-1)\" clip-rule=\"nonzero\">\n", | |
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;\" d=\"M 0.101562 176.074219 L 213.78125 176.074219 L 213.78125 -0.660156 L 0.101562 -0.660156 Z M 0.101562 176.074219 \"/>\n", | |
"</g>\n", | |
"<path style=\"fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(50%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M -5.684118 -13.451886 L -5.684118 -9.198358 M 31.95745 -13.451886 L 31.95745 -9.198358 M 69.599018 -13.451886 L 69.599018 -9.198358 M 107.240586 -13.451886 L 107.240586 -9.198358 M 144.882154 -13.451886 L 144.882154 -9.198358 M -5.684118 147.946548 L -5.684118 143.696947 M 31.95745 147.946548 L 31.95745 143.696947 M 69.599018 147.946548 L 69.599018 143.696947 M 107.240586 147.946548 L 107.240586 143.696947 M 144.882154 147.946548 L 144.882154 143.696947 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<g clip-path=\"url(#clip-1592782364407021-2)\" clip-rule=\"nonzero\">\n", | |
"<path style=\"fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(50%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M -16.190295 -11.024665 L -11.936766 -11.024665 M -16.190295 27.473107 L -11.936766 27.473107 M -16.190295 65.97088 L -11.936766 65.97088 M -16.190295 104.468652 L -11.936766 104.468652 M -16.190295 142.962497 L -11.936766 142.962497 M 178.081671 -11.024665 L 173.83207 -11.024665 M 178.081671 27.473107 L 173.83207 27.473107 M 178.081671 65.97088 L 173.83207 65.97088 M 178.081671 104.468652 L 173.83207 104.468652 M 178.081671 142.962497 L 173.83207 142.962497 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"</g>\n", | |
"<g clip-path=\"url(#clip-1592782364407021-3)\" clip-rule=\"nonzero\">\n", | |
"<path style=\"fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M -16.190295 -13.451886 L -16.190295 147.946548 L 178.081671 147.946548 L 178.081671 -13.451886 Z M -16.190295 -13.451886 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407021-0-1\" x=\"23.684255\" y=\"171.946736\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407021-1-1\" x=\"31.391245\" y=\"171.946736\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407021-0-1\" x=\"61.12119\" y=\"171.946736\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407021-1-2\" x=\"68.82818\" y=\"171.946736\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407021-1-3\" x=\"102.412117\" y=\"171.946736\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407021-1-2\" x=\"139.849052\" y=\"171.946736\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407021-1-1\" x=\"177.285987\" y=\"171.946736\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407021-0-1\" x=\"3.405791\" y=\"162.428618\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407021-1-1\" x=\"11.111786\" y=\"162.428618\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407021-0-1\" x=\"3.405791\" y=\"124.140324\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407021-1-2\" x=\"11.111786\" y=\"124.140324\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407021-1-3\" x=\"11.111786\" y=\"86.264779\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407021-1-2\" x=\"11.111786\" y=\"47.976485\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407021-1-1\" x=\"11.111786\" y=\"9.688191\"/>\n", | |
"</g>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.943046 40.123722 C 86.943046 41.223434 86.047566 42.118914 84.947854 42.118914 C 83.848142 42.118914 82.95659 41.223434 82.95659 40.123722 C 82.95659 39.02401 83.848142 38.132458 84.947854 38.132458 C 86.047566 38.132458 86.943046 39.02401 86.943046 40.123722 Z M 86.943046 40.123722 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.452103 42.994756 C 86.452103 44.098395 85.560551 44.989947 84.456912 44.989947 C 83.3572 44.989947 82.465647 44.098395 82.465647 42.994756 C 82.465647 41.895044 83.3572 41.003491 84.456912 41.003491 C 85.560551 41.003491 86.452103 41.895044 86.452103 42.994756 Z M 86.452103 42.994756 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 60.966279 54.435687 C 60.966279 55.535399 60.074727 56.426951 58.971088 56.426951 C 57.871376 56.426951 56.979824 55.535399 56.979824 54.435687 C 56.979824 53.332048 57.871376 52.440495 58.971088 52.440495 C 60.074727 52.440495 60.966279 53.332048 60.966279 54.435687 Z M 60.966279 54.435687 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.344536 44.589338 C 85.344536 45.68905 84.452984 46.580602 83.353272 46.580602 C 82.25356 46.580602 81.362008 45.68905 81.362008 44.589338 C 81.362008 43.489626 82.25356 42.598074 83.353272 42.598074 C 84.452984 42.598074 85.344536 43.489626 85.344536 44.589338 Z M 85.344536 44.589338 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 56.626345 33.576508 C 56.626345 34.680148 55.734793 35.5717 54.635081 35.5717 C 53.531441 35.5717 52.639889 34.680148 52.639889 33.576508 C 52.639889 32.476796 53.531441 31.585244 54.635081 31.585244 C 55.734793 31.585244 56.626345 32.476796 56.626345 33.576508 Z M 56.626345 33.576508 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 55.400952 28.938081 C 55.400952 30.037793 54.505472 30.929345 53.40576 30.929345 C 52.306048 30.929345 51.414496 30.037793 51.414496 28.938081 C 51.414496 27.838369 52.306048 26.946817 53.40576 26.946817 C 54.505472 26.946817 55.400952 27.838369 55.400952 28.938081 Z M 55.400952 28.938081 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.35063 44.77786 C 89.35063 45.877572 88.459077 46.769124 87.359366 46.769124 C 86.259654 46.769124 85.368101 45.877572 85.368101 44.77786 C 85.368101 43.678148 86.259654 42.786596 87.359366 42.786596 C 88.459077 42.786596 89.35063 43.678148 89.35063 44.77786 Z M 89.35063 44.77786 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.967254 45.237382 C 89.967254 46.337094 89.075702 47.228646 87.97599 47.228646 C 86.876278 47.228646 85.984726 46.337094 85.984726 45.237382 C 85.984726 44.13767 86.876278 43.242191 87.97599 43.242191 C 89.075702 43.242191 89.967254 44.13767 89.967254 45.237382 Z M 89.967254 45.237382 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.843334 40.335809 C 85.843334 41.439449 84.951782 42.331001 83.85207 42.331001 C 82.748431 42.331001 81.856878 41.439449 81.856878 40.335809 C 81.856878 39.236097 82.748431 38.344545 83.85207 38.344545 C 84.951782 38.344545 85.843334 39.236097 85.843334 40.335809 Z M 85.843334 40.335809 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.877159 43.206843 C 84.877159 44.306555 83.985606 45.202034 82.885895 45.202034 C 81.786183 45.202034 80.89463 44.306555 80.89463 43.206843 C 80.89463 42.107131 81.786183 41.215579 82.885895 41.215579 C 83.985606 41.215579 84.877159 42.107131 84.877159 43.206843 Z M 84.877159 43.206843 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.953305 39.298938 C 85.953305 40.39865 85.061753 41.290202 83.962041 41.290202 C 82.862329 41.290202 81.96685 40.39865 81.96685 39.298938 C 81.96685 38.199226 82.862329 37.303746 83.962041 37.303746 C 85.061753 37.303746 85.953305 38.199226 85.953305 39.298938 Z M 85.953305 39.298938 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 60.746337 55.335094 C 60.746337 56.434806 59.850857 57.326358 58.751145 57.326358 C 57.651433 57.326358 56.759881 56.434806 56.759881 55.335094 C 56.759881 54.235382 57.651433 53.34383 58.751145 53.34383 C 59.850857 53.34383 60.746337 54.235382 60.746337 55.335094 Z M 60.746337 55.335094 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.254845 44.216221 C 88.254845 45.315933 87.363293 46.207485 86.259654 46.207485 C 85.159942 46.207485 84.26839 45.315933 84.26839 44.216221 C 84.26839 43.116509 85.159942 42.224957 86.259654 42.224957 C 87.363293 42.224957 88.254845 43.116509 88.254845 44.216221 Z M 88.254845 44.216221 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.408258 41.384463 C 83.408258 42.484175 82.516706 43.375727 81.413066 43.375727 C 80.313354 43.375727 79.421802 42.484175 79.421802 41.384463 C 79.421802 40.284751 80.313354 39.393199 81.413066 39.393199 C 82.516706 39.393199 83.408258 40.284751 83.408258 41.384463 Z M 83.408258 41.384463 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.041235 41.07026 C 87.041235 42.169972 86.149682 43.061524 85.04997 43.061524 C 83.950259 43.061524 83.058706 42.169972 83.058706 41.07026 C 83.058706 39.96662 83.950259 39.075068 85.04997 39.075068 C 86.149682 39.075068 87.041235 39.96662 87.041235 41.07026 Z M 87.041235 41.07026 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.88261 40.233693 C 85.88261 41.337333 84.991057 42.228885 83.887418 42.228885 C 82.787706 42.228885 81.896154 41.337333 81.896154 40.233693 C 81.896154 39.133981 82.787706 38.242429 83.887418 38.242429 C 84.991057 38.242429 85.88261 39.133981 85.88261 40.233693 Z M 85.88261 40.233693 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.174771 42.511668 C 87.174771 43.61138 86.279291 44.506859 85.179579 44.506859 C 84.079867 44.506859 83.188315 43.61138 83.188315 42.511668 C 83.188315 41.411956 84.079867 40.520404 85.179579 40.520404 C 86.279291 40.520404 87.174771 41.411956 87.174771 42.511668 Z M 87.174771 42.511668 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.970301 41.050622 C 91.970301 42.150334 91.074821 43.041886 89.975109 43.041886 C 88.875397 43.041886 87.983845 42.150334 87.983845 41.050622 C 87.983845 39.946982 88.875397 39.05543 89.975109 39.05543 C 91.074821 39.05543 91.970301 39.946982 91.970301 41.050622 Z M 91.970301 41.050622 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.951782 42.417407 C 84.951782 43.517119 84.06023 44.408671 82.960518 44.408671 C 81.860806 44.408671 80.969254 43.517119 80.969254 42.417407 C 80.969254 41.317695 81.860806 40.426143 82.960518 40.426143 C 84.06023 40.426143 84.951782 41.317695 84.951782 42.417407 Z M 84.951782 42.417407 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.712844 42.790523 C 87.712844 43.894163 86.821292 44.785715 85.72158 44.785715 C 84.621868 44.785715 83.730316 43.894163 83.730316 42.790523 C 83.730316 41.690811 84.621868 40.799259 85.72158 40.799259 C 86.821292 40.799259 87.712844 41.690811 87.712844 42.790523 Z M 87.712844 42.790523 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.448176 44.758222 C 86.448176 45.857934 85.552696 46.749486 84.452984 46.749486 C 83.353272 46.749486 82.46172 45.857934 82.46172 44.758222 C 82.46172 43.654583 83.353272 42.76303 84.452984 42.76303 C 85.552696 42.76303 86.448176 43.654583 86.448176 44.758222 Z M 86.448176 44.758222 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.720699 45.73618 C 87.720699 46.835892 86.829147 47.727444 85.725508 47.727444 C 84.625796 47.727444 83.734244 46.835892 83.734244 45.73618 C 83.734244 44.636468 84.625796 43.744916 85.725508 43.744916 C 86.829147 43.744916 87.720699 44.636468 87.720699 45.73618 Z M 87.720699 45.73618 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 58.374101 56.423024 C 58.374101 57.526663 57.482549 58.418215 56.382837 58.418215 C 55.279198 58.418215 54.387646 57.526663 54.387646 56.423024 C 54.387646 55.323312 55.279198 54.431759 56.382837 54.431759 C 57.482549 54.431759 58.374101 55.323312 58.374101 56.423024 Z M 58.374101 56.423024 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.851189 42.857292 C 85.851189 43.957003 84.959637 44.848556 83.859925 44.848556 C 82.756286 44.848556 81.864733 43.957003 81.864733 42.857292 C 81.864733 41.75758 82.756286 40.866027 83.859925 40.866027 C 84.959637 40.866027 85.851189 41.75758 85.851189 42.857292 Z M 85.851189 42.857292 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 71.558862 49.42807 C 71.558862 50.527782 70.66731 51.419334 69.567598 51.419334 C 68.467886 51.419334 67.572406 50.527782 67.572406 49.42807 C 67.572406 48.328358 68.467886 47.436806 69.567598 47.436806 C 70.66731 47.436806 71.558862 48.328358 71.558862 49.42807 Z M 71.558862 49.42807 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 62.67476 55.342949 C 62.67476 56.446589 61.783208 57.338141 60.683496 57.338141 C 59.583784 57.338141 58.692232 56.446589 58.692232 55.342949 C 58.692232 54.243237 59.583784 53.351685 60.683496 53.351685 C 61.783208 53.351685 62.67476 54.243237 62.67476 55.342949 Z M 62.67476 55.342949 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.898962 43.733134 C 88.898962 44.832845 88.00741 45.724398 86.907698 45.724398 C 85.807986 45.724398 84.912506 44.832845 84.912506 43.733134 C 84.912506 42.633422 85.807986 41.741869 86.907698 41.741869 C 88.00741 41.741869 88.898962 42.633422 88.898962 43.733134 Z M 88.898962 43.733134 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.90977 55.716066 C 59.90977 56.815778 59.018218 57.70733 57.914579 57.70733 C 56.814867 57.70733 55.923315 56.815778 55.923315 55.716066 C 55.923315 54.616354 56.814867 53.724802 57.914579 53.724802 C 59.018218 53.724802 59.90977 54.616354 59.90977 55.716066 Z M 59.90977 55.716066 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.774162 44.204439 C 86.774162 45.308078 85.88261 46.19963 84.782898 46.19963 C 83.679258 46.19963 82.787706 45.308078 82.787706 44.204439 C 82.787706 43.104727 83.679258 42.213175 84.782898 42.213175 C 85.88261 42.213175 86.774162 43.104727 86.774162 44.204439 Z M 86.774162 44.204439 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.348464 42.429189 C 85.348464 43.528901 84.456912 44.420453 83.3572 44.420453 C 82.257488 44.420453 81.365936 43.528901 81.365936 42.429189 C 81.365936 41.329477 82.257488 40.437925 83.3572 40.437925 C 84.456912 40.437925 85.348464 41.329477 85.348464 42.429189 Z M 85.348464 42.429189 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.606801 38.882618 C 87.606801 39.98233 86.715249 40.873883 85.615537 40.873883 C 84.511897 40.873883 83.620345 39.98233 83.620345 38.882618 C 83.620345 37.782907 84.511897 36.891354 85.615537 36.891354 C 86.715249 36.891354 87.606801 37.782907 87.606801 38.882618 Z M 87.606801 38.882618 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.897035 46.568819 C 79.897035 47.668531 79.005482 48.560083 77.905771 48.560083 C 76.806059 48.560083 75.914506 47.668531 75.914506 46.568819 C 75.914506 45.469107 76.806059 44.573628 77.905771 44.573628 C 79.005482 44.573628 79.897035 45.469107 79.897035 46.568819 Z M 79.897035 46.568819 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.89832 42.794451 C 85.89832 43.89809 85.006768 44.789642 83.903128 44.789642 C 82.803416 44.789642 81.911864 43.89809 81.911864 42.794451 C 81.911864 41.694739 82.803416 40.803187 83.903128 40.803187 C 85.006768 40.803187 85.89832 41.694739 85.89832 42.794451 Z M 85.89832 42.794451 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 60.235756 55.099442 C 60.235756 56.199154 59.344204 57.094633 58.240565 57.094633 C 57.140853 57.094633 56.249301 56.199154 56.249301 55.099442 C 56.249301 53.99973 57.140853 53.108178 58.240565 53.108178 C 59.344204 53.108178 60.235756 53.99973 60.235756 55.099442 Z M 60.235756 55.099442 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 84.511897 43.764554 C 84.511897 44.868193 83.620345 45.759745 82.520633 45.759745 C 81.416994 45.759745 80.525441 44.868193 80.525441 43.764554 C 80.525441 42.664842 81.416994 41.77329 82.520633 41.77329 C 83.620345 41.77329 84.511897 42.664842 84.511897 43.764554 Z M 84.511897 43.764554 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.110169 42.276015 C 91.110169 43.375727 90.218617 44.267279 89.118905 44.267279 C 88.019193 44.267279 87.123713 43.375727 87.123713 42.276015 C 87.123713 41.176303 88.019193 40.284751 89.118905 40.284751 C 90.218617 40.284751 91.110169 41.176303 91.110169 42.276015 Z M 91.110169 42.276015 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 70.918672 50.476724 C 70.918672 51.576436 70.02712 52.467988 68.927408 52.467988 C 67.823769 52.467988 66.932217 51.576436 66.932217 50.476724 C 66.932217 49.377012 67.823769 48.481532 68.927408 48.481532 C 70.02712 48.481532 70.918672 49.377012 70.918672 50.476724 Z M 70.918672 50.476724 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 61.190149 54.282513 C 61.190149 55.382225 60.298597 56.277704 59.198885 56.277704 C 58.099173 56.277704 57.207621 55.382225 57.207621 54.282513 C 57.207621 53.182801 58.099173 52.291249 59.198885 52.291249 C 60.298597 52.291249 61.190149 53.182801 61.190149 54.282513 Z M 61.190149 54.282513 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.983845 38.682314 C 87.983845 39.782026 87.088365 40.677505 85.988653 40.677505 C 84.888941 40.677505 83.997389 39.782026 83.997389 38.682314 C 83.997389 37.582602 84.888941 36.69105 85.988653 36.69105 C 87.088365 36.69105 87.983845 37.582602 87.983845 38.682314 Z M 87.983845 38.682314 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.86121 44.742512 C 89.86121 45.846151 88.969658 46.737704 87.869946 46.737704 C 86.770234 46.737704 85.878682 45.846151 85.878682 44.742512 C 85.878682 43.6428 86.770234 42.751248 87.869946 42.751248 C 88.969658 42.751248 89.86121 43.6428 89.86121 44.742512 Z M 89.86121 44.742512 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 60.671714 54.404267 C 60.671714 55.503979 59.780162 56.399458 58.68045 56.399458 C 57.580738 56.399458 56.685258 55.503979 56.685258 54.404267 C 56.685258 53.304555 57.580738 52.413003 58.68045 52.413003 C 59.780162 52.413003 60.671714 53.304555 60.671714 54.404267 Z M 60.671714 54.404267 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.534986 41.164521 C 94.534986 42.264233 93.643434 43.159712 92.543722 43.159712 C 91.44401 43.159712 90.552458 42.264233 90.552458 41.164521 C 90.552458 40.064809 91.44401 39.173257 92.543722 39.173257 C 93.643434 39.173257 94.534986 40.064809 94.534986 41.164521 Z M 94.534986 41.164521 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.796846 39.173257 C 88.796846 40.272968 87.905294 41.164521 86.805582 41.164521 C 85.70587 41.164521 84.814318 40.272968 84.814318 39.173257 C 84.814318 38.069617 85.70587 37.178065 86.805582 37.178065 C 87.905294 37.178065 88.796846 38.069617 88.796846 39.173257 Z M 88.796846 39.173257 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.405615 41.671174 C 89.405615 42.774813 88.510135 43.666365 87.410424 43.666365 C 86.310712 43.666365 85.419159 42.774813 85.419159 41.671174 C 85.419159 40.571462 86.310712 39.67991 87.410424 39.67991 C 88.510135 39.67991 89.405615 40.571462 89.405615 41.671174 Z M 89.405615 41.671174 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.948497 39.558156 C 87.948497 40.657868 87.056945 41.553347 85.957233 41.553347 C 84.857521 41.553347 83.965969 40.657868 83.965969 39.558156 C 83.965969 38.458444 84.857521 37.566892 85.957233 37.566892 C 87.056945 37.566892 87.948497 38.458444 87.948497 39.558156 Z M 87.948497 39.558156 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 59.281364 55.276181 C 59.281364 56.375893 58.389811 57.267445 57.2901 57.267445 C 56.190388 57.267445 55.294908 56.375893 55.294908 55.276181 C 55.294908 54.176469 56.190388 53.284917 57.2901 53.284917 C 58.389811 53.284917 59.281364 54.176469 59.281364 55.276181 Z M 59.281364 55.276181 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 68.145827 50.885189 C 68.145827 51.9849 67.254275 52.88038 66.154563 52.88038 C 65.054851 52.88038 64.159372 51.9849 64.159372 50.885189 C 64.159372 49.785477 65.054851 48.893924 66.154563 48.893924 C 67.254275 48.893924 68.145827 49.785477 68.145827 50.885189 Z M 68.145827 50.885189 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.519991 46.223195 C 79.519991 47.322907 78.628438 48.21446 77.524799 48.21446 C 76.425087 48.21446 75.533535 47.322907 75.533535 46.223195 C 75.533535 45.123484 76.425087 44.231931 77.524799 44.231931 C 78.628438 44.231931 79.519991 45.123484 79.519991 46.223195 Z M 79.519991 46.223195 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 56.300359 33.851436 C 56.300359 34.951148 55.408807 35.8427 54.309095 35.8427 C 53.209383 35.8427 52.317831 34.951148 52.317831 33.851436 C 52.317831 32.751724 53.209383 31.856245 54.309095 31.856245 C 55.408807 31.856245 56.300359 32.751724 56.300359 33.851436 Z M 56.300359 33.851436 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.363531 45.056715 C 82.363531 46.156427 81.471979 47.047979 80.372267 47.047979 C 79.272555 47.047979 78.381003 46.156427 78.381003 45.056715 C 78.381003 43.953076 79.272555 43.061524 80.372267 43.061524 C 81.471979 43.061524 82.363531 43.953076 82.363531 45.056715 Z M 82.363531 45.056715 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.016788 41.620116 C 89.016788 42.719828 88.125236 43.61138 87.021597 43.61138 C 85.921885 43.61138 85.030333 42.719828 85.030333 41.620116 C 85.030333 40.520404 85.921885 39.628852 87.021597 39.628852 C 88.125236 39.628852 89.016788 40.520404 89.016788 41.620116 Z M 89.016788 41.620116 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.689279 41.80471 C 87.689279 42.904422 86.797727 43.795974 85.698015 43.795974 C 84.598303 43.795974 83.702823 42.904422 83.702823 41.80471 C 83.702823 40.701071 84.598303 39.809518 85.698015 39.809518 C 86.797727 39.809518 87.689279 40.701071 87.689279 41.80471 Z M 87.689279 41.80471 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.192005 40.8621 C 88.192005 41.965739 87.296525 42.857292 86.196813 42.857292 C 85.097101 42.857292 84.205549 41.965739 84.205549 40.8621 C 84.205549 39.762388 85.097101 38.870836 86.196813 38.870836 C 87.296525 38.870836 88.192005 39.762388 88.192005 40.8621 Z M 88.192005 40.8621 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.482643 40.595027 C 88.482643 41.694739 87.591091 42.586291 86.491379 42.586291 C 85.387739 42.586291 84.496187 41.694739 84.496187 40.595027 C 84.496187 39.495315 85.387739 38.599835 86.491379 38.599835 C 87.591091 38.599835 88.482643 39.495315 88.482643 40.595027 Z M 88.482643 40.595027 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.986249 42.810161 C 86.986249 43.909873 86.094697 44.801425 84.994985 44.801425 C 83.895273 44.801425 82.999793 43.909873 82.999793 42.810161 C 82.999793 41.706522 83.895273 40.814969 84.994985 40.814969 C 86.094697 40.814969 86.986249 41.706522 86.986249 42.810161 Z M 86.986249 42.810161 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.16932 44.318337 C 86.16932 45.418049 85.277768 46.309601 84.178056 46.309601 C 83.078344 46.309601 82.182864 45.418049 82.182864 44.318337 C 82.182864 43.214698 83.078344 42.323146 84.178056 42.323146 C 85.277768 42.323146 86.16932 43.214698 86.16932 44.318337 Z M 86.16932 44.318337 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.221663 42.04429 C 92.221663 43.144002 91.330111 44.035554 90.226472 44.035554 C 89.12676 44.035554 88.235208 43.144002 88.235208 42.04429 C 88.235208 40.944578 89.12676 40.053026 90.226472 40.053026 C 91.330111 40.053026 92.221663 40.944578 92.221663 42.04429 Z M 92.221663 42.04429 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 64.014052 55.826037 C 64.014052 56.925749 63.1225 57.817301 62.022788 57.817301 C 60.919149 57.817301 60.027597 56.925749 60.027597 55.826037 C 60.027597 54.726325 60.919149 53.834773 62.022788 53.834773 C 63.1225 53.834773 64.014052 54.726325 64.014052 55.826037 Z M 64.014052 55.826037 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.041235 42.967263 C 87.041235 44.066975 86.149682 44.962454 85.04997 44.962454 C 83.946331 44.962454 83.054779 44.066975 83.054779 42.967263 C 83.054779 41.867551 83.946331 40.975999 85.04997 40.975999 C 86.149682 40.975999 87.041235 41.867551 87.041235 42.967263 Z M 87.041235 42.967263 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 70.031048 49.534114 C 70.031048 50.633826 69.139496 51.529306 68.035856 51.529306 C 66.936144 51.529306 66.044592 50.633826 66.044592 49.534114 C 66.044592 48.434402 66.936144 47.54285 68.035856 47.54285 C 69.139496 47.54285 70.031048 48.434402 70.031048 49.534114 Z M 70.031048 49.534114 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.723508 43.324669 C 94.723508 44.424381 93.831956 45.315933 92.732244 45.315933 C 91.632532 45.315933 90.737052 44.424381 90.737052 43.324669 C 90.737052 42.224957 91.632532 41.329477 92.732244 41.329477 C 93.831956 41.329477 94.723508 42.224957 94.723508 43.324669 Z M 94.723508 43.324669 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 78.384931 67.671506 C 78.384931 68.775145 77.493379 69.666697 76.389739 69.666697 C 75.290027 69.666697 74.398475 68.775145 74.398475 67.671506 C 74.398475 66.571794 75.290027 65.680241 76.389739 65.680241 C 77.493379 65.680241 78.384931 66.571794 78.384931 67.671506 Z M 78.384931 67.671506 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 45.978777 44.840701 L 49.965233 44.840701 L 49.965233 48.827156 L 45.978777 48.827156 Z M 45.978777 44.840701 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.291219 44.82499 L 54.273747 44.82499 L 54.273747 48.811446 L 50.291219 48.811446 Z M 50.291219 44.82499 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 68.923481 32.158666 L 72.906009 32.158666 L 72.906009 36.145121 L 68.923481 36.145121 Z M 68.923481 32.158666 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 101.793084 57.652344 L 105.77954 57.652344 L 105.77954 61.6388 L 101.793084 61.6388 Z M 101.793084 57.652344 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.125381 45.916847 L 56.107909 45.916847 L 56.107909 49.899375 L 52.125381 49.899375 Z M 52.125381 45.916847 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 70.309903 29.181588 L 74.292431 29.181588 L 74.292431 33.168044 L 70.309903 33.168044 Z M 70.309903 29.181588 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.800701 45.936485 L 110.787157 45.936485 L 110.787157 49.922941 L 106.800701 49.922941 Z M 106.800701 45.936485 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 67.489928 28.953791 L 71.476383 28.953791 L 71.476383 32.940247 L 67.489928 32.940247 Z M 67.489928 28.953791 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 45.821675 47.519285 L 49.808131 47.519285 L 49.808131 51.50574 L 45.821675 51.50574 Z M 45.821675 47.519285 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.678522 19.657298 L 53.66105 19.657298 L 53.66105 23.643753 L 49.678522 23.643753 Z M 49.678522 19.657298 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 45.044022 45.441615 L 49.030478 45.441615 L 49.030478 49.42807 L 45.044022 49.42807 Z M 45.044022 45.441615 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.483047 55.83782 L 100.469503 55.83782 L 100.469503 59.824275 L 96.483047 59.824275 Z M 96.483047 55.83782 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.942569 55.743559 L 100.929025 55.743559 L 100.929025 59.726087 L 96.942569 59.726087 Z M 96.942569 55.743559 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 46.685735 46.293891 L 50.67219 46.293891 L 50.67219 50.280347 L 46.685735 50.280347 Z M 46.685735 46.293891 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.995151 59.105535 L 101.977679 59.105535 L 101.977679 63.088063 L 97.995151 63.088063 Z M 97.995151 59.105535 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 78.710917 72.639847 L 82.697372 72.639847 L 82.697372 76.622375 L 78.710917 76.622375 Z M 78.710917 72.639847 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 48.142853 45.115628 L 52.129309 45.115628 L 52.129309 49.098157 L 48.142853 49.098157 Z M 48.142853 45.115628 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.783944 60.849364 L 99.766473 60.849364 L 99.766473 64.831892 L 95.783944 64.831892 Z M 95.783944 60.849364 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 99.668284 57.954765 L 103.65474 57.954765 L 103.65474 61.937293 L 99.668284 61.937293 Z M 99.668284 57.954765 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 53.767094 46.113224 L 57.749622 46.113224 L 57.749622 50.09968 L 53.767094 50.09968 Z M 53.767094 46.113224 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.491783 60.260233 L 98.478239 60.260233 L 98.478239 64.246688 L 94.491783 64.246688 Z M 94.491783 60.260233 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 101.203953 57.660199 L 105.190409 57.660199 L 105.190409 61.646655 L 101.203953 61.646655 Z M 101.203953 57.660199 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.336204 60.004942 L 99.318733 60.004942 L 99.318733 63.987471 L 95.336204 63.987471 Z M 95.336204 60.004942 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.226855 44.043409 L 53.209383 44.043409 L 53.209383 48.029865 L 49.226855 48.029865 Z M 49.226855 44.043409 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.96916 44.416526 L 53.955616 44.416526 L 53.955616 48.402982 L 49.96916 48.402982 Z M 49.96916 44.416526 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 48.504187 43.583887 L 52.490643 43.583887 L 52.490643 47.566415 L 48.504187 47.566415 Z M 48.504187 43.583887 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 70.313831 27.610571 L 74.296359 27.610571 L 74.296359 31.597027 L 70.313831 31.597027 Z M 70.313831 27.610571 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 69.693279 25.187277 L 73.679735 25.187277 L 73.679735 29.173733 L 69.693279 29.173733 Z M 69.693279 25.187277 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.741456 70.644655 L 84.723984 70.644655 L 84.723984 74.631111 L 80.741456 74.631111 Z M 80.741456 70.644655 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 60.314307 34.45235 L 64.296836 34.45235 L 64.296836 38.434879 L 60.314307 38.434879 Z M 60.314307 34.45235 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 78.192481 67.294461 L 82.178937 67.294461 L 82.178937 71.27699 L 78.192481 71.27699 Z M 78.192481 67.294461 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.848142 72.384557 L 87.834598 72.384557 L 87.834598 76.371012 L 83.848142 76.371012 Z M 83.848142 72.384557 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.058613 41.364825 L 56.045069 41.364825 L 56.045069 45.351281 L 52.058613 45.351281 Z M 52.058613 41.364825 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 68.648553 25.15193 L 72.635008 25.15193 L 72.635008 29.138385 L 68.648553 29.138385 Z M 68.648553 25.15193 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.781706 44.828918 L 113.768162 44.828918 L 113.768162 48.815374 L 109.781706 48.815374 Z M 109.781706 44.828918 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.399045 58.127577 L 99.381573 58.127577 L 99.381573 62.114033 L 95.399045 62.114033 Z M 95.399045 58.127577 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 95.15161 61.882308 L 99.138066 61.882308 L 99.138066 65.868763 L 95.15161 65.868763 Z M 95.15161 61.882308 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.210927 56.159878 L 107.193456 56.159878 L 107.193456 60.142406 L 103.210927 60.142406 Z M 103.210927 56.159878 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 65.490808 42.873002 L 69.477264 42.873002 L 69.477264 46.85553 L 65.490808 46.85553 Z M 65.490808 42.873002 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.604801 57.927272 L 100.591256 57.927272 L 100.591256 61.913728 L 96.604801 61.913728 Z M 96.604801 57.927272 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 67.372101 28.431428 L 71.358557 28.431428 L 71.358557 32.417883 L 67.372101 32.417883 Z M 67.372101 28.431428 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 46.179082 43.332524 L 50.165537 43.332524 L 50.165537 47.31898 L 46.179082 47.31898 Z M 46.179082 43.332524 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 54.607588 39.185039 L 58.590116 39.185039 L 58.590116 43.167567 L 54.607588 43.167567 Z M 54.607588 39.185039 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 45.409283 42.150334 L 49.395739 42.150334 L 49.395739 46.132862 L 45.409283 46.132862 Z M 45.409283 42.150334 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.519276 61.14393 L 98.505731 61.14393 L 98.505731 65.126458 L 94.519276 65.126458 Z M 94.519276 61.14393 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.45858 47.000849 L 53.445035 47.000849 L 53.445035 50.987305 L 49.45858 50.987305 Z M 49.45858 47.000849 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 47.702968 45.119556 L 51.689424 45.119556 L 51.689424 49.102084 L 47.702968 49.102084 Z M 47.702968 45.119556 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 47.632272 43.544611 L 51.618728 43.544611 L 51.618728 47.531067 L 47.632272 47.531067 Z M 47.632272 43.544611 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.87492 58.677433 L 102.861376 58.677433 L 102.861376 62.659961 L 98.87492 62.659961 Z M 98.87492 58.677433 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 68.994176 29.900329 L 72.980632 29.900329 L 72.980632 33.886784 L 68.994176 33.886784 Z M 68.994176 29.900329 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 48.900869 46.313529 L 52.887324 46.313529 L 52.887324 50.296057 L 48.900869 50.296057 Z M 48.900869 46.313529 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 67.815914 30.552301 L 71.802369 30.552301 L 71.802369 34.538756 L 67.815914 34.538756 Z M 67.815914 30.552301 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 98.427181 58.422143 L 102.413636 58.422143 L 102.413636 62.408598 L 98.427181 62.408598 Z M 98.427181 58.422143 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 46.351893 44.946744 L 50.338349 44.946744 L 50.338349 48.9332 L 46.351893 48.9332 Z M 46.351893 44.946744 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.034665 59.404028 L 97.02112 59.404028 L 97.02112 63.390484 L 93.034665 63.390484 Z M 93.034665 59.404028 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 71.841645 28.816327 L 75.828101 28.816327 L 75.828101 32.802783 L 71.841645 32.802783 Z M 71.841645 28.816327 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 67.195362 32.842058 L 71.181818 32.842058 L 71.181818 36.828514 L 67.195362 36.828514 Z M 67.195362 32.842058 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 68.778162 29.680386 L 72.764617 29.680386 L 72.764617 33.666842 L 68.778162 33.666842 Z M 68.778162 29.680386 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.533462 56.022414 L 97.519918 56.022414 L 97.519918 60.004942 L 93.533462 60.004942 Z M 93.533462 56.022414 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.89606 43.847032 L 54.882516 43.847032 L 54.882516 47.833488 L 50.89606 47.833488 Z M 50.89606 43.847032 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 64.937025 31.923013 L 68.923481 31.923013 L 68.923481 35.909469 L 64.937025 35.909469 Z M 64.937025 31.923013 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 71.456746 29.38582 L 75.443201 29.38582 L 75.443201 33.372276 L 71.456746 33.372276 Z M 71.456746 29.38582 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 66.425564 31.125722 L 70.408092 31.125722 L 70.408092 35.112178 L 66.425564 35.112178 Z M 66.425564 31.125722 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 66.637651 32.649608 L 70.624107 32.649608 L 70.624107 36.636064 L 66.637651 36.636064 Z M 66.637651 32.649608 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 69.630438 31.369229 L 73.616894 31.369229 L 73.616894 35.355685 L 69.630438 35.355685 Z M 69.630438 31.369229 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 94.566406 59.462942 L 98.552862 59.462942 L 98.552862 63.44547 L 94.566406 63.44547 Z M 94.566406 59.462942 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.20731 73.562819 L 84.189839 73.562819 L 84.189839 77.549275 L 80.20731 77.549275 Z M 80.20731 73.562819 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 47.345562 18.7736 L 51.332017 18.7736 L 51.332017 22.760056 L 47.345562 22.760056 Z M 47.345562 18.7736 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.608086 60.146334 L 97.594541 60.146334 L 97.594541 64.13279 L 93.608086 64.13279 Z M 93.608086 60.146334 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.808131 47.122603 L 53.794587 47.122603 L 53.794587 51.105131 L 49.808131 51.105131 Z M 49.808131 47.122603 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 96.157061 57.660199 L 100.143517 57.660199 L 100.143517 61.642728 L 96.157061 61.642728 Z M 96.157061 57.660199 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.874899 133.414641 C 49.874899 134.514353 48.983347 135.405905 47.879708 135.405905 C 46.779996 135.405905 45.888443 134.514353 45.888443 133.414641 C 45.888443 132.314929 46.779996 131.423377 47.879708 131.423377 C 48.983347 131.423377 49.874899 132.314929 49.874899 133.414641 Z M 46.473647 132.004653 L 49.289695 134.824628 M 46.473647 134.824628 L 49.289695 132.004653 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 4.763145 34.754771 C 4.763145 35.858411 3.871593 36.749963 2.771881 36.749963 C 1.672169 36.749963 0.780617 35.858411 0.780617 34.754771 C 0.780617 33.655059 1.672169 32.763507 2.771881 32.763507 C 3.871593 32.763507 4.763145 33.655059 4.763145 34.754771 Z M 1.361893 33.348711 L 4.181869 36.164759 M 1.361893 36.164759 L 4.181869 33.348711 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 6.326307 36.321861 C 6.326307 37.421573 5.434755 38.313125 4.335043 38.313125 C 3.235331 38.313125 2.343779 37.421573 2.343779 36.321861 C 2.343779 35.222149 3.235331 34.330597 4.335043 34.330597 C 5.434755 34.330597 6.326307 35.222149 6.326307 36.321861 Z M 2.925055 34.911873 L 5.745031 37.731848 M 2.925055 37.731848 L 5.745031 34.911873 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.882082 80.585265 C 162.882082 81.684977 161.99053 82.57653 160.890818 82.57653 C 159.787178 82.57653 158.895626 81.684977 158.895626 80.585265 C 158.895626 79.481626 159.787178 78.590074 160.890818 78.590074 C 161.99053 78.590074 162.882082 79.481626 162.882082 80.585265 Z M 159.48083 79.175278 L 162.296878 81.991326 M 159.48083 81.991326 L 162.296878 79.175278 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.120377 98.223859 C 157.120377 99.327499 156.228825 100.219051 155.129113 100.219051 C 154.029401 100.219051 153.137849 99.327499 153.137849 98.223859 C 153.137849 97.124147 154.029401 96.232595 155.129113 96.232595 C 156.228825 96.232595 157.120377 97.124147 157.120377 98.223859 Z M 153.719125 96.817799 L 156.5391 99.633847 M 153.719125 99.633847 L 156.5391 96.817799 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 46.073038 132.849075 C 46.073038 133.952714 45.177558 134.844266 44.077846 134.844266 C 42.978134 134.844266 42.086582 133.952714 42.086582 132.849075 C 42.086582 131.749363 42.978134 130.85781 44.077846 130.85781 C 45.177558 130.85781 46.073038 131.749363 46.073038 132.849075 Z M 42.667859 131.443014 L 45.487834 134.259062 M 42.667859 134.259062 L 45.487834 131.443014 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.079131 131.270202 C 50.079131 132.369914 49.187579 133.261467 48.08394 133.261467 C 46.984228 133.261467 46.092676 132.369914 46.092676 131.270202 C 46.092676 130.166563 46.984228 129.275011 48.08394 129.275011 C 49.187579 129.275011 50.079131 130.166563 50.079131 131.270202 Z M 46.67788 129.860215 L 49.493928 132.676263 M 46.67788 132.676263 L 49.493928 129.860215 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.797872 -0.0000530827 C 50.797872 1.099659 49.90632 1.991211 48.806608 1.991211 C 47.702968 1.991211 46.811416 1.099659 46.811416 -0.0000530827 C 46.811416 -1.099765 47.702968 -1.991317 48.806608 -1.991317 C 49.90632 -1.991317 50.797872 -1.099765 50.797872 -0.0000530827 Z M 47.39662 -1.410041 L 50.212668 1.409935 M 47.39662 1.409935 L 50.212668 -1.410041 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 7.437802 35.544207 C 7.437802 36.643919 6.542322 37.535471 5.44261 37.535471 C 4.342898 37.535471 3.451346 36.643919 3.451346 35.544207 C 3.451346 34.440568 4.342898 33.549016 5.44261 33.549016 C 6.542322 33.549016 7.437802 34.440568 7.437802 35.544207 Z M 4.032622 34.134219 L 6.852598 36.950267 M 4.032622 36.950267 L 6.852598 34.134219 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 76.370101 124.090655 C 76.370101 125.190367 75.478549 126.081919 74.378837 126.081919 C 73.279125 126.081919 72.387573 125.190367 72.387573 124.090655 C 72.387573 122.990943 73.279125 122.099391 74.378837 122.099391 C 75.478549 122.099391 76.370101 122.990943 76.370101 124.090655 Z M 72.96885 122.680667 L 75.788825 125.500642 M 72.96885 125.500642 L 75.788825 122.680667 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 48.590593 132.907988 C 48.590593 134.0077 47.699041 134.903179 46.599329 134.903179 C 45.499617 134.903179 44.608065 134.0077 44.608065 132.907988 C 44.608065 131.808276 45.499617 130.916724 46.599329 130.916724 C 47.699041 130.916724 48.590593 131.808276 48.590593 132.907988 Z M 45.189341 131.498 L 48.009316 134.317975 M 45.189341 134.317975 L 48.009316 131.498 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.901315 94.516259 C 154.901315 95.615971 154.009763 96.507523 152.910051 96.507523 C 151.810339 96.507523 150.918787 95.615971 150.918787 94.516259 C 150.918787 93.416547 151.810339 92.524995 152.910051 92.524995 C 154.009763 92.524995 154.901315 93.416547 154.901315 94.516259 Z M 151.500063 93.106271 L 154.320039 95.926247 M 151.500063 95.926247 L 154.320039 93.106271 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.580333 130.704636 C 49.580333 131.804348 48.688781 132.6959 47.589069 132.6959 C 46.489357 132.6959 45.597805 131.804348 45.597805 130.704636 C 45.597805 129.604924 46.489357 128.713372 47.589069 128.713372 C 48.688781 128.713372 49.580333 129.604924 49.580333 130.704636 Z M 46.179082 129.294649 L 48.999057 132.114624 M 46.179082 132.114624 L 48.999057 129.294649 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.037898 93.298721 C 157.037898 94.398433 156.142419 95.289985 155.042707 95.289985 C 153.942995 95.289985 153.051443 94.398433 153.051443 93.298721 C 153.051443 92.195081 153.942995 91.303529 155.042707 91.303529 C 156.142419 91.303529 157.037898 92.195081 157.037898 93.298721 Z M 153.632719 91.888733 L 156.452695 94.704781 M 153.632719 94.704781 L 156.452695 91.888733 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.753788 132.39348 C 52.753788 133.493192 51.862236 134.384744 50.762524 134.384744 C 49.662812 134.384744 48.77126 133.493192 48.77126 132.39348 C 48.77126 131.293768 49.662812 130.402216 50.762524 130.402216 C 51.862236 130.402216 52.753788 131.293768 52.753788 132.39348 Z M 49.352536 130.983492 L 52.172512 133.803467 M 49.352536 133.803467 L 52.172512 130.983492 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.300027 109.323095 C 30.300027 110.422806 29.408475 111.314359 28.308763 111.314359 C 27.209051 111.314359 26.313571 110.422806 26.313571 109.323095 C 26.313571 108.219455 27.209051 107.327903 28.308763 107.327903 C 29.408475 107.327903 30.300027 108.219455 30.300027 109.323095 Z M 26.898775 107.913107 L 29.718751 110.729155 M 26.898775 110.729155 L 29.718751 107.913107 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 48.999057 132.330639 C 48.999057 133.434278 48.107505 134.325831 47.007793 134.325831 C 45.908081 134.325831 45.016529 133.434278 45.016529 132.330639 C 45.016529 131.230927 45.908081 130.339375 47.007793 130.339375 C 48.107505 130.339375 48.999057 131.230927 48.999057 132.330639 Z M 45.597805 130.924579 L 48.417781 133.740627 M 45.597805 133.740627 L 48.417781 130.924579 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 5.878567 36.400412 C 5.878567 37.500123 4.987015 38.391676 3.887303 38.391676 C 2.783664 38.391676 1.892112 37.500123 1.892112 36.400412 C 1.892112 35.3007 2.783664 34.409147 3.887303 34.409147 C 4.987015 34.409147 5.878567 35.3007 5.878567 36.400412 Z M 2.477315 34.990424 L 5.293363 37.810399 M 2.477315 37.810399 L 5.293363 34.990424 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 43.284483 63.598644 C 43.284483 64.698356 42.392931 65.589908 41.293219 65.589908 C 40.193507 65.589908 39.298027 64.698356 39.298027 63.598644 C 39.298027 62.495004 40.193507 61.603452 41.293219 61.603452 C 42.392931 61.603452 43.284483 62.495004 43.284483 63.598644 Z M 39.883231 62.188656 L 42.703206 65.004704 M 39.883231 65.004704 L 42.703206 62.188656 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 157.049681 94.983637 C 157.049681 96.087276 156.158129 96.978828 155.058417 96.978828 C 153.958705 96.978828 153.067153 96.087276 153.067153 94.983637 C 153.067153 93.883925 153.958705 92.992372 155.058417 92.992372 C 156.158129 92.992372 157.049681 93.883925 157.049681 94.983637 Z M 153.648429 93.577576 L 156.468405 96.393624 M 153.648429 96.393624 L 156.468405 93.577576 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.996725 108.384412 C 31.996725 109.488051 31.105173 110.379603 30.005461 110.379603 C 28.905749 110.379603 28.014197 109.488051 28.014197 108.384412 C 28.014197 107.2847 28.905749 106.393148 30.005461 106.393148 C 31.105173 106.393148 31.996725 107.2847 31.996725 108.384412 Z M 28.595473 106.978352 L 31.415449 109.7944 M 28.595473 109.7944 L 31.415449 106.978352 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 3.671288 37.390152 C 3.671288 38.489864 2.779736 39.381416 1.676097 39.381416 C 0.576385 39.381416 -0.315167 38.489864 -0.315167 37.390152 C -0.315167 36.29044 0.576385 35.398888 1.676097 35.398888 C 2.779736 35.398888 3.671288 36.29044 3.671288 37.390152 Z M 0.270036 35.980164 L 3.086084 38.80014 M 0.270036 38.80014 L 3.086084 35.980164 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.140449 3.613286 C 49.140449 4.716926 48.248897 5.608478 47.149185 5.608478 C 46.049473 5.608478 45.157921 4.716926 45.157921 3.613286 C 45.157921 2.513574 46.049473 1.622022 47.149185 1.622022 C 48.248897 1.622022 49.140449 2.513574 49.140449 3.613286 Z M 45.739197 2.207226 L 48.559172 5.023274 M 45.739197 5.023274 L 48.559172 2.207226 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 48.967637 130.853883 C 48.967637 131.953595 48.072157 132.845147 46.972445 132.845147 C 45.872733 132.845147 44.981181 131.953595 44.981181 130.853883 C 44.981181 129.754171 45.872733 128.858691 46.972445 128.858691 C 48.072157 128.858691 48.967637 129.754171 48.967637 130.853883 Z M 45.566385 129.443895 L 48.382433 132.259943 M 45.566385 132.259943 L 48.382433 129.443895 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 47.39662 131.843624 C 47.39662 132.943336 46.505068 133.834888 45.405356 133.834888 C 44.301716 133.834888 43.410164 132.943336 43.410164 131.843624 C 43.410164 130.743912 44.301716 129.85236 45.405356 129.85236 C 46.505068 129.85236 47.39662 130.743912 47.39662 131.843624 Z M 43.995368 130.433636 L 46.811416 133.253611 M 43.995368 133.253611 L 46.811416 130.433636 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 73.887894 124.074944 C 73.887894 125.174656 72.996342 126.070136 71.892703 126.070136 C 70.792991 126.070136 69.901439 125.174656 69.901439 124.074944 C 69.901439 122.975233 70.792991 122.08368 71.892703 122.08368 C 72.996342 122.08368 73.887894 122.975233 73.887894 124.074944 Z M 70.486643 122.664957 L 73.302691 125.484932 M 70.486643 125.484932 L 73.302691 122.664957 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.833292 107.756005 C 32.833292 108.859645 31.94174 109.751197 30.842028 109.751197 C 29.742316 109.751197 28.846836 108.859645 28.846836 107.756005 C 28.846836 106.656293 29.742316 105.764741 30.842028 105.764741 C 31.94174 105.764741 32.833292 106.656293 32.833292 107.756005 Z M 29.43204 106.349945 L 32.252016 109.165993 M 29.43204 109.165993 L 32.252016 106.349945 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.831769 106.137857 C 31.831769 107.237569 30.940216 108.129122 29.840504 108.129122 C 28.740793 108.129122 27.845313 107.237569 27.845313 106.137857 C 27.845313 105.038146 28.740793 104.146593 29.840504 104.146593 C 30.940216 104.146593 31.831769 105.038146 31.831769 106.137857 Z M 28.430517 104.72787 L 31.250492 107.547845 M 28.430517 107.547845 L 31.250492 104.72787 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.411449 131.399811 C 49.411449 132.499523 48.519897 133.391075 47.420185 133.391075 C 46.320473 133.391075 45.428921 132.499523 45.428921 131.399811 C 45.428921 130.300099 46.320473 129.408547 47.420185 129.408547 C 48.519897 129.408547 49.411449 130.300099 49.411449 131.399811 Z M 46.010197 129.989824 L 48.830173 132.809799 M 46.010197 132.809799 L 48.830173 129.989824 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.279436 132.479886 C 50.279436 133.579597 49.387884 134.47115 48.288172 134.47115 C 47.184533 134.47115 46.29298 133.579597 46.29298 132.479886 C 46.29298 131.380174 47.184533 130.484694 48.288172 130.484694 C 49.387884 130.484694 50.279436 131.380174 50.279436 132.479886 Z M 46.878184 131.069898 L 49.694232 133.885946 M 46.878184 133.885946 L 49.694232 131.069898 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 77.277364 123.210885 C 77.277364 124.310597 76.385812 125.206077 75.282172 125.206077 C 74.18246 125.206077 73.290908 124.310597 73.290908 123.210885 C 73.290908 122.111173 74.18246 121.219621 75.282172 121.219621 C 76.385812 121.219621 77.277364 122.111173 77.277364 123.210885 Z M 73.876112 121.804825 L 76.69216 124.620873 M 73.876112 124.620873 L 76.69216 121.804825 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 48.940144 134.494715 C 48.940144 135.594427 48.048592 136.489907 46.94888 136.489907 C 45.84524 136.489907 44.953688 135.594427 44.953688 134.494715 C 44.953688 133.395003 45.84524 132.503451 46.94888 132.503451 C 48.048592 132.503451 48.940144 133.395003 48.940144 134.494715 Z M 45.538892 133.084727 L 48.35494 135.904703 M 45.538892 135.904703 L 48.35494 133.084727 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.43261 132.275653 C 50.43261 133.375365 49.541058 134.266917 48.441346 134.266917 C 47.341634 134.266917 46.450082 133.375365 46.450082 132.275653 C 46.450082 131.175941 47.341634 130.280462 48.441346 130.280462 C 49.541058 130.280462 50.43261 131.175941 50.43261 132.275653 Z M 47.031358 130.865666 L 49.851334 133.685641 M 47.031358 133.685641 L 49.851334 130.865666 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.043111 79.316669 C 163.043111 80.420309 162.151559 81.311861 161.051847 81.311861 C 159.948207 81.311861 159.056655 80.420309 159.056655 79.316669 C 159.056655 78.216957 159.948207 77.325405 161.051847 77.325405 C 162.151559 77.325405 163.043111 78.216957 163.043111 79.316669 Z M 159.641859 77.910609 L 162.457907 80.726657 M 159.641859 80.726657 L 162.457907 77.910609 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 4.892754 35.740584 C 4.892754 36.840296 3.997274 37.731848 2.897562 37.731848 C 1.79785 37.731848 0.906298 36.840296 0.906298 35.740584 C 0.906298 34.640872 1.79785 33.74932 2.897562 33.74932 C 3.997274 33.74932 4.892754 34.640872 4.892754 35.740584 Z M 1.487575 34.330597 L 4.30755 37.150572 M 1.487575 37.150572 L 4.30755 34.330597 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.565474 79.807612 C 163.565474 80.911252 162.673922 81.802804 161.570283 81.802804 C 160.470571 81.802804 159.579018 80.911252 159.579018 79.807612 C 159.579018 78.7079 160.470571 77.816348 161.570283 77.816348 C 162.673922 77.816348 163.565474 78.7079 163.565474 79.807612 Z M 160.164222 78.401552 L 162.98027 81.2176 M 160.164222 81.2176 L 162.98027 78.401552 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 30.319665 107.500715 C 30.319665 108.600427 29.428113 109.491979 28.328401 109.491979 C 27.228689 109.491979 26.333209 108.600427 26.333209 107.500715 C 26.333209 106.401003 27.228689 105.509451 28.328401 105.509451 C 29.428113 105.509451 30.319665 106.401003 30.319665 107.500715 Z M 26.918413 106.090727 L 29.734461 108.910703 M 26.918413 108.910703 L 29.734461 106.090727 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 47.585142 133.929149 C 47.585142 135.028861 46.69359 135.92434 45.593878 135.92434 C 44.494166 135.92434 43.598686 135.028861 43.598686 133.929149 C 43.598686 132.829437 44.494166 131.937885 45.593878 131.937885 C 46.69359 131.937885 47.585142 132.829437 47.585142 133.929149 Z M 44.18389 132.519161 L 47.003866 135.339137 M 44.18389 135.339137 L 47.003866 132.519161 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.953522 108.027005 C 31.953522 109.130645 31.06197 110.022197 29.962258 110.022197 C 28.862546 110.022197 27.970994 109.130645 27.970994 108.027005 C 27.970994 106.927294 28.862546 106.035741 29.962258 106.035741 C 31.06197 106.035741 31.953522 106.927294 31.953522 108.027005 Z M 28.552271 106.620945 L 31.372246 109.436993 M 28.552271 109.436993 L 31.372246 106.620945 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 73.789706 124.212408 C 73.789706 125.316048 72.894226 126.2076 71.794514 126.2076 C 70.694802 126.2076 69.80325 125.316048 69.80325 124.212408 C 69.80325 123.112697 70.694802 122.221144 71.794514 122.221144 C 72.894226 122.221144 73.789706 123.112697 73.789706 124.212408 Z M 70.388454 122.806348 L 73.204502 125.622396 M 70.388454 125.622396 L 73.204502 122.806348 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 46.93317 133.465699 C 46.93317 134.565411 46.041618 135.456963 44.941906 135.456963 C 43.842194 135.456963 42.946714 134.565411 42.946714 133.465699 C 42.946714 132.365987 43.842194 131.474435 44.941906 131.474435 C 46.041618 131.474435 46.93317 132.365987 46.93317 133.465699 Z M 43.531918 132.055711 L 46.347966 134.875687 M 43.531918 134.875687 L 46.347966 132.055711 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 48.53168 133.862381 C 48.53168 134.962092 47.640127 135.853645 46.540416 135.853645 C 45.440704 135.853645 44.549151 134.962092 44.549151 133.862381 C 44.549151 132.762669 45.440704 131.871116 46.540416 131.871116 C 47.640127 131.871116 48.53168 132.762669 48.53168 133.862381 Z M 45.130428 132.452393 L 47.950403 135.272368 M 45.130428 135.272368 L 47.950403 132.452393 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 48.598448 134.290483 C 48.598448 135.390195 47.706896 136.281747 46.607184 136.281747 C 45.503544 136.281747 44.611992 135.390195 44.611992 134.290483 C 44.611992 133.186843 45.503544 132.295291 46.607184 132.295291 C 47.706896 132.295291 48.598448 133.186843 48.598448 134.290483 Z M 45.197196 132.880495 L 48.013244 135.696543 M 45.197196 135.696543 L 48.013244 132.880495 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.883605 81.881355 C 163.883605 82.981066 162.992053 83.872619 161.892341 83.872619 C 160.792629 83.872619 159.897149 82.981066 159.897149 81.881355 C 159.897149 80.781643 160.792629 79.89009 161.892341 79.89009 C 162.992053 79.89009 163.883605 80.781643 163.883605 81.881355 Z M 160.482353 80.471367 L 163.298401 83.291342 M 160.482353 83.291342 L 163.298401 80.471367 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 45.479979 133.78383 C 45.479979 134.883542 44.588427 135.775094 43.484787 135.775094 C 42.385075 135.775094 41.493523 134.883542 41.493523 133.78383 C 41.493523 132.684118 42.385075 131.792566 43.484787 131.792566 C 44.588427 131.792566 45.479979 132.684118 45.479979 133.78383 Z M 42.078727 132.373842 L 44.894775 135.193817 M 42.078727 135.193817 L 44.894775 132.373842 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 158.326132 94.991492 C 158.326132 96.091204 157.43458 96.982756 156.334868 96.982756 C 155.235156 96.982756 154.343604 96.091204 154.343604 94.991492 C 154.343604 93.89178 155.235156 93.000228 156.334868 93.000228 C 157.43458 93.000228 158.326132 93.89178 158.326132 94.991492 Z M 154.92488 93.581504 L 157.744856 96.401479 M 154.92488 96.401479 L 157.744856 93.581504 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 78.903366 122.138666 C 78.903366 123.238378 78.011814 124.12993 76.912102 124.12993 C 75.808463 124.12993 74.916911 123.238378 74.916911 122.138666 C 74.916911 121.038954 75.808463 120.147402 76.912102 120.147402 C 78.011814 120.147402 78.903366 121.038954 78.903366 122.138666 Z M 75.502114 120.728678 L 78.318163 123.548654 M 75.502114 123.548654 L 78.318163 120.728678 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 47.970041 132.570219 C 47.970041 133.669931 47.078489 134.565411 45.978777 134.565411 C 44.875137 134.565411 43.983585 133.669931 43.983585 132.570219 C 43.983585 131.470507 44.875137 130.578955 45.978777 130.578955 C 47.078489 130.578955 47.970041 131.470507 47.970041 132.570219 Z M 44.568789 131.164159 L 47.384837 133.980207 M 44.568789 133.980207 L 47.384837 131.164159 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.456248 107.355396 C 32.456248 108.459035 31.564696 109.350587 30.464984 109.350587 C 29.365272 109.350587 28.47372 108.459035 28.47372 107.355396 C 28.47372 106.255684 29.365272 105.364132 30.464984 105.364132 C 31.564696 105.364132 32.456248 106.255684 32.456248 107.355396 Z M 29.054996 105.949335 L 31.874972 108.765383 M 29.054996 108.765383 L 31.874972 105.949335 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.391811 133.60709 C 49.391811 134.71073 48.500259 135.602282 47.39662 135.602282 C 46.296908 135.602282 45.405356 134.71073 45.405356 133.60709 C 45.405356 132.507378 46.296908 131.615826 47.39662 131.615826 C 48.500259 131.615826 49.391811 132.507378 49.391811 133.60709 Z M 45.99056 132.20103 L 48.806608 135.017078 M 45.99056 135.017078 L 48.806608 132.20103 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.391884 107.736367 C 31.391884 108.840007 30.500332 109.731559 29.40062 109.731559 C 28.29698 109.731559 27.405428 108.840007 27.405428 107.736367 C 27.405428 106.636655 28.29698 105.745103 29.40062 105.745103 C 30.500332 105.745103 31.391884 106.636655 31.391884 107.736367 Z M 27.990632 106.330307 L 30.80668 109.146355 M 27.990632 109.146355 L 30.80668 106.330307 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 48.779115 132.735176 C 48.779115 133.834888 47.887563 134.72644 46.783923 134.72644 C 45.684211 134.72644 44.792659 133.834888 44.792659 132.735176 C 44.792659 131.635464 45.684211 130.739984 46.783923 130.739984 C 47.887563 130.739984 48.779115 131.635464 48.779115 132.735176 Z M 45.377863 131.325188 L 48.193911 134.141236 M 45.377863 134.141236 L 48.193911 131.325188 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.643174 131.627609 C 49.643174 132.727321 48.751622 133.618873 47.65191 133.618873 C 46.552198 133.618873 45.660646 132.727321 45.660646 131.627609 C 45.660646 130.527897 46.552198 129.636345 47.65191 129.636345 C 48.751622 129.636345 49.643174 130.527897 49.643174 131.627609 Z M 46.241922 130.217621 L 49.061898 133.037597 M 46.241922 133.037597 L 49.061898 130.217621 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.393335 61.411003 C 50.393335 62.514642 49.501783 63.406194 48.398143 63.406194 C 47.298431 63.406194 46.406879 62.514642 46.406879 61.411003 C 46.406879 60.311291 47.298431 59.419739 48.398143 59.419739 C 49.501783 59.419739 50.393335 60.311291 50.393335 61.411003 Z M 46.992083 60.004942 L 49.808131 62.82099 M 46.992083 62.82099 L 49.808131 60.004942 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 1.994228 35.940889 C 1.994228 37.044528 1.098748 37.936081 -0.000964004 37.936081 C -1.100676 37.936081 -1.992228 37.044528 -1.992228 35.940889 C -1.992228 34.841177 -1.100676 33.949625 -0.000964004 33.949625 C 1.098748 33.949625 1.994228 34.841177 1.994228 35.940889 Z M -1.407024 34.534829 L 1.409024 37.350877 M -1.407024 37.350877 L 1.409024 34.534829 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.574002 131.140594 C 50.574002 132.244233 49.68245 133.135785 48.582738 133.135785 C 47.479098 133.135785 46.587546 132.244233 46.587546 131.140594 C 46.587546 130.040882 47.479098 129.149329 48.582738 129.149329 C 49.68245 129.149329 50.574002 130.040882 50.574002 131.140594 Z M 47.17275 129.734533 L 49.988798 132.550581 M 47.17275 132.550581 L 49.988798 129.734533 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 48.233186 132.428828 C 48.233186 133.528539 47.341634 134.424019 46.237995 134.424019 C 45.138283 134.424019 44.246731 133.528539 44.246731 132.428828 C 44.246731 131.329116 45.138283 130.437563 46.237995 130.437563 C 47.341634 130.437563 48.233186 131.329116 48.233186 132.428828 Z M 44.831935 131.022767 L 47.647983 133.838815 M 44.831935 133.838815 L 47.647983 131.022767 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.664335 130.732129 C 50.664335 131.835769 49.772783 132.727321 48.673071 132.727321 C 47.573359 132.727321 46.67788 131.835769 46.67788 130.732129 C 46.67788 129.632417 47.573359 128.740865 48.673071 128.740865 C 49.772783 128.740865 50.664335 129.632417 50.664335 130.732129 Z M 47.263083 129.326069 L 50.083059 132.142117 M 47.263083 132.142117 L 50.083059 129.326069 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 47.44375 134.361178 C 47.44375 135.46089 46.552198 136.352443 45.452486 136.352443 C 44.352774 136.352443 43.461222 135.46089 43.461222 134.361178 C 43.461222 133.261467 44.352774 132.369914 45.452486 132.369914 C 46.552198 132.369914 47.44375 133.261467 47.44375 134.361178 Z M 44.042498 132.951191 L 46.862474 135.771166 M 44.042498 135.771166 L 46.862474 132.951191 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 51.159206 131.384101 C 51.159206 132.483813 50.267653 133.375365 49.167942 133.375365 C 48.06823 133.375365 47.17275 132.483813 47.17275 131.384101 C 47.17275 130.284389 48.06823 129.38891 49.167942 129.38891 C 50.267653 129.38891 51.159206 130.284389 51.159206 131.384101 Z M 47.757954 129.974113 L 50.577929 132.794089 M 47.757954 132.794089 L 50.577929 129.974113 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.649599 123.752886 C 79.649599 124.852598 78.758047 125.74415 77.658335 125.74415 C 76.558623 125.74415 75.667071 124.852598 75.667071 123.752886 C 75.667071 122.649246 76.558623 121.757694 77.658335 121.757694 C 78.758047 121.757694 79.649599 122.649246 79.649599 123.752886 Z M 76.248348 122.342898 L 79.068323 125.158946 M 76.248348 125.158946 L 79.068323 122.342898 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 50.291219 30.591576 C 50.291219 31.691288 49.399667 32.586768 48.299955 32.586768 C 47.200243 32.586768 46.308691 31.691288 46.308691 30.591576 C 46.308691 29.491864 47.200243 28.600312 48.299955 28.600312 C 49.399667 28.600312 50.291219 29.491864 50.291219 30.591576 Z M 46.889967 29.181588 L 49.709942 32.001564 M 46.889967 32.001564 L 49.709942 29.181588 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.054115 108.757528 C 31.054115 109.85724 30.162563 110.748792 29.058924 110.748792 C 27.959212 110.748792 27.067659 109.85724 27.067659 108.757528 C 27.067659 107.657816 27.959212 106.766264 29.058924 106.766264 C 30.162563 106.766264 31.054115 107.657816 31.054115 108.757528 Z M 27.652863 107.347541 L 30.468911 110.167516 M 27.652863 110.167516 L 30.468911 107.347541 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 32.012436 108.918558 C 32.012436 110.01827 31.120883 110.909822 30.021171 110.909822 C 28.917532 110.909822 28.02598 110.01827 28.02598 108.918558 C 28.02598 107.818846 28.917532 106.927294 30.021171 106.927294 C 31.120883 106.927294 32.012436 107.818846 32.012436 108.918558 Z M 28.611184 107.50857 L 31.427232 110.328545 M 28.611184 110.328545 L 31.427232 107.50857 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 48.064302 132.428828 C 48.064302 133.528539 47.17275 134.420092 46.073038 134.420092 C 44.969398 134.420092 44.077846 133.528539 44.077846 132.428828 C 44.077846 131.325188 44.969398 130.433636 46.073038 130.433636 C 47.17275 130.433636 48.064302 131.325188 48.064302 132.428828 Z M 44.66305 131.01884 L 47.479098 133.834888 M 44.66305 133.834888 L 47.479098 131.01884 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 31.670739 109.731559 C 31.670739 110.831271 30.77526 111.722823 29.675548 111.722823 C 28.575836 111.722823 27.684284 110.831271 27.684284 109.731559 C 27.684284 108.631847 28.575836 107.736367 29.675548 107.736367 C 30.77526 107.736367 31.670739 108.631847 31.670739 109.731559 Z M 28.26556 108.321571 L 31.085535 111.137619 M 28.26556 111.137619 L 31.085535 108.321571 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 47.734388 133.198626 C 47.734388 134.298338 46.842836 135.193817 45.743124 135.193817 C 44.639485 135.193817 43.747933 134.298338 43.747933 133.198626 C 43.747933 132.098914 44.639485 131.207362 45.743124 131.207362 C 46.842836 131.207362 47.734388 132.098914 47.734388 133.198626 Z M 44.333137 131.792566 L 47.149185 134.608614 M 44.333137 134.608614 L 47.149185 131.792566 \" transform=\"matrix(0.994579,0,0,-0.994579,35.668928,148.683541)\"/>\n", | |
"</g>\n", | |
"</svg>\n", | |
"\n" | |
], | |
"text/plain": [ | |
"Axis(PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(), false), Any[Plot(false, true, PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(\"only_marks\" => nothing), true), Table(PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(), false), TableData([0.4078307968573494 -0.6713292006292365; 0.3948033187662138 -0.5967410810673403; … ; 0.6145889318007605 -0.5882331805978366; 0.1804969611543545 0.04426524767862792], [\"x\", \"y\"], Int64[], true)), Any[]), Plot(false, true, PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(\"only_marks\" => nothing), true), Table(PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(), false), TableData([-0.574475918410366 -0.49705887101880236; -0.46001302476225037 -0.4974298851923337; … ; -0.47275422916666104 -0.4378255151821505; 0.7585679631166025 -0.16411074002753945], [\"x\", \"y\"], Int64[], true)), Any[]), Plot(false, true, PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(\"only_marks\" => nothing), true), Table(PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(), false), TableData([-0.5769149347144166 1.7519773238889518; -1.7753164228346867 -0.8107815454330769; … ; -1.0605642277593053 1.1367467478859516; -0.6337721067583919 1.7463840565746604], [\"x\", \"y\"], Int64[], true)), Any[])])" | |
] | |
}, | |
"execution_count": 15, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"@pgf Axis(\n", | |
" [\n", | |
" PlotInc(\n", | |
" {only_marks},\n", | |
" Table(\n", | |
" x=X[findall(e->e==label, labels),1],\n", | |
" y=X[findall(e->e==label, labels),2]\n", | |
" )\n", | |
" )\n", | |
" for label in unique(labels)\n", | |
" ]...\n", | |
")" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"#### すべての潜在変数の更新と、ハイパーパラメタの更新を反復" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 16, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"name": "stdout", | |
"output_type": "stream", | |
"text": [ | |
"[DONE] loop: 1, logp: -335.88333548833566, (τ,σ,η): (1.0669582091227587, 4.982292091272072, -0.26649379344136037)\n", | |
"[DONE] loop: 2, logp: 613.2131778833013, (τ,σ,η): (1.0872737921838354, 4.97122060785486, 0.14543549186759003)\n", | |
"[DONE] loop: 3, logp: 1115.9385259829, (τ,σ,η): (1.8216044212097602, 4.403994319501933, 0.1260401677487533)\n", | |
"[DONE] loop: 4, logp: 1203.88218665645, (τ,σ,η): (2.2834621084054216, 3.662087739178965, 0.12307696607563899)\n", | |
"[DONE] loop: 5, logp: 1219.483854785451, (τ,σ,η): (2.4150268574492295, 3.190366844007198, 0.12196959374997096)\n", | |
"[DONE] loop: 6, logp: 1295.9699467802943, (τ,σ,η): (2.565602300476355, 2.561833168096101, 0.1155050656230831)\n", | |
"[DONE] loop: 7, logp: 1430.9604081320417, (τ,σ,η): (2.582541381703858, 2.075408403314972, 0.10719122839483726)\n", | |
"[DONE] loop: 8, logp: 1594.3208012268278, (τ,σ,η): (2.588592939893565, 1.9381970181478314, 0.09507877747389164)\n", | |
"[DONE] loop: 9, logp: 1801.5572697935636, (τ,σ,η): (2.608504859156734, 1.5562843136798188, 0.08196434808178474)\n", | |
"[DONE] loop: 10, logp: 2029.6595610148192, (τ,σ,η): (2.6091563003740785, 1.4840044473851648, 0.07160659242996112)\n", | |
"[DONE] loop: 11, logp: 2173.271678251384, (τ,σ,η): (2.552012378383837, 1.3146641762897917, 0.0676464648004223)\n", | |
"[DONE] loop: 12, logp: 2277.097546424516, (τ,σ,η): (2.490474471992281, 1.2118177107713564, 0.06102067159734655)\n", | |
"[DONE] loop: 13, logp: 2336.6333546033616, (τ,σ,η): (2.416797177102357, 1.2047303441673496, 0.06058548838918558)\n", | |
"[DONE] loop: 14, logp: 2365.1846678307243, (τ,σ,η): (2.258522100687153, 1.196732222912771, 0.06005740009727959)\n", | |
"[DONE] loop: 15, logp: 2380.1017736523295, (τ,σ,η): (2.1330273073012402, 1.187899829327431, 0.06009786607187744)\n", | |
"[DONE] loop: 16, logp: 2395.554456283356, (τ,σ,η): (1.8290158228106586, 1.1690975672943469, 0.06000940240121627)\n", | |
"[DONE] loop: 17, logp: 2407.0718049411803, (τ,σ,η): (1.8203151877513863, 1.1144743683773464, 0.059822730756100555)\n", | |
"[DONE] loop: 18, logp: 2418.972703716687, (τ,σ,η): (1.6474475347954223, 1.09849387657268, 0.05943227105507639)\n", | |
"[DONE] loop: 19, logp: 2428.5035324993974, (τ,σ,η): (1.5320426108119127, 1.0841133593764243, 0.0595564717545995)\n", | |
"[DONE] loop: 20, logp: 2437.717321778909, (τ,σ,η): (1.5250340610812154, 1.0256707081678311, 0.058759544145243814)\n", | |
"[DONE] loop: 21, logp: 2451.578173272346, (τ,σ,η): (1.3734068645276858, 1.0047032708929522, 0.058322970766619436)\n", | |
"[DONE] loop: 22, logp: 2466.1531255064597, (τ,σ,η): (1.249597080013985, 0.9810049493871581, 0.05819528488127429)\n", | |
"[DONE] loop: 23, logp: 2482.978573493861, (τ,σ,η): (1.0390329659745905, 0.9380149437445956, 0.05740620267857683)\n", | |
"[DONE] loop: 24, logp: 2498.426741183555, (τ,σ,η): (0.8904979574782617, 0.8945057024237772, 0.05732745693687286)\n", | |
"[DONE] loop: 25, logp: 2513.9841359905454, (τ,σ,η): (0.6349612910555582, 0.7891149281375199, 0.05564368242376242)\n", | |
"[DONE] loop: 26, logp: 2544.586236033277, (τ,σ,η): (0.6486044577069716, 0.760119784874616, 0.05498474460791778)\n", | |
"[DONE] loop: 27, logp: 2552.7304672393734, (τ,σ,η): (0.6590721776565914, 0.7455647569354947, 0.05452795356301678)\n", | |
"[DONE] loop: 28, logp: 2557.103981587417, (τ,σ,η): (0.6564378637296484, 0.7148466535174448, 0.053970546501705366)\n", | |
"[DONE] loop: 29, logp: 2629.655879992873, (τ,σ,η): (0.6521486707439249, 0.6892559252144985, 0.05106213725220483)\n", | |
"[DONE] loop: 30, logp: 2645.6163991043654, (τ,σ,η): (0.6443235387729335, 0.6782288470324924, 0.050359381063643856)\n", | |
"[DONE] loop: 31, logp: 2667.649658384887, (τ,σ,η): (0.6492862045712388, 0.6576678898866506, 0.04911985750297335)\n", | |
"[DONE] loop: 32, logp: 2684.276671332989, (τ,σ,η): (0.6515180743601969, 0.6597596078036199, 0.048822353668361365)\n", | |
"[DONE] loop: 33, logp: 2689.349458310852, (τ,σ,η): (0.6484308186688079, 0.6529519981339271, 0.04866248071020032)\n", | |
"[DONE] loop: 34, logp: 2693.804286636268, (τ,σ,η): (0.6491680804335196, 0.6498283699415607, 0.04857322133352421)\n", | |
"[DONE] loop: 35, logp: 2698.9703008303563, (τ,σ,η): (0.6465875002713765, 0.6432473567041234, 0.04850961485308037)\n", | |
"[DONE] loop: 36, logp: 2704.1610791074595, (τ,σ,η): (0.6507772304810375, 0.6421577786789343, 0.048440325184916325)\n", | |
"[DONE] loop: 37, logp: 2706.774272493641, (τ,σ,η): (0.6553006157280523, 0.6412181558842527, 0.04848532395937196)\n", | |
"[DONE] loop: 38, logp: 2708.9971589536867, (τ,σ,η): (0.6586519008100501, 0.641043227838754, 0.0484390827871803)\n", | |
"[DONE] loop: 39, logp: 2710.5610302159107, (τ,σ,η): (0.6607617126468445, 0.6413160361354199, 0.048479494509571334)\n", | |
"[DONE] loop: 40, logp: 2712.6190305188707, (τ,σ,η): (0.6634680329221471, 0.6411166276621222, 0.048426531348453615)\n", | |
"[DONE] loop: 41, logp: 2713.9623131316807, (τ,σ,η): (0.667053563341828, 0.6424872835755139, 0.04846328610885089)\n", | |
"[DONE] loop: 42, logp: 2715.8868776611766, (τ,σ,η): (0.6679310802465734, 0.6418660170660119, 0.048413993034112576)\n", | |
"[DONE] loop: 43, logp: 2717.2446923224184, (τ,σ,η): (0.6694415227423035, 0.6430000606645168, 0.04845249748654982)\n", | |
"[DONE] loop: 44, logp: 2719.2152839199675, (τ,σ,η): (0.6701501846087329, 0.6430304048415414, 0.04841167835341897)\n", | |
"[DONE] loop: 45, logp: 2720.6504527812135, (τ,σ,η): (0.6719855701298487, 0.6443344689625085, 0.04844815700014506)\n", | |
"[DONE] loop: 46, logp: 2722.461723074273, (τ,σ,η): (0.6729995241007163, 0.644368565493393, 0.04841808564216638)\n", | |
"[DONE] loop: 47, logp: 2723.4703864044536, (τ,σ,η): (0.6769571199748105, 0.6458288267515855, 0.04844605669179431)\n", | |
"[DONE] loop: 48, logp: 2724.409005190812, (τ,σ,η): (0.6777427881006756, 0.6448514630636656, 0.04842644696932392)\n", | |
"[DONE] loop: 49, logp: 2724.7297198153187, (τ,σ,η): (0.6798597083538132, 0.6449286264047503, 0.0484500278754888)\n", | |
"[DONE] loop: 50, logp: 2725.3558509485515, (τ,σ,η): (0.6798597015157152, 0.643563108509366, 0.048428654522176325)\n", | |
"[DONE] loop: 51, logp: 2725.569911590433, (τ,σ,η): (0.681947931971721, 0.6430870967108792, 0.04844192017275048)\n", | |
"[DONE] loop: 52, logp: 2726.143563972049, (τ,σ,η): (0.6806891811799138, 0.64166897856427, 0.04842893296689733)\n", | |
"[DONE] loop: 53, logp: 2726.346221588073, (τ,σ,η): (0.6819042639019633, 0.6407700139408345, 0.048436656711897993)\n", | |
"[DONE] loop: 54, logp: 2726.9010531052913, (τ,σ,η): (0.6804806718250807, 0.6392577061973435, 0.048427218512951425)\n", | |
"[DONE] loop: 55, logp: 2727.1101297441487, (τ,σ,η): (0.681298976225542, 0.6381329273586331, 0.04843293163748971)\n", | |
"[DONE] loop: 56, logp: 2727.6625502019656, (τ,σ,η): (0.6799704711219092, 0.6365761012023649, 0.04842298236541281)\n", | |
"[DONE] loop: 57, logp: 2727.8949408699486, (τ,σ,η): (0.6805421567582595, 0.6352501400046074, 0.048429073542489084)\n", | |
"[DONE] loop: 58, logp: 2728.4455543250765, (τ,σ,η): (0.6789241686193086, 0.6331535270001557, 0.04841783879047425)\n", | |
"[DONE] loop: 59, logp: 2728.77951751525, (τ,σ,η): (0.6797994013151328, 0.6317750380128234, 0.04842100461990211)\n", | |
"[DONE] loop: 60, logp: 2729.3581726563966, (τ,σ,η): (0.6790423748910692, 0.6302947600662137, 0.048415905848609685)\n", | |
"[DONE] loop: 61, logp: 2729.7837758097244, (τ,σ,η): (0.6792958236814338, 0.6285901155398255, 0.04841764603319762)\n", | |
"[DONE] loop: 62, logp: 2730.477606863354, (τ,σ,η): (0.6781069216829958, 0.62690063089106, 0.04841277876912345)\n", | |
"[DONE] loop: 63, logp: 2731.094125645856, (τ,σ,η): (0.6783497032219767, 0.6250906365830378, 0.04841469256040099)\n", | |
"[DONE] loop: 64, logp: 2732.111811995295, (τ,σ,η): (0.6769357177061935, 0.6232161266653027, 0.04840969014001307)\n", | |
"[DONE] loop: 65, logp: 2733.2773964271805, (τ,σ,η): (0.6774638455576866, 0.6214926507430663, 0.04841480644125188)\n", | |
"[DONE] loop: 66, logp: 2735.312317674275, (τ,σ,η): (0.6746425897357148, 0.6187485458628997, 0.04841003834566028)\n", | |
"[DONE] loop: 67, logp: 2739.1580162574405, (τ,σ,η): (0.6776838783304503, 0.6182425651073157, 0.04839545561463926)\n", | |
"[DONE] loop: 68, logp: 2746.4779170184897, (τ,σ,η): (0.6797275155287892, 0.617865947590896, 0.048334041466919574)\n", | |
"[DONE] loop: 69, logp: 2748.7419195696016, (τ,σ,η): (0.6840301015048734, 0.6181893211026351, 0.048318793738716136)\n", | |
"[DONE] loop: 70, logp: 2749.2328086703033, (τ,σ,η): (0.6906067889271675, 0.6161791908422538, 0.04830771256176177)\n", | |
"[DONE] loop: 71, logp: 2749.8100048143656, (τ,σ,η): (0.6946416088985733, 0.6153727197658116, 0.048303848680237606)\n", | |
"[DONE] loop: 72, logp: 2749.9718802875173, (τ,σ,η): (0.694775942063169, 0.6126902985579877, 0.04830074658415594)\n", | |
"[DONE] loop: 73, logp: 2750.376656508722, (τ,σ,η): (0.6962483878406545, 0.6114919230025817, 0.04829458521937813)\n", | |
"[DONE] loop: 74, logp: 2750.4579487591923, (τ,σ,η): (0.695027109081395, 0.6091898997843174, 0.04830169693672101)\n", | |
"[DONE] loop: 75, logp: 2750.785963285693, (τ,σ,η): (0.6967933160399162, 0.6081676199600071, 0.04829636914054866)\n", | |
"[DONE] loop: 76, logp: 2750.83100786408, (τ,σ,η): (0.6951465050315511, 0.6057463542084538, 0.0483023638433963)\n", | |
"[DONE] loop: 77, logp: 2751.1131625698395, (τ,σ,η): (0.6966499498388522, 0.6046396823871922, 0.04829670810302248)\n", | |
"[DONE] loop: 78, logp: 2751.13917384547, (τ,σ,η): (0.6950090481036866, 0.6022351985310892, 0.04830206214285517)\n", | |
"[DONE] loop: 79, logp: 2751.386654899959, (τ,σ,η): (0.6961474580736797, 0.6008453724100823, 0.0482950560599886)\n", | |
"[DONE] loop: 80, logp: 2751.404029595797, (τ,σ,η): (0.6947962305618502, 0.5985851095152602, 0.04829981997946795)\n", | |
"[DONE] loop: 81, logp: 2751.6227420541722, (τ,σ,η): (0.6960740039685607, 0.5974502281894101, 0.04829637392777711)\n", | |
"[DONE] loop: 82, logp: 2751.639725073924, (τ,σ,η): (0.6945530596544125, 0.5951887759270681, 0.04830080468454794)\n", | |
"[DONE] loop: 83, logp: 2751.833182033243, (τ,σ,η): (0.6955808531774328, 0.5939476026637817, 0.048296405832225074)\n", | |
"[DONE] loop: 84, logp: 2751.856965130048, (τ,σ,η): (0.69421015522498, 0.591782266578418, 0.04830012787766533)\n", | |
"[DONE] loop: 85, logp: 2752.0241648324886, (τ,σ,η): (0.6951005981986755, 0.5905109123137016, 0.04829630811972246)\n", | |
"[DONE] loop: 86, logp: 2752.060821117431, (τ,σ,η): (0.6938378197696793, 0.5884681631484823, 0.04829935507783352)\n", | |
"[DONE] loop: 87, logp: 2752.1991046155085, (τ,σ,η): (0.6946611403684582, 0.5872002619258654, 0.04829660575780171)\n", | |
"[DONE] loop: 88, logp: 2752.2455968079644, (τ,σ,η): (0.6934635210616782, 0.5852435532149649, 0.048299037697612006)\n", | |
"[DONE] loop: 89, logp: 2752.3633494435694, (τ,σ,η): (0.6942203315715707, 0.583966658195485, 0.04829703698562806)\n", | |
"[DONE] loop: 90, logp: 2752.420021114463, (τ,σ,η): (0.6930905518825754, 0.582090501399597, 0.048298779215695496)\n", | |
"[DONE] loop: 91, logp: 2752.519913852058, (τ,σ,η): (0.6937909539645848, 0.580808405019551, 0.04829731563947161)\n", | |
"[DONE] loop: 92, logp: 2752.5858305352263, (τ,σ,η): (0.6927237933641577, 0.5790034502772106, 0.04829850989488938)\n", | |
"[DONE] loop: 93, logp: 2752.6695807713336, (τ,σ,η): (0.6933847662964281, 0.5777208707489007, 0.048297673922484616)\n", | |
"[DONE] loop: 94, logp: 2752.7432109219285, (τ,σ,η): (0.6923786264395195, 0.5759736906690369, 0.048298293770634146)\n", | |
"[DONE] loop: 95, logp: 2752.813782787063, (τ,σ,η): (0.6929986965328117, 0.5746878142515391, 0.048298063407643685)\n", | |
"[DONE] loop: 96, logp: 2752.8943444484216, (τ,σ,η): (0.6920535979828983, 0.5729910929874653, 0.04829812061294898)\n", | |
"[DONE] loop: 97, logp: 2752.9532372021135, (τ,σ,η): (0.6926297330605637, 0.571699548662754, 0.048298460636759966)\n", | |
"[DONE] loop: 98, logp: 2753.0394204969857, (τ,σ,η): (0.691748044231026, 0.570047183203772, 0.04829797988793132)\n", | |
"[DONE] loop: 99, logp: 2753.0881466559617, (τ,σ,η): (0.6922779339267181, 0.5687483469643759, 0.04829881790189226)\n", | |
"[DONE] loop: 100, logp: 2753.1779422857085, (τ,σ,η): (0.6914635930727779, 0.5671358635238304, 0.04829785104314805)\n" | |
] | |
} | |
], | |
"source": [ | |
"# GPLVMの最適化 すべての潜在変数を同時更新\n", | |
"X = Y*V[:,1:2]\n", | |
"τ = 1.0\n", | |
"σ = 5.0\n", | |
"η = 1.0\n", | |
"\n", | |
"for loop in 1:100\n", | |
" xₛ = SCG(\n", | |
" vec(X),\n", | |
" x -> -PLL(\n", | |
" τ,σ,η,Y,\n", | |
" reshape(x, N, K)\n", | |
" ),\n", | |
" x -> -vec(∂logp∂X(\n", | |
" τ,σ,η,Y,\n", | |
" reshape(x, N, K)\n", | |
" )) + x,\n", | |
" MaxLoop=10\n", | |
" )\n", | |
" X = reshape(xₛ, N, K)\n", | |
"\n", | |
" θₛ = SCG(\n", | |
" [τ,σ,η],\n", | |
" θ -> -logp(θ...,Y,X),\n", | |
" θ -> -∂logp∂τση(θ...,Y,X),\n", | |
" MaxLoop=5\n", | |
" )\n", | |
" τ = θₛ[1]\n", | |
" σ = θₛ[2]\n", | |
" η = θₛ[3]\n", | |
" \n", | |
" println(\"[DONE] loop: $(loop), logp: $(logp(τ,σ,η,Y,X)), (τ,σ,η): $((τ,σ,η))\")\n", | |
"end" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": 17, | |
"metadata": {}, | |
"outputs": [ | |
{ | |
"data": { | |
"image/png": "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aRKAQCAAYIe7BqRSKUVR+psOedRRR/X+sXtazK233vrzn/98n7c9EAjsfAeEVCrV3cyhqb9VsO2hIfsBYXR+arFYrL6+/mOj07bt3bsiciqVklJ23/C9W1lZWS6XW7169RFHHDFoRWxubv7YZrquO9TWfX19/cdGZ21tbff/dM8K3OFwRCKRKCws7G+yS3Nzc+8J2933Rl25cuVQaHskEtmhLaZpOo7T3cyhqb9VsO2hIfsBYXR+alOnTp06dere+/3Tp0/v7OxsbGzUdb17Sfc19BzHGcwinnrqqaeeeuqwW/eXXXbZJ39yd9+zvb29qKio9+d2woQJfT7/oYcemjt37s0333zllVfuw1Wzi+bsMB7qzqD+mjNE3nP3Ktjhbeu6Pnbs2KH8AclLw3tfp9/vP/nkk7dtFgAaGhpUVZ0yZQpX7YB/PQghGhsbey/s7Ow84YQT+utlT5o06bDDDuu9agBMmzZtKDTntNNOa21t7Z0gnZ2dAPprzhCJzvHjx++8Co4++uje/Up+QPbr6Ow+8rDz8YcrrrjiqKOOymaz2z4AN95447ZHs9nsokWLrrzyymAwOCyqn8vl+jvGMtTU1NR87nOfe/7557ctef/992Ox2Ny5c7t/fPfddydNmnT//fd3/3jcccedeeaZ3SfUdvvnP/8ZiUQuvfTSodCck08+ORQKLV68eNuSF1988YADDjjmmGOG8lo455xzeq8Cz/OWLl16wQUX8AOyDwypCfqO49x9990333zzQQcdBOCss8664447nn/++W1POOyww3Rdb25u7v4xkUhcdNFFb7/9dvd5r3PmzDn11FNN0xzi50hs3br1rrvuuuGGG7p31V977bV33nnne++9N8Tf9rp168aPH79y5UopZTKZPP7442+77bZtjz7xxBPdOwG2LXnggQduuumm7n2If//732tqanZ9zvsge/TRR4844ohoNNp9KtGECRNee+21Ib4Kstns0Ucffffdd0spPc+76qqrzjrrrN5P4Adk0AytG2xIKd944w3DMBRFEUJ0X+8gFAptux1xOp2Ox+O9r/tiWdY999zTffO42bNnn3LKKUP/u7Srq2vdunW6rgshhBCe5zmOU1tbO/SvZ9Pe3v7HP/5RCJFOp0866aQdbje9YcOGMWPG9J4ssXLlyscff7yjo2Ps2LHnnXfex17mZ5C9++67jz76aDAYzOVyF1xwwahRo4b+xmPb9r333tvW1uY4zsSJE88666zeh+n4ARk0vDcREVG+7OskImJ0EhExOomIGJ1ERMToJCJidBIRMTqJiBidRET7nf8PcGXRJHjn3y4AAAAASUVORK5CYII=", | |
"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=\"214.039pt\" height=\"175.687pt\" viewBox=\"0 0 214.039 175.687\" version=\"1.2\">\n", | |
"<defs>\n", | |
"<g>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407022-0-0\">\n", | |
"<path style=\"stroke:none;\" d=\"\"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407022-0-1\">\n", | |
"<path style=\"stroke:none;\" d=\"M 6.53125 -2.28125 C 6.703125 -2.28125 6.890625 -2.28125 6.890625 -2.484375 C 6.890625 -2.671875 6.703125 -2.671875 6.53125 -2.671875 L 1.171875 -2.671875 C 1 -2.671875 0.828125 -2.671875 0.828125 -2.484375 C 0.828125 -2.28125 1 -2.28125 1.171875 -2.28125 Z M 6.53125 -2.28125 \"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407022-1-0\">\n", | |
"<path style=\"stroke:none;\" d=\"\"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407022-1-1\">\n", | |
"<path style=\"stroke:none;\" d=\"M 2.921875 -6.34375 C 2.921875 -6.59375 2.921875 -6.609375 2.6875 -6.609375 C 2.078125 -5.96875 1.203125 -5.96875 0.890625 -5.96875 L 0.890625 -5.671875 C 1.078125 -5.671875 1.671875 -5.671875 2.1875 -5.921875 L 2.1875 -0.78125 C 2.1875 -0.421875 2.15625 -0.3125 1.265625 -0.3125 L 0.9375 -0.3125 L 0.9375 0 C 1.296875 -0.03125 2.15625 -0.03125 2.546875 -0.03125 C 2.953125 -0.03125 3.8125 -0.03125 4.15625 0 L 4.15625 -0.3125 L 3.84375 -0.3125 C 2.953125 -0.3125 2.921875 -0.421875 2.921875 -0.78125 Z M 2.921875 -6.34375 \"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407022-1-2\">\n", | |
"<path style=\"stroke:none;\" d=\"M 4.453125 -2 C 4.453125 -3.171875 3.640625 -4.171875 2.5625 -4.171875 C 2.09375 -4.171875 1.671875 -4.015625 1.3125 -3.65625 L 1.3125 -5.59375 C 1.515625 -5.53125 1.828125 -5.46875 2.15625 -5.46875 C 3.375 -5.46875 4.0625 -6.375 4.0625 -6.5 C 4.0625 -6.5625 4.03125 -6.609375 3.96875 -6.609375 C 3.953125 -6.609375 3.9375 -6.609375 3.890625 -6.578125 C 3.6875 -6.484375 3.203125 -6.296875 2.546875 -6.296875 C 2.140625 -6.296875 1.6875 -6.359375 1.21875 -6.5625 C 1.140625 -6.59375 1.125 -6.59375 1.09375 -6.59375 C 1 -6.59375 1 -6.515625 1 -6.359375 L 1 -3.421875 C 1 -3.25 1 -3.171875 1.140625 -3.171875 C 1.203125 -3.171875 1.234375 -3.1875 1.265625 -3.25 C 1.375 -3.40625 1.75 -3.953125 2.546875 -3.953125 C 3.0625 -3.953125 3.3125 -3.5 3.390625 -3.3125 C 3.546875 -2.953125 3.578125 -2.5625 3.578125 -2.0625 C 3.578125 -1.71875 3.578125 -1.125 3.328125 -0.703125 C 3.09375 -0.3125 2.734375 -0.0625 2.265625 -0.0625 C 1.546875 -0.0625 0.984375 -0.578125 0.8125 -1.171875 C 0.84375 -1.15625 0.875 -1.15625 0.984375 -1.15625 C 1.3125 -1.15625 1.484375 -1.40625 1.484375 -1.640625 C 1.484375 -1.875 1.3125 -2.125 0.984375 -2.125 C 0.84375 -2.125 0.5 -2.046875 0.5 -1.59375 C 0.5 -0.75 1.1875 0.21875 2.296875 0.21875 C 3.4375 0.21875 4.453125 -0.734375 4.453125 -2 Z M 4.453125 -2 \"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407022-1-3\">\n", | |
"<path style=\"stroke:none;\" d=\"M 4.5625 -3.171875 C 4.5625 -3.96875 4.515625 -4.765625 4.171875 -5.5 C 3.703125 -6.453125 2.890625 -6.609375 2.484375 -6.609375 C 1.890625 -6.609375 1.15625 -6.34375 0.75 -5.421875 C 0.4375 -4.75 0.390625 -3.96875 0.390625 -3.171875 C 0.390625 -2.4375 0.421875 -1.53125 0.828125 -0.78125 C 1.265625 0.015625 1.984375 0.21875 2.46875 0.21875 C 3 0.21875 3.765625 0.015625 4.203125 -0.9375 C 4.515625 -1.625 4.5625 -2.390625 4.5625 -3.171875 Z M 2.46875 0 C 2.078125 0 1.5 -0.25 1.3125 -1.203125 C 1.203125 -1.796875 1.203125 -2.703125 1.203125 -3.296875 C 1.203125 -3.921875 1.203125 -4.578125 1.296875 -5.125 C 1.484375 -6.296875 2.21875 -6.390625 2.46875 -6.390625 C 2.796875 -6.390625 3.453125 -6.21875 3.640625 -5.234375 C 3.734375 -4.671875 3.734375 -3.921875 3.734375 -3.296875 C 3.734375 -2.546875 3.734375 -1.875 3.625 -1.234375 C 3.484375 -0.296875 2.921875 0 2.46875 0 Z M 2.46875 0 \"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407022-1-4\">\n", | |
"<path style=\"stroke:none;\" d=\"M 1.265625 -0.765625 L 2.3125 -1.78125 C 3.859375 -3.15625 4.453125 -3.6875 4.453125 -4.6875 C 4.453125 -5.8125 3.5625 -6.609375 2.34375 -6.609375 C 1.234375 -6.609375 0.5 -5.6875 0.5 -4.8125 C 0.5 -4.25 0.984375 -4.25 1.015625 -4.25 C 1.1875 -4.25 1.53125 -4.375 1.53125 -4.78125 C 1.53125 -5.046875 1.359375 -5.296875 1.015625 -5.296875 C 0.9375 -5.296875 0.90625 -5.296875 0.890625 -5.28125 C 1.109375 -5.9375 1.640625 -6.296875 2.21875 -6.296875 C 3.125 -6.296875 3.546875 -5.5 3.546875 -4.6875 C 3.546875 -3.890625 3.0625 -3.109375 2.515625 -2.484375 L 0.609375 -0.359375 C 0.5 -0.265625 0.5 -0.234375 0.5 0 L 4.171875 0 L 4.453125 -1.71875 L 4.203125 -1.71875 C 4.15625 -1.421875 4.09375 -0.984375 3.984375 -0.84375 C 3.921875 -0.765625 3.265625 -0.765625 3.046875 -0.765625 Z M 1.265625 -0.765625 \"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407022-2-0\">\n", | |
"<path style=\"stroke:none;\" d=\"\"/>\n", | |
"</symbol>\n", | |
"<symbol overflow=\"visible\" id=\"glyph-1592782364407022-2-1\">\n", | |
"<path style=\"stroke:none;\" d=\"M 1.90625 -0.53125 C 1.90625 -0.8125 1.671875 -1.046875 1.375 -1.046875 C 1.09375 -1.046875 0.859375 -0.8125 0.859375 -0.53125 C 0.859375 -0.234375 1.09375 0 1.375 0 C 1.671875 0 1.90625 -0.234375 1.90625 -0.53125 Z M 1.90625 -0.53125 \"/>\n", | |
"</symbol>\n", | |
"</g>\n", | |
"<clipPath id=\"clip-1592782364407022-1\">\n", | |
" <path d=\"M 0 0.238281 L 213.082031 0.238281 L 213.082031 175.136719 L 0 175.136719 Z M 0 0.238281 \"/>\n", | |
"</clipPath>\n", | |
"<clipPath id=\"clip-1592782364407022-2\">\n", | |
" <path d=\"M 24 0.238281 L 189 0.238281 L 189 162 L 24 162 Z M 24 0.238281 \"/>\n", | |
"</clipPath>\n", | |
"<clipPath id=\"clip-1592782364407022-3\">\n", | |
" <path d=\"M 19 0.238281 L 213.082031 0.238281 L 213.082031 162 L 19 162 Z M 19 0.238281 \"/>\n", | |
"</clipPath>\n", | |
"</defs>\n", | |
"<g id=\"surface1\">\n", | |
"<g clip-path=\"url(#clip-1592782364407022-1)\" clip-rule=\"nonzero\">\n", | |
"<path style=\" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;\" d=\"M 0 175.136719 L 213.882812 175.136719 L 213.882812 -0.417969 L 0 -0.417969 Z M 0 175.136719 \"/>\n", | |
"</g>\n", | |
"<g clip-path=\"url(#clip-1592782364407022-2)\" clip-rule=\"nonzero\">\n", | |
"<path style=\"fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(50%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M -11.224551 -13.448827 L -11.224551 -9.199364 M 21.77451 -13.448827 L 21.77451 -9.199364 M 54.769646 -13.448827 L 54.769646 -9.199364 M 87.768707 -13.448827 L 87.768707 -9.199364 M 120.767768 -13.448827 L 120.767768 -9.199364 M 153.766828 -13.448827 L 153.766828 -9.199364 M -11.224551 147.948362 L -11.224551 143.694976 M 21.77451 147.948362 L 21.77451 143.694976 M 54.769646 147.948362 L 54.769646 143.694976 M 87.768707 147.948362 L 87.768707 143.694976 M 120.767768 147.948362 L 120.767768 143.694976 M 153.766828 147.948362 L 153.766828 143.694976 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"</g>\n", | |
"<path style=\"fill:none;stroke-width:0.19925;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(50%,50%,50%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M -16.192067 -11.345676 L -11.93868 -11.345676 M -16.192067 32.377098 L -11.93868 32.377098 M -16.192067 76.103796 L -11.93868 76.103796 M -16.192067 119.826571 L -11.93868 119.826571 M 178.082545 -11.345676 L 173.829159 -11.345676 M 178.082545 32.377098 L 173.829159 32.377098 M 178.082545 76.103796 L 173.829159 76.103796 M 178.082545 119.826571 L 173.829159 119.826571 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<g clip-path=\"url(#clip-1592782364407022-3)\" clip-rule=\"nonzero\">\n", | |
"<path style=\"fill:none;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M -16.192067 -13.448827 L -16.192067 147.948362 L 178.082545 147.948362 L 178.082545 -13.448827 Z M -16.192067 -13.448827 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407022-0-1\" x=\"14.2321\" y=\"171.006114\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407022-1-1\" x=\"21.946464\" y=\"171.006114\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407022-2-1\" x=\"26.9052\" y=\"171.006114\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407022-1-2\" x=\"29.659832\" y=\"171.006114\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407022-0-1\" x=\"50.939291\" y=\"171.006114\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407022-1-1\" x=\"58.653655\" y=\"171.006114\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407022-0-1\" x=\"79.932118\" y=\"171.006114\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407022-1-3\" x=\"87.646482\" y=\"171.006114\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407022-2-1\" x=\"92.605218\" y=\"171.006114\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407022-1-2\" x=\"95.360845\" y=\"171.006114\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407022-1-3\" x=\"120.496988\" y=\"171.006114\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407022-1-3\" x=\"149.489815\" y=\"171.006114\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407022-2-1\" x=\"154.449547\" y=\"171.006114\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407022-1-2\" x=\"157.204179\" y=\"171.006114\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407022-1-1\" x=\"186.197006\" y=\"171.006114\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407022-0-1\" x=\"3.306156\" y=\"161.797459\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407022-1-4\" x=\"11.019524\" y=\"161.797459\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407022-0-1\" x=\"3.306156\" y=\"118.26989\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407022-1-1\" x=\"11.019524\" y=\"118.26989\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407022-1-3\" x=\"11.019524\" y=\"75.155467\"/>\n", | |
"</g>\n", | |
"<g style=\"fill:rgb(0%,0%,0%);fill-opacity:1;\">\n", | |
" <use xlink:href=\"#glyph-1592782364407022-1-1\" x=\"11.019524\" y=\"31.626903\"/>\n", | |
"</g>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.078841 67.110473 C 116.078841 68.209134 115.188141 69.099834 114.08948 69.099834 C 112.986895 69.099834 112.096195 68.209134 112.096195 67.110473 C 112.096195 66.007889 112.986895 65.117189 114.08948 65.117189 C 115.188141 65.117189 116.078841 66.007889 116.078841 67.110473 Z M 116.078841 67.110473 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.777802 68.801626 C 110.777802 69.900287 109.887102 70.790987 108.788442 70.790987 C 107.685857 70.790987 106.795157 69.900287 106.795157 68.801626 C 106.795157 67.699042 107.685857 66.808342 108.788442 66.808342 C 109.887102 66.808342 110.777802 67.699042 110.777802 68.801626 Z M 110.777802 68.801626 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.736866 63.841958 C 107.736866 64.940618 106.846166 65.831318 105.743582 65.831318 C 104.644921 65.831318 103.750297 64.940618 103.750297 63.841958 C 103.750297 62.739373 104.644921 61.848673 105.743582 61.848673 C 106.846166 61.848673 107.736866 62.739373 107.736866 63.841958 Z M 107.736866 63.841958 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.112984 69.252862 C 107.112984 70.355446 106.21836 71.246146 105.119699 71.246146 C 104.017115 71.246146 103.126415 70.355446 103.126415 69.252862 C 103.126415 68.154201 104.017115 67.259577 105.119699 67.259577 C 106.21836 67.259577 107.112984 68.154201 107.112984 69.252862 Z M 107.112984 69.252862 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 41.707355 24.784568 C 41.707355 25.887152 40.812731 26.777852 39.71407 26.777852 C 38.611486 26.777852 37.720786 25.887152 37.720786 24.784568 C 37.720786 23.685907 38.611486 22.795207 39.71407 22.795207 C 40.812731 22.795207 41.707355 23.685907 41.707355 24.784568 Z M 41.707355 24.784568 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 44.293131 26.122579 C 44.293131 27.225164 43.402431 28.115864 42.303771 28.115864 C 41.201186 28.115864 40.310486 27.225164 40.310486 26.122579 C 40.310486 25.023919 41.201186 24.133219 42.303771 24.133219 C 43.402431 24.133219 44.293131 25.023919 44.293131 26.122579 Z M 44.293131 26.122579 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.765465 72.823509 C 109.765465 73.92217 108.870841 74.816794 107.77218 74.816794 C 106.67352 74.816794 105.778896 73.92217 105.778896 72.823509 C 105.778896 71.720925 106.67352 70.830225 107.77218 70.830225 C 108.870841 70.830225 109.765465 71.720925 109.765465 72.823509 Z M 109.765465 72.823509 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.333848 73.757371 C 109.333848 74.859955 108.443148 75.750655 107.344488 75.750655 C 106.241903 75.750655 105.351203 74.859955 105.351203 73.757371 C 105.351203 72.65871 106.241903 71.76801 107.344488 71.76801 C 108.443148 71.76801 109.333848 72.65871 109.333848 73.757371 Z M 109.333848 73.757371 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.795762 66.262935 C 114.795762 67.361596 113.905062 68.252296 112.802477 68.252296 C 111.703816 68.252296 110.813116 67.361596 110.813116 66.262935 C 110.813116 65.16035 111.703816 64.269651 112.802477 64.269651 C 113.905062 64.269651 114.795762 65.16035 114.795762 66.262935 Z M 114.795762 66.262935 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.208287 67.702965 C 109.208287 68.80555 108.317587 69.69625 107.215003 69.69625 C 106.116342 69.69625 105.221718 68.80555 105.221718 67.702965 C 105.221718 66.604305 106.116342 65.709681 107.215003 65.709681 C 108.317587 65.709681 109.208287 66.604305 109.208287 67.702965 Z M 109.208287 67.702965 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.592857 65.690062 C 116.592857 66.788723 115.702157 67.679423 114.599572 67.679423 C 113.500912 67.679423 112.606288 66.788723 112.606288 65.690062 C 112.606288 64.587477 113.500912 63.696777 114.599572 63.696777 C 115.702157 63.696777 116.592857 64.587477 116.592857 65.690062 Z M 116.592857 65.690062 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.007042 62.904172 C 107.007042 64.002833 106.116342 64.897457 105.013757 64.897457 C 103.915096 64.897457 103.020473 64.002833 103.020473 62.904172 C 103.020473 61.801588 103.915096 60.910888 105.013757 60.910888 C 106.116342 60.910888 107.007042 61.801588 107.007042 62.904172 Z M 107.007042 62.904172 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.961654 71.399174 C 109.961654 72.501759 109.067031 73.392459 107.96837 73.392459 C 106.869709 73.392459 105.975085 72.501759 105.975085 71.399174 C 105.975085 70.300513 106.869709 69.40589 107.96837 69.40589 C 109.067031 69.40589 109.961654 70.300513 109.961654 71.399174 Z M 109.961654 71.399174 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.138791 65.003399 C 111.138791 66.10206 110.244167 66.996683 109.145506 66.996683 C 108.046846 66.996683 107.152222 66.10206 107.152222 65.003399 C 107.152222 63.900814 108.046846 63.010114 109.145506 63.010114 C 110.244167 63.010114 111.138791 63.900814 111.138791 65.003399 Z M 111.138791 65.003399 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.599572 67.848146 C 114.599572 68.95073 113.704949 69.84143 112.606288 69.84143 C 111.503703 69.84143 110.613003 68.95073 110.613003 67.848146 C 110.613003 66.749485 111.503703 65.854861 112.606288 65.854861 C 113.704949 65.854861 114.599572 66.749485 114.599572 67.848146 Z M 114.599572 67.848146 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.999799 66.208002 C 114.999799 67.306663 114.105175 68.197363 113.006514 68.197363 C 111.90393 68.197363 111.01323 67.306663 111.01323 66.208002 C 111.01323 65.105417 111.90393 64.214717 113.006514 64.214717 C 114.105175 64.214717 114.999799 65.105417 114.999799 66.208002 Z M 114.999799 66.208002 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.202138 69.037053 C 112.202138 70.135714 111.311438 71.030338 110.212777 71.030338 C 109.110192 71.030338 108.219492 70.135714 108.219492 69.037053 C 108.219492 67.934469 109.110192 67.043769 110.212777 67.043769 C 111.311438 67.043769 112.202138 67.934469 112.202138 69.037053 Z M 112.202138 69.037053 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.762712 72.548844 C 118.762712 73.647505 117.872012 74.542129 116.773351 74.542129 C 115.670767 74.542129 114.780067 73.647505 114.780067 72.548844 C 114.780067 71.44626 115.670767 70.55556 116.773351 70.55556 C 117.872012 70.55556 118.762712 71.44626 118.762712 72.548844 Z M 118.762712 72.548844 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.593384 67.083007 C 110.593384 68.181668 109.702684 69.072368 108.604024 69.072368 C 107.501439 69.072368 106.610739 68.181668 106.610739 67.083007 C 106.610739 65.980422 107.501439 65.089722 108.604024 65.089722 C 109.702684 65.089722 110.593384 65.980422 110.593384 67.083007 Z M 110.593384 67.083007 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.190366 69.735488 C 112.190366 70.834149 111.295742 71.728772 110.197082 71.728772 C 109.094497 71.728772 108.203797 70.834149 108.203797 69.735488 C 108.203797 68.632903 109.094497 67.742203 110.197082 67.742203 C 111.295742 67.742203 112.190366 68.632903 112.190366 69.735488 Z M 112.190366 69.735488 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.568143 70.269123 C 107.568143 71.367784 106.677443 72.262408 105.574859 72.262408 C 104.476198 72.262408 103.581574 71.367784 103.581574 70.269123 C 103.581574 69.170462 104.476198 68.275838 105.574859 68.275838 C 106.677443 68.275838 107.568143 69.170462 107.568143 70.269123 Z M 107.568143 70.269123 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.587196 72.321264 C 106.587196 73.419925 105.692573 74.314549 104.593912 74.314549 C 103.491327 74.314549 102.600627 73.419925 102.600627 72.321264 C 102.600627 71.222604 103.491327 70.32798 104.593912 70.32798 C 105.692573 70.32798 106.587196 71.222604 106.587196 72.321264 Z M 106.587196 72.321264 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 103.275519 63.28478 C 103.275519 64.387364 102.380895 65.278064 101.282234 65.278064 C 100.17965 65.278064 99.28895 64.387364 99.28895 63.28478 C 99.28895 62.186119 100.17965 61.291495 101.282234 61.291495 C 102.380895 61.291495 103.275519 62.186119 103.275519 63.28478 Z M 103.275519 63.28478 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.561994 68.103192 C 110.561994 69.205776 109.671294 70.096476 108.56871 70.096476 C 107.470049 70.096476 106.575425 69.205776 106.575425 68.103192 C 106.575425 67.004531 107.470049 66.113831 108.56871 66.113831 C 109.671294 66.113831 110.561994 67.004531 110.561994 68.103192 Z M 110.561994 68.103192 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.116908 65.191741 C 107.116908 66.290402 106.222284 67.181102 105.123623 67.181102 C 104.024963 67.181102 103.130339 66.290402 103.130339 65.191741 C 103.130339 64.089156 104.024963 63.198456 105.123623 63.198456 C 106.222284 63.198456 107.116908 64.089156 107.116908 65.191741 Z M 107.116908 65.191741 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.604024 61.997777 C 108.604024 63.096438 107.7094 63.987138 106.610739 63.987138 C 105.512078 63.987138 104.617455 63.096438 104.617455 61.997777 C 104.617455 60.895192 105.512078 60.004492 106.610739 60.004492 C 107.7094 60.004492 108.604024 60.895192 108.604024 61.997777 Z M 108.604024 61.997777 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.409532 71.575745 C 111.409532 72.678329 110.518832 73.569029 109.416248 73.569029 C 108.317587 73.569029 107.426887 72.678329 107.426887 71.575745 C 107.426887 70.477084 108.317587 69.586384 109.416248 69.586384 C 110.518832 69.586384 111.409532 70.477084 111.409532 71.575745 Z M 111.409532 71.575745 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.763201 63.108209 C 105.763201 64.20687 104.872501 65.101494 103.769916 65.101494 C 102.671256 65.101494 101.780556 64.20687 101.780556 63.108209 C 101.780556 62.005625 102.671256 61.114925 103.769916 61.114925 C 104.872501 61.114925 105.763201 62.005625 105.763201 63.108209 Z M 105.763201 63.108209 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.788442 70.072934 C 108.788442 71.175518 107.893818 72.066218 106.795157 72.066218 C 105.692573 72.066218 104.801873 71.175518 104.801873 70.072934 C 104.801873 68.974273 105.692573 68.079649 106.795157 68.079649 C 107.893818 68.079649 108.788442 68.974273 108.788442 70.072934 Z M 108.788442 70.072934 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.895516 67.404757 C 110.895516 68.507342 110.004816 69.398042 108.906155 69.398042 C 107.803571 69.398042 106.912871 68.507342 106.912871 67.404757 C 106.912871 66.306097 107.803571 65.411473 108.906155 65.411473 C 110.004816 65.411473 110.895516 66.306097 110.895516 67.404757 Z M 110.895516 67.404757 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 118.633227 66.926055 C 118.633227 68.02864 117.738603 68.91934 116.639942 68.91934 C 115.537358 68.91934 114.646658 68.02864 114.646658 66.926055 C 114.646658 65.827395 115.537358 64.936695 116.639942 64.936695 C 117.738603 64.936695 118.633227 65.827395 118.633227 66.926055 Z M 118.633227 66.926055 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 102.110154 67.487157 C 102.110154 68.589742 101.219454 69.480442 100.120793 69.480442 C 99.018208 69.480442 98.127509 68.589742 98.127509 67.487157 C 98.127509 66.388496 99.018208 65.497796 100.120793 65.497796 C 101.219454 65.497796 102.110154 66.388496 102.110154 67.487157 Z M 102.110154 67.487157 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.711098 68.162049 C 110.711098 69.264633 109.820398 70.155333 108.721737 70.155333 C 107.619153 70.155333 106.728453 69.264633 106.728453 68.162049 C 106.728453 67.063388 107.619153 66.172688 108.721737 66.172688 C 109.820398 66.172688 110.711098 67.063388 110.711098 68.162049 Z M 110.711098 68.162049 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 106.638206 63.269084 C 106.638206 64.367745 105.743582 65.262369 104.644921 65.262369 C 103.542337 65.262369 102.651637 64.367745 102.651637 63.269084 C 102.651637 62.1665 103.542337 61.2758 104.644921 61.2758 C 105.743582 61.2758 106.638206 62.1665 106.638206 63.269084 Z M 106.638206 63.269084 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.027227 67.855993 C 108.027227 68.954654 107.132603 69.845354 106.033942 69.845354 C 104.931358 69.845354 104.040658 68.954654 104.040658 67.855993 C 104.040658 66.753409 104.931358 65.862709 106.033942 65.862709 C 107.132603 65.862709 108.027227 66.753409 108.027227 67.855993 Z M 108.027227 67.855993 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.937584 72.529225 C 115.937584 73.627886 115.046884 74.52251 113.948223 74.52251 C 112.845639 74.52251 111.954939 73.627886 111.954939 72.529225 C 111.954939 71.426641 112.845639 70.535941 113.948223 70.535941 C 115.046884 70.535941 115.937584 71.426641 115.937584 72.529225 Z M 115.937584 72.529225 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.713324 64.98378 C 107.713324 66.082441 106.822624 66.977065 105.723963 66.977065 C 104.621378 66.977065 103.730678 66.082441 103.730678 64.98378 C 103.730678 63.881195 104.621378 62.990495 105.723963 62.990495 C 106.822624 62.990495 107.713324 63.881195 107.713324 64.98378 Z M 107.713324 64.98378 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.109626 63.767406 C 108.109626 64.86999 107.218926 65.76069 106.120266 65.76069 C 105.017681 65.76069 104.126981 64.86999 104.126981 63.767406 C 104.126981 62.668745 105.017681 61.778045 106.120266 61.778045 C 107.218926 61.778045 108.109626 62.668745 108.109626 63.767406 Z M 108.109626 63.767406 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.339509 67.161483 C 119.339509 68.264067 118.444885 69.154767 117.346224 69.154767 C 116.24364 69.154767 115.35294 68.264067 115.35294 67.161483 C 115.35294 66.062822 116.24364 65.168198 117.346224 65.168198 C 118.444885 65.168198 119.339509 66.062822 119.339509 67.161483 Z M 119.339509 67.161483 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.306948 73.255126 C 110.306948 74.353787 109.416248 75.248411 108.317587 75.248411 C 107.215003 75.248411 106.324303 74.353787 106.324303 73.255126 C 106.324303 72.152541 107.215003 71.261841 108.317587 71.261841 C 109.416248 71.261841 110.306948 72.152541 110.306948 73.255126 Z M 110.306948 73.255126 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.560296 63.516283 C 107.560296 64.614944 106.669596 65.509568 105.570935 65.509568 C 104.468351 65.509568 103.577651 64.614944 103.577651 63.516283 C 103.577651 62.413699 104.468351 61.522999 105.570935 61.522999 C 106.669596 61.522999 107.560296 62.413699 107.560296 63.516283 Z M 107.560296 63.516283 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 120.461712 75.024755 C 120.461712 76.127339 119.571012 77.018039 118.472351 77.018039 C 117.369767 77.018039 116.479067 76.127339 116.479067 75.024755 C 116.479067 73.926094 117.369767 73.03147 118.472351 73.03147 C 119.571012 73.03147 120.461712 73.926094 120.461712 75.024755 Z M 120.461712 75.024755 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 119.264957 68.248372 C 119.264957 69.350957 118.374257 70.241656 117.271672 70.241656 C 116.173011 70.241656 115.282312 69.350957 115.282312 68.248372 C 115.282312 67.149711 116.173011 66.259011 117.271672 66.259011 C 118.374257 66.259011 119.264957 67.149711 119.264957 68.248372 Z M 119.264957 68.248372 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.576596 70.461389 C 115.576596 71.563973 114.685896 72.454673 113.587235 72.454673 C 112.48465 72.454673 111.59395 71.563973 111.59395 70.461389 C 111.59395 69.362728 112.48465 68.468104 113.587235 68.468104 C 114.685896 68.468104 115.576596 69.362728 115.576596 70.461389 Z M 115.576596 70.461389 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.895555 67.679423 C 117.895555 68.778083 117.004855 69.672707 115.90227 69.672707 C 114.803609 69.672707 113.908986 68.778083 113.908986 67.679423 C 113.908986 66.576838 114.803609 65.686138 115.90227 65.686138 C 117.004855 65.686138 117.895555 66.576838 117.895555 67.679423 Z M 117.895555 67.679423 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.468917 63.524131 C 105.468917 64.622791 104.574293 65.517415 103.475632 65.517415 C 102.376971 65.517415 101.482348 64.622791 101.482348 63.524131 C 101.482348 62.421546 102.376971 61.530846 103.475632 61.530846 C 104.574293 61.530846 105.468917 62.421546 105.468917 63.524131 Z M 105.468917 63.524131 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 110.020511 64.709115 C 110.020511 65.811699 109.129811 66.702399 108.027227 66.702399 C 106.928566 66.702399 106.037866 65.811699 106.037866 64.709115 C 106.037866 63.610454 106.928566 62.71583 108.027227 62.71583 C 109.129811 62.71583 110.020511 63.610454 110.020511 64.709115 Z M 110.020511 64.709115 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 102.804664 66.804418 C 102.804664 67.907002 101.913964 68.797702 100.81138 68.797702 C 99.712719 68.797702 98.818095 67.907002 98.818095 66.804418 C 98.818095 65.705757 99.712719 64.815057 100.81138 64.815057 C 101.913964 64.815057 102.804664 65.705757 102.804664 66.804418 Z M 102.804664 66.804418 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 41.679888 25.027843 C 41.679888 26.130427 40.785265 27.021127 39.686604 27.021127 C 38.584019 27.021127 37.693319 26.130427 37.693319 25.027843 C 37.693319 23.929182 38.584019 23.034558 39.686604 23.034558 C 40.785265 23.034558 41.679888 23.929182 41.679888 25.027843 Z M 41.679888 25.027843 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.703778 67.54209 C 104.703778 68.640751 103.809154 69.535375 102.710493 69.535375 C 101.607909 69.535375 100.717209 68.640751 100.717209 67.54209 C 100.717209 66.443429 101.607909 65.548806 102.710493 65.548806 C 103.809154 65.548806 104.703778 66.443429 104.703778 67.54209 Z M 104.703778 67.54209 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.360787 70.108248 C 115.360787 71.210832 114.470087 72.101532 113.367503 72.101532 C 112.268842 72.101532 111.374218 71.210832 111.374218 70.108248 C 111.374218 69.009587 112.268842 68.114963 113.367503 68.114963 C 114.470087 68.114963 115.360787 69.009587 115.360787 70.108248 Z M 115.360787 70.108248 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.905062 68.954654 C 113.905062 70.057238 113.010438 70.947938 111.911777 70.947938 C 110.809193 70.947938 109.918493 70.057238 109.918493 68.954654 C 109.918493 67.855993 110.809193 66.961369 111.911777 66.961369 C 113.010438 66.961369 113.905062 67.855993 113.905062 68.954654 Z M 113.905062 68.954654 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 115.961127 68.770236 C 115.961127 69.868897 115.070427 70.759597 113.967842 70.759597 C 112.869182 70.759597 111.978482 69.868897 111.978482 68.770236 C 111.978482 67.667651 112.869182 66.776951 113.967842 66.776951 C 115.070427 66.776951 115.961127 67.667651 115.961127 68.770236 Z M 115.961127 68.770236 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.67918 68.868331 C 116.67918 69.970915 115.78848 70.861615 114.685896 70.861615 C 113.587235 70.861615 112.692611 69.970915 112.692611 68.868331 C 112.692611 67.76967 113.587235 66.87897 114.685896 66.87897 C 115.78848 66.87897 116.67918 67.76967 116.67918 68.868331 Z M 116.67918 68.868331 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.499779 69.142996 C 111.499779 70.24558 110.609079 71.13628 109.510419 71.13628 C 108.407834 71.13628 107.517134 70.24558 107.517134 69.142996 C 107.517134 68.044335 108.407834 67.149711 109.510419 67.149711 C 110.609079 67.149711 111.499779 68.044335 111.499779 69.142996 Z M 111.499779 69.142996 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.188102 69.61385 C 108.188102 70.712511 107.297402 71.607135 106.198741 71.607135 C 105.096157 71.607135 104.205457 70.712511 104.205457 69.61385 C 104.205457 68.511266 105.096157 67.620566 106.198741 67.620566 C 107.297402 67.620566 108.188102 68.511266 108.188102 69.61385 Z M 108.188102 69.61385 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.228511 73.474858 C 117.228511 74.577443 116.333887 75.468143 115.235226 75.468143 C 114.132641 75.468143 113.241942 74.577443 113.241942 73.474858 C 113.241942 72.376197 114.132641 71.485497 115.235226 71.485497 C 116.333887 71.485497 117.228511 72.376197 117.228511 73.474858 Z M 117.228511 73.474858 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.378284 23.685907 C 35.378284 24.788491 34.487584 25.679191 33.385 25.679191 C 32.286339 25.679191 31.395639 24.788491 31.395639 23.685907 C 31.395639 22.587246 32.286339 21.692622 33.385 21.692622 C 34.487584 21.692622 35.378284 22.587246 35.378284 23.685907 Z M 35.378284 23.685907 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 111.307514 69.311719 C 111.307514 70.410379 110.416814 71.305003 109.318153 71.305003 C 108.215569 71.305003 107.324869 70.410379 107.324869 69.311719 C 107.324869 68.209134 108.215569 67.318434 109.318153 67.318434 C 110.416814 67.318434 111.307514 68.209134 111.307514 69.311719 Z M 111.307514 69.311719 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.396063 65.168198 C 108.396063 66.270783 107.501439 67.161483 106.402778 67.161483 C 105.300194 67.161483 104.409494 66.270783 104.409494 65.168198 C 104.409494 64.069537 105.300194 63.174914 106.402778 63.174914 C 107.501439 63.174914 108.396063 64.069537 108.396063 65.168198 Z M 108.396063 65.168198 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.82436 76.394157 C 116.82436 77.492817 115.929737 78.383517 114.831076 78.383517 C 113.728491 78.383517 112.837791 77.492817 112.837791 76.394157 C 112.837791 75.291572 113.728491 74.400872 114.831076 74.400872 C 115.929737 74.400872 116.82436 75.291572 116.82436 76.394157 Z M 116.82436 76.394157 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(0%,0%,79.998779%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,100%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 37.053742 77.324095 C 37.053742 78.422755 36.163042 79.317379 35.060457 79.317379 C 33.961796 79.317379 33.071096 78.422755 33.071096 77.324095 C 33.071096 76.225434 33.961796 75.33081 35.060457 75.33081 C 36.163042 75.33081 37.053742 76.225434 37.053742 77.324095 Z M 37.053742 77.324095 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 73.88242 39.141709 L 77.868989 39.141709 L 77.868989 43.128278 L 73.88242 43.128278 Z M 73.88242 39.141709 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 76.425035 36.410753 L 80.40768 36.410753 L 80.40768 40.393398 L 76.425035 40.393398 Z M 76.425035 36.410753 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 77.555086 30.375966 L 81.541655 30.375966 L 81.541655 34.362535 L 77.555086 34.362535 Z M 77.555086 30.375966 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 75.216508 95.761976 L 79.203077 95.761976 L 79.203077 99.748545 L 75.216508 99.748545 Z M 75.216508 95.761976 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 78.618432 35.822184 L 82.605002 35.822184 L 82.605002 39.808753 L 78.618432 39.808753 Z M 78.618432 35.822184 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 112.366937 39.714583 L 116.349582 39.714583 L 116.349582 43.701152 L 112.366937 43.701152 Z M 112.366937 39.714583 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.772103 94.910514 L 97.758672 94.910514 L 97.758672 98.89316 L 93.772103 98.89316 Z M 93.772103 94.910514 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.063107 37.729146 L 113.049676 37.729146 L 113.049676 41.715715 L 109.063107 41.715715 Z M 109.063107 37.729146 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.309019 41.221317 L 83.291665 41.221317 L 83.291665 45.203963 L 79.309019 45.203963 Z M 79.309019 41.221317 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 67.12958 29.916883 L 71.116149 29.916883 L 71.116149 33.899528 L 67.12958 33.899528 Z M 67.12958 29.916883 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 74.372893 39.887229 L 78.359462 39.887229 L 78.359462 43.869875 L 74.372893 43.869875 Z M 74.372893 39.887229 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.204775 89.366201 L 86.191344 89.366201 L 86.191344 93.35277 L 82.204775 93.35277 Z M 82.204775 89.366201 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 82.173385 90.001855 L 86.159954 90.001855 L 86.159954 93.988424 L 82.173385 93.988424 Z M 82.173385 90.001855 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 76.911585 39.745973 L 80.898154 39.745973 L 80.898154 43.728618 L 76.911585 43.728618 Z M 76.911585 39.745973 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 73.262461 91.332019 L 77.24903 91.332019 L 77.24903 95.314665 L 73.262461 95.314665 Z M 73.262461 91.332019 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 33.628274 86.223247 L 37.614843 86.223247 L 37.614843 90.209816 L 33.628274 90.209816 Z M 33.628274 86.223247 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 75.655972 38.007735 L 79.642541 38.007735 L 79.642541 41.994304 L 75.655972 41.994304 Z M 75.655972 38.007735 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 68.785419 88.726624 L 72.771988 88.726624 L 72.771988 92.709269 L 68.785419 92.709269 Z M 68.785419 88.726624 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 75.597115 93.348847 L 79.579761 93.348847 L 79.579761 97.331492 L 75.597115 97.331492 Z M 75.597115 93.348847 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 77.861141 35.064893 L 81.843787 35.064893 L 81.843787 39.051462 L 77.861141 39.051462 Z M 77.861141 35.064893 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 71.98723 87.102175 L 75.969875 87.102175 L 75.969875 91.088744 L 71.98723 91.088744 Z M 71.98723 87.102175 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 75.46763 95.145942 L 79.450276 95.145942 L 79.450276 99.132511 L 75.46763 99.132511 Z M 75.46763 95.145942 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 72.042163 88.114513 L 76.028732 88.114513 L 76.028732 92.101082 L 72.042163 92.101082 Z M 72.042163 88.114513 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 74.753501 36.708961 L 78.74007 36.708961 L 78.74007 40.69553 L 74.753501 40.69553 Z M 74.753501 36.708961 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 75.648125 36.453914 L 79.634694 36.453914 L 79.634694 40.440483 L 75.648125 40.440483 Z M 75.648125 36.453914 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 73.658764 36.983626 L 77.645333 36.983626 L 77.645333 40.970195 L 73.658764 40.970195 Z M 73.658764 36.983626 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.7526 38.227467 L 118.739169 38.227467 L 118.739169 42.214036 L 114.7526 42.214036 Z M 114.7526 38.227467 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 117.679746 35.425882 L 121.666315 35.425882 L 121.666315 39.408527 L 117.679746 39.408527 Z M 117.679746 35.425882 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 42.598055 82.648675 L 46.5807 82.648675 L 46.5807 86.635245 L 42.598055 86.635245 Z M 42.598055 82.648675 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 36.947799 92.587632 L 40.934368 92.587632 L 40.934368 96.574201 L 36.947799 96.574201 Z M 36.947799 92.587632 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.290571 68.730998 L 92.27714 68.730998 L 92.27714 72.713643 L 88.290571 72.713643 Z M 88.290571 68.730998 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 43.551535 87.902628 L 47.534181 87.902628 L 47.534181 91.889197 L 43.551535 91.889197 Z M 43.551535 87.902628 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 74.357198 34.425316 L 78.343767 34.425316 L 78.343767 38.411885 L 74.357198 38.411885 Z M 74.357198 34.425316 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 116.145545 34.711752 L 120.12819 34.711752 L 120.12819 38.698321 L 116.145545 38.698321 Z M 116.145545 34.711752 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.711548 92.568013 L 94.698117 92.568013 L 94.698117 96.554582 L 90.711548 96.554582 Z M 90.711548 92.568013 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 77.382439 87.988952 L 81.369008 87.988952 L 81.369008 91.975521 L 77.382439 91.975521 Z M 77.382439 87.988952 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 64.618355 88.09097 L 68.601001 88.09097 L 68.601001 92.077539 L 64.618355 92.077539 Z M 64.618355 88.09097 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 78.775384 97.037208 L 82.758029 97.037208 L 82.758029 101.023777 L 78.775384 101.023777 Z M 78.775384 97.037208 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 81.062953 35.653462 L 85.045598 35.653462 L 85.045598 39.640031 L 81.062953 39.640031 Z M 81.062953 35.653462 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 77.119545 89.597705 L 81.106114 89.597705 L 81.106114 93.584274 L 77.119545 93.584274 Z M 77.119545 89.597705 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.651675 37.242596 L 113.638244 37.242596 L 113.638244 41.229165 L 109.651675 41.229165 Z M 109.651675 37.242596 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 71.222091 38.470742 L 75.204737 38.470742 L 75.204737 42.453387 L 71.222091 42.453387 Z M 71.222091 38.470742 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 76.664386 33.656253 L 80.647031 33.656253 L 80.647031 37.642822 L 76.664386 37.642822 Z M 76.664386 33.656253 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 68.334183 38.584532 L 72.320752 38.584532 L 72.320752 42.571101 L 68.334183 42.571101 Z M 68.334183 38.584532 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 68.777571 87.23166 L 72.760216 87.23166 L 72.760216 91.218229 L 68.777571 91.218229 Z M 68.777571 87.23166 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.724941 38.215695 L 83.707586 38.215695 L 83.707586 42.198341 L 79.724941 42.198341 Z M 79.724941 38.215695 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 75.675591 38.129372 L 79.66216 38.129372 L 79.66216 42.115941 L 75.675591 42.115941 Z M 75.675591 38.129372 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 72.862235 37.45448 L 76.84488 37.45448 L 76.84488 41.437126 L 72.862235 41.437126 Z M 72.862235 37.45448 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 73.933429 92.414985 L 77.919998 92.414985 L 77.919998 96.39763 L 73.933429 96.39763 Z M 73.933429 92.414985 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.714456 39.467384 L 113.701025 39.467384 L 113.701025 43.453953 L 109.714456 43.453953 Z M 109.714456 39.467384 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 78.033788 38.145067 L 82.020357 38.145067 L 82.020357 42.131636 L 78.033788 42.131636 Z M 78.033788 38.145067 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 107.356259 39.086776 L 111.342828 39.086776 L 111.342828 43.073345 L 107.356259 43.073345 Z M 107.356259 39.086776 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 74.875138 91.869578 L 78.861707 91.869578 L 78.861707 95.852224 L 74.875138 95.852224 Z M 74.875138 91.869578 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 74.239485 38.965139 L 78.22213 38.965139 L 78.22213 42.947784 L 74.239485 42.947784 Z M 74.239485 38.965139 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 75.875704 85.002949 L 79.85835 85.002949 L 79.85835 88.985594 L 75.875704 88.985594 Z M 75.875704 85.002949 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 114.956637 40.440483 L 118.943206 40.440483 L 118.943206 44.427052 L 114.956637 44.427052 Z M 114.956637 40.440483 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 80.497927 31.910167 L 84.480572 31.910167 L 84.480572 35.896736 L 80.497927 35.896736 Z M 80.497927 31.910167 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 109.663446 38.910206 L 113.646092 38.910206 L 113.646092 42.896775 L 109.663446 42.896775 Z M 109.663446 38.910206 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 83.240655 85.152052 L 87.223301 85.152052 L 87.223301 89.138622 L 83.240655 89.138622 Z M 83.240655 85.152052 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 75.306755 35.696623 L 79.293324 35.696623 L 79.293324 39.679268 L 75.306755 39.679268 Z M 75.306755 35.696623 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 38.505543 94.702554 L 42.492112 94.702554 L 42.492112 98.689123 L 38.505543 98.689123 Z M 38.505543 94.702554 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 113.563692 40.664139 L 117.546337 40.664139 L 117.546337 44.650708 L 113.563692 44.650708 Z M 113.563692 40.664139 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 104.935281 38.494284 L 108.92185 38.494284 L 108.92185 42.480853 L 104.935281 42.480853 Z M 104.935281 38.494284 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 81.388627 31.710054 L 85.375196 31.710054 L 85.375196 35.696623 L 81.388627 35.696623 Z M 81.388627 31.710054 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 75.240051 29.901188 L 79.222696 29.901188 L 79.222696 33.887757 L 75.240051 33.887757 Z M 75.240051 29.901188 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 74.361122 87.070785 L 78.343767 87.070785 L 78.343767 91.057354 L 74.361122 91.057354 Z M 74.361122 87.070785 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 35.162476 88.153751 L 39.149045 88.153751 L 39.149045 92.14032 L 35.162476 92.14032 Z M 35.162476 88.153751 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 68.079137 27.911827 L 72.065706 27.911827 L 72.065706 31.898396 L 68.079137 31.898396 Z M 68.079137 27.911827 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 73.121205 85.944658 L 77.10385 85.944658 L 77.10385 89.931227 L 73.121205 89.931227 Z M 73.121205 85.944658 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 79.658236 38.101906 L 83.644805 38.101906 L 83.644805 42.088475 L 79.658236 42.088475 Z M 79.658236 38.101906 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(79.998779%,0%,0%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 78.02594 89.016984 L 82.012509 89.016984 L 82.012509 93.003553 L 78.02594 93.003553 Z M 78.02594 89.016984 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.089364 131.393899 C 93.089364 132.496484 92.198664 133.387184 91.09608 133.387184 C 89.997419 133.387184 89.102795 132.496484 89.102795 131.393899 C 89.102795 130.295238 89.997419 129.404538 91.09608 129.404538 C 92.198664 129.404538 93.089364 130.295238 93.089364 131.393899 Z M 89.68744 129.985259 L 92.50472 132.802539 M 89.68744 132.802539 L 92.50472 129.985259 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 48.008959 4.77717 C 48.008959 5.875831 47.114335 6.766531 46.015674 6.766531 C 44.91309 6.766531 44.02239 5.875831 44.02239 4.77717 C 44.02239 3.674586 44.91309 2.783886 46.015674 2.783886 C 47.114335 2.783886 48.008959 3.674586 48.008959 4.77717 Z M 44.607034 3.364607 L 47.424315 6.185811 M 44.607034 6.185811 L 47.424315 3.364607 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 44.897395 2.677944 C 44.897395 3.776604 44.002771 4.671228 42.90411 4.671228 C 41.801526 4.671228 40.910826 3.776604 40.910826 2.677944 C 40.910826 1.575359 41.801526 0.684659 42.90411 0.684659 C 44.002771 0.684659 44.897395 1.575359 44.897395 2.677944 Z M 41.49547 1.269304 L 44.31275 4.086584 M 41.49547 4.086584 L 44.31275 1.269304 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 161.728195 83.755184 C 161.728195 84.857768 160.837495 85.748468 159.734911 85.748468 C 158.63625 85.748468 157.741626 84.857768 157.741626 83.755184 C 157.741626 82.656523 158.63625 81.761899 159.734911 81.761899 C 160.837495 81.761899 161.728195 82.656523 161.728195 83.755184 Z M 158.32627 82.346544 L 161.143551 85.163824 M 158.32627 85.163824 L 161.143551 82.346544 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 160.570677 102.240151 C 160.570677 103.338812 159.679977 104.233436 158.581317 104.233436 C 157.478732 104.233436 156.588032 103.338812 156.588032 102.240151 C 156.588032 101.137567 157.478732 100.246867 158.581317 100.246867 C 159.679977 100.246867 160.570677 101.137567 160.570677 102.240151 Z M 157.168753 100.831511 L 159.989957 103.648791 M 157.168753 103.648791 L 159.989957 100.831511 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.449748 130.993673 C 85.449748 132.096257 84.555124 132.986957 83.456464 132.986957 C 82.357803 132.986957 81.463179 132.096257 81.463179 130.993673 C 81.463179 129.895012 82.357803 129.000388 83.456464 129.000388 C 84.555124 129.000388 85.449748 129.895012 85.449748 130.993673 Z M 82.047824 129.585033 L 84.865104 132.402313 M 82.047824 132.402313 L 84.865104 129.585033 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.225565 133.889428 C 91.225565 134.988089 90.334865 135.882713 89.236204 135.882713 C 88.133619 135.882713 87.242919 134.988089 87.242919 133.889428 C 87.242919 132.790768 88.133619 131.896144 89.236204 131.896144 C 90.334865 131.896144 91.225565 132.790768 91.225565 133.889428 Z M 87.82364 132.480788 L 90.644844 135.298069 M 87.82364 135.298069 L 90.644844 132.480788 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 108.121398 4.63199 C 108.121398 5.730651 107.230698 6.621351 106.128113 6.621351 C 105.029452 6.621351 104.138752 5.730651 104.138752 4.63199 C 104.138752 3.529406 105.029452 2.638706 106.128113 2.638706 C 107.230698 2.638706 108.121398 3.529406 108.121398 4.63199 Z M 104.719473 3.22335 L 107.536753 6.04063 M 104.719473 6.04063 L 107.536753 3.22335 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 43.029672 4.820332 C 43.029672 5.922917 42.138972 6.813617 41.040311 6.813617 C 39.937726 6.813617 39.047026 5.922917 39.047026 4.820332 C 39.047026 3.721671 39.937726 2.830971 41.040311 2.830971 C 42.138972 2.830971 43.029672 3.721671 43.029672 4.820332 Z M 39.627747 3.411692 L 42.448951 6.232896 M 39.627747 6.232896 L 42.448951 3.411692 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 126.837868 125.775034 C 126.837868 126.877619 125.947168 127.768319 124.844584 127.768319 C 123.745923 127.768319 122.851299 126.877619 122.851299 125.775034 C 122.851299 124.676373 123.745923 123.78175 124.844584 123.78175 C 125.947168 123.78175 126.837868 124.676373 126.837868 125.775034 Z M 123.435944 124.366394 L 126.253224 127.183674 M 123.435944 127.183674 L 126.253224 124.366394 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.12298 131.527308 C 90.12298 132.625969 89.23228 133.520592 88.129696 133.520592 C 87.031035 133.520592 86.136411 132.625969 86.136411 131.527308 C 86.136411 130.424723 87.031035 129.534023 88.129696 129.534023 C 89.23228 129.534023 90.12298 130.424723 90.12298 131.527308 Z M 86.721056 130.118668 L 89.538336 132.935948 M 86.721056 132.935948 L 89.538336 130.118668 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 153.339135 103.907761 C 153.339135 105.006422 152.444512 105.901046 151.345851 105.901046 C 150.24719 105.901046 149.352566 105.006422 149.352566 103.907761 C 149.352566 102.805177 150.24719 101.914477 151.345851 101.914477 C 152.444512 101.914477 153.339135 102.805177 153.339135 103.907761 Z M 149.937211 102.499121 L 152.754491 105.316401 M 149.937211 105.316401 L 152.754491 102.499121 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.738449 134.364207 C 89.738449 135.466791 88.843825 136.357491 87.745164 136.357491 C 86.646504 136.357491 85.75188 135.466791 85.75188 134.364207 C 85.75188 133.265546 86.646504 132.370922 87.745164 132.370922 C 88.843825 132.370922 89.738449 133.265546 89.738449 134.364207 Z M 86.336524 132.955567 L 89.153804 135.772847 M 86.336524 135.772847 L 89.153804 132.955567 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 151.726458 101.282747 C 151.726458 102.381407 150.835758 103.276031 149.733174 103.276031 C 148.634513 103.276031 147.743813 102.381407 147.743813 101.282747 C 147.743813 100.184086 148.634513 99.289462 149.733174 99.289462 C 150.835758 99.289462 151.726458 100.184086 151.726458 101.282747 Z M 148.324534 99.874107 L 151.141814 102.691387 M 148.324534 102.691387 L 151.141814 99.874107 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 97.499702 133.44604 C 97.499702 134.544701 96.605079 135.435401 95.506418 135.435401 C 94.407757 135.435401 93.513133 134.544701 93.513133 133.44604 C 93.513133 132.343456 94.407757 131.452756 95.506418 131.452756 C 96.605079 131.452756 97.499702 132.343456 97.499702 133.44604 Z M 94.097778 132.033477 L 96.915058 134.85468 M 94.097778 134.85468 L 96.915058 132.033477 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 9.041816 105.379182 C 9.041816 106.481766 8.147192 107.372466 7.048532 107.372466 C 5.945947 107.372466 5.055247 106.481766 5.055247 105.379182 C 5.055247 104.280521 5.945947 103.385897 7.048532 103.385897 C 8.147192 103.385897 9.041816 104.280521 9.041816 105.379182 Z M 5.639892 103.970542 L 8.457172 106.787822 M 5.639892 106.787822 L 8.457172 103.970542 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.283855 132.284599 C 90.283855 133.387184 89.393155 134.277884 88.290571 134.277884 C 87.19191 134.277884 86.297286 133.387184 86.297286 132.284599 C 86.297286 131.185938 87.19191 130.295238 88.290571 130.295238 C 89.393155 130.295238 90.283855 131.185938 90.283855 132.284599 Z M 86.881931 130.875959 L 89.699211 133.697163 M 86.881931 133.697163 L 89.699211 130.875959 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 45.744933 2.328726 C 45.744933 3.431311 44.854233 4.322011 43.751649 4.322011 C 42.652988 4.322011 41.762288 3.431311 41.762288 2.328726 C 41.762288 1.230066 42.652988 0.335442 43.751649 0.335442 C 44.854233 0.335442 45.744933 1.230066 45.744933 2.328726 Z M 42.343009 0.920086 L 45.160289 3.737367 M 42.343009 3.737367 L 45.160289 0.920086 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 18.278414 86.254637 C 18.278414 87.353298 17.38379 88.247922 16.28513 88.247922 C 15.182545 88.247922 14.291845 87.353298 14.291845 86.254637 C 14.291845 85.155976 15.182545 84.261353 16.28513 84.261353 C 17.38379 84.261353 18.278414 85.155976 18.278414 86.254637 Z M 14.87649 84.845997 L 17.69377 87.663277 M 14.87649 87.663277 L 17.69377 84.845997 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.539815 101.502479 C 154.539815 102.60114 153.649115 103.495763 152.550454 103.495763 C 151.447869 103.495763 150.557169 102.60114 150.557169 101.502479 C 150.557169 100.399894 151.447869 99.509194 152.550454 99.509194 C 153.649115 99.509194 154.539815 100.399894 154.539815 101.502479 Z M 151.141814 100.093839 L 153.959094 102.911119 M 151.141814 102.911119 L 153.959094 100.093839 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 7.315349 108.12191 C 7.315349 109.220571 6.420726 110.115194 5.322065 110.115194 C 4.21948 110.115194 3.32878 109.220571 3.32878 108.12191 C 3.32878 107.019325 4.21948 106.128625 5.322065 106.128625 C 6.420726 106.128625 7.315349 107.019325 7.315349 108.12191 Z M 3.913425 106.71327 L 6.730705 109.53055 M 3.913425 109.53055 L 6.730705 106.71327 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 49.77074 0.00191995 C 49.77074 1.100581 48.88004 1.991281 47.781379 1.991281 C 46.678795 1.991281 45.788095 1.100581 45.788095 0.00191995 C 45.788095 -1.100665 46.678795 -1.991365 47.781379 -1.991365 C 48.88004 -1.991365 49.77074 -1.100665 49.77074 0.00191995 Z M 46.372739 -1.410644 L 49.190019 1.41056 M 46.372739 1.41056 L 49.190019 -1.410644 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 105.080462 9.077643 C 105.080462 10.176303 104.189762 11.070927 103.087177 11.070927 C 101.988516 11.070927 101.093893 10.176303 101.093893 9.077643 C 101.093893 7.975058 101.988516 7.084358 103.087177 7.084358 C 104.189762 7.084358 105.080462 7.975058 105.080462 9.077643 Z M 101.678537 7.669003 L 104.495817 10.486283 M 101.678537 10.486283 L 104.495817 7.669003 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.68295 133.889428 C 88.68295 134.992013 87.788326 135.882713 86.689665 135.882713 C 85.587081 135.882713 84.696381 134.992013 84.696381 133.889428 C 84.696381 132.790768 85.587081 131.896144 86.689665 131.896144 C 87.788326 131.896144 88.68295 132.790768 88.68295 133.889428 Z M 85.281025 132.480788 L 88.098305 135.298069 M 85.281025 135.298069 L 88.098305 132.480788 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 86.752446 132.421932 C 86.752446 133.524516 85.861746 134.415216 84.759161 134.415216 C 83.660501 134.415216 82.769801 133.524516 82.769801 132.421932 C 82.769801 131.323271 83.660501 130.428647 84.759161 130.428647 C 85.861746 130.428647 86.752446 131.323271 86.752446 132.421932 Z M 83.350521 131.013292 L 86.171725 133.830572 M 83.350521 133.830572 L 86.171725 131.013292 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 125.55479 128.44321 C 125.55479 129.545795 124.66409 130.436495 123.561505 130.436495 C 122.462844 130.436495 121.568221 129.545795 121.568221 128.44321 C 121.568221 127.344549 122.462844 126.453849 123.561505 126.453849 C 124.66409 126.453849 125.55479 127.344549 125.55479 128.44321 Z M 122.152865 127.03457 L 124.970145 129.85185 M 122.152865 129.85185 L 124.970145 127.03457 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 6.310859 109.495236 C 6.310859 110.593897 5.420159 111.48852 4.317575 111.48852 C 3.218914 111.48852 2.328214 110.593897 2.328214 109.495236 C 2.328214 108.392651 3.218914 107.501951 4.317575 107.501951 C 5.420159 107.501951 6.310859 108.392651 6.310859 109.495236 Z M 2.908935 108.086596 L 5.730139 110.903876 M 2.908935 110.903876 L 5.730139 108.086596 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 1.990768 108.031663 C 1.990768 109.130324 1.100068 110.024947 0.00140768 110.024947 C -1.101177 110.024947 -1.991877 109.130324 -1.991877 108.031663 C -1.991877 106.929078 -1.101177 106.038378 0.00140768 106.038378 C 1.100068 106.038378 1.990768 106.929078 1.990768 108.031663 Z M -1.407232 106.623023 L 1.410048 109.440303 M -1.407232 109.440303 L 1.410048 106.623023 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.119056 133.481354 C 90.119056 134.583939 89.228356 135.474639 88.125772 135.474639 C 87.027111 135.474639 86.136411 134.583939 86.136411 133.481354 C 86.136411 132.382694 87.027111 131.491994 88.125772 131.491994 C 89.228356 131.491994 90.119056 132.382694 90.119056 133.481354 Z M 86.717132 132.072714 L 89.534412 134.889995 M 86.717132 134.889995 L 89.534412 132.072714 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.955955 132.445474 C 92.955955 133.544135 92.061332 134.438759 90.962671 134.438759 C 89.86401 134.438759 88.969386 133.544135 88.969386 132.445474 C 88.969386 131.34289 89.86401 130.45219 90.962671 130.45219 C 92.061332 130.45219 92.955955 131.34289 92.955955 132.445474 Z M 89.554031 131.036834 L 92.371311 133.854114 M 89.554031 133.854114 L 92.371311 131.036834 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 126.272843 124.405632 C 126.272843 125.504293 125.382143 126.394993 124.279558 126.394993 C 123.180898 126.394993 122.286274 125.504293 122.286274 124.405632 C 122.286274 123.303047 123.180898 122.412347 124.279558 122.412347 C 125.382143 122.412347 126.272843 123.303047 126.272843 124.405632 Z M 122.870918 122.993068 L 125.688198 125.814272 M 122.870918 125.814272 L 125.688198 122.993068 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.583195 129.949945 C 92.583195 131.052529 91.688572 131.943229 90.589911 131.943229 C 89.487326 131.943229 88.596626 131.052529 88.596626 129.949945 C 88.596626 128.851284 89.487326 127.95666 90.589911 127.95666 C 91.688572 127.95666 92.583195 128.851284 92.583195 129.949945 Z M 89.181271 128.541305 L 91.998551 131.358585 M 89.181271 131.358585 L 91.998551 128.541305 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.018736 132.712292 C 93.018736 133.810953 92.128036 134.701653 91.025451 134.701653 C 89.926791 134.701653 89.036091 133.810953 89.036091 132.712292 C 89.036091 131.609707 89.926791 130.719007 91.025451 130.719007 C 92.128036 130.719007 93.018736 131.609707 93.018736 132.712292 Z M 89.616811 131.299728 L 92.438015 134.120932 M 89.616811 134.120932 L 92.438015 131.299728 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 163.886279 83.884669 C 163.886279 84.98333 162.991655 85.877953 161.892994 85.877953 C 160.79041 85.877953 159.89971 84.98333 159.89971 83.884669 C 159.89971 82.782084 160.79041 81.891384 161.892994 81.891384 C 162.991655 81.891384 163.886279 82.782084 163.886279 83.884669 Z M 160.484354 82.476029 L 163.301634 85.293309 M 160.484354 85.293309 L 163.301634 82.476029 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 47.636199 3.498015 C 47.636199 4.6006 46.745499 5.4913 45.642915 5.4913 C 44.544254 5.4913 43.653554 4.6006 43.653554 3.498015 C 43.653554 2.399355 44.544254 1.504731 45.642915 1.504731 C 46.745499 1.504731 47.636199 2.399355 47.636199 3.498015 Z M 44.234275 2.089375 L 47.051555 4.906655 M 44.234275 4.906655 L 47.051555 2.089375 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 162.995579 84.437923 C 162.995579 85.536584 162.100955 86.431208 161.002294 86.431208 C 159.89971 86.431208 159.00901 85.536584 159.00901 84.437923 C 159.00901 83.335338 159.89971 82.444638 161.002294 82.444638 C 162.100955 82.444638 162.995579 83.335338 162.995579 84.437923 Z M 159.593654 83.029283 L 162.410934 85.846563 M 159.593654 85.846563 L 162.410934 83.029283 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 4.184166 105.618533 C 4.184166 106.721117 3.293466 107.611817 2.190882 107.611817 C 1.092221 107.611817 0.197597 106.721117 0.197597 105.618533 C 0.197597 104.519872 1.092221 103.629172 2.190882 103.629172 C 3.293466 103.629172 4.184166 104.519872 4.184166 105.618533 Z M 0.782242 104.209893 L 3.599522 107.027173 M 0.782242 107.027173 L 3.599522 104.209893 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.432393 130.169677 C 89.432393 131.268338 88.541693 132.162962 87.439109 132.162962 C 86.340448 132.162962 85.445824 131.268338 85.445824 130.169677 C 85.445824 129.071016 86.340448 128.176393 87.439109 128.176393 C 88.541693 128.176393 89.432393 129.071016 89.432393 130.169677 Z M 86.030469 128.761037 L 88.847749 131.578317 M 86.030469 131.578317 L 88.847749 128.761037 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 6.538439 108.12191 C 6.538439 109.224494 5.643815 110.115194 4.545155 110.115194 C 3.44257 110.115194 2.55187 109.224494 2.55187 108.12191 C 2.55187 107.023249 3.44257 106.132549 4.545155 106.132549 C 5.643815 106.132549 6.538439 107.023249 6.538439 108.12191 Z M 3.136515 106.71327 L 5.953795 109.534474 M 3.136515 109.534474 L 5.953795 106.71327 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 126.009949 128.698256 C 126.009949 129.800841 125.119249 130.691541 124.020588 130.691541 C 122.918004 130.691541 122.027304 129.800841 122.027304 128.698256 C 122.027304 127.599596 122.918004 126.708896 124.020588 126.708896 C 125.119249 126.708896 126.009949 127.599596 126.009949 128.698256 Z M 122.611948 127.289616 L 125.429228 130.11082 M 122.611948 130.11082 L 125.429228 127.289616 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 87.713774 130.463961 C 87.713774 131.566546 86.823074 132.457246 85.72049 132.457246 C 84.621829 132.457246 83.731129 131.566546 83.731129 130.463961 C 83.731129 129.3653 84.621829 128.470677 85.72049 128.470677 C 86.823074 128.470677 87.713774 129.3653 87.713774 130.463961 Z M 84.311849 129.055321 L 87.133053 131.872601 M 84.311849 131.872601 L 87.133053 129.055321 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.068613 130.526742 C 91.068613 131.625403 90.177913 132.520026 89.075329 132.520026 C 87.976668 132.520026 87.082044 131.625403 87.082044 130.526742 C 87.082044 129.428081 87.976668 128.533457 89.075329 128.533457 C 90.177913 128.533457 91.068613 129.428081 91.068613 130.526742 Z M 87.666689 129.118102 L 90.483969 131.935382 M 87.666689 131.935382 L 90.483969 129.118102 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.64541 129.99703 C 91.64541 131.099615 90.750786 131.990315 89.652126 131.990315 C 88.549541 131.990315 87.658841 131.099615 87.658841 129.99703 C 87.658841 128.89837 88.549541 128.003746 89.652126 128.003746 C 90.750786 128.003746 91.64541 128.89837 91.64541 129.99703 Z M 88.243485 128.58839 L 91.060766 131.40567 M 88.243485 131.40567 L 91.060766 128.58839 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 159.377846 84.018078 C 159.377846 85.120662 158.487146 86.011362 157.388485 86.011362 C 156.285901 86.011362 155.395201 85.120662 155.395201 84.018078 C 155.395201 82.919417 156.285901 82.024793 157.388485 82.024793 C 158.487146 82.024793 159.377846 82.919417 159.377846 84.018078 Z M 155.975921 82.609438 L 158.797125 85.426718 M 155.975921 85.426718 L 158.797125 82.609438 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 85.477215 129.828307 C 85.477215 130.930892 84.582591 131.821592 83.48393 131.821592 C 82.381346 131.821592 81.490646 130.930892 81.490646 129.828307 C 81.490646 128.729647 82.381346 127.835023 83.48393 127.835023 C 84.582591 127.835023 85.477215 128.729647 85.477215 129.828307 Z M 82.07529 128.419667 L 84.89257 131.236948 M 82.07529 131.236948 L 84.89257 128.419667 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 154.95966 100.278257 C 154.95966 101.376918 154.06896 102.271541 152.966376 102.271541 C 151.867715 102.271541 150.977015 101.376918 150.977015 100.278257 C 150.977015 99.175672 151.867715 98.284972 152.966376 98.284972 C 154.06896 98.284972 154.95966 99.175672 154.95966 100.278257 Z M 151.557735 98.869617 L 154.375016 101.686897 M 151.557735 101.686897 L 154.375016 98.869617 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 129.070504 122.451585 C 129.070504 123.550246 128.179804 124.440946 127.07722 124.440946 C 125.978559 124.440946 125.087859 123.550246 125.087859 122.451585 C 125.087859 121.349001 125.978559 120.458301 127.07722 120.458301 C 128.179804 120.458301 129.070504 121.349001 129.070504 122.451585 Z M 125.668579 121.039021 L 128.489783 123.860225 M 125.668579 123.860225 L 128.489783 121.039021 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.608398 131.735269 C 88.608398 132.833929 87.717698 133.724629 86.619037 133.724629 C 85.516453 133.724629 84.625753 132.833929 84.625753 131.735269 C 84.625753 130.632684 85.516453 129.741984 86.619037 129.741984 C 87.717698 129.741984 88.608398 130.632684 88.608398 131.735269 Z M 85.206473 130.326629 L 88.027677 133.143909 M 85.206473 133.143909 L 88.027677 130.326629 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 5.290674 108.906668 C 5.290674 110.005328 4.396051 110.899952 3.29739 110.899952 C 2.194805 110.899952 1.304105 110.005328 1.304105 108.906668 C 1.304105 107.808007 2.194805 106.913383 3.29739 106.913383 C 4.396051 106.913383 5.290674 107.808007 5.290674 108.906668 Z M 1.88875 107.498028 L 4.70603 110.315308 M 1.88875 110.315308 L 4.70603 107.498028 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.406625 130.993673 C 92.406625 132.092333 91.515925 132.983033 90.417264 132.983033 C 89.31468 132.983033 88.42398 132.092333 88.42398 130.993673 C 88.42398 129.891088 89.31468 129.000388 90.417264 129.000388 C 91.515925 129.000388 92.406625 129.891088 92.406625 130.993673 Z M 89.008624 129.585033 L 91.825904 132.402313 M 89.008624 132.402313 L 91.825904 129.585033 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 5.463321 107.270448 C 5.463321 108.369109 4.568697 109.259809 3.470037 109.259809 C 2.371376 109.259809 1.476752 108.369109 1.476752 107.270448 C 1.476752 106.167863 2.371376 105.277163 3.470037 105.277163 C 4.568697 105.277163 5.463321 106.167863 5.463321 107.270448 Z M 2.061397 105.861808 L 4.878677 108.679088 M 2.061397 108.679088 L 4.878677 105.861808 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.311322 131.762735 C 90.311322 132.861396 89.420622 133.752096 88.321961 133.752096 C 87.219377 133.752096 86.328677 132.861396 86.328677 131.762735 C 86.328677 130.660151 87.219377 129.769451 88.321961 129.769451 C 89.420622 129.769451 90.311322 130.660151 90.311322 131.762735 Z M 86.913321 130.354095 L 89.730601 133.171375 M 86.913321 133.171375 L 89.730601 130.354095 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 90.790024 133.190994 C 90.790024 134.289655 89.899324 135.184279 88.800663 135.184279 C 87.698079 135.184279 86.807379 134.289655 86.807379 133.190994 C 86.807379 132.08841 87.698079 131.19771 88.800663 131.19771 C 89.899324 131.19771 90.790024 132.08841 90.790024 133.190994 Z M 87.392023 131.782354 L 90.209303 134.599634 M 87.392023 134.599634 L 90.209303 131.782354 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 28.256608 79.042714 C 28.256608 80.141375 27.361984 81.035998 26.263324 81.035998 C 25.160739 81.035998 24.270039 80.141375 24.270039 79.042714 C 24.270039 77.940129 25.160739 77.049429 26.263324 77.049429 C 27.361984 77.049429 28.256608 77.940129 28.256608 79.042714 Z M 24.854684 77.634074 L 27.671964 80.451354 M 24.854684 80.451354 L 27.671964 77.634074 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 52.972551 1.904957 C 52.972551 3.003618 52.077928 3.898242 50.979267 3.898242 C 49.876682 3.898242 48.985982 3.003618 48.985982 1.904957 C 48.985982 0.802373 49.876682 -0.0883272 50.979267 -0.0883272 C 52.077928 -0.0883272 52.972551 0.802373 52.972551 1.904957 Z M 49.570627 0.496317 L 52.387907 3.313597 M 49.570627 3.313597 L 52.387907 0.496317 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 92.13196 134.007142 C 92.13196 135.105803 91.24126 136.000427 90.138675 136.000427 C 89.040015 136.000427 88.145391 135.105803 88.145391 134.007142 C 88.145391 132.904558 89.040015 132.013858 90.138675 132.013858 C 91.24126 132.013858 92.13196 132.904558 92.13196 134.007142 Z M 88.730035 132.598502 L 91.547315 135.415782 M 88.730035 135.415782 L 91.547315 132.598502 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.981158 131.935382 C 88.981158 133.034043 88.090458 133.928666 86.987873 133.928666 C 85.889212 133.928666 84.994589 133.034043 84.994589 131.935382 C 84.994589 130.836721 85.889212 129.942097 86.987873 129.942097 C 88.090458 129.942097 88.981158 130.836721 88.981158 131.935382 Z M 85.579233 130.526742 L 88.396513 133.344022 M 85.579233 133.344022 L 88.396513 130.526742 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 91.93577 134.497616 C 91.93577 135.596276 91.041147 136.4909 89.942486 136.4909 C 88.839901 136.4909 87.949201 135.596276 87.949201 134.497616 C 87.949201 133.395031 88.839901 132.504331 89.942486 132.504331 C 91.041147 132.504331 91.93577 133.395031 91.93577 134.497616 Z M 88.533846 133.088976 L 91.351126 135.906256 M 88.533846 135.906256 L 91.351126 133.088976 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 89.620735 129.702746 C 89.620735 130.805331 88.730035 131.696031 87.627451 131.696031 C 86.52879 131.696031 85.63809 130.805331 85.63809 129.702746 C 85.63809 128.604085 86.52879 127.709462 87.627451 127.709462 C 88.730035 127.709462 89.620735 128.604085 89.620735 129.702746 Z M 86.218811 128.294106 L 89.036091 131.111386 M 86.218811 131.111386 L 89.036091 128.294106 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 93.630847 133.685391 C 93.630847 134.787976 92.740147 135.678676 91.637562 135.678676 C 90.538902 135.678676 89.644278 134.787976 89.644278 133.685391 C 89.644278 132.586731 90.538902 131.692107 91.637562 131.692107 C 92.740147 131.692107 93.630847 132.586731 93.630847 133.685391 Z M 90.228922 132.276751 L 93.046203 135.094032 M 90.228922 135.094032 L 93.046203 132.276751 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 126.194367 122.302481 C 126.194367 123.401142 125.299743 124.291842 124.201083 124.291842 C 123.098498 124.291842 122.207798 123.401142 122.207798 122.302481 C 122.207798 121.199897 123.098498 120.309197 124.201083 120.309197 C 125.299743 120.309197 126.194367 121.199897 126.194367 122.302481 Z M 122.792443 120.889917 L 125.609723 123.711121 M 122.792443 123.711121 L 125.609723 120.889917 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 43.967457 34.464554 C 43.967457 35.563214 43.076757 36.457838 41.978096 36.457838 C 40.875512 36.457838 39.984812 35.563214 39.984812 34.464554 C 39.984812 33.365893 40.875512 32.471269 41.978096 32.471269 C 43.076757 32.471269 43.967457 33.365893 43.967457 34.464554 Z M 40.569456 33.055914 L 43.386736 35.873194 M 40.569456 35.873194 L 43.386736 33.055914 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 7.837213 106.513157 C 7.837213 107.615741 6.946513 108.506441 5.843929 108.506441 C 4.745268 108.506441 3.850644 107.615741 3.850644 106.513157 C 3.850644 105.414496 4.745268 104.519872 5.843929 104.519872 C 6.946513 104.519872 7.837213 105.414496 7.837213 106.513157 Z M 4.435289 105.104517 L 7.252569 107.921797 M 4.435289 107.921797 L 7.252569 105.104517 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 8.649437 108.063053 C 8.649437 109.165638 7.758737 110.056338 6.660077 110.056338 C 5.557492 110.056338 4.666792 109.165638 4.666792 108.063053 C 4.666792 106.964392 5.557492 106.073692 6.660077 106.073692 C 7.758737 106.073692 8.649437 106.964392 8.649437 108.063053 Z M 5.247513 106.654413 L 8.068717 109.475617 M 5.247513 109.475617 L 8.068717 106.654413 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.655483 131.896144 C 88.655483 132.994805 87.764783 133.885505 86.666123 133.885505 C 85.563538 133.885505 84.672838 132.994805 84.672838 131.896144 C 84.672838 130.793559 85.563538 129.902859 86.666123 129.902859 C 87.764783 129.902859 88.655483 130.793559 88.655483 131.896144 Z M 85.257483 130.48358 L 88.074763 133.304784 M 85.257483 133.304784 L 88.074763 130.48358 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 10.960549 107.788388 C 10.960549 108.890972 10.069849 109.781672 8.967264 109.781672 C 7.868603 109.781672 6.977903 108.890972 6.977903 107.788388 C 6.977903 106.689727 7.868603 105.795103 8.967264 105.795103 C 10.069849 105.795103 10.960549 106.689727 10.960549 107.788388 Z M 7.558624 106.379748 L 10.379828 109.197028 M 7.558624 109.197028 L 10.379828 106.379748 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"<path style=\"fill-rule:nonzero;fill:rgb(59.999084%,39.99939%,19.999695%);fill-opacity:1;stroke-width:0.3985;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(44.999695%,29.998779%,14.99939%);stroke-opacity:1;stroke-miterlimit:10;\" d=\"M 88.906606 130.974054 C 88.906606 132.072714 88.011982 132.967338 86.913321 132.967338 C 85.810737 132.967338 84.920037 132.072714 84.920037 130.974054 C 84.920037 129.871469 85.810737 128.980769 86.913321 128.980769 C 88.011982 128.980769 88.906606 129.871469 88.906606 130.974054 Z M 85.504681 129.565414 L 88.321961 132.382694 M 85.504681 132.382694 L 88.321961 129.565414 \" transform=\"matrix(0.99553,0,0,-0.99553,35.600161,147.720661)\"/>\n", | |
"</g>\n", | |
"</svg>\n", | |
"\n" | |
], | |
"text/plain": [ | |
"Axis(PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(), false), Any[Plot(false, true, PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(\"only_marks\" => nothing), true), Table(PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(), false), TableData([0.39878536099777834 -0.2056806018319026; 0.31846884389932467 -0.1670001028002906; … ; 0.41003591414425655 0.006653462622129282; -0.798643212469387 0.027955972108163425], [\"x\", \"y\"], Int64[], true)), Any[]), Plot(false, true, PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(\"only_marks\" => nothing), true), Table(PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(), false), TableData([-0.18022831348540894 -0.7997021509551027; -0.14171061658261636 -0.8622440946226049; … ; -0.09270175647270315 -0.8234815617098855; -0.11742297070618332 0.34099746629520744], [\"x\", \"y\"], Int64[], true)), Any[]), Plot(false, true, PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(\"only_marks\" => nothing), true), Table(PGFPlotsX.Options(OrderedCollections.OrderedDict{Any,Any}(), false), TableData([0.05041130628027627 1.2646201237610024; -0.6326755733736491 -1.6313040274174793; … ; -1.1940070859213947 0.7247113842445886; -0.012981622135295162 1.2549722693956171], [\"x\", \"y\"], Int64[], true)), Any[])])" | |
] | |
}, | |
"execution_count": 17, | |
"metadata": {}, | |
"output_type": "execute_result" | |
} | |
], | |
"source": [ | |
"@pgf Axis(\n", | |
" [\n", | |
" PlotInc(\n", | |
" {only_marks},\n", | |
" Table(\n", | |
" x=X[findall(e->e==label, labels),1],\n", | |
" y=X[findall(e->e==label, labels),2]\n", | |
" )\n", | |
" )\n", | |
" for label in unique(labels)\n", | |
" ]...\n", | |
")" | |
] | |
}, | |
{ | |
"cell_type": "markdown", | |
"metadata": {}, | |
"source": [ | |
"## まとめ\n", | |
"\n", | |
"ハイパーパラメタの初期値によって結果が変わってきたりするので、安定して同じ解を得ることは難しそうです。観測データの潜在表現獲得という意味でGPLVMはとても面白い手法ですが、実際にどのように使えばいいかは把握していないため、そのあたりの情報も集めつつ更新していきたいと思っています。" | |
] | |
}, | |
{ | |
"cell_type": "code", | |
"execution_count": null, | |
"metadata": {}, | |
"outputs": [], | |
"source": [] | |
} | |
], | |
"metadata": { | |
"kernelspec": { | |
"display_name": "Julia 1.4.1", | |
"language": "julia", | |
"name": "julia-1.4" | |
}, | |
"language_info": { | |
"file_extension": ".jl", | |
"mimetype": "application/julia", | |
"name": "julia", | |
"version": "1.4.2" | |
} | |
}, | |
"nbformat": 4, | |
"nbformat_minor": 4 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment