aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorAdam Janovsky2022-09-27 12:52:50 +0200
committerAdam Janovsky2022-09-27 12:52:50 +0200
commit0b9e7a4d7ff37640071c67c34fa380caae18e029 (patch)
tree136795a7f08b8275e36a8bb5dfc8e7a0c21e3ec1
parent346cc6dd7a945855a5a4416b886fe4c1e7788e11 (diff)
downloadsec-certs-0b9e7a4d7ff37640071c67c34fa380caae18e029.tar.gz
sec-certs-0b9e7a4d7ff37640071c67c34fa380caae18e029.tar.zst
sec-certs-0b9e7a4d7ff37640071c67c34fa380caae18e029.zip
add latex plotting notebook
-rw-r--r--notebooks/latex_plotting.ipynb333
1 files changed, 333 insertions, 0 deletions
diff --git a/notebooks/latex_plotting.ipynb b/notebooks/latex_plotting.ipynb
new file mode 100644
index 00000000..3cf69e4e
--- /dev/null
+++ b/notebooks/latex_plotting.ipynb
@@ -0,0 +1,333 @@
+{
+ "cells": [
+ {
+ "cell_type": "code",
+ "execution_count": 1,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "import matplotlib\n",
+ "import pandas as pd\n",
+ "import matplotlib.pyplot as plt\n",
+ "import seaborn as sns\n",
+ "\n",
+ "plt.style.use(\"seaborn-white\")\n",
+ "sns.set_palette(\"deep\")\n",
+ "sns.set_context(\"paper\")\n",
+ "from pathlib import Path\n",
+ "from sec_certs.dataset import CCDataset\n",
+ "\n",
+ "RESULTS_DIR = Path(\"./cc/results\")\n",
+ "\n",
+ "matplotlib.use(\"pgf\")\n",
+ "sns.set_theme(style='white')\n",
+ "plt.rcParams[\"axes.linewidth\"] = 0.5\n",
+ "plt.rcParams[\"legend.fontsize\"] = 6.5\n",
+ "plt.rcParams[\"xtick.labelsize\"] = 8\n",
+ "plt.rcParams[\"ytick.labelsize\"] = 8\n",
+ "plt.rcParams[\"ytick.left\"] = True\n",
+ "plt.rcParams['ytick.major.size'] = 5\n",
+ "plt.rcParams['ytick.major.width'] = 0.5\n",
+ "plt.rcParams['ytick.major.pad'] = 0\n",
+ "plt.rcParams[\"xtick.bottom\"] = True\n",
+ "plt.rcParams['xtick.major.size'] = 5\n",
+ "plt.rcParams['xtick.major.width'] = 0.5\n",
+ "plt.rcParams['xtick.major.pad'] = 0\n",
+ "plt.rcParams[\"pgf.texsystem\"] = \"pdflatex\"\n",
+ "plt.rcParams[\"font.family\"] = \"serif\"\n",
+ "plt.rcParams[\"text.usetex\"] = True\n",
+ "plt.rcParams[\"pgf.rcfonts\"] = False\n",
+ "plt.rcParams[\"axes.titlesize\"] = 8\n",
+ "plt.rcParams[\"legend.handletextpad\"] = 0.3\n",
+ "plt.rcParams['lines.markersize'] = 4\n",
+ "sns.set_palette(\"deep\")\n",
+ "\n",
+ "dset = CCDataset.from_json(\"/Users/adam/phd/projects/certificates/sec-certs/datasets/new_cc/dataset.json\") # local instantiation\n",
+ "df = dset.to_pandas()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 3,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "df = pd.read_csv(RESULTS_DIR / \"exploded_cves.csv\").rename(columns={\"Unnamed: 0\": \"dgst\"}).set_index(\"dgst\")\n"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 4,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "hist = sns.histplot(df.n_days_after_certification, kde=False)\n",
+ "hist.set(\n",
+ " xlim=(-2200, 4600),\n",
+ " title=\"CVEs appearing n days after certification\",\n",
+ " xlabel=\"Number of days after date of certification\",\n",
+ " ylabel=\"Frequency of CVEs\",\n",
+ ")\n",
+ "hist.axvline(0, color=\"red\", linewidth=\"1\", label=\"Certification date\")\n",
+ "hist.legend(loc=\"upper right\")\n",
+ "\n",
+ "fig = matplotlib.pyplot.gcf()\n",
+ "fig.set_size_inches(3.35, 3)\n",
+ "fig.savefig(\"/Users/adam/Downloads/cve_hist.pgf\", bbox_inches=\"tight\")\n",
+ "plt.close(fig)\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Top-10 CWES table rows"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 9,
+ "metadata": {},
+ "outputs": [
+ {
+ "name": "stdout",
+ "output_type": "stream",
+ "text": [
+ "CWE-119 & Buffer overflow & 1817 \\\\\n",
+ "CWE-20 & Improper Input Validation & 1034 \\\\\n",
+ "CWE-200 & Exposure of sensitive information & 762 \\\\\n",
+ "CWE-264 & Access control error & 626 \\\\\n",
+ "CWE-79 & Cross-site Scripting & 536 \\\\\n",
+ "CWE-787 & Out-of-bounds Write & 438 \\\\\n",
+ "CWE-399 & Resource Management Errors & 365 \\\\\n",
+ "CWE-125 & Out-of-bounds Read & 355 \\\\\n",
+ "CWE-416 & Use After Free & 219 \\\\\n",
+ "CWE-284 & Improper Access Control & 178 \\\\\n"
+ ]
+ }
+ ],
+ "source": [
+ "latex_table = pd.read_csv(RESULTS_DIR / \"cwes/top_10_cwe_overall.csv\").head(10).set_index(\"cwe_id\")\n",
+ "name_mapping = {\n",
+ " \"Improper Restriction of Operations within the Bounds of a Memory Buffer\": \"Buffer overflow\",\n",
+ " \"Exposure of Sensitive Information to an Unauthorized Actor\": \"Exposure of sensitive information\",\n",
+ " \"Permissions, Privileges, and Access Controls\": \"Access control error\",\n",
+ " \"Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')\": \"Cross-site Scripting\",\n",
+ "}\n",
+ "latex_table.cwe_name = latex_table.cwe_name.map(lambda x: name_mapping.get(x, x))\n",
+ "\n",
+ "for index, row in latex_table.head(10).iterrows():\n",
+ " print(f\"{index} & {row['cwe_name']} & {row['frequency']} \\\\\\\\\")\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "## Validity boxplot"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 225,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "image/png": "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",
+ "image/svg+xml": "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\"?>\n<!DOCTYPE svg PUBLIC \"-//W3C//DTD SVG 1.1//EN\"\n \"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd\">\n<svg xmlns:xlink=\"http://www.w3.org/1999/xlink\" width=\"236.845826pt\" height=\"196.112591pt\" viewBox=\"0 0 236.845826 196.112591\" xmlns=\"http://www.w3.org/2000/svg\" version=\"1.1\">\n <metadata>\n <rdf:RDF xmlns:dc=\"http://purl.org/dc/elements/1.1/\" xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:rdf=\"http://www.w3.org/1999/02/22-rdf-syntax-ns#\">\n <cc:Work>\n <dc:type rdf:resource=\"http://purl.org/dc/dcmitype/StillImage\"/>\n <dc:date>2022-09-21T15:56:54.393870</dc:date>\n <dc:format>image/svg+xml</dc:format>\n <dc:creator>\n <cc:Agent>\n <dc:title>Matplotlib v3.5.1, https://matplotlib.org/</dc:title>\n </cc:Agent>\n </dc:creator>\n </cc:Work>\n </rdf:RDF>\n </metadata>\n <defs>\n <style type=\"text/css\">*{stroke-linejoin: round; stroke-linecap: butt}</style>\n </defs>\n <g id=\"figure_1\">\n <g id=\"patch_1\">\n <path d=\"M 0 196.112591 \nL 236.845826 196.112591 \nL 236.845826 0 \nL 0 0 \nz\n\" style=\"fill: #ffffff\"/>\n </g>\n <g id=\"axes_1\">\n <g id=\"patch_2\">\n <path d=\"M 32.638478 154.634802 \nL 227.938478 154.634802 \nL 227.938478 18.734802 \nL 32.638478 18.734802 \nz\n\" style=\"fill: #ffffff\"/>\n </g>\n <g id=\"matplotlib.axis_1\">\n <g id=\"xtick_1\">\n <g id=\"line2d_1\">\n <defs>\n <path id=\"m8f56c841c3\" d=\"M 0 0 \nL 0 5 \n\" style=\"stroke: #262626; stroke-width: 0.5\"/>\n </defs>\n <g>\n <use xlink:href=\"#m8f56c841c3\" x=\"36.544478\" y=\"154.634802\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_1\">\n <!-- 1997 -->\n <g style=\"fill: #262626\" transform=\"translate(36.277338 177.42694)rotate(-75)scale(0.08 -0.08)\">\n <defs>\n <path id=\"CMR17-31\" d=\"M 1702 4058 \nC 1702 4192 1696 4192 1606 4192 \nC 1357 3916 979 3827 621 3827 \nC 602 3827 570 3827 563 3808 \nC 557 3795 557 3782 557 3648 \nC 755 3648 1088 3686 1344 3839 \nL 1344 461 \nC 1344 236 1331 160 781 160 \nL 589 160 \nL 589 0 \nC 896 0 1216 0 1523 0 \nC 1830 0 2150 0 2458 0 \nL 2458 160 \nL 2266 160 \nC 1715 160 1702 230 1702 458 \nL 1702 4058 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"CMR17-39\" d=\"M 2253 1864 \nC 2253 464 1670 31 1190 31 \nC 1043 31 685 31 538 294 \nC 704 268 826 357 826 518 \nC 826 692 685 749 595 749 \nC 538 749 365 723 365 506 \nC 365 71 742 -128 1203 -128 \nC 1939 -128 2688 674 2688 2073 \nC 2688 3817 1971 4179 1485 4179 \nC 851 4179 243 3628 243 2778 \nC 243 1991 762 1408 1414 1408 \nC 1952 1408 2189 1903 2253 2112 \nL 2253 1864 \nz\nM 1427 1510 \nC 1254 1510 1011 1542 813 1922 \nC 678 2169 678 2461 678 2771 \nC 678 3146 678 3405 858 3684 \nC 947 3817 1114 4032 1485 4032 \nC 2240 4032 2240 2885 2240 2632 \nC 2240 2182 2035 1510 1427 1510 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"CMR17-37\" d=\"M 2886 3941 \nL 2886 4081 \nL 1382 4081 \nC 634 4081 621 4165 595 4288 \nL 480 4288 \nL 294 3094 \nL 410 3094 \nC 429 3215 474 3540 550 3661 \nC 589 3712 1062 3712 1171 3712 \nL 2579 3712 \nL 1869 2661 \nC 1395 1954 1069 999 1069 165 \nC 1069 89 1069 -128 1299 -128 \nC 1530 -128 1530 89 1530 171 \nL 1530 465 \nC 1530 1508 1709 2196 2003 2636 \nL 2886 3941 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#CMR17-31\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-39\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-39\" transform=\"translate(91.380954 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-37\" transform=\"translate(137.071431 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_2\">\n <g id=\"line2d_2\">\n <g>\n <use xlink:href=\"#m8f56c841c3\" x=\"44.356478\" y=\"154.634802\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_2\">\n <!-- 1998 -->\n <g style=\"fill: #262626\" transform=\"translate(44.089338 177.42694)rotate(-75)scale(0.08 -0.08)\">\n <defs>\n <path id=\"CMR17-38\" d=\"M 1741 2264 \nC 2144 2467 2554 2773 2554 3263 \nC 2554 3841 1990 4179 1472 4179 \nC 890 4179 378 3759 378 3180 \nC 378 3021 416 2747 666 2505 \nC 730 2442 998 2251 1171 2130 \nC 883 1983 211 1634 211 934 \nC 211 279 838 -128 1459 -128 \nC 2144 -128 2720 362 2720 1010 \nC 2720 1590 2330 1857 2074 2029 \nL 1741 2264 \nz\nM 902 2822 \nC 851 2854 595 3051 595 3351 \nC 595 3739 998 4032 1459 4032 \nC 1965 4032 2336 3676 2336 3262 \nC 2336 2669 1670 2331 1638 2331 \nC 1632 2331 1626 2331 1574 2370 \nL 902 2822 \nz\nM 2080 1519 \nC 2176 1449 2483 1240 2483 851 \nC 2483 381 2010 25 1472 25 \nC 890 25 448 438 448 940 \nC 448 1443 838 1862 1280 2060 \nL 2080 1519 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#CMR17-31\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-39\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-39\" transform=\"translate(91.380954 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-38\" transform=\"translate(137.071431 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_3\">\n <g id=\"line2d_3\">\n <g>\n <use xlink:href=\"#m8f56c841c3\" x=\"52.168478\" y=\"154.634802\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_3\">\n <!-- 1999 -->\n <g style=\"fill: #262626\" transform=\"translate(51.901338 177.42694)rotate(-75)scale(0.08 -0.08)\">\n <use xlink:href=\"#CMR17-31\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-39\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-39\" transform=\"translate(91.380954 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-39\" transform=\"translate(137.071431 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_4\">\n <g id=\"line2d_4\">\n <g>\n <use xlink:href=\"#m8f56c841c3\" x=\"59.980478\" y=\"154.634802\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_4\">\n <!-- 2000 -->\n <g style=\"fill: #262626\" transform=\"translate(59.713338 177.42694)rotate(-75)scale(0.08 -0.08)\">\n <defs>\n <path id=\"CMR17-32\" d=\"M 2669 989 \nL 2554 989 \nC 2490 536 2438 459 2413 420 \nC 2381 369 1920 369 1830 369 \nL 602 369 \nC 832 619 1280 1072 1824 1597 \nC 2214 1967 2669 2402 2669 3035 \nC 2669 3790 2067 4224 1395 4224 \nC 691 4224 262 3604 262 3030 \nC 262 2780 448 2748 525 2748 \nC 589 2748 781 2787 781 3010 \nC 781 3207 614 3264 525 3264 \nC 486 3264 448 3258 422 3245 \nC 544 3790 915 4058 1306 4058 \nC 1862 4058 2227 3617 2227 3035 \nC 2227 2479 1901 2000 1536 1584 \nL 262 146 \nL 262 0 \nL 2515 0 \nL 2669 989 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"CMR17-30\" d=\"M 2688 2025 \nC 2688 2416 2682 3080 2413 3591 \nC 2176 4039 1798 4198 1466 4198 \nC 1158 4198 768 4058 525 3597 \nC 269 3118 243 2524 243 2025 \nC 243 1661 250 1106 448 619 \nC 723 -39 1216 -128 1466 -128 \nC 1760 -128 2208 -7 2470 600 \nC 2662 1042 2688 1559 2688 2025 \nz\nM 1466 -26 \nC 1056 -26 813 325 723 812 \nC 653 1188 653 1738 653 2096 \nC 653 2588 653 2997 736 3387 \nC 858 3929 1216 4096 1466 4096 \nC 1728 4096 2067 3923 2189 3400 \nC 2272 3036 2278 2607 2278 2096 \nC 2278 1680 2278 1169 2202 792 \nC 2067 95 1690 -26 1466 -26 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#CMR17-32\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(91.380954 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(137.071431 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_5\">\n <g id=\"line2d_5\">\n <g>\n <use xlink:href=\"#m8f56c841c3\" x=\"67.792478\" y=\"154.634802\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_5\">\n <!-- 2001 -->\n <g style=\"fill: #262626\" transform=\"translate(67.525338 177.42694)rotate(-75)scale(0.08 -0.08)\">\n <use xlink:href=\"#CMR17-32\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(91.380954 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-31\" transform=\"translate(137.071431 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_6\">\n <g id=\"line2d_6\">\n <g>\n <use xlink:href=\"#m8f56c841c3\" x=\"75.604478\" y=\"154.634802\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_6\">\n <!-- 2002 -->\n <g style=\"fill: #262626\" transform=\"translate(75.337338 177.42694)rotate(-75)scale(0.08 -0.08)\">\n <use xlink:href=\"#CMR17-32\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(91.380954 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-32\" transform=\"translate(137.071431 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_7\">\n <g id=\"line2d_7\">\n <g>\n <use xlink:href=\"#m8f56c841c3\" x=\"83.416478\" y=\"154.634802\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_7\">\n <!-- 2003 -->\n <g style=\"fill: #262626\" transform=\"translate(83.149338 177.42694)rotate(-75)scale(0.08 -0.08)\">\n <defs>\n <path id=\"CMR17-33\" d=\"M 1414 2157 \nC 1984 2157 2234 1662 2234 1090 \nC 2234 320 1824 25 1453 25 \nC 1114 25 563 194 390 693 \nC 422 680 454 680 486 680 \nC 640 680 755 782 755 948 \nC 755 1133 614 1216 486 1216 \nC 378 1216 211 1165 211 926 \nC 211 335 787 -128 1466 -128 \nC 2176 -128 2720 430 2720 1085 \nC 2720 1707 2208 2157 1600 2227 \nC 2086 2328 2554 2756 2554 3329 \nC 2554 3820 2048 4179 1472 4179 \nC 890 4179 378 3829 378 3329 \nC 378 3110 544 3072 627 3072 \nC 762 3072 877 3155 877 3321 \nC 877 3486 762 3569 627 3569 \nC 602 3569 570 3569 544 3557 \nC 730 3959 1235 4032 1459 4032 \nC 1683 4032 2106 3925 2106 3320 \nC 2106 3143 2080 2828 1862 2550 \nC 1670 2304 1453 2304 1242 2284 \nC 1210 2284 1062 2269 1037 2269 \nC 992 2263 966 2257 966 2208 \nC 966 2163 973 2157 1101 2157 \nL 1414 2157 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#CMR17-32\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(91.380954 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-33\" transform=\"translate(137.071431 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_8\">\n <g id=\"line2d_8\">\n <g>\n <use xlink:href=\"#m8f56c841c3\" x=\"91.228478\" y=\"154.634802\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_8\">\n <!-- 2004 -->\n <g style=\"fill: #262626\" transform=\"translate(90.961338 177.42694)rotate(-75)scale(0.08 -0.08)\">\n <defs>\n <path id=\"CMR17-34\" d=\"M 2150 4122 \nC 2150 4256 2144 4256 2029 4256 \nL 128 1254 \nL 128 1088 \nL 1779 1088 \nL 1779 457 \nC 1779 224 1766 160 1318 160 \nL 1197 160 \nL 1197 0 \nC 1402 0 1747 0 1965 0 \nC 2182 0 2528 0 2733 0 \nL 2733 160 \nL 2611 160 \nC 2163 160 2150 224 2150 457 \nL 2150 1088 \nL 2803 1088 \nL 2803 1254 \nL 2150 1254 \nL 2150 4122 \nz\nM 1798 3703 \nL 1798 1254 \nL 256 1254 \nL 1798 3703 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#CMR17-32\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(91.380954 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-34\" transform=\"translate(137.071431 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_9\">\n <g id=\"line2d_9\">\n <g>\n <use xlink:href=\"#m8f56c841c3\" x=\"99.040478\" y=\"154.634802\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_9\">\n <!-- 2005 -->\n <g style=\"fill: #262626\" transform=\"translate(98.773338 177.42694)rotate(-75)scale(0.08 -0.08)\">\n <defs>\n <path id=\"CMR17-35\" d=\"M 730 3692 \nC 794 3666 1056 3584 1325 3584 \nC 1920 3584 2246 3911 2432 4100 \nC 2432 4157 2432 4192 2394 4192 \nC 2387 4192 2374 4192 2323 4163 \nC 2099 4058 1837 3973 1517 3973 \nC 1325 3973 1037 3999 723 4139 \nC 653 4171 640 4171 634 4171 \nC 602 4171 595 4164 595 4037 \nL 595 2203 \nC 595 2089 595 2057 659 2057 \nC 691 2057 704 2070 736 2114 \nC 941 2401 1222 2522 1542 2522 \nC 1766 2522 2246 2382 2246 1289 \nC 2246 1085 2246 715 2054 421 \nC 1894 159 1645 25 1370 25 \nC 947 25 518 320 403 814 \nC 429 807 480 795 506 795 \nC 589 795 749 840 749 1038 \nC 749 1210 627 1280 506 1280 \nC 358 1280 262 1190 262 1011 \nC 262 454 704 -128 1382 -128 \nC 2042 -128 2669 440 2669 1264 \nC 2669 2030 2170 2624 1549 2624 \nC 1222 2624 947 2503 730 2274 \nL 730 3692 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#CMR17-32\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(91.380954 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-35\" transform=\"translate(137.071431 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_10\">\n <g id=\"line2d_10\">\n <g>\n <use xlink:href=\"#m8f56c841c3\" x=\"106.852478\" y=\"154.634802\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_10\">\n <!-- 2006 -->\n <g style=\"fill: #262626\" transform=\"translate(106.585338 177.42694)rotate(-75)scale(0.08 -0.08)\">\n <defs>\n <path id=\"CMR17-36\" d=\"M 678 2176 \nC 678 3690 1395 4032 1811 4032 \nC 1946 4032 2272 4009 2400 3776 \nC 2298 3776 2106 3776 2106 3553 \nC 2106 3381 2246 3323 2336 3323 \nC 2394 3323 2566 3348 2566 3560 \nC 2566 3954 2246 4179 1805 4179 \nC 1043 4179 243 3390 243 1984 \nC 243 253 966 -128 1478 -128 \nC 2099 -128 2688 427 2688 1283 \nC 2688 2081 2170 2662 1517 2662 \nC 1126 2662 838 2407 678 1960 \nL 678 2176 \nz\nM 1478 25 \nC 691 25 691 1200 691 1436 \nC 691 1896 909 2560 1504 2560 \nC 1613 2560 1926 2560 2138 2120 \nC 2253 1870 2253 1609 2253 1289 \nC 2253 944 2253 690 2118 434 \nC 1978 171 1773 25 1478 25 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#CMR17-32\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(91.380954 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-36\" transform=\"translate(137.071431 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_11\">\n <g id=\"line2d_11\">\n <g>\n <use xlink:href=\"#m8f56c841c3\" x=\"114.664478\" y=\"154.634802\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_11\">\n <!-- 2007 -->\n <g style=\"fill: #262626\" transform=\"translate(114.397338 177.42694)rotate(-75)scale(0.08 -0.08)\">\n <use xlink:href=\"#CMR17-32\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(91.380954 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-37\" transform=\"translate(137.071431 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_12\">\n <g id=\"line2d_12\">\n <g>\n <use xlink:href=\"#m8f56c841c3\" x=\"122.476478\" y=\"154.634802\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_12\">\n <!-- 2008 -->\n <g style=\"fill: #262626\" transform=\"translate(122.209338 177.42694)rotate(-75)scale(0.08 -0.08)\">\n <use xlink:href=\"#CMR17-32\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(91.380954 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-38\" transform=\"translate(137.071431 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_13\">\n <g id=\"line2d_13\">\n <g>\n <use xlink:href=\"#m8f56c841c3\" x=\"130.288478\" y=\"154.634802\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_13\">\n <!-- 2009 -->\n <g style=\"fill: #262626\" transform=\"translate(130.021338 177.42694)rotate(-75)scale(0.08 -0.08)\">\n <use xlink:href=\"#CMR17-32\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(91.380954 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-39\" transform=\"translate(137.071431 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_14\">\n <g id=\"line2d_14\">\n <g>\n <use xlink:href=\"#m8f56c841c3\" x=\"138.100478\" y=\"154.634802\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_14\">\n <!-- 2010 -->\n <g style=\"fill: #262626\" transform=\"translate(137.833338 177.42694)rotate(-75)scale(0.08 -0.08)\">\n <use xlink:href=\"#CMR17-32\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-31\" transform=\"translate(91.380954 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(137.071431 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_15\">\n <g id=\"line2d_15\">\n <g>\n <use xlink:href=\"#m8f56c841c3\" x=\"145.912478\" y=\"154.634802\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_15\">\n <!-- 2011 -->\n <g style=\"fill: #262626\" transform=\"translate(145.645338 177.42694)rotate(-75)scale(0.08 -0.08)\">\n <use xlink:href=\"#CMR17-32\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-31\" transform=\"translate(91.380954 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-31\" transform=\"translate(137.071431 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_16\">\n <g id=\"line2d_16\">\n <g>\n <use xlink:href=\"#m8f56c841c3\" x=\"153.724478\" y=\"154.634802\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_16\">\n <!-- 2012 -->\n <g style=\"fill: #262626\" transform=\"translate(153.457338 177.42694)rotate(-75)scale(0.08 -0.08)\">\n <use xlink:href=\"#CMR17-32\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-31\" transform=\"translate(91.380954 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-32\" transform=\"translate(137.071431 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_17\">\n <g id=\"line2d_17\">\n <g>\n <use xlink:href=\"#m8f56c841c3\" x=\"161.536478\" y=\"154.634802\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_17\">\n <!-- 2013 -->\n <g style=\"fill: #262626\" transform=\"translate(161.269338 177.42694)rotate(-75)scale(0.08 -0.08)\">\n <use xlink:href=\"#CMR17-32\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-31\" transform=\"translate(91.380954 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-33\" transform=\"translate(137.071431 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_18\">\n <g id=\"line2d_18\">\n <g>\n <use xlink:href=\"#m8f56c841c3\" x=\"169.348478\" y=\"154.634802\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_18\">\n <!-- 2014 -->\n <g style=\"fill: #262626\" transform=\"translate(169.081338 177.42694)rotate(-75)scale(0.08 -0.08)\">\n <use xlink:href=\"#CMR17-32\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-31\" transform=\"translate(91.380954 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-34\" transform=\"translate(137.071431 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_19\">\n <g id=\"line2d_19\">\n <g>\n <use xlink:href=\"#m8f56c841c3\" x=\"177.160478\" y=\"154.634802\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_19\">\n <!-- 2015 -->\n <g style=\"fill: #262626\" transform=\"translate(176.893338 177.42694)rotate(-75)scale(0.08 -0.08)\">\n <use xlink:href=\"#CMR17-32\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-31\" transform=\"translate(91.380954 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-35\" transform=\"translate(137.071431 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_20\">\n <g id=\"line2d_20\">\n <g>\n <use xlink:href=\"#m8f56c841c3\" x=\"184.972478\" y=\"154.634802\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_20\">\n <!-- 2016 -->\n <g style=\"fill: #262626\" transform=\"translate(184.705338 177.42694)rotate(-75)scale(0.08 -0.08)\">\n <use xlink:href=\"#CMR17-32\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-31\" transform=\"translate(91.380954 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-36\" transform=\"translate(137.071431 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_21\">\n <g id=\"line2d_21\">\n <g>\n <use xlink:href=\"#m8f56c841c3\" x=\"192.784478\" y=\"154.634802\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_21\">\n <!-- 2017 -->\n <g style=\"fill: #262626\" transform=\"translate(192.517338 177.42694)rotate(-75)scale(0.08 -0.08)\">\n <use xlink:href=\"#CMR17-32\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-31\" transform=\"translate(91.380954 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-37\" transform=\"translate(137.071431 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_22\">\n <g id=\"line2d_22\">\n <g>\n <use xlink:href=\"#m8f56c841c3\" x=\"200.596478\" y=\"154.634802\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_22\">\n <!-- 2018 -->\n <g style=\"fill: #262626\" transform=\"translate(200.329338 177.42694)rotate(-75)scale(0.08 -0.08)\">\n <use xlink:href=\"#CMR17-32\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-31\" transform=\"translate(91.380954 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-38\" transform=\"translate(137.071431 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_23\">\n <g id=\"line2d_23\">\n <g>\n <use xlink:href=\"#m8f56c841c3\" x=\"208.408478\" y=\"154.634802\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_23\">\n <!-- 2019 -->\n <g style=\"fill: #262626\" transform=\"translate(208.141338 177.42694)rotate(-75)scale(0.08 -0.08)\">\n <use xlink:href=\"#CMR17-32\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-31\" transform=\"translate(91.380954 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-39\" transform=\"translate(137.071431 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_24\">\n <g id=\"line2d_24\">\n <g>\n <use xlink:href=\"#m8f56c841c3\" x=\"216.220478\" y=\"154.634802\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_24\">\n <!-- 2020 -->\n <g style=\"fill: #262626\" transform=\"translate(215.953338 177.42694)rotate(-75)scale(0.08 -0.08)\">\n <use xlink:href=\"#CMR17-32\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-32\" transform=\"translate(91.380954 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(137.071431 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"xtick_25\">\n <g id=\"line2d_25\">\n <g>\n <use xlink:href=\"#m8f56c841c3\" x=\"224.032478\" y=\"154.634802\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_25\">\n <!-- 2021 -->\n <g style=\"fill: #262626\" transform=\"translate(223.765338 177.42694)rotate(-75)scale(0.08 -0.08)\">\n <use xlink:href=\"#CMR17-32\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-32\" transform=\"translate(91.380954 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-31\" transform=\"translate(137.071431 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"text_26\">\n <!-- Year of certification -->\n <g style=\"fill: #262626\" transform=\"translate(93.707076 187.362846)scale(0.08 -0.08)\">\n <defs>\n <path id=\"CMR17-59\" d=\"M 3706 3766 \nC 3955 4160 4301 4160 4416 4160 \nL 4416 4332 \nC 4269 4319 4102 4319 3942 4319 \nC 3782 4319 3526 4319 3373 4332 \nL 3373 4160 \nC 3533 4160 3616 4077 3616 3957 \nC 3616 3881 3584 3830 3533 3747 \nL 2381 1912 \nL 1120 3912 \nC 1075 3988 1069 3994 1069 4039 \nC 1069 4160 1293 4160 1382 4160 \nL 1382 4319 \nC 1178 4319 864 4319 653 4319 \nC 486 4319 166 4319 13 4332 \nL 13 4160 \nC 378 4160 480 4141 595 3958 \nL 2010 1728 \nL 2010 445 \nC 2010 160 1939 160 1498 160 \nL 1498 0 \nC 1683 0 2016 0 2214 0 \nC 2413 0 2752 0 2938 0 \nL 2938 160 \nC 2477 160 2419 160 2419 471 \nL 2419 1728 \nL 3706 3766 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"CMR17-65\" d=\"M 2438 1472 \nC 2464 1498 2464 1511 2464 1576 \nC 2464 2238 2118 2816 1389 2816 \nC 710 2816 173 2169 173 1383 \nC 173 551 781 -64 1459 -64 \nC 2176 -64 2458 607 2458 740 \nC 2458 784 2419 784 2406 784 \nC 2362 784 2355 771 2330 696 \nC 2189 265 1837 51 1504 51 \nC 1229 51 954 203 781 480 \nC 582 803 582 1176 582 1472 \nL 2438 1472 \nz\nM 589 1568 \nC 634 2505 1126 2714 1382 2714 \nC 1818 2714 2112 2297 2118 1568 \nL 589 1568 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"CMR17-61\" d=\"M 2304 1653 \nC 2304 2072 2304 2294 2035 2543 \nC 1798 2752 1523 2816 1306 2816 \nC 800 2816 435 2407 435 1971 \nC 435 1728 627 1728 666 1728 \nC 749 1728 896 1778 896 1954 \nC 896 2112 774 2181 666 2181 \nC 640 2181 608 2174 589 2168 \nC 723 2592 1069 2714 1293 2714 \nC 1613 2714 1965 2429 1965 1885 \nL 1965 1600 \nC 1587 1600 1133 1549 774 1357 \nC 371 1133 256 813 256 570 \nC 256 77 832 -64 1171 -64 \nC 1523 -64 1850 139 1990 511 \nC 2003 233 2182 -18 2464 -18 \nC 2598 -18 2938 70 2938 567 \nL 2938 920 \nL 2822 920 \nL 2822 562 \nC 2822 178 2650 128 2566 128 \nC 2304 128 2304 458 2304 738 \nL 2304 1653 \nz\nM 1965 870 \nC 1965 317 1568 38 1216 38 \nC 896 38 646 275 646 570 \nC 646 761 730 1100 1101 1305 \nC 1408 1478 1760 1504 1965 1504 \nL 1965 870 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"CMR17-72\" d=\"M 960 1497 \nC 960 2112 1222 2688 1702 2688 \nC 1747 2688 1792 2682 1837 2662 \nC 1837 2662 1696 2617 1696 2452 \nC 1696 2298 1818 2234 1914 2234 \nC 1990 2234 2131 2279 2131 2458 \nC 2131 2663 1926 2790 1709 2790 \nC 1222 2790 1011 2317 947 2093 \nL 941 2093 \nL 941 2790 \nL 198 2720 \nL 198 2554 \nC 576 2554 634 2515 634 2208 \nL 634 428 \nC 634 184 608 153 198 153 \nL 198 -13 \nC 352 0 646 0 813 0 \nC 998 0 1325 0 1498 -13 \nL 1498 153 \nC 1037 153 960 153 960 440 \nL 960 1497 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"CMR17-6f\" d=\"M 2758 1356 \nC 2758 2176 2163 2816 1466 2816 \nC 768 2816 173 2176 173 1356 \nC 173 551 768 -64 1466 -64 \nC 2163 -64 2758 551 2758 1356 \nz\nM 1466 51 \nC 1165 51 909 230 762 480 \nC 602 767 582 1126 582 1408 \nC 582 1677 595 2010 762 2298 \nC 890 2509 1139 2714 1466 2714 \nC 1754 2714 1997 2554 2150 2330 \nC 2349 2029 2349 1607 2349 1408 \nC 2349 1158 2336 775 2163 467 \nC 1984 173 1709 51 1466 51 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"CMR17-66\" d=\"M 979 2560 \nL 1709 2560 \nL 1709 2725 \nL 966 2725 \nL 966 3494 \nC 966 4022 1235 4352 1510 4352 \nC 1594 4352 1690 4327 1754 4282 \nC 1702 4269 1568 4225 1568 4067 \nC 1568 3901 1696 3850 1786 3850 \nC 1875 3850 2003 3901 2003 4067 \nC 2003 4308 1773 4454 1517 4454 \nC 1152 4454 653 4156 653 3481 \nL 653 2725 \nL 141 2725 \nL 141 2560 \nL 653 2560 \nL 653 427 \nC 653 184 627 153 218 153 \nL 218 -13 \nC 371 0 666 0 832 0 \nC 1018 0 1344 0 1517 -13 \nL 1517 153 \nC 1056 153 979 153 979 439 \nL 979 2560 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"CMR17-63\" d=\"M 2234 2240 \nC 2112 2240 1933 2240 1933 2017 \nC 1933 1838 2080 1787 2163 1787 \nC 2208 1787 2394 1807 2394 2024 \nC 2394 2467 1958 2803 1466 2803 \nC 787 2803 211 2178 211 1363 \nC 211 516 813 -64 1466 -64 \nC 2259 -64 2458 677 2458 748 \nC 2458 774 2451 793 2406 793 \nC 2362 793 2355 787 2330 703 \nC 2163 180 1798 51 1523 51 \nC 1114 51 621 427 621 1369 \nC 621 2338 1094 2688 1472 2688 \nC 1722 2688 2093 2573 2234 2240 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"CMR17-74\" d=\"M 966 2560 \nL 1862 2560 \nL 1862 2725 \nL 966 2725 \nL 966 3904 \nL 851 3904 \nC 838 3245 614 2668 70 2668 \nL 70 2560 \nL 627 2560 \nL 627 771 \nC 627 650 627 -64 1370 -64 \nC 1747 -64 1965 306 1965 777 \nL 1965 1140 \nL 1850 1140 \nL 1850 783 \nC 1850 344 1677 51 1408 51 \nC 1222 51 966 178 966 758 \nL 966 2560 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"CMR17-69\" d=\"M 992 3909 \nC 992 4049 877 4170 730 4170 \nC 589 4170 467 4056 467 3909 \nC 467 3769 582 3648 730 3648 \nC 870 3648 992 3763 992 3909 \nz\nM 243 2706 \nL 243 2541 \nC 602 2541 653 2502 653 2197 \nL 653 427 \nC 653 184 627 153 218 153 \nL 218 -13 \nC 371 0 646 0 806 0 \nC 960 0 1222 0 1370 -13 \nL 1370 153 \nC 992 153 979 191 979 420 \nL 979 2776 \nL 243 2706 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"CMR17-c\" d=\"M 2554 2764 \nC 2400 2764 1926 2764 1805 2739 \nC 1766 2725 1754 2725 1677 2725 \nL 947 2725 \nL 947 3469 \nC 947 4073 1434 4352 1818 4352 \nC 1939 4352 2214 4320 2355 4101 \nC 2291 4101 2086 4101 2086 3878 \nC 2086 3725 2189 3648 2317 3648 \nC 2432 3648 2547 3712 2547 3885 \nC 2547 4205 2240 4454 1843 4454 \nC 1338 4454 634 4168 634 3469 \nL 634 2725 \nL 122 2725 \nL 122 2560 \nL 634 2560 \nL 634 427 \nC 634 184 608 153 198 153 \nL 198 -13 \nC 352 0 634 0 794 0 \nC 960 0 1242 0 1395 -13 \nL 1395 153 \nC 986 153 960 178 960 427 \nL 960 2560 \nL 1901 2560 \nC 2176 2560 2227 2502 2227 2222 \nL 2227 427 \nC 2227 184 2202 153 1792 153 \nL 1792 -13 \nC 1946 0 2227 0 2387 0 \nC 2554 0 2835 0 2989 -13 \nL 2989 153 \nC 2579 153 2554 178 2554 427 \nL 2554 2764 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"CMR17-6e\" d=\"M 2656 1933 \nC 2656 2259 2592 2790 1837 2790 \nC 1331 2790 1069 2400 973 2144 \nL 966 2144 \nL 966 2790 \nL 211 2720 \nL 211 2554 \nC 589 2554 646 2515 646 2208 \nL 646 428 \nC 646 184 621 153 211 153 \nL 211 -13 \nC 365 0 646 0 813 0 \nC 979 0 1267 0 1421 -13 \nL 1421 153 \nC 1011 153 986 178 986 428 \nL 986 1658 \nC 986 2247 1344 2688 1792 2688 \nC 2266 2688 2317 2266 2317 1958 \nL 2317 428 \nC 2317 184 2291 153 1882 153 \nL 1882 -13 \nC 2035 0 2317 0 2483 0 \nC 2650 0 2938 0 3091 -13 \nL 3091 153 \nC 2682 153 2656 178 2656 428 \nL 2656 1933 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#CMR17-59\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-65\" transform=\"translate(61.265174 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-61\" transform=\"translate(101.750835 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-72\" transform=\"translate(147.441312 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-6f\" transform=\"translate(212.798046 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-66\" transform=\"translate(258.488523 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-63\" transform=\"translate(316.038002 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-65\" transform=\"translate(356.523662 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-72\" transform=\"translate(397.009323 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-74\" transform=\"translate(432.290091 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-69\" transform=\"translate(467.570859 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-c\" transform=\"translate(492.441917 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-63\" transform=\"translate(542.18414 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-61\" transform=\"translate(582.669801 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-74\" transform=\"translate(628.360278 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-69\" transform=\"translate(663.641046 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-6f\" transform=\"translate(688.512104 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-6e\" transform=\"translate(734.202581 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"matplotlib.axis_2\">\n <g id=\"ytick_1\">\n <g id=\"line2d_26\">\n <defs>\n <path id=\"mb7898a13be\" d=\"M 0 0 \nL -5 0 \n\" style=\"stroke: #262626; stroke-width: 0.5\"/>\n </defs>\n <g>\n <use xlink:href=\"#mb7898a13be\" x=\"32.638478\" y=\"148.457529\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_27\">\n <!-- $\\mathdefault{0}$ -->\n <g style=\"fill: #262626\" transform=\"translate(23.404295 151.22493)scale(0.08 -0.08)\">\n <use xlink:href=\"#CMR17-30\" transform=\"scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_2\">\n <g id=\"line2d_27\">\n <g>\n <use xlink:href=\"#mb7898a13be\" x=\"32.638478\" y=\"118.58598\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_28\">\n <!-- $\\mathdefault{5}$ -->\n <g style=\"fill: #262626\" transform=\"translate(23.404295 121.353381)scale(0.08 -0.08)\">\n <use xlink:href=\"#CMR17-35\" transform=\"scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_3\">\n <g id=\"line2d_28\">\n <g>\n <use xlink:href=\"#mb7898a13be\" x=\"32.638478\" y=\"88.71443\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_29\">\n <!-- $\\mathdefault{10}$ -->\n <g style=\"fill: #262626\" transform=\"translate(19.170112 91.481831)scale(0.08 -0.08)\">\n <use xlink:href=\"#CMR17-31\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_4\">\n <g id=\"line2d_29\">\n <g>\n <use xlink:href=\"#mb7898a13be\" x=\"32.638478\" y=\"58.842881\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_30\">\n <!-- $\\mathdefault{15}$ -->\n <g style=\"fill: #262626\" transform=\"translate(19.170112 61.610282)scale(0.08 -0.08)\">\n <use xlink:href=\"#CMR17-31\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-35\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"ytick_5\">\n <g id=\"line2d_30\">\n <g>\n <use xlink:href=\"#mb7898a13be\" x=\"32.638478\" y=\"28.971332\" style=\"fill: #262626; stroke: #262626; stroke-width: 0.5\"/>\n </g>\n </g>\n <g id=\"text_31\">\n <!-- $\\mathdefault{20}$ -->\n <g style=\"fill: #262626\" transform=\"translate(19.170112 31.738732)scale(0.08 -0.08)\">\n <use xlink:href=\"#CMR17-32\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-30\" transform=\"translate(45.690477 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"text_32\">\n <!-- Lifetime of certificates (in years) -->\n <g style=\"fill: #262626\" transform=\"translate(13.177584 147.014991)rotate(-90)scale(0.08 -0.08)\">\n <defs>\n <path id=\"CMR17-4c\" d=\"M 3469 1615 \nL 3354 1615 \nC 3302 983 3219 166 2125 166 \nL 1530 166 \nC 1274 166 1261 197 1261 414 \nL 1261 3898 \nC 1261 4129 1274 4192 1760 4192 \nL 1901 4192 \nL 1901 4352 \nC 1638 4352 1331 4352 1069 4352 \nC 870 4352 512 4352 326 4352 \nL 326 4192 \nC 768 4192 838 4192 838 3905 \nL 838 452 \nC 838 166 768 166 326 166 \nL 326 0 \nL 3315 0 \nL 3469 1615 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"CMR17-6d\" d=\"M 4326 1933 \nC 4326 2252 4269 2790 3507 2790 \nC 3072 2790 2771 2496 2656 2151 \nL 2650 2151 \nC 2573 2676 2195 2790 1837 2790 \nC 1331 2790 1069 2400 973 2144 \nL 966 2144 \nL 966 2790 \nL 211 2720 \nL 211 2554 \nC 589 2554 646 2515 646 2208 \nL 646 428 \nC 646 184 621 153 211 153 \nL 211 -13 \nC 365 0 646 0 813 0 \nC 979 0 1267 0 1421 -13 \nL 1421 153 \nC 1011 153 986 178 986 428 \nL 986 1658 \nC 986 2247 1344 2688 1792 2688 \nC 2266 2688 2317 2266 2317 1958 \nL 2317 428 \nC 2317 184 2291 153 1882 153 \nL 1882 -13 \nC 2035 0 2317 0 2483 0 \nC 2650 0 2938 0 3091 -13 \nL 3091 153 \nC 2682 153 2656 178 2656 428 \nL 2656 1658 \nC 2656 2247 3014 2688 3462 2688 \nC 3936 2688 3987 2266 3987 1958 \nL 3987 428 \nC 3987 184 3962 153 3552 153 \nL 3552 -13 \nC 3706 0 3987 0 4154 0 \nC 4320 0 4608 0 4762 -13 \nL 4762 153 \nC 4352 153 4326 178 4326 428 \nL 4326 1933 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"CMR17-73\" d=\"M 1978 2697 \nC 1978 2813 1971 2819 1933 2819 \nC 1907 2819 1901 2813 1824 2717 \nC 1805 2691 1747 2626 1728 2601 \nC 1523 2819 1235 2819 1126 2819 \nC 416 2819 160 2447 160 2076 \nC 160 1498 813 1365 998 1325 \nC 1402 1243 1542 1217 1677 1101 \nC 1760 1025 1901 884 1901 654 \nC 1901 384 1747 38 1158 38 \nC 602 38 403 460 288 1021 \nC 269 1110 269 1117 218 1117 \nC 166 1117 160 1110 160 983 \nL 160 63 \nC 160 -51 166 -58 205 -58 \nC 237 -58 243 -51 275 0 \nC 314 57 410 211 448 276 \nC 576 103 800 -64 1158 -64 \nC 1792 -64 2131 283 2131 784 \nC 2131 1112 1958 1285 1875 1362 \nC 1683 1561 1459 1606 1190 1657 \nC 838 1735 390 1825 390 2217 \nC 390 2383 480 2737 1126 2737 \nC 1811 2737 1850 2094 1862 1888 \nC 1869 1856 1901 1849 1920 1849 \nC 1978 1849 1978 1869 1978 1978 \nL 1978 2697 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"CMR17-28\" d=\"M 1958 -1561 \nC 1958 -1555 1958 -1542 1939 -1523 \nC 1645 -1224 858 -407 858 1581 \nC 858 3569 1632 4379 1946 4697 \nC 1946 4704 1958 4717 1958 4736 \nC 1958 4755 1939 4768 1914 4768 \nC 1843 4768 1299 4296 986 3594 \nC 666 2887 576 2199 576 1588 \nC 576 1128 621 351 1005 -471 \nC 1312 -1135 1837 -1600 1914 -1600 \nC 1946 -1600 1958 -1587 1958 -1561 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"CMR17-79\" d=\"M 2496 2197 \nC 2656 2586 2944 2586 3034 2586 \nL 3034 2752 \nC 2912 2752 2752 2752 2630 2752 \nC 2496 2752 2285 2752 2157 2758 \nL 2157 2592 \nC 2400 2573 2406 2394 2406 2343 \nC 2406 2280 2394 2248 2362 2171 \nL 1664 449 \nL 902 2306 \nC 870 2382 870 2426 870 2433 \nC 870 2573 1018 2586 1171 2586 \nL 1171 2758 \nC 1018 2752 742 2752 582 2752 \nC 410 2752 205 2752 64 2758 \nL 64 2586 \nC 410 2586 448 2554 531 2350 \nL 1485 15 \nC 1197 -738 1030 -1178 627 -1178 \nC 557 -1178 397 -1159 282 -1044 \nC 429 -1031 493 -942 493 -833 \nC 493 -725 416 -629 288 -629 \nC 147 -629 77 -725 77 -840 \nC 77 -1095 339 -1280 627 -1280 \nC 998 -1280 1229 -922 1357 -604 \nL 2496 2197 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"CMR17-29\" d=\"M 1683 1581 \nC 1683 2040 1638 2817 1254 3639 \nC 947 4303 422 4768 346 4768 \nC 326 4768 301 4761 301 4729 \nC 301 4717 307 4710 314 4697 \nC 621 4378 1402 3568 1402 1584 \nC 1402 -407 627 -1217 314 -1537 \nC 307 -1549 301 -1556 301 -1568 \nC 301 -1600 326 -1600 346 -1600 \nC 416 -1600 960 -1128 1274 -426 \nC 1594 281 1683 969 1683 1581 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#CMR17-4c\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-69\" transform=\"translate(57.381408 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-66\" transform=\"translate(82.252466 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-65\" transform=\"translate(109.725979 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-74\" transform=\"translate(150.211639 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-69\" transform=\"translate(185.492407 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-6d\" transform=\"translate(210.363465 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-65\" transform=\"translate(287.283055 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-6f\" transform=\"translate(357.844682 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-66\" transform=\"translate(403.535159 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-63\" transform=\"translate(461.084638 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-65\" transform=\"translate(501.570299 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-72\" transform=\"translate(542.055959 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-74\" transform=\"translate(577.336727 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-69\" transform=\"translate(612.617495 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-c\" transform=\"translate(637.488553 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-63\" transform=\"translate(687.230776 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-61\" transform=\"translate(727.716437 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-74\" transform=\"translate(773.406914 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-65\" transform=\"translate(808.687682 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-73\" transform=\"translate(849.173342 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-28\" transform=\"translate(915.050646 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-69\" transform=\"translate(950.331414 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-6e\" transform=\"translate(975.202473 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-79\" transform=\"translate(1056.173809 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-65\" transform=\"translate(1101.864271 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-61\" transform=\"translate(1142.349931 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-72\" transform=\"translate(1188.040408 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-73\" transform=\"translate(1223.321176 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-29\" transform=\"translate(1259.122514 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n <g id=\"patch_3\">\n <path d=\"M 33.419678 39.888769 \nL 39.669278 39.888769 \nL 39.669278 39.888769 \nL 33.419678 39.888769 \nL 33.419678 39.888769 \nz\n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: #ea96a3; stroke: #454545; stroke-width: 0.75; stroke-linejoin: miter\"/>\n </g>\n <g id=\"patch_4\">\n <path d=\"M 41.231678 57.308384 \nL 47.481278 57.308384 \nL 47.481278 48.281447 \nL 41.231678 48.281447 \nL 41.231678 57.308384 \nz\n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: #e8968c; stroke: #454545; stroke-width: 0.75; stroke-linejoin: miter\"/>\n </g>\n <g id=\"patch_5\">\n <path d=\"M 49.043678 50.581147 \nL 55.293278 50.581147 \nL 55.293278 24.912074 \nL 49.043678 24.912074 \nL 49.043678 50.581147 \nz\n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: #e2925a; stroke: #454545; stroke-width: 0.75; stroke-linejoin: miter\"/>\n </g>\n <g id=\"patch_6\">\n <path d=\"M 56.855678 70.787409 \nL 63.105278 70.787409 \nL 63.105278 30.886384 \nL 56.855678 30.886384 \nL 56.855678 70.787409 \nz\n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: #cd974c; stroke: #454545; stroke-width: 0.75; stroke-linejoin: miter\"/>\n </g>\n <g id=\"patch_7\">\n <path d=\"M 64.667678 74.71163 \nL 70.917278 74.71163 \nL 70.917278 36.877062 \nL 64.667678 36.877062 \nL 64.667678 74.71163 \nz\n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: #bb9b49; stroke: #454545; stroke-width: 0.75; stroke-linejoin: miter\"/>\n </g>\n <g id=\"patch_8\">\n <path d=\"M 72.479678 86.103739 \nL 78.729278 86.103739 \nL 78.729278 43.473355 \nL 72.479678 43.473355 \nL 72.479678 86.103739 \nz\n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: #ab9e47; stroke: #454545; stroke-width: 0.75; stroke-linejoin: miter\"/>\n </g>\n <g id=\"patch_9\">\n <path d=\"M 80.291678 92.282648 \nL 86.541278 92.282648 \nL 86.541278 52.762179 \nL 80.291678 52.762179 \nL 80.291678 92.282648 \nz\n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: #9ca146; stroke: #454545; stroke-width: 0.75; stroke-linejoin: miter\"/>\n </g>\n <g id=\"patch_10\">\n <path d=\"M 88.103678 98.797101 \nL 94.353278 98.797101 \nL 94.353278 59.039297 \nL 88.103678 59.039297 \nL 88.103678 98.797101 \nz\n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: #8ba646; stroke: #454545; stroke-width: 0.75; stroke-linejoin: miter\"/>\n </g>\n <g id=\"patch_11\">\n <path d=\"M 95.915678 105.38521 \nL 102.165278 105.38521 \nL 102.165278 65.51283 \nL 95.915678 65.51283 \nL 95.915678 105.38521 \nz\n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: #6fac47; stroke: #454545; stroke-width: 0.75; stroke-linejoin: miter\"/>\n </g>\n <g id=\"patch_12\">\n <path d=\"M 103.727678 112.726246 \nL 109.977278 112.726246 \nL 109.977278 71.912707 \nL 103.727678 71.912707 \nL 103.727678 112.726246 \nz\n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: #48b062; stroke: #454545; stroke-width: 0.75; stroke-linejoin: miter\"/>\n </g>\n <g id=\"patch_13\">\n <path d=\"M 111.539678 115.983472 \nL 117.789278 115.983472 \nL 117.789278 75.767364 \nL 111.539678 75.767364 \nL 111.539678 115.983472 \nz\n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: #49ae83; stroke: #454545; stroke-width: 0.75; stroke-linejoin: miter\"/>\n </g>\n <g id=\"patch_14\">\n <path d=\"M 119.351678 120.746552 \nL 125.601278 120.746552 \nL 125.601278 81.807146 \nL 119.351678 81.807146 \nL 119.351678 120.746552 \nz\n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: #4aad93; stroke: #454545; stroke-width: 0.75; stroke-linejoin: miter\"/>\n </g>\n <g id=\"patch_15\">\n <path d=\"M 127.163678 120.030453 \nL 133.413278 120.030453 \nL 133.413278 88.493463 \nL 127.163678 88.493463 \nL 127.163678 120.030453 \nz\n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: #4bac9f; stroke: #454545; stroke-width: 0.75; stroke-linejoin: miter\"/>\n </g>\n <g id=\"patch_16\">\n <path d=\"M 134.975678 117.685741 \nL 141.225278 117.685741 \nL 141.225278 93.166519 \nL 134.975678 93.166519 \nL 134.975678 117.685741 \nz\n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: #4baba9; stroke: #454545; stroke-width: 0.75; stroke-linejoin: miter\"/>\n </g>\n <g id=\"patch_17\">\n <path d=\"M 142.787678 118.536876 \nL 149.037278 118.536876 \nL 149.037278 99.942859 \nL 142.787678 99.942859 \nL 142.787678 118.536876 \nz\n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: #4eabb5; stroke: #454545; stroke-width: 0.75; stroke-linejoin: miter\"/>\n </g>\n <g id=\"patch_18\">\n <path d=\"M 150.599678 118.569612 \nL 156.849278 118.569612 \nL 156.849278 105.688018 \nL 150.599678 105.688018 \nL 150.599678 118.569612 \nz\n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: #50acc3; stroke: #454545; stroke-width: 0.75; stroke-linejoin: miter\"/>\n </g>\n <g id=\"patch_19\">\n <path d=\"M 158.411678 118.348644 \nL 164.661278 118.348644 \nL 164.661278 110.729353 \nL 158.411678 110.729353 \nL 158.411678 118.348644 \nz\n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: #55acd5; stroke: #454545; stroke-width: 0.75; stroke-linejoin: miter\"/>\n </g>\n <g id=\"patch_20\">\n <path d=\"M 166.223678 127.269189 \nL 172.473278 127.269189 \nL 172.473278 116.973734 \nL 166.223678 116.973734 \nL 166.223678 127.269189 \nz\n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: #7faee5; stroke: #454545; stroke-width: 0.75; stroke-linejoin: miter\"/>\n </g>\n <g id=\"patch_21\">\n <path d=\"M 174.035678 130.518231 \nL 180.285278 130.518231 \nL 180.285278 118.553244 \nL 174.035678 118.553244 \nL 174.035678 130.518231 \nz\n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: #a4acea; stroke: #454545; stroke-width: 0.75; stroke-linejoin: miter\"/>\n </g>\n <g id=\"patch_22\">\n <path d=\"M 181.847678 118.569612 \nL 188.097278 118.569612 \nL 188.097278 118.569612 \nL 181.847678 118.569612 \nL 181.847678 118.569612 \nz\n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: #bba5ea; stroke: #454545; stroke-width: 0.75; stroke-linejoin: miter\"/>\n </g>\n <g id=\"patch_23\">\n <path d=\"M 189.659678 130.518231 \nL 195.909278 130.518231 \nL 195.909278 118.569612 \nL 189.659678 118.569612 \nL 189.659678 130.518231 \nz\n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: #ce9be9; stroke: #454545; stroke-width: 0.75; stroke-linejoin: miter\"/>\n </g>\n <g id=\"patch_24\">\n <path d=\"M 197.471678 130.436392 \nL 203.721278 130.436392 \nL 203.721278 118.569612 \nL 197.471678 118.569612 \nL 197.471678 130.436392 \nz\n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: #e28ce7; stroke: #454545; stroke-width: 0.75; stroke-linejoin: miter\"/>\n </g>\n <g id=\"patch_25\">\n <path d=\"M 205.283678 121.806378 \nL 211.533278 121.806378 \nL 211.533278 118.553244 \nL 205.283678 118.553244 \nL 205.283678 121.806378 \nz\n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: #e78dd5; stroke: #454545; stroke-width: 0.75; stroke-linejoin: miter\"/>\n </g>\n <g id=\"patch_26\">\n <path d=\"M 213.095678 118.58598 \nL 219.345278 118.58598 \nL 219.345278 118.569612 \nL 213.095678 118.569612 \nL 213.095678 118.58598 \nz\n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: #e890c4; stroke: #454545; stroke-width: 0.75; stroke-linejoin: miter\"/>\n </g>\n <g id=\"patch_27\">\n <path d=\"M 220.907678 118.58598 \nL 227.157278 118.58598 \nL 227.157278 118.569612 \nL 220.907678 118.569612 \nL 220.907678 118.58598 \nz\n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: #e993b5; stroke: #454545; stroke-width: 0.75; stroke-linejoin: miter\"/>\n </g>\n <g id=\"line2d_31\">\n <path d=\"M 36.544478 39.888769 \nL 36.544478 39.888769 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_32\">\n <path d=\"M 36.544478 39.888769 \nL 36.544478 39.888769 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_33\">\n <path d=\"M 34.982078 39.888769 \nL 38.106878 39.888769 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_34\">\n <path d=\"M 34.982078 39.888769 \nL 38.106878 39.888769 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_35\"/>\n <g id=\"line2d_36\">\n <path d=\"M 44.356478 57.308384 \nL 44.356478 61.821852 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_37\">\n <path d=\"M 44.356478 48.281447 \nL 44.356478 43.767979 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_38\">\n <path d=\"M 42.794078 61.821852 \nL 45.918878 61.821852 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_39\">\n <path d=\"M 42.794078 43.767979 \nL 45.918878 43.767979 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_40\"/>\n <g id=\"line2d_41\">\n <path d=\"M 52.168478 50.581147 \nL 52.168478 65.177286 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_42\">\n <path d=\"M 52.168478 24.912074 \nL 52.168478 24.912074 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_43\">\n <path d=\"M 50.606078 65.177286 \nL 53.730878 65.177286 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_44\">\n <path d=\"M 50.606078 24.912074 \nL 53.730878 24.912074 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_45\"/>\n <g id=\"line2d_46\">\n <path d=\"M 59.980478 70.787409 \nL 59.980478 103.805701 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_47\">\n <path d=\"M 59.980478 30.886384 \nL 59.980478 30.886384 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_48\">\n <path d=\"M 58.418078 103.805701 \nL 61.542878 103.805701 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_49\">\n <path d=\"M 58.418078 30.886384 \nL 61.542878 30.886384 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_50\"/>\n <g id=\"line2d_51\">\n <path d=\"M 67.792478 74.71163 \nL 67.792478 83.100216 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_52\">\n <path d=\"M 67.792478 36.877062 \nL 67.792478 36.877062 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_53\">\n <path d=\"M 66.230078 83.100216 \nL 69.354878 83.100216 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_54\">\n <path d=\"M 66.230078 36.877062 \nL 69.354878 36.877062 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_55\"/>\n <g id=\"line2d_56\">\n <path d=\"M 75.604478 86.103739 \nL 75.604478 90.08934 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_57\">\n <path d=\"M 75.604478 43.473355 \nL 75.604478 42.851372 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_58\">\n <path d=\"M 74.042078 90.08934 \nL 77.166878 90.08934 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_59\">\n <path d=\"M 74.042078 42.851372 \nL 77.166878 42.851372 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_60\"/>\n <g id=\"line2d_61\">\n <path d=\"M 83.416478 92.282648 \nL 83.416478 106.375472 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_62\">\n <path d=\"M 83.416478 52.762179 \nL 83.416478 48.825682 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_63\">\n <path d=\"M 81.854078 106.375472 \nL 84.978878 106.375472 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_64\">\n <path d=\"M 81.854078 48.825682 \nL 84.978878 48.825682 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_65\"/>\n <g id=\"line2d_66\">\n <path d=\"M 91.228478 98.797101 \nL 91.228478 110.942137 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_67\">\n <path d=\"M 91.228478 59.039297 \nL 91.228478 54.799992 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_68\">\n <path d=\"M 89.666078 110.942137 \nL 92.790878 110.942137 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_69\">\n <path d=\"M 89.666078 54.799992 \nL 92.790878 54.799992 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_70\"/>\n <g id=\"line2d_71\">\n <path d=\"M 99.040478 105.38521 \nL 99.040478 115.737952 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_72\">\n <path d=\"M 99.040478 65.51283 \nL 99.040478 61.068925 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_73\">\n <path d=\"M 97.478078 115.737952 \nL 100.602878 115.737952 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_74\">\n <path d=\"M 97.478078 61.068925 \nL 100.602878 61.068925 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_75\"/>\n <g id=\"line2d_76\">\n <path d=\"M 106.852478 112.726246 \nL 106.852478 124.625761 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_77\">\n <path d=\"M 106.852478 71.912707 \nL 106.852478 67.075971 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_78\">\n <path d=\"M 105.290078 124.625761 \nL 108.414878 124.625761 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_79\">\n <path d=\"M 105.290078 67.075971 \nL 108.414878 67.075971 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_80\"/>\n <g id=\"line2d_81\">\n <path d=\"M 114.664478 115.983472 \nL 114.664478 136.492541 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_82\">\n <path d=\"M 114.664478 75.767364 \nL 114.664478 72.739289 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_83\">\n <path d=\"M 113.102078 136.492541 \nL 116.226878 136.492541 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_84\">\n <path d=\"M 113.102078 72.739289 \nL 116.226878 72.739289 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_85\"/>\n <g id=\"line2d_86\">\n <path d=\"M 122.476478 120.746552 \nL 122.476478 136.492541 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_87\">\n <path d=\"M 122.476478 81.807146 \nL 122.476478 79.090063 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_88\">\n <path d=\"M 120.914078 136.492541 \nL 124.038878 136.492541 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_89\">\n <path d=\"M 120.914078 79.090063 \nL 124.038878 79.090063 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_90\"/>\n <g id=\"line2d_91\">\n <path d=\"M 130.288478 120.030453 \nL 130.288478 140.257175 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_92\">\n <path d=\"M 130.288478 88.493463 \nL 130.288478 84.884325 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_93\">\n <path d=\"M 128.726078 140.257175 \nL 131.850878 140.257175 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_94\">\n <path d=\"M 128.726078 84.884325 \nL 131.850878 84.884325 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_95\"/>\n <g id=\"line2d_96\">\n <path d=\"M 138.100478 117.685741 \nL 138.100478 143.710817 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_97\">\n <path d=\"M 138.100478 93.166519 \nL 138.100478 58.777409 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_98\">\n <path d=\"M 136.538078 143.710817 \nL 139.662878 143.710817 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_99\">\n <path d=\"M 136.538078 58.777409 \nL 139.662878 58.777409 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_100\"/>\n <g id=\"line2d_101\">\n <path d=\"M 145.912478 118.536876 \nL 145.912478 142.646899 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_102\">\n <path d=\"M 145.912478 99.942859 \nL 145.912478 85.16258 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_103\">\n <path d=\"M 144.350078 142.646899 \nL 147.474878 142.646899 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_104\">\n <path d=\"M 144.350078 85.16258 \nL 147.474878 85.16258 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_105\"/>\n <g id=\"line2d_106\">\n <path d=\"M 153.724478 118.569612 \nL 153.724478 137.834715 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_107\">\n <path d=\"M 153.724478 105.688018 \nL 153.724478 88.681694 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_108\">\n <path d=\"M 152.162078 137.834715 \nL 155.286878 137.834715 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_109\">\n <path d=\"M 152.162078 88.681694 \nL 155.286878 88.681694 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_110\">\n <defs>\n <path id=\"m6d415546fd\" d=\"M -2.5 2.5 \nL 2.5 -2.5 \nM -2.5 -2.5 \nL 2.5 2.5 \n\" style=\"stroke: #454545\"/>\n </defs>\n <g clip-path=\"url(#p281a44c34a)\">\n <use xlink:href=\"#m6d415546fd\" x=\"153.724478\" y=\"143.399826\" style=\"fill: #454545; stroke: #454545\"/>\n </g>\n </g>\n <g id=\"line2d_111\">\n <path d=\"M 161.536478 118.348644 \nL 161.536478 129.536153 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_112\">\n <path d=\"M 161.536478 110.729353 \nL 161.536478 108.650621 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_113\">\n <path d=\"M 159.974078 129.536153 \nL 163.098878 129.536153 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_114\">\n <path d=\"M 159.974078 108.650621 \nL 163.098878 108.650621 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_115\">\n <g clip-path=\"url(#p281a44c34a)\">\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"136.328862\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"144.152752\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"141.91034\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"139.225993\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"130.010824\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"130.010824\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"134.446545\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"133.775458\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"133.709986\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"133.709986\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"140.257175\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"131.713093\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"136.279758\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"136.214286\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"136.214286\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"136.525277\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"135.330415\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"88.681694\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"88.681694\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"161.536478\" y=\"88.681694\" style=\"fill: #454545; stroke: #454545\"/>\n </g>\n </g>\n <g id=\"line2d_116\">\n <path d=\"M 169.348478 127.269189 \nL 169.348478 140.371751 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_117\">\n <path d=\"M 169.348478 116.973734 \nL 169.348478 114.968658 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_118\">\n <path d=\"M 167.786078 140.371751 \nL 170.910878 140.371751 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_119\">\n <path d=\"M 167.786078 114.968658 \nL 170.910878 114.968658 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_120\">\n <g clip-path=\"url(#p281a44c34a)\">\n <use xlink:href=\"#m6d415546fd\" x=\"169.348478\" y=\"147.72097\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"169.348478\" y=\"79.908461\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"169.348478\" y=\"79.908461\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"169.348478\" y=\"87.208577\" style=\"fill: #454545; stroke: #454545\"/>\n </g>\n </g>\n <g id=\"line2d_121\">\n <path d=\"M 177.160478 130.518231 \nL 177.160478 145.429454 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_122\">\n <path d=\"M 177.160478 118.553244 \nL 177.160478 102.889094 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_123\">\n <path d=\"M 175.598078 145.429454 \nL 178.722878 145.429454 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_124\">\n <path d=\"M 175.598078 102.889094 \nL 178.722878 102.889094 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_125\">\n <g clip-path=\"url(#p281a44c34a)\">\n <use xlink:href=\"#m6d415546fd\" x=\"177.160478\" y=\"91.022314\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"177.160478\" y=\"88.665326\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"177.160478\" y=\"83.296631\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"177.160478\" y=\"88.648958\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"177.160478\" y=\"96.161858\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"177.160478\" y=\"96.161858\" style=\"fill: #454545; stroke: #454545\"/>\n </g>\n </g>\n <g id=\"line2d_126\">\n <path d=\"M 184.972478 118.569612 \nL 184.972478 118.569612 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_127\">\n <path d=\"M 184.972478 118.569612 \nL 184.972478 118.569612 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_128\">\n <path d=\"M 183.410078 118.569612 \nL 186.534878 118.569612 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_129\">\n <path d=\"M 183.410078 118.569612 \nL 186.534878 118.569612 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_130\">\n <g clip-path=\"url(#p281a44c34a)\">\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"130.534599\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"130.534599\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"120.779288\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"130.534599\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.58598\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"130.534599\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"139.209625\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"139.307833\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"145.396718\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"143.645345\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.688957\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.623485\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.574381\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.574381\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.574381\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.574381\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"123.34906\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"123.136276\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"147.999226\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"147.950122\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"130.534599\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"130.534599\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"130.534599\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"130.534599\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"130.518231\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"148.457529\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"148.457529\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"148.457529\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"148.457529\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"148.457529\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"88.681694\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"100.106539\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"101.95612\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"95.523507\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"101.072249\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.553244\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"117.571165\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.553244\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.553244\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.553244\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.553244\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.553244\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.553244\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.553244\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.553244\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.553244\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.553244\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.553244\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.553244\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.553244\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.553244\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.553244\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.553244\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.553244\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.553244\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.553244\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.553244\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.553244\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.553244\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.553244\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.553244\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"184.972478\" y=\"118.045837\" style=\"fill: #454545; stroke: #454545\"/>\n </g>\n </g>\n <g id=\"line2d_131\">\n <path d=\"M 192.784478 130.518231 \nL 192.784478 144.316432 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_132\">\n <path d=\"M 192.784478 118.569612 \nL 192.784478 102.823622 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_133\">\n <path d=\"M 191.222078 144.316432 \nL 194.346878 144.316432 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_134\">\n <path d=\"M 191.222078 102.823622 \nL 194.346878 102.823622 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_135\">\n <g clip-path=\"url(#p281a44c34a)\">\n <use xlink:href=\"#m6d415546fd\" x=\"192.784478\" y=\"148.457529\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"192.784478\" y=\"148.457529\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"192.784478\" y=\"148.457529\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"192.784478\" y=\"148.457529\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"192.784478\" y=\"148.457529\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"192.784478\" y=\"148.457529\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"192.784478\" y=\"93.117415\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"192.784478\" y=\"93.64119\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"192.784478\" y=\"89.483725\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"192.784478\" y=\"91.758873\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"192.784478\" y=\"91.758873\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"192.784478\" y=\"91.758873\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"192.784478\" y=\"91.758873\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"192.784478\" y=\"95.130675\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"192.784478\" y=\"95.130675\" style=\"fill: #454545; stroke: #454545\"/>\n </g>\n </g>\n <g id=\"line2d_136\">\n <path d=\"M 200.596478 130.436392 \nL 200.596478 141.877604 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_137\">\n <path d=\"M 200.596478 118.569612 \nL 200.596478 102.774518 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_138\">\n <path d=\"M 199.034078 141.877604 \nL 202.158878 141.877604 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_139\">\n <path d=\"M 199.034078 102.774518 \nL 202.158878 102.774518 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_140\">\n <g clip-path=\"url(#p281a44c34a)\">\n <use xlink:href=\"#m6d415546fd\" x=\"200.596478\" y=\"148.457529\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"200.596478\" y=\"148.457529\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"200.596478\" y=\"148.457529\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"200.596478\" y=\"99.942859\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"200.596478\" y=\"99.664604\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"200.596478\" y=\"88.665326\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"200.596478\" y=\"95.703554\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"200.596478\" y=\"100.041067\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"200.596478\" y=\"100.041067\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"200.596478\" y=\"100.041067\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"200.596478\" y=\"100.041067\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"200.596478\" y=\"99.762812\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"200.596478\" y=\"100.286587\" style=\"fill: #454545; stroke: #454545\"/>\n </g>\n </g>\n <g id=\"line2d_141\">\n <path d=\"M 208.408478 121.806378 \nL 208.408478 122.448821 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_142\">\n <path d=\"M 208.408478 118.553244 \nL 208.408478 117.554797 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_143\">\n <path d=\"M 206.846078 122.448821 \nL 209.970878 122.448821 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_144\">\n <path d=\"M 206.846078 117.554797 \nL 209.970878 117.554797 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_145\">\n <g clip-path=\"url(#p281a44c34a)\">\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"130.534599\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"127.146429\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"130.534599\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"142.581427\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"131.811301\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"131.516678\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"130.534599\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"148.457529\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"148.457529\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"143.350722\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"143.350722\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"148.457529\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"131.303894\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"131.303894\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"142.466851\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"145.331246\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"130.534599\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"130.534599\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"130.665543\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"130.534599\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"148.457529\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"148.457529\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"110.434729\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"104.362212\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"104.264004\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"104.264004\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"100.630314\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"208.408478\" y=\"107.734014\" style=\"fill: #454545; stroke: #454545\"/>\n </g>\n </g>\n <g id=\"line2d_146\">\n <path d=\"M 216.220478 118.58598 \nL 216.220478 118.58598 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_147\">\n <path d=\"M 216.220478 118.569612 \nL 216.220478 118.553244 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_148\">\n <path d=\"M 214.658078 118.58598 \nL 217.782878 118.58598 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_149\">\n <path d=\"M 214.658078 118.553244 \nL 217.782878 118.553244 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_150\">\n <g clip-path=\"url(#p281a44c34a)\">\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"133.791826\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"130.534599\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"133.104371\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"133.104371\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"130.632807\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"148.457529\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"127.850252\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"127.375581\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"130.518231\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"124.494818\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"130.550967\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"130.518231\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"130.534599\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"130.534599\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"130.534599\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"119.420746\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"130.600071\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"130.861959\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"130.649175\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"126.933646\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"121.139383\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"140.94463\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.525277\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"148.457529\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"136.492541\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"112.44799\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"114.133891\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"114.968658\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"110.876665\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"110.876665\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"107.210239\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"111.711431\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"111.711431\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"111.711431\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"111.711431\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"106.817408\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"106.670096\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"111.220392\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"106.866512\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"114.313939\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"216.220478\" y=\"100.630314\" style=\"fill: #454545; stroke: #454545\"/>\n </g>\n </g>\n <g id=\"line2d_151\">\n <path d=\"M 224.032478 118.58598 \nL 224.032478 118.58598 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_152\">\n <path d=\"M 224.032478 118.569612 \nL 224.032478 118.569612 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_153\">\n <path d=\"M 222.470078 118.58598 \nL 225.594878 118.58598 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_154\">\n <path d=\"M 222.470078 118.569612 \nL 225.594878 118.569612 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_155\">\n <g clip-path=\"url(#p281a44c34a)\">\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"118.798763\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"124.543922\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"130.518231\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"124.543922\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.590749\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.590749\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.590749\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"124.543922\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"137.589195\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"126.082511\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"130.518231\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"130.518231\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"130.518231\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"119.273434\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"130.518231\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"126.000671\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"130.518231\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"130.534599\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"136.508909\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"130.518231\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"116.556351\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"118.127676\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"116.294464\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"116.294464\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"116.294464\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"114.379411\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"100.630314\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"100.646682\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"100.646682\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"100.646682\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"100.630314\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"100.646682\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"100.630314\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"100.646682\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"100.630314\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"100.630314\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"118.062205\" style=\"fill: #454545; stroke: #454545\"/>\n <use xlink:href=\"#m6d415546fd\" x=\"224.032478\" y=\"117.571165\" style=\"fill: #454545; stroke: #454545\"/>\n </g>\n </g>\n <g id=\"line2d_156\">\n <path d=\"M 33.419678 39.888769 \nL 39.669278 39.888769 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_157\">\n <path d=\"M 41.231678 52.794915 \nL 47.481278 52.794915 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_158\">\n <path d=\"M 49.043678 39.610514 \nL 55.293278 39.610514 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_159\">\n <path d=\"M 56.855678 33.128797 \nL 63.105278 33.128797 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_160\">\n <path d=\"M 64.667678 36.877062 \nL 70.917278 36.877062 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_161\">\n <path d=\"M 72.479678 46.575086 \nL 78.729278 46.575086 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_162\">\n <path d=\"M 80.291678 88.272495 \nL 86.541278 88.272495 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_163\">\n <path d=\"M 88.103678 79.237374 \nL 94.353278 79.237374 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_164\">\n <path d=\"M 95.915678 98.846205 \nL 102.165278 98.846205 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_165\">\n <path d=\"M 103.727678 106.228161 \nL 109.977278 106.228161 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_166\">\n <path d=\"M 111.539678 101.366873 \nL 117.789278 101.366873 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_167\">\n <path d=\"M 119.351678 84.475125 \nL 125.601278 84.475125 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_168\">\n <path d=\"M 127.163678 90.236652 \nL 133.413278 90.236652 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_169\">\n <path d=\"M 134.975678 95.0161 \nL 141.225278 95.0161 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_170\">\n <path d=\"M 142.787678 111.40044 \nL 149.037278 111.40044 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_171\">\n <path d=\"M 150.599678 108.478757 \nL 156.849278 108.478757 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_172\">\n <path d=\"M 158.411678 113.069973 \nL 164.661278 113.069973 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_173\">\n <path d=\"M 166.223678 118.487772 \nL 172.473278 118.487772 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_174\">\n <path d=\"M 174.035678 118.553244 \nL 180.285278 118.553244 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_175\">\n <path d=\"M 181.847678 118.569612 \nL 188.097278 118.569612 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_176\">\n <path d=\"M 189.659678 118.569612 \nL 195.909278 118.569612 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_177\">\n <path d=\"M 197.471678 118.569612 \nL 203.721278 118.569612 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_178\">\n <path d=\"M 205.283678 118.553244 \nL 211.533278 118.553244 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_179\">\n <path d=\"M 213.095678 118.569612 \nL 219.345278 118.569612 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"line2d_180\">\n <path d=\"M 220.907678 118.569612 \nL 227.157278 118.569612 \n\" clip-path=\"url(#p281a44c34a)\" style=\"fill: none; stroke: #454545; stroke-width: 0.75; stroke-linecap: round\"/>\n </g>\n <g id=\"patch_28\">\n <path d=\"M 32.638478 154.634802 \nL 32.638478 18.734802 \n\" style=\"fill: none; stroke: #262626; stroke-width: 0.5; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_29\">\n <path d=\"M 227.938478 154.634802 \nL 227.938478 18.734802 \n\" style=\"fill: none; stroke: #262626; stroke-width: 0.5; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_30\">\n <path d=\"M 32.638478 154.634802 \nL 227.938478 154.634802 \n\" style=\"fill: none; stroke: #262626; stroke-width: 0.5; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"patch_31\">\n <path d=\"M 32.638478 18.734802 \nL 227.938478 18.734802 \n\" style=\"fill: none; stroke: #262626; stroke-width: 0.5; stroke-linejoin: miter; stroke-linecap: square\"/>\n </g>\n <g id=\"text_33\">\n <!-- Boxplot of certificate validity periods -->\n <g style=\"fill: #262626\" transform=\"translate(61.395832 12.734802)scale(0.08 -0.08)\">\n <defs>\n <path id=\"CMR17-42\" d=\"M 333 4352 \nL 333 4186 \nC 774 4186 845 4186 845 3900 \nL 845 452 \nC 845 166 774 166 333 166 \nL 333 0 \nL 2534 0 \nC 3354 0 3885 583 3885 1164 \nC 3885 1741 3360 2233 2675 2233 \nC 3290 2356 3718 2771 3718 3264 \nC 3718 3802 3194 4352 2368 4352 \nL 333 4352 \nz\nM 1248 2304 \nL 1248 3937 \nC 1248 4155 1261 4186 1517 4186 \nL 2336 4186 \nC 2970 4186 3251 3674 3251 3277 \nC 3251 2791 2861 2304 2170 2304 \nL 1248 2304 \nz\nM 1517 166 \nC 1261 166 1248 197 1248 413 \nL 1248 2202 \nL 2432 2202 \nC 3091 2202 3411 1625 3411 1162 \nC 3411 699 3046 166 2349 166 \nL 1517 166 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"CMR17-78\" d=\"M 1664 1477 \nC 1856 1726 2074 2006 2253 2216 \nC 2464 2458 2707 2560 2989 2560 \nL 2989 2726 \nC 2880 2726 2656 2726 2541 2726 \nC 2368 2726 2170 2726 2022 2732 \nL 2022 2566 \nC 2112 2553 2163 2489 2163 2400 \nC 2163 2285 2099 2215 2067 2171 \nL 1594 1573 \nL 1030 2306 \nC 973 2376 973 2388 973 2420 \nC 973 2497 1037 2560 1146 2560 \nL 1146 2732 \nC 992 2726 717 2726 557 2726 \nC 384 2726 179 2726 38 2732 \nL 38 2560 \nC 384 2560 461 2534 614 2343 \nL 1350 1395 \nC 1363 1382 1395 1344 1395 1325 \nC 1395 1299 838 619 768 530 \nC 480 185 179 160 6 160 \nL 6 0 \nC 115 0 339 0 454 0 \nC 582 0 864 0 979 -6 \nL 979 160 \nC 941 166 838 179 838 325 \nC 838 440 890 510 947 586 \nL 1478 1236 \nL 2035 512 \nC 2086 442 2163 346 2163 301 \nC 2163 211 2086 160 1984 160 \nL 1984 -6 \nC 2138 0 2413 0 2573 0 \nC 2746 0 2950 0 3091 -6 \nL 3091 160 \nC 2771 160 2675 172 2522 370 \nL 1664 1477 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"CMR17-70\" d=\"M 1408 -1063 \nC 998 -1063 973 -1037 973 -789 \nL 973 402 \nC 1158 134 1427 -38 1766 -38 \nC 2406 -38 3053 523 3053 1388 \nC 3053 2191 2496 2802 1837 2802 \nC 1453 2802 1139 2592 960 2338 \nL 960 2802 \nL 198 2732 \nL 198 2567 \nC 576 2567 634 2528 634 2223 \nL 634 -789 \nC 634 -1031 608 -1063 198 -1063 \nL 198 -1228 \nC 352 -1216 634 -1216 800 -1216 \nC 966 -1216 1254 -1216 1408 -1228 \nL 1408 -1063 \nz\nM 973 2012 \nC 973 2102 973 2235 1222 2471 \nC 1254 2497 1472 2688 1792 2688 \nC 2259 2688 2643 2108 2643 1382 \nC 2643 656 2234 64 1728 64 \nC 1498 64 1248 172 1056 472 \nC 973 612 973 650 973 752 \nL 973 2012 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"CMR17-6c\" d=\"M 979 4396 \nL 218 4326 \nL 218 4160 \nC 595 4160 653 4122 653 3817 \nL 653 426 \nC 653 184 627 153 218 153 \nL 218 -13 \nC 371 0 653 0 813 0 \nC 979 0 1261 0 1414 -13 \nL 1414 153 \nC 1005 153 979 178 979 426 \nL 979 4396 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"CMR17-76\" d=\"M 2502 2163 \nC 2560 2304 2662 2560 3034 2560 \nL 3034 2726 \nC 2912 2726 2752 2726 2630 2726 \nC 2496 2726 2285 2726 2157 2732 \nL 2157 2566 \nC 2317 2553 2406 2477 2406 2311 \nC 2406 2253 2406 2240 2368 2151 \nL 1664 377 \nL 902 2286 \nC 864 2369 864 2381 864 2407 \nC 864 2560 1075 2560 1171 2560 \nL 1171 2732 \nC 1018 2726 736 2726 576 2726 \nC 403 2726 205 2726 64 2732 \nL 64 2560 \nC 307 2560 442 2560 518 2362 \nL 1446 44 \nC 1485 -51 1491 -64 1549 -64 \nC 1606 -64 1613 -51 1651 44 \nL 2502 2163 \nz\n\" transform=\"scale(0.015625)\"/>\n <path id=\"CMR17-64\" d=\"M 1869 4326 \nL 1869 4160 \nC 2246 4160 2304 4122 2304 3820 \nL 2304 2345 \nC 2278 2377 2016 2790 1498 2790 \nC 845 2790 211 2208 211 1364 \nC 211 525 806 -64 1434 -64 \nC 1978 -64 2259 337 2291 380 \nL 2291 -63 \nL 3066 -63 \nL 3066 128 \nC 2688 128 2630 166 2630 473 \nL 2630 4396 \nL 1869 4326 \nz\nM 2291 755 \nC 2291 563 2176 390 2029 262 \nC 1811 70 1594 38 1472 38 \nC 1286 38 621 134 621 1356 \nC 621 2612 1363 2688 1530 2688 \nC 1824 2688 2061 2522 2208 2291 \nC 2291 2157 2291 2138 2291 2023 \nL 2291 755 \nz\n\" transform=\"scale(0.015625)\"/>\n </defs>\n <use xlink:href=\"#CMR17-42\" transform=\"scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-6f\" transform=\"translate(65.188754 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-78\" transform=\"translate(108.276778 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-70\" transform=\"translate(156.569693 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-6c\" transform=\"translate(207.465063 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-6f\" transform=\"translate(232.336122 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-74\" transform=\"translate(278.026599 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-6f\" transform=\"translate(343.383333 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-66\" transform=\"translate(389.07381 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-63\" transform=\"translate(446.623289 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-65\" transform=\"translate(487.108949 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-72\" transform=\"translate(527.59461 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-74\" transform=\"translate(562.875378 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-69\" transform=\"translate(598.156145 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-c\" transform=\"translate(623.027204 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-63\" transform=\"translate(672.769427 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-61\" transform=\"translate(713.255088 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-74\" transform=\"translate(758.945565 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-65\" transform=\"translate(794.226333 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-76\" transform=\"translate(864.787959 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-61\" transform=\"translate(907.876059 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-6c\" transform=\"translate(953.566536 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-69\" transform=\"translate(978.437594 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-64\" transform=\"translate(1003.308653 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-69\" transform=\"translate(1054.204023 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-74\" transform=\"translate(1079.075081 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-79\" transform=\"translate(1111.753395 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-70\" transform=\"translate(1190.122277 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-65\" transform=\"translate(1243.620086 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-72\" transform=\"translate(1284.105746 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-69\" transform=\"translate(1319.386514 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-6f\" transform=\"translate(1344.257572 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-64\" transform=\"translate(1392.550488 0)scale(0.996264)\"/>\n <use xlink:href=\"#CMR17-73\" transform=\"translate(1443.445858 0)scale(0.996264)\"/>\n </g>\n </g>\n </g>\n </g>\n <defs>\n <clipPath id=\"p281a44c34a\">\n <rect x=\"32.638478\" y=\"18.734802\" width=\"195.3\" height=\"135.9\"/>\n </clipPath>\n </defs>\n</svg>\n",
+ "text/plain": [
+ "<Figure size 252x180 with 1 Axes>"
+ ]
+ },
+ "metadata": {},
+ "output_type": "display_data"
+ }
+ ],
+ "source": [
+ "df_validity = pd.read_csv(RESULTS_DIR / \"df_validity.csv\")\n",
+ "\n",
+ "box = sns.boxplot(data=df_validity, x=\"year_from\", y=\"validity_period\", linewidth=0.75, flierprops={\"marker\": \"x\"})\n",
+ "box.set(\n",
+ " xlabel=\"Year of certification\",\n",
+ " ylabel=\"Lifetime of certificates (in years)\",\n",
+ " title=\"Boxplot of certificate validity periods\",\n",
+ ")\n",
+ "box.tick_params(axis=\"x\", rotation=75)\n",
+ "\n",
+ "fig = matplotlib.pyplot.gcf()\n",
+ "fig.set_size_inches(3.5, 2.5)\n",
+ "fig.savefig(\"/Users/adam/Downloads/boxplot_validity.pgf\", bbox_inches=\"tight\")\n",
+ "fig.savefig(\"/Users/adam/Downloads/boxplot_validity.pdf\", bbox_inches=\"tight\")\n"
+ ]
+ },
+ {
+ "cell_type": "markdown",
+ "metadata": {},
+ "source": [
+ "# Cells for 3-subplot figure\n",
+ "\n",
+ "Contains: Average EAL levels, Interesting schemes evolution, Stackplot of categories"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 10,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "figure_width = 2.3\n",
+ "figure_height = 1.8"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 25,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "avg_levels = pd.read_csv(RESULTS_DIR / \"avg_eal.csv\")\n",
+ "eal_to_num_mapping = {eal: index for index, eal in enumerate(df[\"eal\"].cat.categories)}\n",
+ "avg_levels[\"smartcard_category\"] = avg_levels.category.map(\n",
+ " lambda x: x if x == \"ICs, Smartcards\" else \"Other 14 categories\"\n",
+ ")\n",
+ "line = sns.lineplot(\n",
+ " data=avg_levels.loc[avg_levels.year_from < 2022],\n",
+ " x=\"year_from\",\n",
+ " y=\"eal_number\",\n",
+ " hue=\"smartcard_category\",\n",
+ " ci=None,\n",
+ " style=\"smartcard_category\",\n",
+ " markers=True,\n",
+ ")\n",
+ "line.set(xlabel=None, ylabel=None, title=None, xlim=(1999.6,2021.4))\n",
+ "ymin = 1\n",
+ "ymax = 9\n",
+ "ylabels = [\n",
+ " x if \"+\" in x else x + r\"\\phantom{+}\" for x in list(eal_to_num_mapping.keys())[ymin : ymax + 1]\n",
+ "] # this also aligns the labels by adding phantom spaces\n",
+ "line.set_yticks(range(ymin, ymax + 1), ylabels)\n",
+ "line.set_xticks([1997, 2002, 2007, 2012, 2017, 2021])\n",
+ "line.legend(title=None, labels=avg_levels.smartcard_category.unique())\n",
+ "\n",
+ "fig = matplotlib.pyplot.gcf()\n",
+ "fig.set_size_inches(figure_width, figure_height)\n",
+ "fig.tight_layout(pad=0.1)\n",
+ "fig.savefig(\"/Users/adam/Downloads/temporal_trends_categories.pgf\")\n",
+ "fig.savefig(\"/Users/adam/Downloads/temporal_trends_categories.pdf\")\n",
+ "plt.close()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 27,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "interesting_schemes = pd.read_csv(RESULTS_DIR / \"interesting_schemes.csv\")\n",
+ "\n",
+ "line = sns.lineplot(\n",
+ " data=interesting_schemes,\n",
+ " x=\"year_from\",\n",
+ " y=\"size\",\n",
+ " hue=\"scheme\",\n",
+ " style=\"scheme\",\n",
+ " markers=True,\n",
+ " dashes=True,\n",
+ ")\n",
+ "line.set(xlabel=None, ylabel=None, title=None, xlim=(1999.6,2021.4), ylim=(0, 60))\n",
+ "line.set_xticks([1997, 2002, 2007, 2012, 2017, 2021])\n",
+ "line.legend(title=None)\n",
+ "fig = matplotlib.pyplot.gcf()\n",
+ "fig.set_size_inches(figure_width, figure_height)\n",
+ "fig.tight_layout(pad=0.1)\n",
+ "fig.savefig(\"/Users/adam/Downloads/temporal_trends_schemes.pgf\")\n",
+ "fig.savefig(\"/Users/adam/Downloads/temporal_trends_schemes.pdf\")\n",
+ "plt.close()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 19,
+ "metadata": {},
+ "outputs": [],
+ "source": [
+ "n_certs = pd.read_csv(RESULTS_DIR / \"popular_categories.csv\").astype({\"year_from\": \"category\"})\n",
+ "dct = {\n",
+ " \"ICs, Smart Cards and Smart Card-Related Devices and Systems\": \"ICs, Smart Cards\",\n",
+ " \"Network and Network-Related Devices and Systems\": \"Network-Related Devices\",\n",
+ " \"Other Devices and Systems\": \"Other Devices\",\n",
+ " \"One of 11 other categories\": \"11 Other Categories\",\n",
+ "}\n",
+ "n_certs.popular_categories = n_certs.popular_categories.map(lambda x: dct.get(x, x))\n",
+ "\n",
+ "cats = n_certs.popular_categories.unique()\n",
+ "years = n_certs.year_from.cat.categories[:-1]\n",
+ "data = [n_certs.loc[n_certs.popular_categories == c, \"size\"].tolist()[:-1] for c in cats]\n",
+ "\n",
+ "palette = sns.color_palette(\"Spectral\", 5).as_hex()\n",
+ "colors = \",\".join(palette)\n",
+ "\n",
+ "plt.stackplot(years, data, labels=cats, colors=colors)\n",
+ "plt.legend(loc=\"upper center\", bbox_to_anchor=(0.38, 1.02))\n",
+ "plt.xticks([1997, 2002, 2007, 2012, 2017, 2021])\n",
+ "#plt.title(\"(c) Popularity of categories\")\n",
+ "plt.xlim(1997, 2021)\n",
+ "\n",
+ "fig = matplotlib.pyplot.gcf()\n",
+ "fig.set_size_inches(figure_width, figure_height)\n",
+ "fig.tight_layout(pad=0.1)\n",
+ "fig.savefig(\"/Users/adam/Downloads/temporal_trends_stackplot.pdf\")\n",
+ "fig.savefig(\"/Users/adam/Downloads/temporal_trends_stackplot.pgf\")\n",
+ "plt.close()"
+ ]
+ },
+ {
+ "cell_type": "code",
+ "execution_count": 16,
+ "metadata": {},
+ "outputs": [
+ {
+ "data": {
+ "text/plain": [
+ "1997.0"
+ ]
+ },
+ "execution_count": 16,
+ "metadata": {},
+ "output_type": "execute_result"
+ }
+ ],
+ "source": [
+ "avg_levels.year_from.min()"
+ ]
+ }
+ ],
+ "metadata": {
+ "kernelspec": {
+ "display_name": "Python 3.8.1 ('certsvenv': venv)",
+ "language": "python",
+ "name": "python3"
+ },
+ "language_info": {
+ "codemirror_mode": {
+ "name": "ipython",
+ "version": 3
+ },
+ "file_extension": ".py",
+ "mimetype": "text/x-python",
+ "name": "python",
+ "nbconvert_exporter": "python",
+ "pygments_lexer": "ipython3",
+ "version": "3.8.1"
+ },
+ "orig_nbformat": 4,
+ "vscode": {
+ "interpreter": {
+ "hash": "6386d1612879d92d026c363e7667e428bc38d86c5a080d58c3d70e7cd43df67d"
+ }
+ }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 2
+}