File size: 417,148 Bytes
81c99dc
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
{
 "metadata": {
  "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.2"
  },
  "orig_nbformat": 4,
  "kernelspec": {
   "name": "python3",
   "display_name": "Python 3.8.2 64-bit ('base': conda)"
  },
  "interpreter": {
   "hash": "f4d5179fc222eb76bfd3dcff5bf88b43751287e77ddc0be170fe093e3076340e"
  }
 },
 "nbformat": 4,
 "nbformat_minor": 2,
 "cells": [
  {
   "source": [
    "# Batch Prediction\n",
    "\n",
    "## 1. Download demo data\n",
    "\n",
    "```\n",
    "cd DeepDenoiser\n",
    "wget https://github.com/wayneweiqiang/PhaseNet/releases/download/test_data/test_data.zip\n",
    "unzip test_data.zip\n",
    "```\n",
    "\n",
    "## 2. Run batch prediction \n",
    "\n",
    "DeepDenoiser currently supports three data formats: numpy, and mseed\n",
    "\n",
    "- For numpy format:\n",
    "~~~bash\n",
    "python deepdenoiser/predict.py --model_dir=model/190614-104802 --data_list=test_data/npz.csv --data_dir=test_data/npz --format=numpy --save_signal --plot_figure\n",
    "~~~\n",
    "\n",
    "- For mseed format:\n",
    "~~~bash\n",
    "python deepdenoiser/predict.py --model_dir=model/190614-104802 --data_list=test_data/mseed.csv --data_dir=test_data/mseed --format=mseed --save_signal --plot_figure\n",
    "~~~\n",
    "\n",
    "\n",
    "Optional arguments:\n",
    "```\n",
    "usage: predict.py [-h] [--format FORMAT]\n",
    "                  [--batch_size BATCH_SIZE] [--output_dir OUTPUT_DIR]\n",
    "                  [--model_dir MODEL_DIR] [--sampling_rate SAMPLING_RATE]\n",
    "                  [--data_dir DATA_DIR] [--data_list DATA_LIST]\n",
    "                  [--plot_figure] [--save_signal] [--save_noise]\n",
    "\n",
    "optional arguments:\n",
    "  -h, --help            show this help message and exit\n",
    "  --format FORMAT       Input data format: numpy or mseed\n",
    "  --batch_size BATCH_SIZE\n",
    "                        Batch size\n",
    "  --output_dir OUTPUT_DIR\n",
    "                        Output directory (default: output)\n",
    "  --model_dir MODEL_DIR\n",
    "                        Checkpoint directory (default: None)\n",
    "  --sampling_rate SAMPLING_RATE\n",
    "                        sampling rate of pred data\n",
    "  --data_dir DATA_DIR   Input file directory\n",
    "  --data_list DATA_LIST\n",
    "                        Input csv file\n",
    "  --plot_figure         If plot figure\n",
    "  --save_signal         If save denoised signal\n",
    "  --save_noise          If save denoised noise\n",
    "```"
   ],
   "cell_type": "markdown",
   "metadata": {}
  },
  {
   "source": [
    "## 3. Read denoised signals"
   ],
   "cell_type": "markdown",
   "metadata": {}
  },
  {
   "cell_type": "code",
   "execution_count": 1,
   "metadata": {},
   "outputs": [],
   "source": [
    "import numpy as np\n",
    "import matplotlib.pyplot as plt\n",
    "import os\n",
    "import glob\n",
    "PROJECT_ROOT = os.path.realpath(os.path.join(os.path.abspath(''), \"..\"))"
   ]
  },
  {
   "cell_type": "code",
   "execution_count": 2,
   "metadata": {},
   "outputs": [
    {
     "output_type": "display_data",
     "data": {
      "text/plain": "<Figure size 432x144 with 2 Axes>",
      "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<!-- Created with matplotlib (https://matplotlib.org/) -->\n<svg height=\"144.398125pt\" version=\"1.1\" viewBox=\"0 0 423.864638 144.398125\" width=\"423.864638pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n <metadata>\n  <rdf:RDF xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" 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>2021-07-18T21:09:27.874547</dc:date>\n    <dc:format>image/svg+xml</dc:format>\n    <dc:creator>\n     <cc:Agent>\n      <dc:title>Matplotlib v3.3.2, 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-linecap:butt;stroke-linejoin:round;}</style>\n </defs>\n <g id=\"figure_1\">\n  <g id=\"patch_1\">\n   <path d=\"M 0 144.398125 \nL 423.864638 144.398125 \nL 423.864638 0 \nL 0 0 \nz\n\" style=\"fill:none;\"/>\n  </g>\n  <g id=\"axes_1\">\n   <g id=\"patch_2\">\n    <path d=\"M 28.942188 120.52 \nL 201.113412 120.52 \nL 201.113412 49.92 \nL 28.942188 49.92 \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 d=\"M 0 0 \nL 0 3.5 \n\" id=\"m30c3f5a1e5\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n      </defs>\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"36.768152\" xlink:href=\"#m30c3f5a1e5\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_1\">\n      <!-- 0 -->\n      <g transform=\"translate(33.586902 135.118437)scale(0.1 -0.1)\">\n       <defs>\n        <path d=\"M 31.78125 66.40625 \nQ 24.171875 66.40625 20.328125 58.90625 \nQ 16.5 51.421875 16.5 36.375 \nQ 16.5 21.390625 20.328125 13.890625 \nQ 24.171875 6.390625 31.78125 6.390625 \nQ 39.453125 6.390625 43.28125 13.890625 \nQ 47.125 21.390625 47.125 36.375 \nQ 47.125 51.421875 43.28125 58.90625 \nQ 39.453125 66.40625 31.78125 66.40625 \nz\nM 31.78125 74.21875 \nQ 44.046875 74.21875 50.515625 64.515625 \nQ 56.984375 54.828125 56.984375 36.375 \nQ 56.984375 17.96875 50.515625 8.265625 \nQ 44.046875 -1.421875 31.78125 -1.421875 \nQ 19.53125 -1.421875 13.0625 8.265625 \nQ 6.59375 17.96875 6.59375 36.375 \nQ 6.59375 54.828125 13.0625 64.515625 \nQ 19.53125 74.21875 31.78125 74.21875 \nz\n\" id=\"DejaVuSans-48\"/>\n       </defs>\n       <use xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"xtick_2\">\n     <g id=\"line2d_2\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"88.958647\" xlink:href=\"#m30c3f5a1e5\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_2\">\n      <!-- 1000 -->\n      <g transform=\"translate(76.233647 135.118437)scale(0.1 -0.1)\">\n       <defs>\n        <path d=\"M 12.40625 8.296875 \nL 28.515625 8.296875 \nL 28.515625 63.921875 \nL 10.984375 60.40625 \nL 10.984375 69.390625 \nL 28.421875 72.90625 \nL 38.28125 72.90625 \nL 38.28125 8.296875 \nL 54.390625 8.296875 \nL 54.390625 0 \nL 12.40625 0 \nz\n\" id=\"DejaVuSans-49\"/>\n       </defs>\n       <use xlink:href=\"#DejaVuSans-49\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"xtick_3\">\n     <g id=\"line2d_3\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"141.149142\" xlink:href=\"#m30c3f5a1e5\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_3\">\n      <!-- 2000 -->\n      <g transform=\"translate(128.424142 135.118437)scale(0.1 -0.1)\">\n       <defs>\n        <path d=\"M 19.1875 8.296875 \nL 53.609375 8.296875 \nL 53.609375 0 \nL 7.328125 0 \nL 7.328125 8.296875 \nQ 12.9375 14.109375 22.625 23.890625 \nQ 32.328125 33.6875 34.8125 36.53125 \nQ 39.546875 41.84375 41.421875 45.53125 \nQ 43.3125 49.21875 43.3125 52.78125 \nQ 43.3125 58.59375 39.234375 62.25 \nQ 35.15625 65.921875 28.609375 65.921875 \nQ 23.96875 65.921875 18.8125 64.3125 \nQ 13.671875 62.703125 7.8125 59.421875 \nL 7.8125 69.390625 \nQ 13.765625 71.78125 18.9375 73 \nQ 24.125 74.21875 28.421875 74.21875 \nQ 39.75 74.21875 46.484375 68.546875 \nQ 53.21875 62.890625 53.21875 53.421875 \nQ 53.21875 48.921875 51.53125 44.890625 \nQ 49.859375 40.875 45.40625 35.40625 \nQ 44.1875 33.984375 37.640625 27.21875 \nQ 31.109375 20.453125 19.1875 8.296875 \nz\n\" id=\"DejaVuSans-50\"/>\n       </defs>\n       <use xlink:href=\"#DejaVuSans-50\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"xtick_4\">\n     <g id=\"line2d_4\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"193.339638\" xlink:href=\"#m30c3f5a1e5\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_4\">\n      <!-- 3000 -->\n      <g transform=\"translate(180.614638 135.118437)scale(0.1 -0.1)\">\n       <defs>\n        <path d=\"M 40.578125 39.3125 \nQ 47.65625 37.796875 51.625 33 \nQ 55.609375 28.21875 55.609375 21.1875 \nQ 55.609375 10.40625 48.1875 4.484375 \nQ 40.765625 -1.421875 27.09375 -1.421875 \nQ 22.515625 -1.421875 17.65625 -0.515625 \nQ 12.796875 0.390625 7.625 2.203125 \nL 7.625 11.71875 \nQ 11.71875 9.328125 16.59375 8.109375 \nQ 21.484375 6.890625 26.8125 6.890625 \nQ 36.078125 6.890625 40.9375 10.546875 \nQ 45.796875 14.203125 45.796875 21.1875 \nQ 45.796875 27.640625 41.28125 31.265625 \nQ 36.765625 34.90625 28.71875 34.90625 \nL 20.21875 34.90625 \nL 20.21875 43.015625 \nL 29.109375 43.015625 \nQ 36.375 43.015625 40.234375 45.921875 \nQ 44.09375 48.828125 44.09375 54.296875 \nQ 44.09375 59.90625 40.109375 62.90625 \nQ 36.140625 65.921875 28.71875 65.921875 \nQ 24.65625 65.921875 20.015625 65.03125 \nQ 15.375 64.15625 9.8125 62.3125 \nL 9.8125 71.09375 \nQ 15.4375 72.65625 20.34375 73.4375 \nQ 25.25 74.21875 29.59375 74.21875 \nQ 40.828125 74.21875 47.359375 69.109375 \nQ 53.90625 64.015625 53.90625 55.328125 \nQ 53.90625 49.265625 50.4375 45.09375 \nQ 46.96875 40.921875 40.578125 39.3125 \nz\n\" id=\"DejaVuSans-51\"/>\n       </defs>\n       <use xlink:href=\"#DejaVuSans-51\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n   </g>\n   <g id=\"matplotlib.axis_2\">\n    <g id=\"ytick_1\">\n     <g id=\"line2d_5\">\n      <defs>\n       <path d=\"M 0 0 \nL -3.5 0 \n\" id=\"m904cd11c98\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n      </defs>\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"28.942188\" xlink:href=\"#m904cd11c98\" y=\"117.696265\"/>\n      </g>\n     </g>\n     <g id=\"text_5\">\n      <!-- −2 -->\n      <g transform=\"translate(7.2 121.495484)scale(0.1 -0.1)\">\n       <defs>\n        <path d=\"M 10.59375 35.5 \nL 73.1875 35.5 \nL 73.1875 27.203125 \nL 10.59375 27.203125 \nz\n\" id=\"DejaVuSans-8722\"/>\n       </defs>\n       <use xlink:href=\"#DejaVuSans-8722\"/>\n       <use x=\"83.789062\" xlink:href=\"#DejaVuSans-50\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"ytick_2\">\n     <g id=\"line2d_6\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"28.942188\" xlink:href=\"#m904cd11c98\" y=\"83.159638\"/>\n      </g>\n     </g>\n     <g id=\"text_6\">\n      <!-- 0 -->\n      <g transform=\"translate(15.579688 86.958857)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"text_7\">\n     <!-- 1e−14 -->\n     <g transform=\"translate(28.942188 46.92)scale(0.1 -0.1)\">\n      <defs>\n       <path d=\"M 56.203125 29.59375 \nL 56.203125 25.203125 \nL 14.890625 25.203125 \nQ 15.484375 15.921875 20.484375 11.0625 \nQ 25.484375 6.203125 34.421875 6.203125 \nQ 39.59375 6.203125 44.453125 7.46875 \nQ 49.3125 8.734375 54.109375 11.28125 \nL 54.109375 2.78125 \nQ 49.265625 0.734375 44.1875 -0.34375 \nQ 39.109375 -1.421875 33.890625 -1.421875 \nQ 20.796875 -1.421875 13.15625 6.1875 \nQ 5.515625 13.8125 5.515625 26.8125 \nQ 5.515625 40.234375 12.765625 48.109375 \nQ 20.015625 56 32.328125 56 \nQ 43.359375 56 49.78125 48.890625 \nQ 56.203125 41.796875 56.203125 29.59375 \nz\nM 47.21875 32.234375 \nQ 47.125 39.59375 43.09375 43.984375 \nQ 39.0625 48.390625 32.421875 48.390625 \nQ 24.90625 48.390625 20.390625 44.140625 \nQ 15.875 39.890625 15.1875 32.171875 \nz\n\" id=\"DejaVuSans-101\"/>\n       <path d=\"M 37.796875 64.3125 \nL 12.890625 25.390625 \nL 37.796875 25.390625 \nz\nM 35.203125 72.90625 \nL 47.609375 72.90625 \nL 47.609375 25.390625 \nL 58.015625 25.390625 \nL 58.015625 17.1875 \nL 47.609375 17.1875 \nL 47.609375 0 \nL 37.796875 0 \nL 37.796875 17.1875 \nL 4.890625 17.1875 \nL 4.890625 26.703125 \nz\n\" id=\"DejaVuSans-52\"/>\n      </defs>\n      <use xlink:href=\"#DejaVuSans-49\"/>\n      <use x=\"63.623047\" xlink:href=\"#DejaVuSans-101\"/>\n      <use x=\"125.146484\" xlink:href=\"#DejaVuSans-8722\"/>\n      <use x=\"208.935547\" xlink:href=\"#DejaVuSans-49\"/>\n      <use x=\"272.558594\" xlink:href=\"#DejaVuSans-52\"/>\n     </g>\n    </g>\n   </g>\n   <g id=\"line2d_7\">\n    <path clip-path=\"url(#p32d6c450f0)\" d=\"M 36.768152 84.155796 \nL 36.924724 82.822084 \nL 37.029105 83.505229 \nL 37.081295 82.236563 \nL 37.133486 83.017291 \nL 37.237867 83.993207 \nL 37.290057 83.928154 \nL 37.394438 84.025758 \nL 37.498819 79.504092 \nL 37.55101 82.171564 \nL 37.655391 82.073988 \nL 37.707581 80.935442 \nL 37.864153 86.823405 \nL 38.020724 81.976446 \nL 38.072915 82.627054 \nL 38.125105 82.887301 \nL 38.281677 85.359607 \nL 38.333867 85.262024 \nL 38.490439 81.553616 \nL 38.59482 80.968089 \nL 38.64701 81.130746 \nL 38.699201 83.310267 \nL 38.751391 82.171722 \nL 38.803582 81.391007 \nL 38.855772 82.074145 \nL 38.907963 81.944032 \nL 38.960153 82.43199 \nL 39.012344 82.301876 \nL 39.064534 82.009113 \nL 39.116725 83.147672 \nL 39.168915 82.236837 \nL 39.221106 81.163351 \nL 39.377677 84.93686 \nL 39.429867 83.603134 \nL 39.482058 83.635671 \nL 39.638629 81.976658 \nL 39.69082 83.570638 \nL 39.74301 82.692333 \nL 39.847391 82.529696 \nL 39.951772 83.668262 \nL 40.056153 81.683942 \nL 40.108344 82.822501 \nL 40.160534 84.579132 \nL 40.264915 80.610477 \nL 40.421487 86.173139 \nL 40.473677 81.521346 \nL 40.578058 81.976781 \nL 40.630249 81.651487 \nL 40.682439 83.082817 \nL 40.73463 82.724993 \nL 40.839011 80.968383 \nL 40.943392 84.872005 \nL 40.995582 83.798519 \nL 41.256535 80.610607 \nL 41.308725 80.870854 \nL 41.465297 84.774483 \nL 41.517487 81.228713 \nL 41.621868 81.326316 \nL 41.77844 83.050431 \nL 41.935011 84.026353 \nL 41.987202 81.391424 \nL 42.039392 82.464924 \nL 42.091583 82.660111 \nL 42.143773 83.76614 \nL 42.195964 83.310726 \nL 42.248154 81.489049 \nL 42.300345 83.278209 \nL 42.456916 79.634862 \nL 42.509107 81.033662 \nL 42.613488 83.505961 \nL 42.665678 82.692716 \nL 42.717869 81.48911 \nL 42.82225 81.554184 \nL 42.978821 83.083118 \nL 43.031012 83.798786 \nL 43.135393 83.86386 \nL 43.187583 82.204833 \nL 43.344155 84.644609 \nL 43.396345 83.831364 \nL 43.448536 85.197634 \nL 43.552917 85.034997 \nL 43.605107 83.0832 \nL 43.657298 83.310917 \nL 43.709488 83.766345 \nL 43.761679 83.571172 \nL 43.91825 82.4977 \nL 44.074822 83.733863 \nL 44.179203 82.953155 \nL 44.231393 83.213403 \nL 44.283584 84.026661 \nL 44.387965 82.042341 \nL 44.440155 82.074877 \nL 44.492346 84.67729 \nL 44.544536 82.367662 \nL 44.596727 83.08333 \nL 44.701107 87.442373 \nL 44.753298 85.327925 \nL 44.857679 82.595413 \nL 44.96206 86.043614 \nL 45.01425 85.65326 \nL 45.170822 83.376176 \nL 45.223012 84.644855 \nL 45.275203 84.287032 \nL 45.379584 79.049704 \nL 45.431774 79.309952 \nL 45.640536 84.189489 \nL 45.692727 82.367812 \nL 45.744917 84.612394 \nL 45.797108 82.042525 \nL 45.849298 82.400363 \nL 46.00587 85.230499 \nL 46.05806 83.929304 \nL 46.110251 84.124491 \nL 46.266822 82.628128 \nL 46.371203 82.920912 \nL 46.423394 81.912487 \nL 46.475584 82.855866 \nL 46.527775 83.994425 \nL 46.579965 83.441421 \nL 46.632156 81.326973 \nL 46.736537 81.424577 \nL 46.893108 85.263146 \nL 47.206251 80.318616 \nL 47.362823 85.165617 \nL 47.519394 83.343954 \nL 47.571585 81.945168 \nL 47.623775 83.278907 \nL 47.675966 82.205422 \nL 47.728156 83.278921 \nL 47.780347 83.604229 \nL 47.832537 86.043991 \nL 47.884728 85.360866 \nL 47.989109 80.77414 \nL 48.041299 82.238 \nL 48.09349 82.725958 \nL 48.14568 82.140423 \nL 48.197871 82.498261 \nL 48.250061 84.124771 \nL 48.302252 81.847673 \nL 48.354442 82.823582 \nL 48.458823 87.280215 \nL 48.563204 79.212772 \nL 48.615395 83.213977 \nL 48.667585 84.807957 \nL 48.719776 83.799532 \nL 48.824157 81.815212 \nL 48.928538 83.96221 \nL 48.980728 83.181495 \nL 49.032919 81.782709 \nL 49.085109 83.214039 \nL 49.1373 82.661035 \nL 49.18949 84.222485 \nL 49.241681 84.092371 \nL 49.293871 83.409247 \nL 49.346062 83.669494 \nL 49.450443 83.181557 \nL 49.554824 81.002056 \nL 49.711395 84.124963 \nL 49.763586 82.986417 \nL 49.815776 82.661124 \nL 49.867967 82.953901 \nL 49.920157 83.86475 \nL 49.972348 83.051505 \nL 50.024538 83.149102 \nL 50.076728 82.953928 \nL 50.128919 81.847913 \nL 50.2333 85.133463 \nL 50.337681 81.5877 \nL 50.389871 82.303368 \nL 50.442062 83.441927 \nL 50.494252 83.246754 \nL 50.546443 82.596159 \nL 50.598633 82.726286 \nL 50.650824 83.246774 \nL 50.703014 82.108229 \nL 50.755205 83.539559 \nL 50.807395 83.181735 \nL 50.859586 82.986561 \nL 50.963967 80.091399 \nL 51.068348 84.548032 \nL 51.120538 84.027557 \nL 51.172729 83.995034 \nL 51.27711 82.043244 \nL 51.3293 82.238431 \nL 51.381491 82.531209 \nL 51.433681 82.303505 \nL 51.538062 81.262556 \nL 51.590253 81.652924 \nL 51.642443 83.214374 \nL 51.694634 82.303539 \nL 51.746824 81.945715 \nL 51.903396 84.743322 \nL 51.955586 84.483088 \nL 52.007777 84.938516 \nL 52.059967 83.214429 \nL 52.112158 84.222868 \nL 52.164348 83.832514 \nL 52.216539 85.133723 \nL 52.268729 83.995178 \nL 52.425301 81.522913 \nL 52.529682 83.767502 \nL 52.581872 83.507268 \nL 52.634063 81.555471 \nL 52.686253 82.010899 \nL 52.895015 84.938632 \nL 52.947206 84.125387 \nL 52.999396 79.018173 \nL 53.051587 80.319383 \nL 53.155968 85.556737 \nL 53.208158 83.63747 \nL 53.260349 83.474827 \nL 53.312539 82.921823 \nL 53.41692 84.418219 \nL 53.469111 83.442324 \nL 53.521301 83.865222 \nL 53.573492 83.702578 \nL 53.677873 82.303799 \nL 53.782254 85.94718 \nL 53.834444 84.060443 \nL 53.886635 83.8978 \nL 53.938825 84.288168 \nL 53.991016 83.897814 \nL 54.043206 81.262885 \nL 54.095397 82.466504 \nL 54.356349 85.426775 \nL 54.40854 81.978594 \nL 54.46073 82.629202 \nL 54.617302 84.028016 \nL 54.773873 82.173823 \nL 54.826064 82.36901 \nL 54.878254 82.141306 \nL 54.930445 83.637696 \nL 54.982635 82.43409 \nL 55.034826 82.336507 \nL 55.087016 80.54736 \nL 55.243588 83.702797 \nL 55.295778 83.344973 \nL 55.347968 84.938954 \nL 55.400159 83.377517 \nL 55.55673 82.206455 \nL 55.608921 84.906458 \nL 55.661111 83.670322 \nL 55.713302 83.637799 \nL 55.817683 81.686008 \nL 55.869873 81.783605 \nL 55.974254 84.743855 \nL 56.183016 80.092083 \nL 56.287397 83.084863 \nL 56.391778 80.970422 \nL 56.54835 83.995739 \nL 56.704921 82.011425 \nL 56.757112 82.727094 \nL 56.809302 81.881319 \nL 56.861493 82.564457 \nL 57.018064 85.980135 \nL 57.174636 80.775344 \nL 57.226826 82.206674 \nL 57.279017 83.377764 \nL 57.331207 83.01994 \nL 57.435588 79.994657 \nL 57.539969 83.475388 \nL 57.59216 82.434433 \nL 57.64435 80.905526 \nL 57.696541 82.076616 \nL 57.748731 81.393491 \nL 57.905303 84.874229 \nL 58.114065 82.857392 \nL 58.166255 82.954989 \nL 58.270636 81.45862 \nL 58.322827 81.751397 \nL 58.375017 82.336945 \nL 58.531589 84.874311 \nL 58.792541 80.385196 \nL 58.844732 81.816526 \nL 58.896922 81.979183 \nL 58.949113 83.996054 \nL 59.001303 81.491245 \nL 59.053494 81.979203 \nL 59.157875 82.890059 \nL 59.210065 82.792475 \nL 59.262256 82.499712 \nL 59.314446 83.31297 \nL 59.366637 81.393703 \nL 59.418827 82.825033 \nL 59.471018 82.402149 \nL 59.523208 83.020227 \nL 59.575399 82.076862 \nL 59.627589 83.117831 \nL 59.73197 82.011822 \nL 59.784161 82.20701 \nL 59.888542 84.581718 \nL 59.940732 82.01185 \nL 59.992923 82.727518 \nL 60.097304 86.013069 \nL 60.149494 84.809463 \nL 60.201685 83.020316 \nL 60.306066 83.11792 \nL 60.358256 83.735998 \nL 60.410447 83.248054 \nL 60.462637 81.523967 \nL 60.567018 86.14325 \nL 60.671399 83.280618 \nL 60.723589 84.158937 \nL 60.77578 83.183042 \nL 60.932351 83.963784 \nL 61.036732 82.792715 \nL 61.141113 84.777063 \nL 61.297685 80.678295 \nL 61.454256 84.354213 \nL 61.558637 81.719291 \nL 61.610828 81.979539 \nL 61.715209 83.931356 \nL 61.87178 79.734998 \nL 61.976161 84.516932 \nL 62.028352 82.532604 \nL 62.080542 82.760322 \nL 62.132733 83.736231 \nL 62.184923 81.947084 \nL 62.237114 82.044681 \nL 62.393685 86.631441 \nL 62.602447 81.166417 \nL 62.654638 82.857987 \nL 62.706828 80.64595 \nL 62.759019 85.980888 \nL 62.811209 81.491745 \nL 62.8634 81.719462 \nL 63.019971 85.980922 \nL 63.072162 80.190576 \nL 63.176543 80.776131 \nL 63.385305 84.972537 \nL 63.489686 85.070141 \nL 63.541876 81.687021 \nL 63.594067 81.101487 \nL 63.750638 82.760541 \nL 63.802829 82.402717 \nL 63.855019 84.972599 \nL 63.90721 83.020802 \nL 64.011591 80.743711 \nL 64.063781 81.622029 \nL 64.115972 83.769021 \nL 64.168162 83.671437 \nL 64.220353 81.264219 \nL 64.272543 82.012418 \nL 64.376924 86.631701 \nL 64.429115 85.005204 \nL 64.637877 80.548612 \nL 64.690067 79.670307 \nL 64.898829 86.078758 \nL 65.055401 82.467941 \nL 65.107591 81.361926 \nL 65.264163 84.745073 \nL 65.368544 81.784851 \nL 65.420734 82.663169 \nL 65.472925 82.467996 \nL 65.525115 81.1668 \nL 65.577306 82.43548 \nL 65.629496 82.337896 \nL 65.681687 83.964406 \nL 65.733877 81.459598 \nL 65.786068 82.077676 \nL 65.890449 88.063223 \nL 65.942639 86.013835 \nL 65.994829 82.695775 \nL 66.04702 82.890962 \nL 66.151401 85.883742 \nL 66.203591 82.565682 \nL 66.255782 83.509061 \nL 66.360163 84.289796 \nL 66.412353 83.11872 \nL 66.464544 84.41993 \nL 66.516734 85.363309 \nL 66.568925 84.842835 \nL 66.621115 82.793447 \nL 66.673306 83.997067 \nL 66.725496 84.810325 \nL 66.882068 80.906737 \nL 66.934258 85.591074 \nL 66.986449 84.777829 \nL 67.038639 84.452535 \nL 67.247401 81.557387 \nL 67.299592 81.134503 \nL 67.508354 84.777898 \nL 67.560544 84.257423 \nL 67.612735 83.183938 \nL 67.664925 84.029727 \nL 67.717116 83.671903 \nL 67.769306 84.452631 \nL 67.821497 83.574326 \nL 67.873687 82.793611 \nL 68.030259 85.070737 \nL 68.13464 82.891236 \nL 68.291211 86.957515 \nL 68.343402 86.534631 \nL 68.447783 82.663566 \nL 68.552164 84.940685 \nL 68.604354 84.15997 \nL 68.656545 84.029857 \nL 68.708735 84.615405 \nL 68.917497 80.061223 \nL 68.969688 80.093759 \nL 69.17845 85.363658 \nL 69.23064 84.908244 \nL 69.282831 85.070901 \nL 69.335021 82.598623 \nL 69.387212 83.704652 \nL 69.439402 83.932369 \nL 69.543783 82.7613 \nL 69.595974 80.646853 \nL 69.648164 81.752882 \nL 69.752545 84.875782 \nL 69.909117 82.013157 \nL 69.961307 81.980633 \nL 70.013498 81.427629 \nL 70.117879 84.615589 \nL 70.170069 82.338491 \nL 70.22226 84.778253 \nL 70.378831 82.436109 \nL 70.431022 82.533706 \nL 70.483212 82.240942 \nL 70.587593 84.29035 \nL 70.639784 83.412045 \nL 70.691974 83.021691 \nL 70.796355 84.355438 \nL 70.900736 80.516903 \nL 70.952927 80.614501 \nL 71.161689 84.810907 \nL 71.213879 83.477181 \nL 71.26607 84.941041 \nL 71.37045 83.216961 \nL 71.474831 83.932636 \nL 71.579212 81.362774 \nL 71.631403 83.867596 \nL 71.735784 83.70496 \nL 71.787974 84.062797 \nL 71.840165 82.826661 \nL 71.996736 85.656798 \nL 72.101117 79.801399 \nL 72.153308 81.037549 \nL 72.36207 85.396605 \nL 72.41426 84.746011 \nL 72.466451 81.883372 \nL 72.570832 82.208686 \nL 72.623022 82.696644 \nL 72.675213 84.583395 \nL 72.727403 84.225571 \nL 72.779594 83.835217 \nL 72.831784 84.615945 \nL 72.988356 82.468981 \nL 73.040546 83.640071 \nL 73.144927 83.575024 \nL 73.197118 82.078648 \nL 73.353689 85.656976 \nL 73.510261 80.224475 \nL 73.562451 80.744963 \nL 73.719023 84.778712 \nL 73.875594 80.452233 \nL 74.032166 83.802851 \nL 74.084356 83.737798 \nL 74.188737 80.192034 \nL 74.240928 82.631796 \nL 74.397499 86.535425 \nL 74.554071 80.712563 \nL 74.606261 81.688472 \nL 74.710642 80.224632 \nL 74.815023 85.299337 \nL 74.867214 84.421032 \nL 74.919404 83.672847 \nL 74.971595 84.908996 \nL 75.023785 83.57527 \nL 75.075976 82.371665 \nL 75.128166 84.876487 \nL 75.180357 84.713843 \nL 75.284738 80.452418 \nL 75.441309 85.494599 \nL 75.597881 80.550049 \nL 75.702262 83.77054 \nL 75.754452 83.575366 \nL 75.911024 81.851293 \nL 76.015405 85.754915 \nL 76.119786 81.55855 \nL 76.171976 81.623617 \nL 76.328548 84.356163 \nL 76.432929 81.591121 \nL 76.5895 85.75499 \nL 76.64169 82.4044 \nL 76.693881 83.087538 \nL 76.746071 83.673086 \nL 76.798262 82.632131 \nL 76.850452 83.41286 \nL 76.902643 83.152626 \nL 76.954833 80.810468 \nL 77.007024 80.940595 \nL 77.163595 84.323743 \nL 77.267976 81.981591 \nL 77.372357 80.062331 \nL 77.528929 86.535835 \nL 77.6855 82.502127 \nL 77.737691 82.957555 \nL 77.789881 83.412983 \nL 77.946453 81.461199 \nL 77.998643 82.111807 \nL 78.050834 84.584099 \nL 78.155215 84.291343 \nL 78.259596 82.339552 \nL 78.363977 82.209446 \nL 78.416167 84.486557 \nL 78.624929 81.819119 \nL 78.67712 85.104663 \nL 78.72931 83.217926 \nL 78.781501 84.161304 \nL 78.885882 81.949273 \nL 78.938072 84.974577 \nL 78.990263 83.34808 \nL 79.094644 82.502312 \nL 79.199025 85.917983 \nL 79.303406 81.331257 \nL 79.355596 81.624034 \nL 79.407787 81.721631 \nL 79.459977 84.519224 \nL 79.512168 83.673449 \nL 79.564358 81.624062 \nL 79.616549 84.128884 \nL 79.72093 83.966247 \nL 79.825311 80.290363 \nL 79.981882 85.397604 \nL 80.086263 79.867506 \nL 80.138454 81.168716 \nL 80.242835 85.88559 \nL 80.295025 85.137405 \nL 80.451597 82.53502 \nL 80.555978 84.942259 \nL 80.608168 81.884439 \nL 80.712549 82.209753 \nL 80.76474 82.892892 \nL 80.81693 81.006155 \nL 80.869121 83.933868 \nL 80.921311 82.990502 \nL 80.973502 80.876055 \nL 81.025692 82.567625 \nL 81.130073 82.600169 \nL 81.182264 81.819454 \nL 81.391026 83.868876 \nL 81.443216 83.738762 \nL 81.495407 80.648413 \nL 81.547597 81.917092 \nL 81.599788 83.380952 \nL 81.651978 81.852046 \nL 81.704169 81.396632 \nL 81.756359 81.656879 \nL 81.80855 84.519532 \nL 81.86074 82.827975 \nL 81.965121 82.535218 \nL 82.069502 80.355718 \nL 82.278264 86.113567 \nL 82.434835 80.290705 \nL 82.487026 83.673839 \nL 82.539216 81.591922 \nL 82.747978 86.081099 \nL 82.800169 81.689546 \nL 82.852359 82.600395 \nL 82.90455 82.405221 \nL 82.95674 84.584743 \nL 83.008931 84.194389 \nL 83.165502 80.323331 \nL 83.269883 83.673942 \nL 83.374264 82.795644 \nL 83.426455 80.973967 \nL 83.478645 82.470357 \nL 83.530836 83.869156 \nL 83.583026 82.730611 \nL 83.635217 82.047486 \nL 83.791788 83.836661 \nL 83.843979 82.014984 \nL 83.896169 83.153543 \nL 83.94836 83.12102 \nL 84.00055 85.593312 \nL 84.104931 81.364416 \nL 84.209312 86.406591 \nL 84.313693 81.917455 \nL 84.365884 82.112642 \nL 84.418074 82.76325 \nL 84.522455 81.00664 \nL 84.679027 83.218706 \nL 84.783408 80.941614 \nL 84.939979 86.309096 \nL 85.148741 79.73805 \nL 85.461884 86.601935 \nL 85.566265 85.626047 \nL 85.670646 80.909201 \nL 85.722837 83.641733 \nL 85.931599 80.714055 \nL 85.983789 83.511647 \nL 86.03598 81.26708 \nL 86.244742 84.227343 \nL 86.401313 81.755078 \nL 86.557885 84.227384 \nL 86.610075 82.893658 \nL 86.662266 84.845469 \nL 86.714456 81.88524 \nL 86.766647 83.869581 \nL 86.818837 84.162358 \nL 86.975409 82.503345 \nL 87.027599 83.219014 \nL 87.07979 81.202156 \nL 87.13198 83.316617 \nL 87.236361 82.79615 \nL 87.392932 84.943155 \nL 87.497313 81.429921 \nL 87.706075 85.984158 \nL 87.810456 83.804657 \nL 87.862647 84.162495 \nL 88.019218 82.828783 \nL 88.071409 84.455293 \nL 88.17579 82.438442 \nL 88.22798 82.9264 \nL 88.280171 82.470986 \nL 88.332361 82.438463 \nL 88.384552 81.527628 \nL 88.436742 81.625225 \nL 88.541123 84.064994 \nL 88.645504 81.202361 \nL 88.697695 82.2108 \nL 88.749885 90.278264 \nL 88.802076 81.722863 \nL 88.854266 81.137329 \nL 88.958647 86.732514 \nL 89.010838 71.540979 \nL 89.063028 101.273469 \nL 89.115219 68.548226 \nL 89.167409 95.255419 \nL 89.2196 58.49645 \nL 89.27179 107.226498 \nL 89.323981 68.222953 \nL 89.376171 96.84942 \nL 89.428362 59.407319 \nL 89.480552 108.332548 \nL 89.532743 70.142255 \nL 89.689314 83.512133 \nL 89.741505 90.148274 \nL 89.845886 91.15672 \nL 89.898076 64.547131 \nL 89.950267 117.310909 \nL 90.002457 53.129091 \nL 90.054648 94.377224 \nL 90.106838 81.592914 \nL 90.159029 84.325446 \nL 90.211219 90.408576 \nL 90.26341 64.482118 \nL 90.3156 99.256768 \nL 90.367791 85.529086 \nL 90.419981 62.660456 \nL 90.472172 101.664014 \nL 90.524362 84.325494 \nL 90.576553 77.786957 \nL 90.628743 85.008639 \nL 90.785315 81.690593 \nL 90.837505 80.552047 \nL 90.889696 89.367703 \nL 90.994077 77.721952 \nL 91.046267 109.438775 \nL 91.098458 71.118362 \nL 91.150648 73.590654 \nL 91.202839 79.153302 \nL 91.255029 104.754473 \nL 91.30722 56.902749 \nL 91.411601 60.611192 \nL 91.463791 104.52679 \nL 91.515982 62.595539 \nL 91.568172 96.491877 \nL 91.620363 88.522017 \nL 91.672553 77.10397 \nL 91.724744 80.682284 \nL 91.776934 85.366621 \nL 91.829125 81.9835 \nL 91.881315 78.958211 \nL 91.985696 92.197963 \nL 92.037887 64.287171 \nL 92.090077 99.810012 \nL 92.142268 59.635384 \nL 92.194458 102.444961 \nL 92.246649 70.728152 \nL 92.298839 92.100414 \nL 92.455411 69.882398 \nL 92.507601 103.063073 \nL 92.559792 82.406487 \nL 92.664172 82.439031 \nL 92.716363 79.608922 \nL 92.768553 92.035415 \nL 92.820744 61.652338 \nL 92.872934 98.964332 \nL 92.925125 79.96678 \nL 92.977315 78.665584 \nL 93.029506 91.189667 \nL 93.081696 87.448716 \nL 93.133887 67.898153 \nL 93.186077 81.040306 \nL 93.238268 89.1403 \nL 93.290458 78.698155 \nL 93.342649 93.824644 \nL 93.49922 67.572899 \nL 93.655792 96.980102 \nL 93.707982 70.435573 \nL 93.760173 86.570493 \nL 93.864554 75.315103 \nL 93.916744 92.881347 \nL 93.968935 79.609086 \nL 94.021125 80.910296 \nL 94.073316 88.945229 \nL 94.125506 80.389828 \nL 94.177697 73.428401 \nL 94.229887 91.710306 \nL 94.282078 67.768182 \nL 94.334268 92.03562 \nL 94.386459 78.112758 \nL 94.438649 92.425994 \nL 94.54303 70.175442 \nL 94.595221 93.336857 \nL 94.647411 84.163385 \nL 94.699602 78.92605 \nL 94.751792 87.383875 \nL 94.803983 85.301957 \nL 94.856173 85.594735 \nL 94.960554 78.795964 \nL 95.012745 79.999584 \nL 95.064935 79.153809 \nL 95.117126 92.133313 \nL 95.169316 83.350201 \nL 95.221507 86.733335 \nL 95.273697 76.29119 \nL 95.325888 85.594796 \nL 95.378078 86.473115 \nL 95.430269 70.533388 \nL 95.482459 96.362269 \nL 95.53465 81.496035 \nL 95.58684 88.424947 \nL 95.639031 76.226178 \nL 95.691221 88.3599 \nL 95.743412 78.568356 \nL 95.795602 93.564725 \nL 95.847793 74.697292 \nL 95.899983 86.831014 \nL 96.056555 78.861168 \nL 96.108745 87.026222 \nL 96.160936 86.570808 \nL 96.265317 78.405775 \nL 96.317507 79.967225 \nL 96.369698 84.553971 \nL 96.421888 78.243145 \nL 96.474079 81.626279 \nL 96.526269 81.788936 \nL 96.57846 79.414248 \nL 96.682841 85.725095 \nL 96.735031 84.619079 \nL 96.839412 79.641992 \nL 96.891603 88.067287 \nL 96.943793 75.217917 \nL 96.995984 89.758864 \nL 97.048174 79.316719 \nL 97.152555 85.172145 \nL 97.204746 79.023969 \nL 97.256936 89.010707 \nL 97.309127 74.957724 \nL 97.361317 90.572163 \nL 97.465698 80.455326 \nL 97.517889 83.90352 \nL 97.570079 85.04208 \nL 97.62227 79.479445 \nL 97.67446 87.709559 \nL 97.726651 84.228848 \nL 97.883222 80.422851 \nL 97.935413 86.766221 \nL 98.091984 72.09518 \nL 98.144174 93.955393 \nL 98.196365 76.389164 \nL 98.248555 90.442159 \nL 98.300746 89.043374 \nL 98.457317 78.210882 \nL 98.509508 86.766296 \nL 98.613889 86.60366 \nL 98.666079 77.722958 \nL 98.71827 89.921741 \nL 98.77046 77.853092 \nL 98.822651 86.603687 \nL 98.874841 83.968758 \nL 98.927032 80.618168 \nL 98.979222 82.96034 \nL 99.031413 84.4242 \nL 99.083603 76.877231 \nL 99.135794 89.010953 \nL 99.187984 81.041093 \nL 99.240175 82.570013 \nL 99.292365 80.455566 \nL 99.344556 81.984486 \nL 99.396746 85.75798 \nL 99.448937 83.936304 \nL 99.501127 82.277277 \nL 99.553318 84.391738 \nL 99.657699 81.138745 \nL 99.709889 89.72669 \nL 99.76208 82.797792 \nL 99.81427 86.864058 \nL 99.866461 77.202634 \nL 99.918651 77.527942 \nL 99.970842 86.083357 \nL 100.023032 84.912281 \nL 100.075223 84.521927 \nL 100.127413 80.130375 \nL 100.179604 85.985794 \nL 100.231794 84.912308 \nL 100.283985 79.382203 \nL 100.336175 84.977382 \nL 100.440556 79.902705 \nL 100.492747 88.132819 \nL 100.544937 79.252118 \nL 100.597128 86.050909 \nL 100.649318 82.797909 \nL 100.701509 80.35816 \nL 100.85808 88.490698 \nL 100.910271 79.935297 \nL 100.962461 81.496747 \nL 101.014652 86.506384 \nL 101.066842 83.643745 \nL 101.119033 83.773872 \nL 101.171223 79.51244 \nL 101.223414 87.026893 \nL 101.275604 80.748596 \nL 101.327795 80.455833 \nL 101.379985 81.659452 \nL 101.432176 85.628127 \nL 101.484366 79.512481 \nL 101.536557 90.605241 \nL 101.588747 79.219724 \nL 101.640938 87.124538 \nL 101.693128 79.447449 \nL 101.745319 85.042627 \nL 101.797509 82.700469 \nL 101.8497 82.700476 \nL 101.90189 86.799271 \nL 101.954081 79.512543 \nL 102.006271 81.496884 \nL 102.058462 84.684837 \nL 102.110652 80.325815 \nL 102.162843 86.799305 \nL 102.267224 86.539079 \nL 102.319414 80.228252 \nL 102.371605 83.286085 \nL 102.423795 85.855968 \nL 102.475986 80.748754 \nL 102.528176 83.318636 \nL 102.580367 82.01744 \nL 102.632557 85.042743 \nL 102.684748 84.94516 \nL 102.736938 80.163247 \nL 102.789129 84.489753 \nL 102.9457 81.692187 \nL 102.997891 81.659664 \nL 103.102272 84.262083 \nL 103.258843 79.122353 \nL 103.311033 86.311505 \nL 103.415414 85.465737 \nL 103.467605 84.750082 \nL 103.519795 82.407924 \nL 103.571986 86.311539 \nL 103.624176 82.245287 \nL 103.676367 83.871798 \nL 103.728557 80.488677 \nL 103.780748 81.301936 \nL 103.937319 85.303155 \nL 104.0417 85.498349 \nL 104.093891 79.805594 \nL 104.198272 83.514035 \nL 104.250462 83.058621 \nL 104.354843 79.838158 \nL 104.511415 86.246602 \nL 104.563605 84.067094 \nL 104.615796 84.782763 \nL 104.667986 85.823732 \nL 104.720177 81.367119 \nL 104.824558 81.464723 \nL 104.876748 80.781599 \nL 105.03332 84.685227 \nL 105.08551 84.815354 \nL 105.294272 81.822616 \nL 105.346463 82.082863 \nL 105.398653 78.862393 \nL 105.555225 86.47445 \nL 105.659606 81.302182 \nL 105.711796 82.213031 \nL 105.763987 85.856406 \nL 105.816177 83.351597 \nL 105.868368 80.163657 \nL 106.024939 86.702222 \nL 106.07713 86.376928 \nL 106.233701 81.529968 \nL 106.285892 85.531173 \nL 106.338082 81.920343 \nL 106.494654 85.954092 \nL 106.651225 80.0987 \nL 106.859987 85.693899 \nL 106.964368 82.115605 \nL 107.016559 82.636093 \nL 107.068749 82.73369 \nL 107.12094 83.644539 \nL 107.17313 82.050572 \nL 107.225321 82.31082 \nL 107.381892 85.336137 \nL 107.486273 81.595192 \nL 107.642845 84.165088 \nL 107.695035 77.821732 \nL 107.747226 81.725347 \nL 107.799416 83.221737 \nL 107.955988 79.968751 \nL 108.008178 85.75911 \nL 108.060369 81.204907 \nL 108.112559 84.39286 \nL 108.16475 82.148293 \nL 108.21694 81.660348 \nL 108.373512 86.572409 \nL 108.582274 80.294133 \nL 108.686654 83.286913 \nL 108.738845 82.376078 \nL 108.791035 81.920664 \nL 108.843226 86.05199 \nL 108.895416 83.12429 \nL 108.947607 83.872489 \nL 108.999797 80.717079 \nL 109.051988 83.807442 \nL 109.104178 84.848411 \nL 109.26075 81.497835 \nL 109.31294 82.018323 \nL 109.365131 85.726758 \nL 109.417321 82.994239 \nL 109.469512 82.961715 \nL 109.573893 79.676192 \nL 109.626083 81.628003 \nL 109.678274 81.82319 \nL 109.730464 83.644881 \nL 109.782655 80.06658 \nL 109.834845 83.677425 \nL 109.991417 79.838897 \nL 110.095798 88.003958 \nL 110.147988 83.287105 \nL 110.200179 84.783495 \nL 110.252369 81.725675 \nL 110.35675 81.823279 \nL 110.408941 85.791954 \nL 110.513322 85.629318 \nL 110.722084 80.977545 \nL 110.774274 82.929356 \nL 110.826465 82.083581 \nL 110.878655 82.246239 \nL 111.035227 84.686014 \nL 111.191798 79.969175 \nL 111.34837 84.881236 \nL 111.40056 82.864378 \nL 111.452751 83.840287 \nL 111.557132 83.872831 \nL 111.609322 83.547537 \nL 111.661513 79.774056 \nL 111.713703 79.904183 \nL 111.818084 82.994553 \nL 111.870275 82.181309 \nL 111.922465 82.994567 \nL 112.079037 84.653621 \nL 112.131227 84.165677 \nL 112.235608 81.400635 \nL 112.339989 84.946426 \nL 112.39218 84.263301 \nL 112.496561 81.98621 \nL 112.653132 86.24767 \nL 112.757513 84.58865 \nL 112.809704 82.539262 \nL 112.861894 83.254931 \nL 112.914085 83.352528 \nL 113.070656 81.888695 \nL 113.122847 86.020021 \nL 113.227228 85.694734 \nL 113.279418 79.644148 \nL 113.331609 81.563429 \nL 113.383799 82.669458 \nL 113.43599 79.253808 \nL 113.48818 81.530919 \nL 113.696942 85.922506 \nL 113.853514 81.238196 \nL 113.905704 84.29603 \nL 113.957894 82.214112 \nL 114.010085 82.116529 \nL 114.218847 84.03583 \nL 114.271037 86.312942 \nL 114.323228 83.938254 \nL 114.375418 82.539468 \nL 114.479799 82.637072 \nL 114.53199 84.719003 \nL 114.58418 82.897326 \nL 114.636371 84.003355 \nL 114.688561 81.563607 \nL 114.740752 82.376865 \nL 114.792942 84.881687 \nL 114.845133 81.888928 \nL 114.949514 82.051592 \nL 115.001704 81.856418 \nL 115.053895 81.921485 \nL 115.262657 84.328738 \nL 115.314847 82.507061 \nL 115.367038 84.588992 \nL 115.471419 84.458885 \nL 115.5758 81.270952 \nL 115.836752 84.654114 \nL 115.941133 81.628831 \nL 115.993324 84.166183 \nL 116.045514 83.255348 \nL 116.097705 83.710776 \nL 116.149895 83.190302 \nL 116.202086 81.954166 \nL 116.358657 85.662614 \nL 116.567419 81.563853 \nL 116.723991 83.092787 \nL 116.776181 81.49882 \nL 116.828372 83.02774 \nL 116.984943 81.336197 \nL 117.037134 84.10126 \nL 117.089324 81.531391 \nL 117.141515 83.580793 \nL 117.245896 83.548276 \nL 117.402467 82.344684 \nL 117.454658 79.709756 \nL 117.559039 84.231449 \nL 117.611229 83.418204 \nL 117.66342 80.913395 \nL 117.71561 83.613398 \nL 117.767801 82.962803 \nL 117.819991 80.880886 \nL 117.872182 82.865227 \nL 117.924372 82.247162 \nL 118.080944 85.923081 \nL 118.133134 83.450802 \nL 118.185325 83.74358 \nL 118.237515 84.329128 \nL 118.341896 83.288179 \nL 118.394087 83.483367 \nL 118.446277 85.467708 \nL 118.498468 85.305064 \nL 118.550658 85.04483 \nL 118.655039 81.173766 \nL 118.75942 82.117152 \nL 118.811611 85.272575 \nL 118.863801 83.385838 \nL 118.915992 83.548495 \nL 118.968182 83.288261 \nL 119.124754 85.532857 \nL 119.281325 82.3124 \nL 119.333515 82.702768 \nL 119.490087 85.305194 \nL 119.751039 82.312462 \nL 119.80323 82.83295 \nL 119.907611 80.328148 \nL 119.959801 85.337786 \nL 120.011992 84.687191 \nL 120.064182 84.361897 \nL 120.116373 80.067935 \nL 120.168563 83.418539 \nL 120.272944 81.661929 \nL 120.429516 83.418573 \nL 120.481706 81.889667 \nL 120.533897 84.101718 \nL 120.586087 83.646304 \nL 120.638278 82.442699 \nL 120.690468 84.199329 \nL 120.794849 80.848746 \nL 120.951421 83.255991 \nL 121.003611 82.117446 \nL 121.055802 84.915038 \nL 121.107992 82.084929 \nL 121.212373 84.231928 \nL 121.264564 84.134344 \nL 121.368945 79.287378 \nL 121.421135 81.466899 \nL 121.577707 84.622336 \nL 121.629897 84.524753 \nL 121.786469 79.515143 \nL 121.838659 81.174183 \nL 121.94304 86.346478 \nL 122.099612 81.011567 \nL 122.151802 83.386269 \nL 122.203993 79.742908 \nL 122.256183 81.95496 \nL 122.308374 82.312797 \nL 122.360564 84.850149 \nL 122.412755 84.785096 \nL 122.464945 81.629686 \nL 122.517136 83.061016 \nL 122.725898 81.694781 \nL 122.830279 83.581538 \nL 122.882469 83.256245 \nL 122.98685 82.020116 \nL 123.039041 82.703254 \nL 123.091231 80.979167 \nL 123.143422 81.499655 \nL 123.195612 82.085203 \nL 123.247803 84.817736 \nL 123.299993 84.557502 \nL 123.352184 82.573175 \nL 123.456565 82.605718 \nL 123.508755 83.549097 \nL 123.560946 83.159638 \nL 125.439803 83.159638 \nL 125.596375 79.663665 \nL 125.752946 84.966008 \nL 125.909518 82.884026 \nL 126.066089 84.575531 \nL 126.17047 80.053813 \nL 126.222661 81.908007 \nL 126.327042 85.648926 \nL 126.379232 83.599513 \nL 126.483613 82.558512 \nL 126.587994 85.90907 \nL 126.744566 81.615043 \nL 126.848947 85.128251 \nL 127.005518 81.745066 \nL 127.057709 81.484806 \nL 127.21428 85.551006 \nL 127.370852 82.232881 \nL 127.579614 84.379788 \nL 127.631804 86.429163 \nL 127.788376 80.541163 \nL 128.049328 86.331418 \nL 128.153709 80.833798 \nL 128.2059 80.866308 \nL 128.310281 84.769878 \nL 128.362471 84.086727 \nL 128.519043 81.874624 \nL 128.675614 84.346851 \nL 128.727805 82.948039 \nL 128.779995 85.225124 \nL 128.832186 83.370891 \nL 128.884376 81.516657 \nL 128.936567 82.65519 \nL 129.040948 85.517798 \nL 129.093138 85.290068 \nL 129.406281 80.865862 \nL 129.562853 86.168205 \nL 129.615043 84.801923 \nL 129.667234 84.639253 \nL 129.719424 84.704294 \nL 129.823805 85.550037 \nL 129.980376 81.906611 \nL 130.032567 83.728275 \nL 130.084757 81.581272 \nL 130.189138 81.808943 \nL 130.241329 81.678803 \nL 130.293519 81.971555 \nL 130.34571 81.353464 \nL 130.554472 84.443743 \nL 130.606662 83.955773 \nL 130.658853 87.01358 \nL 130.711043 84.378625 \nL 130.763234 84.541256 \nL 130.815424 81.67859 \nL 130.919805 81.906262 \nL 130.971996 84.345998 \nL 131.024186 83.792967 \nL 131.128567 81.808594 \nL 131.180758 82.263996 \nL 131.285139 84.736242 \nL 131.337329 81.385626 \nL 131.38952 81.873557 \nL 131.44171 82.231369 \nL 131.546091 87.24096 \nL 131.598282 85.061426 \nL 131.702663 83.142114 \nL 131.807044 85.289059 \nL 131.859234 83.987837 \nL 131.911425 83.695047 \nL 132.067996 82.035955 \nL 132.120187 85.484123 \nL 132.172377 84.996153 \nL 132.276758 81.612987 \nL 132.328949 82.068389 \nL 132.48552 84.182785 \nL 132.537711 83.076743 \nL 132.589901 83.564675 \nL 132.642092 83.271885 \nL 132.694282 81.482712 \nL 132.850854 84.995901 \nL 132.955235 80.409122 \nL 133.007425 82.783798 \nL 133.111806 81.840387 \nL 133.163997 82.94639 \nL 133.216187 81.092157 \nL 133.268378 81.937919 \nL 133.320568 82.06802 \nL 133.372759 85.841489 \nL 133.424949 83.304124 \nL 133.47714 84.052296 \nL 133.52933 82.946254 \nL 133.633711 85.483561 \nL 133.790283 81.677485 \nL 133.842473 84.182281 \nL 133.894664 83.49913 \nL 133.946854 80.864175 \nL 133.999045 84.540053 \nL 134.051235 82.881 \nL 134.103426 83.336402 \nL 134.155616 81.384578 \nL 134.207807 82.555641 \nL 134.416569 85.28809 \nL 134.52095 84.182028 \nL 134.57314 84.53984 \nL 134.677521 81.774745 \nL 134.729712 81.904846 \nL 134.834093 82.685529 \nL 134.886283 85.580686 \nL 134.938474 84.962595 \nL 135.095045 80.245677 \nL 135.199426 84.929968 \nL 135.251616 84.767298 \nL 135.303807 83.726317 \nL 135.460378 86.361194 \nL 135.66914 80.831005 \nL 135.825712 85.222506 \nL 135.877902 82.620081 \nL 135.930093 86.003189 \nL 135.982283 84.897147 \nL 136.034474 82.132072 \nL 136.086664 85.124819 \nL 136.243236 81.286213 \nL 136.295426 81.774144 \nL 136.451998 84.213841 \nL 136.608569 82.131858 \nL 136.71295 85.059526 \nL 136.765141 84.539025 \nL 136.817331 85.092017 \nL 136.973903 81.546182 \nL 137.130474 84.63648 \nL 137.182665 84.63646 \nL 137.391427 79.301452 \nL 137.547998 84.180904 \nL 137.600189 81.383298 \nL 137.652379 81.96882 \nL 137.70457 81.806151 \nL 137.75676 82.294082 \nL 137.913332 85.31932 \nL 137.965522 80.797622 \nL 138.017713 81.513264 \nL 138.174284 84.766212 \nL 138.226475 83.43246 \nL 138.278665 86.815568 \nL 138.435237 80.960097 \nL 138.487427 80.797428 \nL 138.591808 85.839549 \nL 138.643999 85.091338 \nL 138.696189 82.391323 \nL 138.74838 83.659977 \nL 138.80057 83.269596 \nL 138.904951 84.863531 \nL 138.957142 81.935805 \nL 139.009332 82.065906 \nL 139.061523 82.326127 \nL 139.113713 83.33454 \nL 139.165904 82.716449 \nL 139.270285 81.545328 \nL 139.322475 82.683861 \nL 139.374666 80.732038 \nL 139.426856 82.358522 \nL 139.531237 83.106674 \nL 139.583428 82.846415 \nL 139.635618 88.116266 \nL 139.687809 85.318661 \nL 139.79219 84.830671 \nL 139.948761 80.764354 \nL 140.157523 85.513667 \nL 140.209714 83.659434 \nL 140.261904 84.147365 \nL 140.314095 85.350958 \nL 140.366285 84.797928 \nL 140.575047 81.187013 \nL 140.679428 85.903834 \nL 140.731618 83.62671 \nL 140.783809 83.78934 \nL 140.88819 85.903756 \nL 140.992571 81.544688 \nL 141.044761 84.082014 \nL 141.096952 82.260311 \nL 141.149142 82.748243 \nL 141.253523 80.340979 \nL 141.410095 84.73248 \nL 141.514476 84.764971 \nL 141.671047 82.227568 \nL 141.723238 84.602243 \nL 141.775428 84.537164 \nL 141.827619 81.999799 \nL 141.879809 84.374474 \nL 141.932 82.845542 \nL 141.98419 85.285278 \nL 142.036381 82.585262 \nL 142.088571 82.943074 \nL 142.140762 82.520164 \nL 142.245143 85.15506 \nL 142.401714 81.706815 \nL 142.506095 85.740505 \nL 142.662667 80.470575 \nL 142.767048 82.715111 \nL 142.819238 82.194611 \nL 142.923619 79.592166 \nL 143.028 83.105375 \nL 143.080191 82.064394 \nL 143.132381 82.975216 \nL 143.184572 81.088453 \nL 143.393334 85.870295 \nL 143.549905 84.471444 \nL 143.602096 85.577447 \nL 143.758667 80.925589 \nL 143.810858 84.080986 \nL 143.863048 83.625546 \nL 143.915239 81.966493 \nL 143.967429 85.447191 \nL 144.01962 84.276089 \nL 144.07181 84.145949 \nL 144.280572 81.641057 \nL 144.332763 81.250676 \nL 144.384953 81.543428 \nL 144.541525 84.926497 \nL 144.593715 84.828887 \nL 144.698096 81.933672 \nL 144.750287 82.096303 \nL 145.11562 86.162426 \nL 145.167811 84.503373 \nL 145.220001 86.682868 \nL 145.324382 80.892477 \nL 145.376573 81.087638 \nL 145.480954 85.511689 \nL 145.637525 81.705613 \nL 145.689716 83.624867 \nL 145.741906 81.315213 \nL 145.846287 81.607945 \nL 146.107239 85.609046 \nL 146.15943 85.153606 \nL 146.368192 80.469199 \nL 146.420382 80.85954 \nL 146.524763 83.852267 \nL 146.576954 81.737793 \nL 146.629144 82.648616 \nL 146.785716 84.958193 \nL 146.837906 83.42926 \nL 146.890097 83.787071 \nL 146.942287 83.819582 \nL 146.994478 81.444868 \nL 147.046668 81.900269 \nL 147.098859 81.90025 \nL 147.20324 85.803819 \nL 147.359811 82.941115 \nL 147.412002 83.656757 \nL 147.464192 81.412163 \nL 147.516383 81.997685 \nL 147.672954 84.567502 \nL 147.829526 81.899978 \nL 147.881716 84.469834 \nL 147.933907 83.233672 \nL 147.986097 82.225221 \nL 148.090478 82.355302 \nL 148.142669 85.250459 \nL 148.194859 83.591406 \nL 148.24705 83.851627 \nL 148.29924 79.687759 \nL 148.351431 83.623878 \nL 148.403621 84.632291 \nL 148.455812 83.331069 \nL 148.560193 83.46115 \nL 148.664574 84.827374 \nL 148.821145 79.362264 \nL 148.977717 84.632077 \nL 149.186479 82.907906 \nL 149.238669 83.330778 \nL 149.29086 84.762081 \nL 149.447431 82.842749 \nL 149.499622 83.493331 \nL 149.551812 83.395722 \nL 149.708384 80.240247 \nL 149.864955 84.534158 \nL 149.969336 80.988341 \nL 150.073717 81.183483 \nL 150.230289 82.712338 \nL 150.282479 82.549668 \nL 150.439051 84.989365 \nL 150.491241 83.492963 \nL 150.543432 85.282097 \nL 150.595622 84.371236 \nL 150.700003 83.362765 \nL 150.856575 86.290413 \nL 150.908765 82.972326 \nL 150.960956 84.826521 \nL 151.013146 84.501201 \nL 151.169718 80.272234 \nL 151.326289 83.330002 \nL 151.378479 83.232392 \nL 151.43067 82.061291 \nL 151.587241 84.403397 \nL 151.691622 80.759991 \nL 151.743813 81.833464 \nL 151.796003 81.085253 \nL 151.952575 84.565912 \nL 152.056956 82.256238 \nL 152.109146 83.264651 \nL 152.161337 83.622462 \nL 152.213527 82.711601 \nL 152.265718 83.459773 \nL 152.317908 83.166983 \nL 152.370099 79.263356 \nL 152.422289 81.735622 \nL 152.47448 82.191023 \nL 152.52667 83.687387 \nL 152.578861 83.199416 \nL 152.631051 83.231927 \nL 152.683242 82.906607 \nL 152.735432 83.362009 \nL 152.839813 81.605346 \nL 152.996385 85.704076 \nL 153.257337 80.856999 \nL 153.361718 84.012377 \nL 153.51829 81.962925 \nL 153.57048 85.020732 \nL 153.622671 82.418307 \nL 153.674861 83.55684 \nL 153.727052 82.938749 \nL 153.779242 81.897768 \nL 153.935814 84.565175 \nL 154.040195 83.133813 \nL 154.092385 83.198854 \nL 154.196766 83.393996 \nL 154.301147 81.279502 \nL 154.353338 81.507194 \nL 154.509909 84.890262 \nL 154.666481 82.87334 \nL 154.770862 82.12511 \nL 154.823052 82.775692 \nL 154.875243 85.085307 \nL 154.927433 83.035893 \nL 154.979624 83.198524 \nL 155.031814 81.539471 \nL 155.188386 84.174349 \nL 155.397148 81.767046 \nL 155.553719 84.597104 \nL 155.60591 81.832029 \nL 155.6581 85.150076 \nL 155.710291 81.7344 \nL 155.814672 85.768089 \nL 155.971243 82.092133 \nL 156.023434 84.304159 \nL 156.075624 81.961974 \nL 156.127815 81.539064 \nL 156.180005 83.81615 \nL 156.284386 83.68599 \nL 156.336577 83.23055 \nL 156.388767 81.636557 \nL 156.440958 83.458222 \nL 156.493148 82.157 \nL 156.597529 83.067803 \nL 156.649719 82.872603 \nL 156.70191 83.718365 \nL 156.806291 81.246041 \nL 156.858481 81.831563 \nL 156.910672 80.595401 \nL 157.119434 83.8158 \nL 157.171624 83.880841 \nL 157.276005 83.262731 \nL 157.328196 83.425362 \nL 157.380386 84.433775 \nL 157.484767 82.546992 \nL 157.536958 82.612033 \nL 157.641339 84.791509 \nL 157.693529 81.961373 \nL 157.74572 84.205929 \nL 157.954482 79.814292 \nL 158.215434 84.856355 \nL 158.267625 84.596095 \nL 158.319815 83.197283 \nL 158.372006 84.108106 \nL 158.424196 84.205676 \nL 158.632958 82.774276 \nL 158.685149 83.522448 \nL 158.737339 82.806767 \nL 158.78953 86.742886 \nL 158.84172 84.107931 \nL 158.893911 83.717551 \nL 158.946101 82.448859 \nL 158.998292 83.066911 \nL 159.050482 84.205444 \nL 159.102673 83.977714 \nL 159.207054 81.115029 \nL 159.259244 82.546333 \nL 159.363625 84.725808 \nL 159.415816 83.814947 \nL 159.520197 83.066717 \nL 159.624578 84.920892 \nL 159.676768 84.530512 \nL 159.728959 86.124466 \nL 159.781149 84.725653 \nL 159.83334 84.758164 \nL 159.88553 83.717182 \nL 159.937721 83.782223 \nL 159.989911 84.562925 \nL 160.146483 80.626729 \nL 160.198673 83.164055 \nL 160.250864 81.927893 \nL 160.303054 82.545945 \nL 160.355245 84.497729 \nL 160.407435 83.944699 \nL 160.459626 84.17239 \nL 160.564007 80.203683 \nL 160.616197 80.594024 \nL 160.772769 85.408416 \nL 160.92934 82.252942 \nL 161.033721 83.521575 \nL 161.085912 82.936015 \nL 161.138102 84.529969 \nL 161.294674 81.276904 \nL 161.451245 85.278044 \nL 161.503436 84.790074 \nL 161.607817 82.122569 \nL 161.660007 82.22014 \nL 161.764388 84.204435 \nL 161.816579 82.903213 \nL 161.868769 82.220062 \nL 162.077531 85.082631 \nL 162.234102 81.244025 \nL 162.442864 87.26201 \nL 162.651626 81.30893 \nL 162.703817 82.219752 \nL 162.756007 83.683586 \nL 162.808198 83.585976 \nL 162.912579 80.951002 \nL 162.964769 83.878689 \nL 163.01696 83.520838 \nL 163.173531 80.885845 \nL 163.330103 83.159638 \nL 165.261151 83.159638 \nL 165.365532 82.119909 \nL 165.417723 83.778968 \nL 165.469913 83.388632 \nL 165.522104 81.566974 \nL 165.574294 83.095912 \nL 165.626485 83.421238 \nL 165.730866 81.371895 \nL 165.783056 82.152642 \nL 165.939628 83.714161 \nL 165.991818 83.616596 \nL 166.044009 82.608189 \nL 166.20058 86.186573 \nL 166.409342 81.437284 \nL 166.513723 83.58432 \nL 166.565914 83.063864 \nL 166.722485 84.169962 \nL 166.774676 84.039867 \nL 166.826866 84.625434 \nL 166.879057 84.495339 \nL 166.983438 82.901416 \nL 167.035628 83.747224 \nL 167.087819 81.632794 \nL 167.140009 83.324383 \nL 167.1922 83.617179 \nL 167.24439 84.788287 \nL 167.29658 83.61723 \nL 167.348771 83.096774 \nL 167.400961 83.779931 \nL 167.557533 80.55953 \nL 167.766295 83.747579 \nL 167.818485 84.072905 \nL 167.870676 83.422329 \nL 167.922866 80.624768 \nL 167.975057 81.925996 \nL 168.079438 84.365802 \nL 168.131628 82.901974 \nL 168.183819 85.927296 \nL 168.236009 84.268288 \nL 168.2882 84.496024 \nL 168.392581 80.787647 \nL 168.549152 84.788921 \nL 168.705724 81.4384 \nL 168.757914 81.666136 \nL 168.810105 85.016758 \nL 168.862295 84.886663 \nL 169.018867 80.657831 \nL 169.123248 83.357877 \nL 169.175438 79.421764 \nL 169.227629 82.512146 \nL 169.279819 82.316991 \nL 169.33201 83.130268 \nL 169.3842 82.056801 \nL 169.436391 83.94357 \nL 169.488581 83.846006 \nL 169.540772 81.080975 \nL 169.592962 82.837624 \nL 169.645153 83.715961 \nL 169.749534 81.894328 \nL 169.906105 83.520908 \nL 169.958296 82.610091 \nL 170.114867 84.692092 \nL 170.167058 86.15597 \nL 170.219248 81.471666 \nL 170.323629 81.504246 \nL 170.42801 84.139233 \nL 170.480201 83.683837 \nL 170.532391 84.009163 \nL 170.584582 81.797144 \nL 170.688963 84.65984 \nL 170.845534 81.959921 \nL 170.949915 84.041896 \nL 171.002106 83.879271 \nL 171.106487 81.309446 \nL 171.158677 82.903445 \nL 171.210868 83.976963 \nL 171.263058 81.114342 \nL 171.315249 83.554122 \nL 171.367439 83.261377 \nL 171.41963 85.310797 \nL 171.47182 84.46504 \nL 171.524011 84.367475 \nL 171.576201 86.612076 \nL 171.628392 84.757887 \nL 171.784963 81.244716 \nL 171.889344 83.684522 \nL 171.941535 83.066476 \nL 171.993725 82.058069 \nL 172.045916 82.968936 \nL 172.098106 84.205104 \nL 172.150297 83.229227 \nL 172.202487 82.318411 \nL 172.254678 83.879879 \nL 172.411249 81.17996 \nL 172.46344 84.335402 \nL 172.51563 82.643864 \nL 172.56782 81.700517 \nL 172.620011 84.075237 \nL 172.672201 82.67647 \nL 172.724392 83.619867 \nL 172.776582 82.741581 \nL 172.828773 82.513896 \nL 172.933154 83.717559 \nL 172.985344 84.303125 \nL 173.037535 83.78267 \nL 173.089725 82.936913 \nL 173.141916 84.303201 \nL 173.194106 82.936964 \nL 173.298487 84.465928 \nL 173.350678 81.733427 \nL 173.455059 81.961189 \nL 173.55944 84.758825 \nL 173.61163 83.848009 \nL 173.663821 84.823936 \nL 173.716011 79.879391 \nL 173.768202 83.164953 \nL 173.820392 81.375825 \nL 173.872583 84.238496 \nL 173.924773 82.351778 \nL 173.976964 83.230115 \nL 174.029154 81.733757 \nL 174.081345 82.026553 \nL 174.185726 85.377201 \nL 174.237916 84.336264 \nL 174.394488 82.709837 \nL 174.446678 84.173715 \nL 174.498869 82.026756 \nL 174.551059 82.840033 \nL 174.60325 82.579818 \nL 174.65544 83.035264 \nL 174.812012 86.223287 \nL 174.968583 81.311323 \nL 175.020774 81.343878 \nL 175.072964 82.840287 \nL 175.125155 82.319831 \nL 175.177345 82.157206 \nL 175.229536 84.824697 \nL 175.281726 83.58858 \nL 175.386107 83.848871 \nL 175.438298 80.98625 \nL 175.490488 83.16579 \nL 175.542679 82.580274 \nL 175.594869 85.247765 \nL 175.64706 83.718877 \nL 175.855822 84.564761 \nL 176.012393 82.027491 \nL 176.116774 82.938384 \nL 176.221155 81.051691 \nL 176.377727 83.524052 \nL 176.429917 84.434919 \nL 176.586489 80.498857 \nL 176.69087 83.654324 \nL 176.74306 82.190497 \nL 176.899632 84.532738 \nL 177.108394 81.832843 \nL 177.264965 83.199182 \nL 177.317156 84.728121 \nL 177.369346 83.752244 \nL 177.473727 82.418562 \nL 177.525918 82.483648 \nL 177.578108 85.086078 \nL 177.630299 82.321048 \nL 177.73468 83.231941 \nL 177.78687 83.166906 \nL 177.839061 83.524762 \nL 177.891251 82.744066 \nL 177.943441 83.850113 \nL 178.047822 83.817634 \nL 178.152203 82.581542 \nL 178.204394 82.906868 \nL 178.308775 82.874389 \nL 178.413156 85.411785 \nL 178.465346 85.1841 \nL 178.674108 79.71915 \nL 178.778489 83.590278 \nL 178.83068 82.158981 \nL 178.987251 84.859053 \nL 179.196013 80.077234 \nL 179.352585 83.785738 \nL 179.509156 85.087017 \nL 179.561347 82.614757 \nL 179.613537 83.070203 \nL 179.665728 83.525649 \nL 179.717918 82.159412 \nL 179.770109 83.55823 \nL 179.87449 82.289608 \nL 179.92668 83.005295 \nL 179.978871 81.931828 \nL 180.031061 84.501729 \nL 180.083252 81.931879 \nL 180.135442 83.590938 \nL 180.187633 83.037952 \nL 180.239823 82.094605 \nL 180.292014 83.233183 \nL 180.344204 82.387427 \nL 180.396395 82.485042 \nL 180.448585 82.354947 \nL 180.552966 84.599573 \nL 180.605157 83.656226 \nL 180.657347 82.322519 \nL 180.709538 84.599649 \nL 180.813919 84.339459 \nL 180.9183 81.346743 \nL 181.022681 81.964865 \nL 181.074871 84.990187 \nL 181.127062 81.704676 \nL 181.283633 83.949326 \nL 181.440205 82.290369 \nL 181.596776 84.404899 \nL 181.805538 81.607415 \nL 181.96211 83.754476 \nL 182.066491 81.802722 \nL 182.223062 84.502794 \nL 182.275253 84.567879 \nL 182.327443 82.941401 \nL 182.379634 83.331787 \nL 182.484015 83.722199 \nL 182.536205 83.884875 \nL 182.640586 85.153598 \nL 182.744967 83.494615 \nL 182.797158 84.535603 \nL 182.901539 82.583849 \nL 182.953729 84.015198 \nL 183.00592 83.267032 \nL 183.110301 83.787563 \nL 183.162491 83.592408 \nL 183.214681 81.99846 \nL 183.266872 83.397279 \nL 183.319062 83.852725 \nL 183.371253 83.55998 \nL 183.475634 84.210632 \nL 183.580015 82.096228 \nL 183.632205 82.421554 \nL 183.840967 85.967433 \nL 183.893158 81.543369 \nL 183.997539 81.57595 \nL 184.049729 80.957904 \nL 184.206301 84.959178 \nL 184.258491 82.747159 \nL 184.310682 84.406218 \nL 184.623825 81.250953 \nL 184.884777 84.861918 \nL 184.936968 81.413756 \nL 184.989158 82.942695 \nL 185.041349 82.94272 \nL 185.093539 82.292144 \nL 185.14573 82.68253 \nL 185.19792 82.617495 \nL 185.250111 84.081374 \nL 185.302301 83.170557 \nL 185.354492 83.170582 \nL 185.458873 83.593524 \nL 185.511063 83.365839 \nL 185.563254 84.244176 \nL 185.615444 81.479146 \nL 185.719825 81.771967 \nL 185.772016 84.602108 \nL 185.824206 82.71539 \nL 185.876397 82.259994 \nL 185.928587 84.407004 \nL 186.085159 81.804675 \nL 186.137349 81.67458 \nL 186.293921 85.838504 \nL 186.346111 82.130102 \nL 186.398302 84.179522 \nL 186.554873 82.975985 \nL 186.607064 83.203721 \nL 186.711445 81.447148 \nL 186.815826 84.927916 \nL 186.920207 82.195441 \nL 187.076778 83.3666 \nL 187.28554 81.284777 \nL 187.337731 84.407689 \nL 187.389921 83.106511 \nL 187.442112 83.334247 \nL 187.494302 84.114994 \nL 187.546493 83.789719 \nL 187.703064 81.31751 \nL 187.755255 82.195847 \nL 187.859636 84.017581 \nL 187.964017 81.870648 \nL 188.016207 84.473078 \nL 188.120588 84.375539 \nL 188.32935 82.228656 \nL 188.381541 85.188917 \nL 188.433731 82.066056 \nL 188.485922 83.464874 \nL 188.538112 82.716708 \nL 188.590302 82.261313 \nL 188.642493 83.33483 \nL 188.694683 82.424014 \nL 188.746874 82.65175 \nL 188.799064 82.001174 \nL 188.903445 83.953028 \nL 189.007826 82.489226 \nL 189.060017 84.473586 \nL 189.112207 84.408551 \nL 189.164398 84.213396 \nL 189.320969 82.749619 \nL 189.37316 82.717114 \nL 189.42535 84.896654 \nL 189.477541 82.814755 \nL 189.529731 83.985863 \nL 189.581922 83.237696 \nL 189.634112 83.335312 \nL 189.686303 82.522086 \nL 189.738493 83.237773 \nL 189.842874 82.684812 \nL 189.895065 82.782428 \nL 189.947255 83.433054 \nL 189.999446 82.977659 \nL 190.051636 82.164432 \nL 190.103827 85.352404 \nL 190.156017 82.359664 \nL 190.208208 83.172941 \nL 190.260398 82.685015 \nL 190.41697 81.741719 \nL 190.46916 84.37668 \nL 190.573541 84.08396 \nL 190.625732 84.669527 \nL 190.677922 84.376781 \nL 190.782303 82.425028 \nL 190.834494 82.750354 \nL 190.886684 81.937128 \nL 190.938875 82.652815 \nL 190.991065 83.466092 \nL 191.095446 81.644459 \nL 191.147637 83.889059 \nL 191.199827 82.620411 \nL 191.304208 83.531304 \nL 191.356399 83.075908 \nL 191.408589 82.815693 \nL 191.46078 81.937407 \nL 191.51297 84.051886 \nL 191.565161 81.872397 \nL 191.617351 81.839892 \nL 191.669542 84.539913 \nL 191.721732 84.312228 \nL 191.878304 81.937609 \nL 191.982685 84.182235 \nL 192.034875 83.434069 \nL 192.087066 83.954575 \nL 192.139256 81.547375 \nL 192.191447 84.800408 \nL 192.243637 84.605253 \nL 192.348018 81.612537 \nL 192.452399 82.100539 \nL 192.50459 81.742733 \nL 192.55678 83.304202 \nL 192.608971 81.710254 \nL 192.817733 85.321193 \nL 192.922114 82.426068 \nL 192.974304 82.458623 \nL 193.026495 81.742987 \nL 193.078685 84.085177 \nL 193.130876 82.230989 \nL 193.183066 81.515352 \nL 193.235257 83.434652 \nL 193.287447 83.174437 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-width:0.5;\"/>\n   </g>\n   <g id=\"patch_3\">\n    <path d=\"M 28.942188 120.52 \nL 28.942188 49.92 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n   <g id=\"patch_4\">\n    <path d=\"M 201.113412 120.52 \nL 201.113412 49.92 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n   <g id=\"patch_5\">\n    <path d=\"M 28.942188 120.52 \nL 201.113412 120.52 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n   <g id=\"patch_6\">\n    <path d=\"M 28.942188 49.92 \nL 201.113412 49.92 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n  </g>\n  <g id=\"axes_2\">\n   <g id=\"patch_7\">\n    <path d=\"M 239.542187 120.52 \nL 411.713412 120.52 \nL 411.713412 49.92 \nL 239.542187 49.92 \nz\n\" style=\"fill:#ffffff;\"/>\n   </g>\n   <g id=\"matplotlib.axis_3\">\n    <g id=\"xtick_5\">\n     <g id=\"line2d_8\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"247.368152\" xlink:href=\"#m30c3f5a1e5\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_8\">\n      <!-- 0 -->\n      <g transform=\"translate(244.186902 135.118437)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"xtick_6\">\n     <g id=\"line2d_9\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"299.558647\" xlink:href=\"#m30c3f5a1e5\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_9\">\n      <!-- 1000 -->\n      <g transform=\"translate(286.833647 135.118437)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-49\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"xtick_7\">\n     <g id=\"line2d_10\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"351.749142\" xlink:href=\"#m30c3f5a1e5\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_10\">\n      <!-- 2000 -->\n      <g transform=\"translate(339.024142 135.118437)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-50\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"xtick_8\">\n     <g id=\"line2d_11\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"403.939638\" xlink:href=\"#m30c3f5a1e5\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_11\">\n      <!-- 3000 -->\n      <g transform=\"translate(391.214638 135.118437)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-51\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n   </g>\n   <g id=\"matplotlib.axis_4\">\n    <g id=\"ytick_3\">\n     <g id=\"line2d_12\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"239.542187\" xlink:href=\"#m904cd11c98\" y=\"117.696265\"/>\n      </g>\n     </g>\n     <g id=\"text_12\">\n      <!-- −2 -->\n      <g transform=\"translate(217.8 121.495484)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-8722\"/>\n       <use x=\"83.789062\" xlink:href=\"#DejaVuSans-50\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"ytick_4\">\n     <g id=\"line2d_13\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"239.542187\" xlink:href=\"#m904cd11c98\" y=\"83.159638\"/>\n      </g>\n     </g>\n     <g id=\"text_13\">\n      <!-- 0 -->\n      <g transform=\"translate(226.179687 86.958857)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"text_14\">\n     <!-- 1e−14 -->\n     <g transform=\"translate(239.542187 46.92)scale(0.1 -0.1)\">\n      <use xlink:href=\"#DejaVuSans-49\"/>\n      <use x=\"63.623047\" xlink:href=\"#DejaVuSans-101\"/>\n      <use x=\"125.146484\" xlink:href=\"#DejaVuSans-8722\"/>\n      <use x=\"208.935547\" xlink:href=\"#DejaVuSans-49\"/>\n      <use x=\"272.558594\" xlink:href=\"#DejaVuSans-52\"/>\n     </g>\n    </g>\n   </g>\n   <g id=\"line2d_14\">\n    <path clip-path=\"url(#p6222620a97)\" d=\"M 247.368152 83.26041 \nL 247.524724 83.1688 \nL 247.629105 83.206693 \nL 247.681295 83.045055 \nL 247.733486 83.127359 \nL 247.994438 83.251848 \nL 248.098819 82.657957 \nL 248.255391 83.044213 \nL 248.307581 82.908335 \nL 248.464153 83.581383 \nL 248.620724 83.006206 \nL 248.672915 83.12091 \nL 248.777296 83.218557 \nL 248.933867 83.445275 \nL 249.090439 82.992037 \nL 249.142629 82.857512 \nL 249.19482 82.892955 \nL 249.24701 82.934652 \nL 249.299201 83.2527 \nL 249.351391 83.092433 \nL 249.403582 82.997759 \nL 249.455772 83.074811 \nL 249.560153 83.113952 \nL 249.768915 83.021554 \nL 249.821106 82.898395 \nL 249.873296 83.046325 \nL 249.977677 83.432391 \nL 250.029867 83.308868 \nL 250.238629 83.008897 \nL 250.29082 83.191864 \nL 250.34301 83.104215 \nL 250.395201 83.033604 \nL 250.447391 83.096374 \nL 250.551772 83.242752 \nL 250.656153 83.042505 \nL 250.708344 83.078022 \nL 250.760534 83.278398 \nL 250.812725 82.934881 \nL 250.864915 82.956132 \nL 251.021487 83.505135 \nL 251.073677 82.996428 \nL 251.178058 83.067377 \nL 251.230249 82.903211 \nL 251.282439 83.108336 \nL 251.33463 83.070779 \nL 251.439011 83.013138 \nL 251.543392 83.356238 \nL 251.595582 83.251971 \nL 251.856535 82.88167 \nL 251.908725 82.9413 \nL 252.065297 83.323616 \nL 252.169678 82.964654 \nL 252.221868 82.99045 \nL 252.535011 83.240775 \nL 252.587202 83.009185 \nL 252.639392 83.095323 \nL 253.004726 83.11661 \nL 253.056916 82.850291 \nL 253.109107 82.971105 \nL 253.213488 83.223623 \nL 253.265678 83.160344 \nL 253.42225 82.959641 \nL 253.735393 83.230484 \nL 253.787583 83.08322 \nL 253.839774 83.253187 \nL 254.048536 83.43773 \nL 254.361679 83.132469 \nL 254.674822 83.191647 \nL 254.831393 83.159678 \nL 254.883584 83.165024 \nL 255.040155 82.981442 \nL 255.301107 83.700534 \nL 255.457679 83.187286 \nL 255.509869 83.305477 \nL 255.56206 83.484212 \nL 255.61425 83.430165 \nL 255.718631 83.305069 \nL 255.927393 82.942596 \nL 256.031774 82.624077 \nL 256.240536 83.251705 \nL 256.449298 83.02798 \nL 256.60587 83.467858 \nL 256.65806 83.357495 \nL 257.075584 83.074 \nL 257.127775 83.182165 \nL 257.179965 83.08968 \nL 257.232156 82.891214 \nL 257.284346 83.035053 \nL 257.336537 82.945685 \nL 257.493108 83.450316 \nL 257.545299 83.359415 \nL 257.754061 82.853323 \nL 257.806251 82.824679 \nL 257.962823 83.446261 \nL 258.015013 83.378637 \nL 258.067204 83.36547 \nL 258.275966 83.049725 \nL 258.432537 83.422935 \nL 258.484728 83.374979 \nL 258.589109 82.98165 \nL 258.641299 83.007935 \nL 258.850061 83.18644 \nL 258.902252 83.073564 \nL 258.954442 83.187233 \nL 259.058823 83.469787 \nL 259.111014 83.222274 \nL 259.163204 82.861568 \nL 259.215395 83.159069 \nL 259.267585 83.257597 \nL 259.319776 83.205028 \nL 259.424157 83.054518 \nL 259.476347 83.0947 \nL 259.528538 83.182905 \nL 259.580728 83.105976 \nL 259.632919 83.025051 \nL 259.685109 83.144222 \nL 259.7373 83.109691 \nL 259.841681 83.308491 \nL 259.893871 83.274213 \nL 259.946062 83.2817 \nL 260.154824 82.901069 \nL 260.311395 83.227356 \nL 260.363586 83.164562 \nL 260.728919 83.066246 \nL 260.8333 83.293296 \nL 260.937681 83.004902 \nL 260.989871 83.071538 \nL 261.094252 83.151246 \nL 261.146443 83.104283 \nL 261.407395 83.127741 \nL 261.563967 82.818417 \nL 261.720538 83.335117 \nL 261.772729 83.308588 \nL 261.9293 83.037951 \nL 262.085872 82.978212 \nL 262.190253 82.987309 \nL 262.242443 83.130026 \nL 262.294634 83.046279 \nL 262.451205 83.171433 \nL 262.607777 83.366649 \nL 262.659967 83.253018 \nL 262.712158 83.306373 \nL 262.868729 83.260756 \nL 263.025301 82.928838 \nL 263.129682 83.234791 \nL 263.181872 83.177658 \nL 263.234063 83.006438 \nL 263.286253 83.054927 \nL 263.495015 83.361443 \nL 263.547206 83.25602 \nL 263.599396 82.686558 \nL 263.651587 82.797786 \nL 263.755968 83.383413 \nL 263.808158 83.22696 \nL 263.912539 83.156871 \nL 264.121301 83.262112 \nL 264.277873 83.004322 \nL 264.382254 83.571577 \nL 264.434444 83.339325 \nL 264.643206 82.86795 \nL 264.695397 82.976405 \nL 264.904159 83.552869 \nL 264.956349 83.527658 \nL 265.00854 83.023324 \nL 265.06073 83.04286 \nL 265.217302 83.250167 \nL 265.373873 83.037 \nL 265.582635 83.032009 \nL 265.687016 82.763856 \nL 265.843588 83.210454 \nL 265.947968 83.492085 \nL 266.15673 83.020639 \nL 266.208921 83.412809 \nL 266.261111 83.294942 \nL 266.417683 82.927812 \nL 266.469873 83.002464 \nL 266.574254 83.473143 \nL 266.626445 83.233074 \nL 266.783016 82.617748 \nL 266.835207 82.986104 \nL 266.887397 83.118675 \nL 266.991778 82.83295 \nL 267.14835 83.294888 \nL 267.304921 82.945276 \nL 267.618064 83.711175 \nL 267.774636 82.757994 \nL 267.826826 83.026132 \nL 267.879017 83.19424 \nL 267.931207 83.170286 \nL 268.035588 82.714965 \nL 268.139969 83.3233 \nL 268.24435 82.802709 \nL 268.296541 82.890958 \nL 268.348731 82.862062 \nL 268.505303 83.533032 \nL 268.557493 83.410262 \nL 268.714065 83.064999 \nL 268.766255 83.099261 \nL 268.870636 82.835468 \nL 268.922827 82.876226 \nL 269.079398 83.481581 \nL 269.23597 83.354149 \nL 269.392541 82.687555 \nL 269.549113 83.261337 \nL 269.653494 82.943167 \nL 269.810065 83.133488 \nL 270.384161 83.001813 \nL 270.488542 83.282116 \nL 270.540732 83.010182 \nL 270.592923 83.095223 \nL 270.697304 83.673413 \nL 270.749494 83.530423 \nL 270.906066 83.066796 \nL 271.010447 83.035552 \nL 271.062637 82.926283 \nL 271.167018 83.653957 \nL 271.219209 83.370887 \nL 271.37578 83.141675 \nL 271.532351 83.247116 \nL 271.636732 83.152722 \nL 271.688923 83.438111 \nL 271.741113 83.352177 \nL 271.897685 82.796735 \nL 272.054256 83.389121 \nL 272.47178 82.566418 \nL 272.576161 83.33136 \nL 272.628352 83.025473 \nL 272.680542 83.076428 \nL 272.732733 83.191687 \nL 272.784923 82.968107 \nL 272.837114 82.993813 \nL 272.993685 83.809048 \nL 273.045876 83.583846 \nL 273.202447 82.79897 \nL 273.254638 82.851857 \nL 273.306828 82.853217 \nL 273.359019 83.400332 \nL 273.411209 82.908093 \nL 273.4634 82.875356 \nL 273.619971 83.413209 \nL 273.776543 82.728314 \nL 274.089686 83.491848 \nL 274.194067 82.665964 \nL 274.246257 82.797009 \nL 274.298448 82.839765 \nL 274.455019 83.53856 \nL 274.611591 82.700406 \nL 274.663781 82.754384 \nL 274.768162 83.200996 \nL 274.820353 82.903388 \nL 274.872543 83.048371 \nL 274.976924 83.936441 \nL 275.029115 83.631015 \nL 275.237877 82.385582 \nL 275.290067 82.305597 \nL 275.498829 83.844807 \nL 275.655401 82.980116 \nL 275.707591 82.863892 \nL 275.811972 83.536119 \nL 275.864163 83.489964 \nL 275.968544 82.846985 \nL 276.020734 82.989522 \nL 276.125115 82.730145 \nL 276.281687 83.116359 \nL 276.333877 82.850979 \nL 276.386068 82.983123 \nL 276.490449 84.261838 \nL 276.542639 83.783822 \nL 276.64702 82.974777 \nL 276.69921 83.169216 \nL 276.751401 83.491505 \nL 276.803591 83.06565 \nL 276.855782 83.093571 \nL 276.907972 83.315399 \nL 276.960163 83.249132 \nL 277.012353 83.201124 \nL 277.116734 83.578509 \nL 277.168925 83.476357 \nL 277.221115 83.198979 \nL 277.273306 83.290756 \nL 277.325496 83.392039 \nL 277.429877 82.705454 \nL 277.482068 82.829241 \nL 277.586449 83.627264 \nL 277.899592 82.623011 \nL 277.951782 82.791083 \nL 278.108354 83.496843 \nL 278.160544 83.44179 \nL 278.317116 83.236013 \nL 278.369306 83.359026 \nL 278.473687 82.997138 \nL 278.578068 83.506629 \nL 278.630259 83.493429 \nL 278.73464 83.017249 \nL 278.891211 84.062334 \nL 278.943402 83.907767 \nL 279.047783 82.974236 \nL 279.099973 83.287995 \nL 279.256545 83.540893 \nL 279.308735 83.542551 \nL 279.517497 82.191612 \nL 279.569688 82.212924 \nL 279.83064 83.744921 \nL 280.195974 82.568126 \nL 280.248164 82.756809 \nL 280.352545 83.516295 \nL 280.561307 82.714922 \nL 280.613498 82.77048 \nL 280.717879 83.476402 \nL 280.770069 83.11965 \nL 280.87445 83.162387 \nL 281.031022 82.909501 \nL 281.083212 82.995229 \nL 281.187593 83.404778 \nL 281.239784 83.208758 \nL 281.291974 83.13599 \nL 281.344165 83.470533 \nL 281.396355 83.400342 \nL 281.500736 82.4126 \nL 281.552927 82.484465 \nL 281.761689 83.51416 \nL 281.813879 83.317617 \nL 281.86607 83.578462 \nL 281.91826 83.547468 \nL 282.127022 82.714219 \nL 282.179212 82.702437 \nL 282.335784 83.396935 \nL 282.387974 83.395619 \nL 282.440165 83.228008 \nL 282.596736 83.743471 \nL 282.701117 82.298305 \nL 282.753308 82.470709 \nL 282.96207 83.907156 \nL 283.01426 83.592463 \nL 283.118641 82.81382 \nL 283.170832 82.917863 \nL 283.431784 83.609554 \nL 283.536165 82.931117 \nL 283.640546 83.09597 \nL 283.744927 83.168863 \nL 283.797118 83.04502 \nL 283.953689 83.846479 \nL 284.110261 82.193359 \nL 284.162451 82.392844 \nL 284.319023 83.47871 \nL 284.475594 82.501124 \nL 284.527785 82.67049 \nL 284.579975 82.763732 \nL 284.684356 83.321275 \nL 284.788737 82.36 \nL 284.997499 84.140415 \nL 285.310642 82.250835 \nL 285.415023 83.742644 \nL 285.467214 83.680869 \nL 285.675976 83.146992 \nL 285.780357 83.707075 \nL 285.884738 82.550718 \nL 286.041309 83.792547 \nL 286.197881 82.431142 \nL 286.302262 83.262611 \nL 286.354452 83.156387 \nL 286.406643 83.273333 \nL 286.511024 82.936227 \nL 286.615405 84.030112 \nL 286.771976 82.695606 \nL 286.928548 83.470497 \nL 286.980738 83.126632 \nL 287.032929 82.825303 \nL 287.13731 83.956349 \nL 287.1895 83.912421 \nL 287.293881 83.09388 \nL 287.346071 83.239277 \nL 287.398262 82.959776 \nL 287.450452 83.172123 \nL 287.502643 83.198926 \nL 287.554833 82.459383 \nL 287.607024 82.601596 \nL 287.711405 83.486424 \nL 287.763595 83.472183 \nL 287.972357 82.251308 \nL 288.128929 84.065008 \nL 288.181119 83.868965 \nL 288.442072 82.93639 \nL 288.494262 82.898279 \nL 288.546453 82.543225 \nL 288.598643 82.81683 \nL 288.703024 83.651824 \nL 288.859596 82.925777 \nL 288.963977 82.983411 \nL 289.016167 83.45403 \nL 289.068358 83.223292 \nL 289.120548 82.856981 \nL 289.172739 82.883296 \nL 289.224929 82.98837 \nL 289.27712 83.598626 \nL 289.32931 83.41813 \nL 289.381501 83.502736 \nL 289.485882 82.865517 \nL 289.538072 83.551836 \nL 289.590263 83.316368 \nL 289.642453 83.08596 \nL 289.694644 83.150379 \nL 289.799025 83.719571 \nL 289.903406 82.693556 \nL 289.955596 82.75281 \nL 290.007787 82.736936 \nL 290.059977 83.457487 \nL 290.112168 83.315757 \nL 290.164358 82.923169 \nL 290.216549 83.451397 \nL 290.268739 83.383712 \nL 290.32093 83.234709 \nL 290.425311 82.409584 \nL 290.581882 83.627899 \nL 290.686263 82.272371 \nL 290.738454 82.612059 \nL 290.842835 83.881794 \nL 290.895025 83.755712 \nL 291.051597 83.040481 \nL 291.155978 83.519999 \nL 291.208168 82.911398 \nL 291.260359 83.267472 \nL 291.41693 82.70497 \nL 291.469121 83.491779 \nL 291.521311 83.215081 \nL 291.573502 82.570975 \nL 291.625692 82.935493 \nL 291.782264 82.779823 \nL 291.991026 83.57569 \nL 292.043216 83.357698 \nL 292.095407 82.454343 \nL 292.147597 82.805884 \nL 292.199788 83.232014 \nL 292.251978 82.947598 \nL 292.304169 82.767595 \nL 292.356359 82.909157 \nL 292.40855 83.559781 \nL 292.46074 83.174965 \nL 292.617311 82.672575 \nL 292.669502 82.371421 \nL 292.721692 82.720558 \nL 292.773883 82.668331 \nL 292.878264 84.077062 \nL 292.930454 83.541108 \nL 293.034835 82.404706 \nL 293.087026 83.207548 \nL 293.139216 82.656065 \nL 293.347978 83.880834 \nL 293.400169 82.955773 \nL 293.50455 83.071478 \nL 293.55674 83.518952 \nL 293.608931 83.451496 \nL 293.765502 82.213794 \nL 293.869883 83.300267 \nL 293.974264 83.153168 \nL 294.026455 82.569106 \nL 294.078645 82.91984 \nL 294.130836 83.471104 \nL 294.183026 83.030588 \nL 294.235217 82.967295 \nL 294.391788 83.289784 \nL 294.443979 82.968909 \nL 294.496169 83.320929 \nL 294.54836 83.073545 \nL 294.60055 83.608354 \nL 294.704931 82.725201 \nL 294.809312 84.026341 \nL 294.965884 82.794199 \nL 295.018074 82.807285 \nL 295.122455 82.596561 \nL 295.279027 83.248339 \nL 295.383408 82.474208 \nL 295.539979 83.932804 \nL 295.748741 82.280161 \nL 295.905313 82.80764 \nL 296.061884 83.958847 \nL 296.270646 82.510552 \nL 296.322837 83.117508 \nL 296.427218 83.261499 \nL 296.531599 82.533859 \nL 296.583789 83.161218 \nL 296.63598 82.769591 \nL 296.844742 83.437711 \nL 297.001313 82.570477 \nL 297.105694 83.674241 \nL 297.157885 83.544437 \nL 297.210075 83.304917 \nL 297.262266 83.642649 \nL 297.314456 82.99028 \nL 297.366647 83.359283 \nL 297.418837 83.571516 \nL 297.575409 82.972391 \nL 297.627599 82.982403 \nL 297.67979 82.515231 \nL 297.784171 83.193925 \nL 297.836361 83.065051 \nL 297.992932 83.837906 \nL 298.097313 82.552049 \nL 298.306075 84.18443 \nL 298.514837 83.077931 \nL 298.567028 82.952854 \nL 298.671409 83.631446 \nL 298.77579 82.876809 \nL 298.82798 83.121357 \nL 298.880171 82.988318 \nL 299.036742 82.006987 \nL 299.193314 83.908435 \nL 299.245504 80.062671 \nL 299.297695 83.893553 \nL 299.349885 87.004354 \nL 299.454266 81.318084 \nL 299.558647 86.104257 \nL 299.610838 73.502119 \nL 299.663028 97.152627 \nL 299.715219 72.122051 \nL 299.767409 93.291426 \nL 299.8196 63.644979 \nL 299.87179 103.397616 \nL 299.923981 70.512804 \nL 299.976171 94.847077 \nL 300.028362 62.7423 \nL 300.080552 105.688206 \nL 300.132743 71.63428 \nL 300.289314 83.28073 \nL 300.341505 89.06367 \nL 300.445886 90.319847 \nL 300.498076 66.162085 \nL 300.550267 112.986068 \nL 300.602457 56.922305 \nL 300.654648 92.843393 \nL 300.706838 81.817502 \nL 300.759029 84.46497 \nL 300.811219 89.127214 \nL 300.86341 66.669291 \nL 300.9156 97.769494 \nL 300.967791 85.203238 \nL 301.019981 64.794231 \nL 301.072172 99.153114 \nL 301.124362 84.344079 \nL 301.176553 77.717886 \nL 301.228743 84.898192 \nL 301.385315 82.085506 \nL 301.437505 80.466956 \nL 301.489696 89.317931 \nL 301.541886 77.490636 \nL 301.594077 78.129584 \nL 301.646267 106.526734 \nL 301.698458 72.24374 \nL 301.750648 74.923234 \nL 301.802839 79.44772 \nL 301.855029 104.086407 \nL 301.90722 58.867806 \nL 302.011601 62.958908 \nL 302.063791 102.952883 \nL 302.115982 63.736555 \nL 302.168172 95.278786 \nL 302.220363 87.785347 \nL 302.272553 76.955502 \nL 302.324744 81.725223 \nL 302.376934 84.912786 \nL 302.429125 82.456643 \nL 302.481315 79.764143 \nL 302.585696 92.348931 \nL 302.637887 65.923011 \nL 302.742268 61.974697 \nL 302.794458 101.579576 \nL 302.846649 71.298307 \nL 302.898839 92.55246 \nL 303.055411 71.13218 \nL 303.107601 101.500057 \nL 303.159792 82.62416 \nL 303.211982 79.65982 \nL 303.368553 92.06355 \nL 303.420744 63.474022 \nL 303.472934 98.397373 \nL 303.525125 79.921774 \nL 303.577315 78.952495 \nL 303.629506 90.438726 \nL 303.681696 87.792946 \nL 303.733887 69.770282 \nL 303.786077 81.704834 \nL 303.838268 89.617554 \nL 303.890458 79.269672 \nL 303.942649 93.617025 \nL 304.09922 69.090241 \nL 304.255792 96.33837 \nL 304.307982 71.671048 \nL 304.360173 87.127663 \nL 304.464554 76.993065 \nL 304.516744 92.731415 \nL 304.568935 80.601591 \nL 304.621125 81.601193 \nL 304.673316 88.836385 \nL 304.725506 81.800606 \nL 304.777697 74.734629 \nL 304.829887 92.426299 \nL 304.882078 69.280261 \nL 304.934268 91.783666 \nL 304.986459 78.204844 \nL 305.038649 91.615174 \nL 305.14303 70.948862 \nL 305.195221 92.299999 \nL 305.247411 83.602564 \nL 305.299602 78.829863 \nL 305.351792 86.402045 \nL 305.456173 85.438966 \nL 305.560554 79.7003 \nL 305.612745 80.969417 \nL 305.664935 79.288073 \nL 305.717126 91.337601 \nL 305.769316 82.882823 \nL 305.821507 86.209949 \nL 305.873697 76.943155 \nL 305.925888 85.489003 \nL 305.978078 86.275933 \nL 306.030269 71.430351 \nL 306.082459 94.966014 \nL 306.13465 80.814488 \nL 306.18684 88.067322 \nL 306.239031 75.756458 \nL 306.291221 88.133738 \nL 306.343412 78.365603 \nL 306.395602 92.568207 \nL 306.447793 75.104175 \nL 306.499983 86.869336 \nL 306.656555 79.275908 \nL 306.708745 86.928092 \nL 306.760936 86.566616 \nL 306.865317 79.854937 \nL 306.969698 85.580719 \nL 307.021888 79.709626 \nL 307.074079 82.794915 \nL 307.126269 82.717575 \nL 307.17846 80.328798 \nL 307.282841 85.500418 \nL 307.335031 84.500591 \nL 307.439412 80.260925 \nL 307.491603 88.058802 \nL 307.543793 76.372359 \nL 307.595984 89.454426 \nL 307.648174 80.071773 \nL 307.700365 81.996886 \nL 307.752555 85.224559 \nL 307.804746 79.548007 \nL 307.856936 88.505323 \nL 307.909127 75.652328 \nL 307.961317 89.694489 \nL 308.065698 80.960305 \nL 308.117889 83.419494 \nL 308.170079 84.870641 \nL 308.22227 79.704846 \nL 308.27446 86.917636 \nL 308.326651 83.999921 \nL 308.483222 80.836457 \nL 308.535413 87.10468 \nL 308.639793 87.127771 \nL 308.691984 73.349582 \nL 308.744174 92.928475 \nL 308.796365 76.203727 \nL 308.848555 88.734049 \nL 308.900746 87.289943 \nL 309.057317 78.697051 \nL 309.109508 86.781847 \nL 309.213889 86.471328 \nL 309.266079 77.946206 \nL 309.31827 89.287249 \nL 309.37046 78.266469 \nL 309.422651 86.364544 \nL 309.474841 83.515191 \nL 309.527032 81.501846 \nL 309.579222 82.940863 \nL 309.631413 84.738849 \nL 309.683603 77.854911 \nL 309.735794 88.387538 \nL 309.787984 81.352205 \nL 309.840175 83.102649 \nL 309.892365 81 \nL 309.944556 82.520686 \nL 309.996746 85.231571 \nL 310.048937 83.737436 \nL 310.101127 82.555545 \nL 310.153318 84.24866 \nL 310.257699 80.914315 \nL 310.309889 87.979296 \nL 310.36208 82.308294 \nL 310.41427 86.492113 \nL 310.466461 78.824098 \nL 310.518651 79.243132 \nL 310.570842 85.809628 \nL 310.623032 84.387939 \nL 310.675223 83.890572 \nL 310.727413 80.284751 \nL 310.779604 85.500951 \nL 310.831794 84.532288 \nL 310.883985 80.226972 \nL 310.936175 84.610473 \nL 311.040556 80.455894 \nL 311.092747 87.242265 \nL 311.144937 79.909902 \nL 311.197128 85.464514 \nL 311.249318 82.87863 \nL 311.301509 80.753482 \nL 311.40589 80.676956 \nL 311.45808 87.475691 \nL 311.510271 80.266367 \nL 311.562461 81.85433 \nL 311.614652 85.591047 \nL 311.666842 83.400343 \nL 311.719033 83.592231 \nL 311.771223 80.153828 \nL 311.823414 86.765473 \nL 311.875604 81.248038 \nL 311.927795 81.874034 \nL 311.979985 81.80473 \nL 312.032176 85.645018 \nL 312.084366 79.494928 \nL 312.136557 89.137538 \nL 312.188747 79.314355 \nL 312.240938 86.52409 \nL 312.293128 79.850519 \nL 312.345319 85.080671 \nL 312.397509 82.479128 \nL 312.4497 82.976192 \nL 312.50189 85.772515 \nL 312.554081 80.601485 \nL 312.606271 81.722041 \nL 312.658462 84.629753 \nL 312.710652 80.790388 \nL 312.762843 85.96545 \nL 312.867224 85.894935 \nL 312.919414 80.719096 \nL 312.971605 83.417529 \nL 313.023795 85.080411 \nL 313.075986 81.565444 \nL 313.128176 83.209106 \nL 313.180367 82.295366 \nL 313.232557 84.545927 \nL 313.284748 84.30996 \nL 313.336938 80.970299 \nL 313.389129 84.232491 \nL 313.5457 82.229942 \nL 313.597891 82.34089 \nL 313.702272 84.079439 \nL 313.858843 80.376378 \nL 313.911033 85.648804 \nL 313.963224 81.728397 \nL 314.015414 84.592339 \nL 314.067605 83.92637 \nL 314.119795 82.140707 \nL 314.171986 85.240233 \nL 314.224176 82.41464 \nL 314.276367 84.160322 \nL 314.328557 81.645808 \nL 314.380748 82.208439 \nL 314.537319 84.165962 \nL 314.58951 82.922425 \nL 314.6417 84.873655 \nL 314.693891 80.697327 \nL 314.746081 83.562388 \nL 314.798272 83.920153 \nL 314.850462 83.61856 \nL 314.954843 81.119371 \nL 315.007034 84.805185 \nL 315.111415 84.645097 \nL 315.163605 83.095749 \nL 315.215796 83.715834 \nL 315.267986 84.460851 \nL 315.320177 81.776802 \nL 315.372367 84.855521 \nL 315.424558 82.361218 \nL 315.476748 82.126465 \nL 315.63332 83.898004 \nL 315.68551 83.831579 \nL 315.894272 82.412308 \nL 315.946463 83.196959 \nL 315.998653 80.565131 \nL 316.155225 85.59548 \nL 316.207415 81.779595 \nL 316.259606 82.239504 \nL 316.311796 82.479382 \nL 316.363987 84.909244 \nL 316.416177 83.135909 \nL 316.468368 81.48611 \nL 316.624939 84.877912 \nL 316.67713 84.953217 \nL 316.833701 82.026422 \nL 316.885892 84.84034 \nL 316.938082 82.017968 \nL 317.094654 84.892958 \nL 317.251225 81.576574 \nL 317.459987 84.513187 \nL 317.564368 82.543749 \nL 317.616559 82.882686 \nL 317.72094 83.48236 \nL 317.77313 82.474749 \nL 317.825321 82.611215 \nL 317.877511 84.338591 \nL 317.929702 82.535915 \nL 317.981892 84.208887 \nL 318.086273 82.341277 \nL 318.242845 84.152571 \nL 318.295035 80.400304 \nL 318.347226 82.690349 \nL 318.399416 83.681431 \nL 318.555988 81.521021 \nL 318.608178 85.027851 \nL 318.660369 81.737101 \nL 318.712559 84.299386 \nL 318.76475 82.666885 \nL 318.81694 82.552724 \nL 318.973512 84.718666 \nL 319.077893 82.539024 \nL 319.130083 84.133148 \nL 319.182274 81.640415 \nL 319.234464 83.13914 \nL 319.286654 83.446995 \nL 319.391035 82.010247 \nL 319.443226 84.779284 \nL 319.495416 82.714071 \nL 319.547607 83.824266 \nL 319.599797 81.691556 \nL 319.651988 83.576415 \nL 319.704178 83.842786 \nL 319.86075 82.564085 \nL 319.91294 82.562165 \nL 319.965131 84.669232 \nL 320.017321 82.697111 \nL 320.069512 83.086313 \nL 320.121702 83.050569 \nL 320.173893 81.535843 \nL 320.226083 82.748658 \nL 320.278274 82.461692 \nL 320.330464 83.675328 \nL 320.382655 81.214612 \nL 320.434845 83.762657 \nL 320.591417 81.62225 \nL 320.695798 85.479394 \nL 320.747988 82.402899 \nL 320.852369 82.436888 \nL 320.95675 82.340278 \nL 321.008941 84.464269 \nL 321.061131 82.934001 \nL 321.113322 84.069305 \nL 321.322084 82.240995 \nL 321.374274 83.48826 \nL 321.426465 82.727228 \nL 321.478655 82.432378 \nL 321.635227 83.877109 \nL 321.791798 81.728783 \nL 321.94837 83.941581 \nL 322.00056 82.52318 \nL 322.052751 83.349161 \nL 322.104941 83.239347 \nL 322.157132 83.341964 \nL 322.209322 83.714946 \nL 322.261513 81.673993 \nL 322.313703 81.944715 \nL 322.365894 83.357228 \nL 322.418084 83.28274 \nL 322.470275 82.662388 \nL 322.522465 83.140675 \nL 322.574656 83.161775 \nL 322.626846 82.945716 \nL 322.731227 83.59126 \nL 322.783418 83.475139 \nL 322.835608 82.077753 \nL 322.887799 83.887517 \nL 322.939989 83.783519 \nL 322.99218 83.565208 \nL 323.096561 82.584676 \nL 323.253132 84.401147 \nL 323.409704 82.911498 \nL 323.461894 83.310329 \nL 323.514085 83.451076 \nL 323.670656 82.068326 \nL 323.827228 84.584604 \nL 323.879418 81.173784 \nL 323.931609 82.855259 \nL 323.983799 83.470257 \nL 324.03599 81.584287 \nL 324.08818 82.773526 \nL 324.140371 83.097623 \nL 324.192561 82.677365 \nL 324.296942 84.342558 \nL 324.453514 82.059361 \nL 324.505704 84.058103 \nL 324.557894 82.684389 \nL 324.766656 83.15076 \nL 324.818847 83.361145 \nL 324.871037 84.560148 \nL 324.923228 83.308541 \nL 324.975418 82.73062 \nL 325.13199 83.941621 \nL 325.288561 82.256267 \nL 325.392942 84.272675 \nL 325.445133 82.457282 \nL 325.549514 82.660463 \nL 325.653895 82.523027 \nL 325.862657 83.831905 \nL 325.914847 82.573872 \nL 325.967038 83.714105 \nL 326.019228 83.086843 \nL 326.071419 83.904857 \nL 326.123609 82.377188 \nL 326.1758 82.523582 \nL 326.332371 83.709597 \nL 326.384562 83.547637 \nL 326.436752 83.736425 \nL 326.541133 82.488516 \nL 326.593324 83.796674 \nL 326.645514 83.307547 \nL 326.697705 83.372818 \nL 326.749895 83.21706 \nL 326.802086 82.591417 \nL 326.958657 84.29227 \nL 327.167419 82.519325 \nL 327.323991 83.362278 \nL 327.376181 82.305853 \nL 327.428372 83.367073 \nL 327.584943 82.217047 \nL 327.637134 83.816601 \nL 327.741515 83.624396 \nL 327.793705 82.509674 \nL 327.845896 83.552384 \nL 328.054658 81.534819 \nL 328.159039 83.697039 \nL 328.211229 83.40399 \nL 328.26342 82.109182 \nL 328.31561 83.609198 \nL 328.367801 83.230624 \nL 328.419991 82.140663 \nL 328.472182 83.20769 \nL 328.524372 82.625925 \nL 328.680944 84.358624 \nL 328.733134 83.102096 \nL 328.785325 83.329891 \nL 328.837515 83.548455 \nL 328.889706 83.295417 \nL 328.994087 83.281988 \nL 329.046277 84.03921 \nL 329.098468 83.681491 \nL 329.150658 83.737207 \nL 329.202849 83.633643 \nL 329.255039 82.426208 \nL 329.30723 82.825 \nL 329.35942 82.614315 \nL 329.411611 84.210582 \nL 329.463801 82.943731 \nL 329.620373 83.379974 \nL 329.672563 83.295533 \nL 329.724754 84.100991 \nL 329.881325 82.838688 \nL 329.933515 82.947194 \nL 330.090087 84.016161 \nL 330.142277 83.317907 \nL 330.194468 83.528671 \nL 330.246658 83.55104 \nL 330.351039 82.893111 \nL 330.40323 83.228109 \nL 330.507611 81.9718 \nL 330.559801 84.16407 \nL 330.611992 83.470603 \nL 330.664182 83.791755 \nL 330.716373 81.843079 \nL 330.768563 83.363805 \nL 330.872944 82.58244 \nL 331.029516 83.330591 \nL 331.081706 82.592801 \nL 331.133897 83.55976 \nL 331.186087 83.26305 \nL 331.238278 82.805098 \nL 331.290468 83.493239 \nL 331.342659 82.888075 \nL 331.394849 82.404133 \nL 331.551421 83.256828 \nL 331.603611 82.657991 \nL 331.655802 83.887688 \nL 331.707992 82.568091 \nL 331.812373 83.442858 \nL 331.864564 83.434067 \nL 331.968945 81.967495 \nL 332.021135 82.585876 \nL 332.177707 83.53755 \nL 332.386469 82.454065 \nL 332.438659 82.647561 \nL 332.54304 83.836571 \nL 332.699612 82.515854 \nL 332.751802 83.460227 \nL 332.803993 81.796725 \nL 332.856183 83.015137 \nL 332.908374 82.794642 \nL 333.012755 83.83056 \nL 333.064945 82.552156 \nL 333.117136 83.218735 \nL 333.273707 82.694506 \nL 333.325898 82.707976 \nL 333.430279 83.200405 \nL 333.482469 83.138921 \nL 333.53466 83.026393 \nL 333.691231 82.415602 \nL 333.795612 82.685631 \nL 333.847803 83.690636 \nL 333.899993 83.565533 \nL 333.952184 82.860754 \nL 334.056565 82.948532 \nL 334.108755 83.286273 \nL 334.160946 83.157911 \nL 334.317517 83.174333 \nL 334.474089 83.176142 \nL 334.995994 83.160744 \nL 336.039803 83.140466 \nL 336.144184 82.284882 \nL 336.196375 82.339256 \nL 336.352946 83.622935 \nL 336.509518 82.986603 \nL 336.666089 83.443734 \nL 336.77047 82.409539 \nL 336.822661 83.069348 \nL 336.874851 83.029598 \nL 336.927042 83.694936 \nL 336.979232 83.25405 \nL 337.135804 83.239434 \nL 337.187994 83.805875 \nL 337.240185 83.17105 \nL 337.292375 83.178944 \nL 337.344566 82.869506 \nL 337.448947 83.531106 \nL 337.501137 82.914974 \nL 337.553328 83.380705 \nL 337.657709 82.829562 \nL 337.81428 83.686343 \nL 337.970852 83.073082 \nL 338.075233 83.321887 \nL 338.127423 83.100626 \nL 338.179614 83.28786 \nL 338.231804 83.797519 \nL 338.388376 82.691059 \nL 338.440566 83.302022 \nL 338.492757 82.848001 \nL 338.649328 83.771643 \nL 338.753709 82.845869 \nL 338.8059 82.880088 \nL 338.910281 83.299733 \nL 339.014662 83.124184 \nL 339.119043 82.908409 \nL 339.275614 83.498441 \nL 339.327805 82.911947 \nL 339.379995 83.728824 \nL 339.432186 83.28733 \nL 339.484376 82.821369 \nL 339.536567 83.220303 \nL 339.640948 83.633573 \nL 339.693138 83.581303 \nL 339.797519 83.210756 \nL 339.84971 83.248573 \nL 339.9019 83.41701 \nL 339.954091 82.770219 \nL 340.006281 82.846867 \nL 340.162853 83.800934 \nL 340.319424 83.348783 \nL 340.371615 83.419064 \nL 340.423805 83.706146 \nL 340.475996 82.983225 \nL 340.580376 83.007964 \nL 340.632567 83.391189 \nL 340.684757 82.797941 \nL 340.736948 82.850455 \nL 340.841329 82.967687 \nL 340.94571 82.837654 \nL 340.9979 83.120799 \nL 341.102281 83.089983 \nL 341.258853 83.857183 \nL 341.415424 82.903041 \nL 341.571996 83.325285 \nL 341.676377 83.129765 \nL 341.780758 82.99056 \nL 341.885139 83.463975 \nL 341.937329 82.753391 \nL 341.98952 83.053326 \nL 342.04171 83.113757 \nL 342.146091 83.968825 \nL 342.198282 83.532451 \nL 342.250472 83.518046 \nL 342.302663 83.33623 \nL 342.354853 83.399419 \nL 342.407044 83.513856 \nL 342.563615 83.021152 \nL 342.615806 83.17979 \nL 342.667996 82.875148 \nL 342.720187 83.612308 \nL 342.772377 83.516107 \nL 342.928949 83.015147 \nL 343.08552 83.319025 \nL 343.137711 83.090162 \nL 343.189901 83.202895 \nL 343.242092 83.23229 \nL 343.294282 82.839959 \nL 343.450854 83.445421 \nL 343.555235 82.585475 \nL 343.607425 83.147947 \nL 343.711806 82.746663 \nL 343.763997 83.079258 \nL 343.816187 82.798947 \nL 343.920568 83.047226 \nL 343.972759 83.573924 \nL 344.024949 83.125025 \nL 344.07714 83.392805 \nL 344.12933 83.171323 \nL 344.233711 83.592626 \nL 344.390283 82.856464 \nL 344.442473 83.355808 \nL 344.494664 83.23671 \nL 344.546854 82.755949 \nL 344.599045 83.625643 \nL 344.651235 83.176627 \nL 344.703426 83.328657 \nL 344.755616 82.888275 \nL 344.807807 83.030587 \nL 344.964378 83.550697 \nL 345.016569 83.536948 \nL 345.12095 83.303168 \nL 345.17314 83.496231 \nL 345.277521 83.006392 \nL 345.329712 83.138944 \nL 345.434093 83.060705 \nL 345.486283 83.58217 \nL 345.538474 83.323878 \nL 345.642855 83.172798 \nL 345.695045 82.704332 \nL 345.747236 83.149212 \nL 345.799426 83.585164 \nL 345.851616 83.388339 \nL 345.903807 83.194847 \nL 346.060378 83.749113 \nL 346.26914 82.884596 \nL 346.425712 83.541361 \nL 346.477902 83.155134 \nL 346.530093 83.750914 \nL 346.582283 83.465376 \nL 346.634474 82.959855 \nL 346.686664 83.525493 \nL 346.895426 82.889161 \nL 346.947617 83.319513 \nL 347.051998 83.286977 \nL 347.156379 83.414946 \nL 347.208569 82.97746 \nL 347.31295 83.534934 \nL 347.365141 83.374213 \nL 347.417331 83.610317 \nL 347.573903 82.987237 \nL 347.626093 83.523093 \nL 347.678284 83.185525 \nL 347.782665 83.311204 \nL 347.991427 82.473581 \nL 348.043617 83.239423 \nL 348.095808 83.14875 \nL 348.147998 83.135181 \nL 348.200189 82.858392 \nL 348.252379 82.984693 \nL 348.35676 83.002379 \nL 348.513332 83.391422 \nL 348.565522 82.822841 \nL 348.617713 83.047058 \nL 348.878665 83.623445 \nL 349.087427 82.786655 \nL 349.191808 83.554928 \nL 349.243999 83.427131 \nL 349.296189 82.916109 \nL 349.34838 83.313316 \nL 349.40057 83.114161 \nL 349.452761 83.307435 \nL 349.504951 83.494274 \nL 349.557142 82.827413 \nL 349.609332 82.914258 \nL 349.765904 83.108554 \nL 349.870285 82.914909 \nL 349.922475 83.026253 \nL 349.974666 82.674029 \nL 350.026856 83.027579 \nL 350.079047 83.310841 \nL 350.131237 83.020982 \nL 350.183428 83.011818 \nL 350.235618 83.9817 \nL 350.287809 83.426246 \nL 350.39219 83.440911 \nL 350.548761 82.997816 \nL 350.757523 83.499057 \nL 350.809714 83.154751 \nL 350.861904 83.177591 \nL 350.914095 83.54342 \nL 350.966285 83.493411 \nL 351.175047 82.915958 \nL 351.279428 83.661028 \nL 351.331618 83.2116 \nL 351.435999 83.232908 \nL 351.48819 83.59317 \nL 351.592571 82.828506 \nL 351.644761 83.451041 \nL 351.696952 82.938058 \nL 351.749142 83.209173 \nL 351.853523 82.696396 \nL 352.010095 83.377566 \nL 352.166666 83.199237 \nL 352.271047 83.028698 \nL 352.323238 83.539718 \nL 352.375428 83.434631 \nL 352.427619 83.042894 \nL 352.479809 83.531086 \nL 352.58419 83.480632 \nL 352.636381 83.131474 \nL 352.740762 83.150949 \nL 352.845143 83.49404 \nL 353.001714 82.966107 \nL 353.106095 83.671131 \nL 353.210476 82.732772 \nL 353.262667 82.800702 \nL 353.419238 83.058901 \nL 353.471429 83.000279 \nL 353.523619 82.583214 \nL 353.57581 83.050909 \nL 353.628 83.222833 \nL 353.784572 82.751795 \nL 353.888953 83.369955 \nL 353.941143 83.358805 \nL 353.993334 83.506013 \nL 354.045524 83.442533 \nL 354.149905 83.398384 \nL 354.202096 83.611388 \nL 354.358667 82.784166 \nL 354.410858 83.492969 \nL 354.463048 83.324118 \nL 354.515239 82.887642 \nL 354.567429 83.631761 \nL 354.61962 83.131901 \nL 354.67181 83.192415 \nL 354.724001 83.004742 \nL 354.776191 83.213508 \nL 354.984953 82.871493 \nL 355.141525 83.380009 \nL 355.193715 83.497979 \nL 355.298096 83.002056 \nL 355.350287 83.117512 \nL 355.454668 83.56362 \nL 355.506858 83.146182 \nL 355.559049 83.486606 \nL 355.611239 83.241722 \nL 355.66343 83.514986 \nL 355.71562 83.621246 \nL 355.767811 83.198559 \nL 355.820001 83.781913 \nL 355.924382 82.91963 \nL 355.976573 83.01465 \nL 356.080954 83.464647 \nL 356.237525 82.881927 \nL 356.289716 83.288904 \nL 356.341906 82.980834 \nL 356.498477 83.132189 \nL 356.550668 83.035876 \nL 356.707239 83.357982 \nL 356.75943 83.466634 \nL 356.81162 82.929265 \nL 356.863811 83.267328 \nL 356.916001 83.195843 \nL 356.968192 82.749135 \nL 357.020382 82.90058 \nL 357.124763 83.409183 \nL 357.176954 82.870175 \nL 357.229144 83.077864 \nL 357.385716 83.484688 \nL 357.437906 83.211659 \nL 357.490097 83.322509 \nL 357.542287 83.448477 \nL 357.698859 82.978983 \nL 357.751049 83.615447 \nL 357.80324 83.588364 \nL 357.959811 83.01146 \nL 358.012002 83.283437 \nL 358.064192 82.786652 \nL 358.116383 82.93986 \nL 358.168573 83.149891 \nL 358.220764 82.839294 \nL 358.272954 83.415917 \nL 358.325145 83.128324 \nL 358.429526 82.881124 \nL 358.481716 83.354454 \nL 358.533907 83.123659 \nL 358.586097 82.963817 \nL 358.638288 83.088492 \nL 358.690478 83.053355 \nL 358.742669 83.42771 \nL 358.84705 83.408674 \nL 358.89924 82.667161 \nL 358.951431 83.334794 \nL 359.003621 83.46122 \nL 359.055812 83.108173 \nL 359.108002 83.417827 \nL 359.160193 83.215144 \nL 359.212383 83.423215 \nL 359.264574 83.410856 \nL 359.421145 82.652322 \nL 359.473336 82.932981 \nL 359.577717 83.518062 \nL 359.682098 83.08514 \nL 359.734288 83.318828 \nL 359.786479 83.067305 \nL 359.89086 83.503895 \nL 359.94305 83.062838 \nL 360.047431 83.111734 \nL 360.151812 83.246785 \nL 360.308384 82.734614 \nL 360.464955 83.505515 \nL 360.569336 82.719726 \nL 360.621527 83.117967 \nL 360.673717 82.856043 \nL 360.725908 83.045023 \nL 360.882479 83.109761 \nL 361.039051 83.36796 \nL 361.091241 83.196272 \nL 361.143432 83.45337 \nL 361.195622 83.358169 \nL 361.352194 83.20725 \nL 361.404384 83.289874 \nL 361.456575 83.651718 \nL 361.508765 82.97728 \nL 361.560956 83.3879 \nL 361.613146 83.436585 \nL 361.769718 82.77836 \nL 361.821908 83.240192 \nL 361.874098 83.129994 \nL 361.926289 83.169884 \nL 361.978479 83.078271 \nL 362.03067 82.845826 \nL 362.187241 83.410634 \nL 362.291622 82.749054 \nL 362.343813 83.141163 \nL 362.396003 82.824288 \nL 362.500384 83.281517 \nL 362.552575 83.248131 \nL 362.656956 82.925822 \nL 362.709146 83.060925 \nL 362.761337 83.266723 \nL 362.813527 82.925963 \nL 362.865718 83.221763 \nL 362.917908 83.219096 \nL 362.970099 82.493147 \nL 363.022289 83.031777 \nL 363.07448 82.995938 \nL 363.12667 83.178859 \nL 363.178861 83.121947 \nL 363.283242 83.122487 \nL 363.387623 83.239154 \nL 363.439813 82.992994 \nL 363.492004 83.267219 \nL 363.544194 83.498703 \nL 363.596385 83.430548 \nL 363.648575 83.329964 \nL 363.700766 83.540401 \nL 363.857337 82.880592 \nL 363.909528 83.463804 \nL 363.961718 83.389845 \nL 364.11829 82.933109 \nL 364.17048 83.59173 \nL 364.222671 83.018887 \nL 364.274861 83.285876 \nL 364.327052 83.207149 \nL 364.379242 82.881135 \nL 364.535814 83.420869 \nL 364.692385 83.097268 \nL 364.796766 83.235551 \nL 364.901147 82.740363 \nL 364.953338 83.031558 \nL 365.005528 82.999327 \nL 365.057719 82.969765 \nL 365.109909 83.45375 \nL 365.1621 82.992911 \nL 365.21429 83.317925 \nL 365.266481 83.165713 \nL 365.370862 83.004771 \nL 365.423052 83.102022 \nL 365.475243 83.506911 \nL 365.527433 83.134353 \nL 365.631814 82.982955 \nL 365.736195 83.298996 \nL 365.788386 83.258919 \nL 365.997148 82.952681 \nL 366.049338 83.031008 \nL 366.153719 83.398712 \nL 366.20591 82.965325 \nL 366.2581 83.549467 \nL 366.310291 82.960279 \nL 366.414672 83.684782 \nL 366.466862 83.001081 \nL 366.571243 83.030016 \nL 366.623434 83.450268 \nL 366.727815 82.790874 \nL 366.780005 83.348826 \nL 366.832196 83.169348 \nL 366.884386 83.262078 \nL 366.936577 83.190622 \nL 366.988767 82.843642 \nL 367.040958 83.180016 \nL 367.145338 82.954596 \nL 367.30191 83.310281 \nL 367.3541 82.730619 \nL 367.406291 82.897908 \nL 367.458481 83.115149 \nL 367.510672 82.673195 \nL 367.562862 83.043509 \nL 367.615053 82.970581 \nL 367.719434 83.245405 \nL 367.771624 83.201912 \nL 367.876005 83.015337 \nL 367.928196 83.170186 \nL 367.980386 83.419508 \nL 368.032577 83.222356 \nL 368.136958 82.986923 \nL 368.241339 83.357764 \nL 368.293529 82.828053 \nL 368.34572 83.328599 \nL 368.39791 83.041845 \nL 368.450101 83.282708 \nL 368.502291 83.24782 \nL 368.554482 82.672702 \nL 368.606672 83.002399 \nL 368.867625 83.358254 \nL 368.919815 83.107319 \nL 368.972006 83.345618 \nL 369.024196 83.384857 \nL 369.180768 83.151412 \nL 369.285149 83.229224 \nL 369.337339 83.029601 \nL 369.38953 83.818646 \nL 369.44172 83.3026 \nL 369.598292 83.122206 \nL 369.702673 83.341675 \nL 369.754863 83.232073 \nL 369.807054 82.82707 \nL 369.859244 83.152495 \nL 369.963625 83.417055 \nL 370.120197 83.132889 \nL 370.328959 83.740232 \nL 370.48553 83.291669 \nL 370.537721 83.214025 \nL 370.589911 83.346673 \nL 370.642102 83.243037 \nL 370.694292 83.25939 \nL 370.746483 82.766448 \nL 370.798673 83.35723 \nL 370.850864 82.994268 \nL 370.903054 82.947252 \nL 370.955245 83.344426 \nL 371.007435 83.125647 \nL 371.059626 83.254612 \nL 371.164007 82.735818 \nL 371.216197 82.852974 \nL 371.372769 83.439391 \nL 371.424959 82.990464 \nL 371.52934 83.031069 \nL 371.581531 83.278046 \nL 371.633721 83.17899 \nL 371.685912 83.092582 \nL 371.738102 83.473866 \nL 371.790293 82.844467 \nL 371.842483 83.359732 \nL 371.946864 83.034493 \nL 372.051245 83.461702 \nL 372.103436 83.385107 \nL 372.260007 83.010245 \nL 372.312198 83.078532 \nL 372.364388 83.452295 \nL 372.416579 83.163009 \nL 372.468769 82.91476 \nL 372.520959 83.454784 \nL 372.57315 83.295851 \nL 372.62534 83.155552 \nL 372.729721 83.119795 \nL 372.781912 83.689209 \nL 372.834102 82.916963 \nL 372.886293 83.398081 \nL 372.990674 83.1022 \nL 373.042864 83.815982 \nL 373.095055 83.487646 \nL 373.199436 83.5048 \nL 373.251626 82.919064 \nL 373.356007 83.389122 \nL 373.408198 83.291546 \nL 373.512579 82.641139 \nL 373.564769 83.422468 \nL 373.61696 83.185151 \nL 373.773531 82.526676 \nL 373.825722 83.198372 \nL 373.930103 83.111178 \nL 374.034484 83.206255 \nL 374.086674 83.128709 \nL 374.243246 83.168151 \nL 374.504198 83.159485 \nL 375.861151 83.106299 \nL 375.965532 82.779658 \nL 376.017723 83.247134 \nL 376.069913 83.230106 \nL 376.122104 82.765549 \nL 376.174294 83.197129 \nL 376.278675 83.009916 \nL 376.330866 82.875785 \nL 376.383056 82.948544 \nL 376.435247 83.316313 \nL 376.539628 83.296185 \nL 376.591818 83.263942 \nL 376.644009 83.046029 \nL 376.80058 83.636616 \nL 376.904961 83.656151 \nL 376.957152 83.154879 \nL 377.009342 82.908247 \nL 377.061533 83.346538 \nL 377.113723 83.265579 \nL 377.165914 83.189465 \nL 377.218104 83.265651 \nL 377.374676 83.257006 \nL 377.479057 83.418052 \nL 377.531247 83.259184 \nL 377.583438 83.228462 \nL 377.635628 83.359309 \nL 377.687819 82.88096 \nL 377.740009 83.214524 \nL 377.7922 83.235535 \nL 377.84439 83.452662 \nL 377.948771 83.067745 \nL 378.000961 83.274365 \nL 378.157533 82.796922 \nL 378.418485 83.268875 \nL 378.470676 83.216346 \nL 378.522866 82.84609 \nL 378.575057 82.97565 \nL 378.627247 83.401607 \nL 378.679438 83.267824 \nL 378.731628 83.039837 \nL 378.783819 83.554454 \nL 378.836009 83.16886 \nL 378.8882 83.3606 \nL 378.992581 82.865599 \nL 379.149152 83.323546 \nL 379.357914 82.902193 \nL 379.410105 83.35082 \nL 379.462295 83.222228 \nL 379.618867 82.709097 \nL 379.723248 83.231484 \nL 379.775438 82.411743 \nL 379.827629 83.027224 \nL 379.879819 82.949806 \nL 379.93201 83.149836 \nL 379.9842 82.885581 \nL 380.088581 83.286926 \nL 380.140772 82.622122 \nL 380.192962 83.090988 \nL 380.245153 83.26611 \nL 380.349534 82.985878 \nL 380.506105 83.207611 \nL 380.558296 83.121861 \nL 380.610486 83.463393 \nL 380.662677 82.992034 \nL 380.714867 83.430982 \nL 380.767058 83.713235 \nL 380.819248 82.876277 \nL 380.871439 83.313579 \nL 380.923629 83.056294 \nL 380.97582 83.238559 \nL 381.132391 83.358145 \nL 381.184582 82.995083 \nL 381.236772 83.369788 \nL 381.288963 83.458444 \nL 381.445534 83.007666 \nL 381.602106 83.290569 \nL 381.654296 83.206822 \nL 381.706487 82.831755 \nL 381.758677 83.23102 \nL 381.810868 83.392035 \nL 381.863058 82.852325 \nL 381.915249 83.321932 \nL 381.967439 83.211098 \nL 382.01963 83.458929 \nL 382.07182 83.331863 \nL 382.124011 83.222106 \nL 382.176201 83.691284 \nL 382.228392 83.332243 \nL 382.384963 82.914237 \nL 382.489344 83.296727 \nL 382.541535 83.138866 \nL 382.593725 82.948979 \nL 382.645916 83.04754 \nL 382.698106 83.37866 \nL 382.750297 83.000204 \nL 382.802487 82.952471 \nL 382.854678 83.326156 \nL 383.011249 82.721671 \nL 383.06344 83.40535 \nL 383.11563 83.060842 \nL 383.16782 82.826608 \nL 383.220011 83.36719 \nL 383.272201 83.06223 \nL 383.324392 83.225102 \nL 383.376582 83.082323 \nL 383.428773 82.981486 \nL 383.480963 83.119617 \nL 383.585344 83.381838 \nL 383.637535 83.251553 \nL 383.689725 83.171015 \nL 383.741916 83.388344 \nL 383.794106 83.031222 \nL 383.846297 83.236918 \nL 383.898487 83.393347 \nL 384.055059 83.024895 \nL 384.107249 83.297188 \nL 384.15944 83.253326 \nL 384.21163 83.201684 \nL 384.263821 83.367704 \nL 384.316011 82.731843 \nL 384.368202 83.156877 \nL 384.420392 83.066544 \nL 384.472583 83.208377 \nL 384.524773 83.07231 \nL 384.576964 83.164831 \nL 384.629154 83.065991 \nL 384.681345 82.974063 \nL 384.785726 83.519686 \nL 384.837916 83.217473 \nL 384.890107 83.147747 \nL 384.942297 83.326305 \nL 385.046678 83.359791 \nL 385.098869 83.087771 \nL 385.20325 83.18521 \nL 385.25544 83.095349 \nL 385.359821 83.072186 \nL 385.412012 83.422279 \nL 385.516393 82.955259 \nL 385.568583 82.990443 \nL 385.620774 83.040853 \nL 385.672964 83.252195 \nL 385.725155 83.035141 \nL 385.777345 82.951564 \nL 385.829536 83.296262 \nL 385.881726 83.090597 \nL 385.986107 83.248125 \nL 386.038298 82.953138 \nL 386.090488 83.13628 \nL 386.142679 83.179511 \nL 386.194869 83.455879 \nL 386.24706 83.220216 \nL 386.455822 83.314826 \nL 386.508012 83.176137 \nL 386.560203 83.379519 \nL 386.612393 83.038375 \nL 386.664584 83.110211 \nL 386.716774 83.298707 \nL 386.821155 82.951683 \nL 386.977727 83.171885 \nL 387.029917 83.182322 \nL 387.186489 82.808406 \nL 387.29087 83.276514 \nL 387.34306 83.001974 \nL 387.395251 83.224565 \nL 387.447441 83.099687 \nL 387.499632 83.199545 \nL 387.604013 83.147144 \nL 387.708394 83.015923 \nL 387.760584 83.074745 \nL 387.864965 83.138146 \nL 387.917156 83.320568 \nL 387.969346 83.216016 \nL 388.073727 83.055999 \nL 388.125918 83.113897 \nL 388.178108 83.449941 \nL 388.230299 83.060624 \nL 388.282489 83.156556 \nL 388.439061 83.22802 \nL 388.491251 83.133541 \nL 388.647822 83.279341 \nL 388.752203 83.116545 \nL 388.804394 83.277231 \nL 388.856584 83.227026 \nL 388.908775 83.118717 \nL 388.960965 83.224925 \nL 389.065346 83.363943 \nL 389.274108 82.871897 \nL 389.326299 83.221851 \nL 389.378489 83.17531 \nL 389.43068 82.994191 \nL 389.48287 83.131203 \nL 389.535061 83.065126 \nL 389.587251 83.235507 \nL 389.639442 83.097832 \nL 389.691632 83.161696 \nL 389.743823 83.114286 \nL 389.796013 82.898986 \nL 389.848204 83.152224 \nL 389.900394 83.257107 \nL 389.952585 83.178393 \nL 390.109156 83.351895 \nL 390.161347 83.06624 \nL 390.213537 83.141001 \nL 390.265728 83.209106 \nL 390.317918 83.067981 \nL 390.370109 83.23714 \nL 390.578871 83.042458 \nL 390.631061 83.236232 \nL 390.683252 83.013721 \nL 390.735442 83.142785 \nL 390.787633 83.119689 \nL 390.839823 83.023626 \nL 390.892014 83.141861 \nL 391.048585 83.083789 \nL 391.152966 83.339759 \nL 391.205157 83.160897 \nL 391.257347 83.03905 \nL 391.309538 83.316221 \nL 391.413919 83.286879 \nL 391.622681 83.063567 \nL 391.674871 83.400516 \nL 391.727062 82.998858 \nL 391.779252 83.180147 \nL 391.935824 83.25013 \nL 392.144586 83.271852 \nL 392.248967 83.239258 \nL 392.405538 83.011202 \nL 392.457729 83.204344 \nL 392.666491 83.015267 \nL 392.718681 83.352458 \nL 392.823062 83.315647 \nL 392.875253 83.333106 \nL 392.927443 83.122923 \nL 392.979634 83.254276 \nL 393.084015 83.201269 \nL 393.240586 83.36034 \nL 393.344967 83.133472 \nL 393.397158 83.39202 \nL 393.449348 83.13887 \nL 393.501539 83.09229 \nL 393.65811 83.282545 \nL 393.814681 83.071837 \nL 393.919062 83.259233 \nL 393.971253 83.183389 \nL 394.075634 83.298391 \nL 394.232205 83.097234 \nL 394.284396 83.311789 \nL 394.336586 83.26744 \nL 394.388777 83.179917 \nL 394.440967 83.398969 \nL 394.493158 82.993383 \nL 394.545348 83.166154 \nL 394.75411 83.057381 \nL 394.806301 83.310509 \nL 394.858491 83.030298 \nL 394.910682 83.222524 \nL 394.962872 83.182545 \nL 395.015063 83.017404 \nL 395.067253 83.176811 \nL 395.328206 83.114275 \nL 395.484777 83.272206 \nL 395.536968 82.909379 \nL 395.589158 83.109598 \nL 395.902301 83.150953 \nL 396.058873 83.160387 \nL 396.163254 83.253286 \nL 396.267635 83.035412 \nL 396.319825 83.059616 \nL 396.372016 83.28244 \nL 396.424206 83.053336 \nL 396.476397 83.058941 \nL 396.528587 83.245749 \nL 396.580778 83.053354 \nL 396.632968 83.198359 \nL 396.685159 83.051024 \nL 396.737349 83.015538 \nL 396.893921 83.342786 \nL 396.946111 83.09477 \nL 396.998302 83.179593 \nL 397.207064 83.143473 \nL 397.311445 82.984644 \nL 397.363635 83.137109 \nL 397.415826 83.333137 \nL 397.520207 83.050636 \nL 397.676778 83.205571 \nL 397.83335 83.032553 \nL 397.88554 82.969414 \nL 397.937731 83.256021 \nL 397.989921 83.111918 \nL 398.042112 83.108886 \nL 398.094302 83.228736 \nL 398.146493 83.169642 \nL 398.250874 83.153323 \nL 398.303064 82.977611 \nL 398.355255 83.092965 \nL 398.459636 83.241608 \nL 398.564017 83.014485 \nL 398.720588 83.253939 \nL 398.87716 83.031064 \nL 398.92935 83.079897 \nL 398.981541 83.357255 \nL 399.033731 83.062968 \nL 399.138112 83.121882 \nL 399.190302 83.02818 \nL 399.242493 83.157697 \nL 399.399064 83.069153 \nL 399.503445 83.294716 \nL 399.607826 83.089223 \nL 399.660017 83.299653 \nL 399.764398 83.260692 \nL 399.920969 83.135491 \nL 399.97316 83.137009 \nL 400.02535 83.35211 \nL 400.077541 83.131317 \nL 400.181922 83.206697 \nL 400.390684 83.114492 \nL 400.651636 83.039018 \nL 400.703827 83.366215 \nL 400.756017 83.109068 \nL 401.01697 83.077052 \nL 401.06916 83.266253 \nL 401.121351 83.080197 \nL 401.225732 83.269362 \nL 401.277922 83.239385 \nL 401.382303 83.053436 \nL 401.591065 83.202027 \nL 401.695446 83.01218 \nL 401.747637 83.209427 \nL 401.799827 83.073564 \nL 401.956399 83.130742 \nL 402.06078 83.033574 \nL 402.11297 83.224822 \nL 402.165161 83.030621 \nL 402.217351 83.008499 \nL 402.269542 83.291967 \nL 402.321732 83.245295 \nL 402.478304 83.068086 \nL 402.582685 83.236407 \nL 402.634875 83.178105 \nL 402.687066 83.170658 \nL 402.739256 82.998272 \nL 402.843637 83.285991 \nL 402.948018 83.036865 \nL 403.000209 83.098607 \nL 403.10459 83.058812 \nL 403.15678 83.208318 \nL 403.208971 83.012344 \nL 403.261161 83.097827 \nL 403.417733 83.264398 \nL 403.574304 83.078483 \nL 403.626495 83.037568 \nL 403.678685 83.307146 \nL 403.730876 83.101565 \nL 403.783066 82.979728 \nL 403.835257 83.196738 \nL 403.887447 83.16951 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-width:0.5;\"/>\n   </g>\n   <g id=\"patch_8\">\n    <path d=\"M 239.542187 120.52 \nL 239.542187 49.92 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n   <g id=\"patch_9\">\n    <path d=\"M 411.713412 120.52 \nL 411.713412 49.92 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n   <g id=\"patch_10\">\n    <path d=\"M 239.542188 120.52 \nL 411.713412 120.52 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n   <g id=\"patch_11\">\n    <path d=\"M 239.542188 49.92 \nL 411.713412 49.92 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n  </g>\n  <g id=\"text_15\">\n   <!-- BG.ACR..DP.0215954.npz -->\n   <g transform=\"translate(137.273125 16.318125)scale(0.12 -0.12)\">\n    <defs>\n     <path d=\"M 19.671875 34.8125 \nL 19.671875 8.109375 \nL 35.5 8.109375 \nQ 43.453125 8.109375 47.28125 11.40625 \nQ 51.125 14.703125 51.125 21.484375 \nQ 51.125 28.328125 47.28125 31.5625 \nQ 43.453125 34.8125 35.5 34.8125 \nz\nM 19.671875 64.796875 \nL 19.671875 42.828125 \nL 34.28125 42.828125 \nQ 41.5 42.828125 45.03125 45.53125 \nQ 48.578125 48.25 48.578125 53.8125 \nQ 48.578125 59.328125 45.03125 62.0625 \nQ 41.5 64.796875 34.28125 64.796875 \nz\nM 9.8125 72.90625 \nL 35.015625 72.90625 \nQ 46.296875 72.90625 52.390625 68.21875 \nQ 58.5 63.53125 58.5 54.890625 \nQ 58.5 48.1875 55.375 44.234375 \nQ 52.25 40.28125 46.1875 39.3125 \nQ 53.46875 37.75 57.5 32.78125 \nQ 61.53125 27.828125 61.53125 20.40625 \nQ 61.53125 10.640625 54.890625 5.3125 \nQ 48.25 0 35.984375 0 \nL 9.8125 0 \nz\n\" id=\"DejaVuSans-66\"/>\n     <path d=\"M 59.515625 10.40625 \nL 59.515625 29.984375 \nL 43.40625 29.984375 \nL 43.40625 38.09375 \nL 69.28125 38.09375 \nL 69.28125 6.78125 \nQ 63.578125 2.734375 56.6875 0.65625 \nQ 49.8125 -1.421875 42 -1.421875 \nQ 24.90625 -1.421875 15.25 8.5625 \nQ 5.609375 18.5625 5.609375 36.375 \nQ 5.609375 54.25 15.25 64.234375 \nQ 24.90625 74.21875 42 74.21875 \nQ 49.125 74.21875 55.546875 72.453125 \nQ 61.96875 70.703125 67.390625 67.28125 \nL 67.390625 56.78125 \nQ 61.921875 61.421875 55.765625 63.765625 \nQ 49.609375 66.109375 42.828125 66.109375 \nQ 29.4375 66.109375 22.71875 58.640625 \nQ 16.015625 51.171875 16.015625 36.375 \nQ 16.015625 21.625 22.71875 14.15625 \nQ 29.4375 6.6875 42.828125 6.6875 \nQ 48.046875 6.6875 52.140625 7.59375 \nQ 56.25 8.5 59.515625 10.40625 \nz\n\" id=\"DejaVuSans-71\"/>\n     <path d=\"M 10.6875 12.40625 \nL 21 12.40625 \nL 21 0 \nL 10.6875 0 \nz\n\" id=\"DejaVuSans-46\"/>\n     <path d=\"M 34.1875 63.1875 \nL 20.796875 26.90625 \nL 47.609375 26.90625 \nz\nM 28.609375 72.90625 \nL 39.796875 72.90625 \nL 67.578125 0 \nL 57.328125 0 \nL 50.6875 18.703125 \nL 17.828125 18.703125 \nL 11.1875 0 \nL 0.78125 0 \nz\n\" id=\"DejaVuSans-65\"/>\n     <path d=\"M 64.40625 67.28125 \nL 64.40625 56.890625 \nQ 59.421875 61.53125 53.78125 63.8125 \nQ 48.140625 66.109375 41.796875 66.109375 \nQ 29.296875 66.109375 22.65625 58.46875 \nQ 16.015625 50.828125 16.015625 36.375 \nQ 16.015625 21.96875 22.65625 14.328125 \nQ 29.296875 6.6875 41.796875 6.6875 \nQ 48.140625 6.6875 53.78125 8.984375 \nQ 59.421875 11.28125 64.40625 15.921875 \nL 64.40625 5.609375 \nQ 59.234375 2.09375 53.4375 0.328125 \nQ 47.65625 -1.421875 41.21875 -1.421875 \nQ 24.65625 -1.421875 15.125 8.703125 \nQ 5.609375 18.84375 5.609375 36.375 \nQ 5.609375 53.953125 15.125 64.078125 \nQ 24.65625 74.21875 41.21875 74.21875 \nQ 47.75 74.21875 53.53125 72.484375 \nQ 59.328125 70.75 64.40625 67.28125 \nz\n\" id=\"DejaVuSans-67\"/>\n     <path d=\"M 44.390625 34.1875 \nQ 47.5625 33.109375 50.5625 29.59375 \nQ 53.5625 26.078125 56.59375 19.921875 \nL 66.609375 0 \nL 56 0 \nL 46.6875 18.703125 \nQ 43.0625 26.03125 39.671875 28.421875 \nQ 36.28125 30.8125 30.421875 30.8125 \nL 19.671875 30.8125 \nL 19.671875 0 \nL 9.8125 0 \nL 9.8125 72.90625 \nL 32.078125 72.90625 \nQ 44.578125 72.90625 50.734375 67.671875 \nQ 56.890625 62.453125 56.890625 51.90625 \nQ 56.890625 45.015625 53.6875 40.46875 \nQ 50.484375 35.9375 44.390625 34.1875 \nz\nM 19.671875 64.796875 \nL 19.671875 38.921875 \nL 32.078125 38.921875 \nQ 39.203125 38.921875 42.84375 42.21875 \nQ 46.484375 45.515625 46.484375 51.90625 \nQ 46.484375 58.296875 42.84375 61.546875 \nQ 39.203125 64.796875 32.078125 64.796875 \nz\n\" id=\"DejaVuSans-82\"/>\n     <path d=\"M 19.671875 64.796875 \nL 19.671875 8.109375 \nL 31.59375 8.109375 \nQ 46.6875 8.109375 53.6875 14.9375 \nQ 60.6875 21.78125 60.6875 36.53125 \nQ 60.6875 51.171875 53.6875 57.984375 \nQ 46.6875 64.796875 31.59375 64.796875 \nz\nM 9.8125 72.90625 \nL 30.078125 72.90625 \nQ 51.265625 72.90625 61.171875 64.09375 \nQ 71.09375 55.28125 71.09375 36.53125 \nQ 71.09375 17.671875 61.125 8.828125 \nQ 51.171875 0 30.078125 0 \nL 9.8125 0 \nz\n\" id=\"DejaVuSans-68\"/>\n     <path d=\"M 19.671875 64.796875 \nL 19.671875 37.40625 \nL 32.078125 37.40625 \nQ 38.96875 37.40625 42.71875 40.96875 \nQ 46.484375 44.53125 46.484375 51.125 \nQ 46.484375 57.671875 42.71875 61.234375 \nQ 38.96875 64.796875 32.078125 64.796875 \nz\nM 9.8125 72.90625 \nL 32.078125 72.90625 \nQ 44.34375 72.90625 50.609375 67.359375 \nQ 56.890625 61.8125 56.890625 51.125 \nQ 56.890625 40.328125 50.609375 34.8125 \nQ 44.34375 29.296875 32.078125 29.296875 \nL 19.671875 29.296875 \nL 19.671875 0 \nL 9.8125 0 \nz\n\" id=\"DejaVuSans-80\"/>\n     <path d=\"M 10.796875 72.90625 \nL 49.515625 72.90625 \nL 49.515625 64.59375 \nL 19.828125 64.59375 \nL 19.828125 46.734375 \nQ 21.96875 47.46875 24.109375 47.828125 \nQ 26.265625 48.1875 28.421875 48.1875 \nQ 40.625 48.1875 47.75 41.5 \nQ 54.890625 34.8125 54.890625 23.390625 \nQ 54.890625 11.625 47.5625 5.09375 \nQ 40.234375 -1.421875 26.90625 -1.421875 \nQ 22.3125 -1.421875 17.546875 -0.640625 \nQ 12.796875 0.140625 7.71875 1.703125 \nL 7.71875 11.625 \nQ 12.109375 9.234375 16.796875 8.0625 \nQ 21.484375 6.890625 26.703125 6.890625 \nQ 35.15625 6.890625 40.078125 11.328125 \nQ 45.015625 15.765625 45.015625 23.390625 \nQ 45.015625 31 40.078125 35.4375 \nQ 35.15625 39.890625 26.703125 39.890625 \nQ 22.75 39.890625 18.8125 39.015625 \nQ 14.890625 38.140625 10.796875 36.28125 \nz\n\" id=\"DejaVuSans-53\"/>\n     <path d=\"M 10.984375 1.515625 \nL 10.984375 10.5 \nQ 14.703125 8.734375 18.5 7.8125 \nQ 22.3125 6.890625 25.984375 6.890625 \nQ 35.75 6.890625 40.890625 13.453125 \nQ 46.046875 20.015625 46.78125 33.40625 \nQ 43.953125 29.203125 39.59375 26.953125 \nQ 35.25 24.703125 29.984375 24.703125 \nQ 19.046875 24.703125 12.671875 31.3125 \nQ 6.296875 37.9375 6.296875 49.421875 \nQ 6.296875 60.640625 12.9375 67.421875 \nQ 19.578125 74.21875 30.609375 74.21875 \nQ 43.265625 74.21875 49.921875 64.515625 \nQ 56.59375 54.828125 56.59375 36.375 \nQ 56.59375 19.140625 48.40625 8.859375 \nQ 40.234375 -1.421875 26.421875 -1.421875 \nQ 22.703125 -1.421875 18.890625 -0.6875 \nQ 15.09375 0.046875 10.984375 1.515625 \nz\nM 30.609375 32.421875 \nQ 37.25 32.421875 41.125 36.953125 \nQ 45.015625 41.5 45.015625 49.421875 \nQ 45.015625 57.28125 41.125 61.84375 \nQ 37.25 66.40625 30.609375 66.40625 \nQ 23.96875 66.40625 20.09375 61.84375 \nQ 16.21875 57.28125 16.21875 49.421875 \nQ 16.21875 41.5 20.09375 36.953125 \nQ 23.96875 32.421875 30.609375 32.421875 \nz\n\" id=\"DejaVuSans-57\"/>\n     <path d=\"M 54.890625 33.015625 \nL 54.890625 0 \nL 45.90625 0 \nL 45.90625 32.71875 \nQ 45.90625 40.484375 42.875 44.328125 \nQ 39.84375 48.1875 33.796875 48.1875 \nQ 26.515625 48.1875 22.3125 43.546875 \nQ 18.109375 38.921875 18.109375 30.90625 \nL 18.109375 0 \nL 9.078125 0 \nL 9.078125 54.6875 \nL 18.109375 54.6875 \nL 18.109375 46.1875 \nQ 21.34375 51.125 25.703125 53.5625 \nQ 30.078125 56 35.796875 56 \nQ 45.21875 56 50.046875 50.171875 \nQ 54.890625 44.34375 54.890625 33.015625 \nz\n\" id=\"DejaVuSans-110\"/>\n     <path d=\"M 18.109375 8.203125 \nL 18.109375 -20.796875 \nL 9.078125 -20.796875 \nL 9.078125 54.6875 \nL 18.109375 54.6875 \nL 18.109375 46.390625 \nQ 20.953125 51.265625 25.265625 53.625 \nQ 29.59375 56 35.59375 56 \nQ 45.5625 56 51.78125 48.09375 \nQ 58.015625 40.1875 58.015625 27.296875 \nQ 58.015625 14.40625 51.78125 6.484375 \nQ 45.5625 -1.421875 35.59375 -1.421875 \nQ 29.59375 -1.421875 25.265625 0.953125 \nQ 20.953125 3.328125 18.109375 8.203125 \nz\nM 48.6875 27.296875 \nQ 48.6875 37.203125 44.609375 42.84375 \nQ 40.53125 48.484375 33.40625 48.484375 \nQ 26.265625 48.484375 22.1875 42.84375 \nQ 18.109375 37.203125 18.109375 27.296875 \nQ 18.109375 17.390625 22.1875 11.75 \nQ 26.265625 6.109375 33.40625 6.109375 \nQ 40.53125 6.109375 44.609375 11.75 \nQ 48.6875 17.390625 48.6875 27.296875 \nz\n\" id=\"DejaVuSans-112\"/>\n     <path d=\"M 5.515625 54.6875 \nL 48.1875 54.6875 \nL 48.1875 46.484375 \nL 14.40625 7.171875 \nL 48.1875 7.171875 \nL 48.1875 0 \nL 4.296875 0 \nL 4.296875 8.203125 \nL 38.09375 47.515625 \nL 5.515625 47.515625 \nz\n\" id=\"DejaVuSans-122\"/>\n    </defs>\n    <use xlink:href=\"#DejaVuSans-66\"/>\n    <use x=\"66.853516\" xlink:href=\"#DejaVuSans-71\"/>\n    <use x=\"144.34375\" xlink:href=\"#DejaVuSans-46\"/>\n    <use x=\"176.130859\" xlink:href=\"#DejaVuSans-65\"/>\n    <use x=\"242.789062\" xlink:href=\"#DejaVuSans-67\"/>\n    <use x=\"312.613281\" xlink:href=\"#DejaVuSans-82\"/>\n    <use x=\"378.470703\" xlink:href=\"#DejaVuSans-46\"/>\n    <use x=\"410.257812\" xlink:href=\"#DejaVuSans-46\"/>\n    <use x=\"442.044922\" xlink:href=\"#DejaVuSans-68\"/>\n    <use x=\"519.046875\" xlink:href=\"#DejaVuSans-80\"/>\n    <use x=\"563.724609\" xlink:href=\"#DejaVuSans-46\"/>\n    <use x=\"595.511719\" xlink:href=\"#DejaVuSans-48\"/>\n    <use x=\"659.134766\" xlink:href=\"#DejaVuSans-50\"/>\n    <use x=\"722.757812\" xlink:href=\"#DejaVuSans-49\"/>\n    <use x=\"786.380859\" xlink:href=\"#DejaVuSans-53\"/>\n    <use x=\"850.003906\" xlink:href=\"#DejaVuSans-57\"/>\n    <use x=\"913.626953\" xlink:href=\"#DejaVuSans-53\"/>\n    <use x=\"977.25\" xlink:href=\"#DejaVuSans-52\"/>\n    <use x=\"1040.873047\" xlink:href=\"#DejaVuSans-46\"/>\n    <use x=\"1072.660156\" xlink:href=\"#DejaVuSans-110\"/>\n    <use x=\"1136.039062\" xlink:href=\"#DejaVuSans-112\"/>\n    <use x=\"1199.515625\" xlink:href=\"#DejaVuSans-122\"/>\n   </g>\n  </g>\n </g>\n <defs>\n  <clipPath id=\"p32d6c450f0\">\n   <rect height=\"70.6\" width=\"172.171224\" x=\"28.942188\" y=\"49.92\"/>\n  </clipPath>\n  <clipPath id=\"p6222620a97\">\n   <rect height=\"70.6\" width=\"172.171224\" x=\"239.542187\" y=\"49.92\"/>\n  </clipPath>\n </defs>\n</svg>\n",
      "image/png": "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tQ7ArWHttwL4GsEhn70AVgG4A0Bjp/0RAIuc+cUAnqliH0MRHD46OmybqQhecp0JYAGAXzptjwGYUen+5znrnhi+P6dtEYBHnPlkBI8kCp31swAsBHBlFX3+VaVllbfbBsAHzna2A7glrG1C2H5CU1j7AKc9fPrUaTsdwA/OdrMBLAPQN+y+PRE8witGcBhtbKU4P0fw/Fc+ghdp3FzDc/spgJGVnsv1NbTfDuCLSo/lHQgeLWUCeLBSW1Glx6CL269nTd6ejNSPDYpI/TmXhW8DcAwbdjGKSIiG9URExHNUnERExHM0rCciIp6jIycREfEcFScREfEcFScREfEcFScREfEcFScREfEcFScREfEcFScREfEcFScREfEcFScREfEcFScREfEcFScREfEcFScREfEcFScREfEcFScREfEcFScREfEcFScREfEcFScREfEcFScREfEc14qTmb1mZllmti5C21tsZrlm9u9q2qeaWWEk9iXiJcolSURuHjm9AeDKCG7vaQDDqmows74AWkVwXyJe8gaUS5JgXCtOJD8DsD98mZmd4nxq+9bMPjez/1eH7S0DUFB5uZk1QjDZHmxozCJepFySRHS02wFUMh3AKJJbzOw8AC8BuLSB27wbwHySu82swQGKxAnlksQ1zxQnM2sG4JcAZoe98Js4bf8DYGIVd8sg+esattkRwI0ABkQ0WBEPUy5JIvBMcUJwiDGX5NmVG0jOBTC3HtvsDaA7gB+dJG1qZj+S7N6QQEU8Trkkcc8zl5KTzAewzcxuBAALOquB21xAMolkMslkAMVKJkl0yiVJBG5eSv4vACsBnGpmO81sBIBbAYwwszUA1gO4tg7b+xzAbACXOdurdohCJJEolyQRGUm3YxAREanAM8N6IiIi5Vy5IKJdu3ZMTk52Y9cidfbtt9/uI3mC23FURbkk8aQuueRKcUpOTkZqaqobuxapMzP7ye0YqqNcknhSl1zSsJ6IiHiOilMMfPDBB5g1a5bbYYiIxA0VpxhYv3491q5d63YYIiJxQ8VJREQ8R8UpRkgiEAi4HYZIXNP/ZR45VJxiqFu3bm6HIBLXevTo4XYIEiMqTlHm9/vx8ccfw8zw00+evSJZJC6kp6fD7/frCOoIoOIUZcXFxfj8889DybRt2zaXIxKJb6NGjcK//13lL8hLAlFxirGhQ4e6HYJI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\n"
     },
     "metadata": {
      "needs_background": "light"
     }
    },
    {
     "output_type": "display_data",
     "data": {
      "text/plain": "<Figure size 432x144 with 2 Axes>",
      "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<!-- Created with matplotlib (https://matplotlib.org/) -->\n<svg height=\"144.398125pt\" version=\"1.1\" viewBox=\"0 0 433.405263 144.398125\" width=\"433.405263pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n <metadata>\n  <rdf:RDF xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" 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>2021-07-18T21:09:28.277177</dc:date>\n    <dc:format>image/svg+xml</dc:format>\n    <dc:creator>\n     <cc:Agent>\n      <dc:title>Matplotlib v3.3.2, 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-linecap:butt;stroke-linejoin:round;}</style>\n </defs>\n <g id=\"figure_1\">\n  <g id=\"patch_1\">\n   <path d=\"M 0 144.398125 \nL 433.405263 144.398125 \nL 433.405263 0 \nL 0 0 \nz\n\" style=\"fill:none;\"/>\n  </g>\n  <g id=\"axes_1\">\n   <g id=\"patch_2\">\n    <path d=\"M 38.482813 120.52 \nL 210.654037 120.52 \nL 210.654037 49.92 \nL 38.482813 49.92 \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 d=\"M 0 0 \nL 0 3.5 \n\" id=\"mdb113ebe91\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n      </defs>\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"46.308777\" xlink:href=\"#mdb113ebe91\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_1\">\n      <!-- 0 -->\n      <g transform=\"translate(43.127527 135.118437)scale(0.1 -0.1)\">\n       <defs>\n        <path d=\"M 31.78125 66.40625 \nQ 24.171875 66.40625 20.328125 58.90625 \nQ 16.5 51.421875 16.5 36.375 \nQ 16.5 21.390625 20.328125 13.890625 \nQ 24.171875 6.390625 31.78125 6.390625 \nQ 39.453125 6.390625 43.28125 13.890625 \nQ 47.125 21.390625 47.125 36.375 \nQ 47.125 51.421875 43.28125 58.90625 \nQ 39.453125 66.40625 31.78125 66.40625 \nz\nM 31.78125 74.21875 \nQ 44.046875 74.21875 50.515625 64.515625 \nQ 56.984375 54.828125 56.984375 36.375 \nQ 56.984375 17.96875 50.515625 8.265625 \nQ 44.046875 -1.421875 31.78125 -1.421875 \nQ 19.53125 -1.421875 13.0625 8.265625 \nQ 6.59375 17.96875 6.59375 36.375 \nQ 6.59375 54.828125 13.0625 64.515625 \nQ 19.53125 74.21875 31.78125 74.21875 \nz\n\" id=\"DejaVuSans-48\"/>\n       </defs>\n       <use xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"xtick_2\">\n     <g id=\"line2d_2\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"98.499272\" xlink:href=\"#mdb113ebe91\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_2\">\n      <!-- 1000 -->\n      <g transform=\"translate(85.774272 135.118437)scale(0.1 -0.1)\">\n       <defs>\n        <path d=\"M 12.40625 8.296875 \nL 28.515625 8.296875 \nL 28.515625 63.921875 \nL 10.984375 60.40625 \nL 10.984375 69.390625 \nL 28.421875 72.90625 \nL 38.28125 72.90625 \nL 38.28125 8.296875 \nL 54.390625 8.296875 \nL 54.390625 0 \nL 12.40625 0 \nz\n\" id=\"DejaVuSans-49\"/>\n       </defs>\n       <use xlink:href=\"#DejaVuSans-49\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"xtick_3\">\n     <g id=\"line2d_3\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"150.689767\" xlink:href=\"#mdb113ebe91\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_3\">\n      <!-- 2000 -->\n      <g transform=\"translate(137.964767 135.118437)scale(0.1 -0.1)\">\n       <defs>\n        <path d=\"M 19.1875 8.296875 \nL 53.609375 8.296875 \nL 53.609375 0 \nL 7.328125 0 \nL 7.328125 8.296875 \nQ 12.9375 14.109375 22.625 23.890625 \nQ 32.328125 33.6875 34.8125 36.53125 \nQ 39.546875 41.84375 41.421875 45.53125 \nQ 43.3125 49.21875 43.3125 52.78125 \nQ 43.3125 58.59375 39.234375 62.25 \nQ 35.15625 65.921875 28.609375 65.921875 \nQ 23.96875 65.921875 18.8125 64.3125 \nQ 13.671875 62.703125 7.8125 59.421875 \nL 7.8125 69.390625 \nQ 13.765625 71.78125 18.9375 73 \nQ 24.125 74.21875 28.421875 74.21875 \nQ 39.75 74.21875 46.484375 68.546875 \nQ 53.21875 62.890625 53.21875 53.421875 \nQ 53.21875 48.921875 51.53125 44.890625 \nQ 49.859375 40.875 45.40625 35.40625 \nQ 44.1875 33.984375 37.640625 27.21875 \nQ 31.109375 20.453125 19.1875 8.296875 \nz\n\" id=\"DejaVuSans-50\"/>\n       </defs>\n       <use xlink:href=\"#DejaVuSans-50\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"xtick_4\">\n     <g id=\"line2d_4\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"202.880263\" xlink:href=\"#mdb113ebe91\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_4\">\n      <!-- 3000 -->\n      <g transform=\"translate(190.155263 135.118437)scale(0.1 -0.1)\">\n       <defs>\n        <path d=\"M 40.578125 39.3125 \nQ 47.65625 37.796875 51.625 33 \nQ 55.609375 28.21875 55.609375 21.1875 \nQ 55.609375 10.40625 48.1875 4.484375 \nQ 40.765625 -1.421875 27.09375 -1.421875 \nQ 22.515625 -1.421875 17.65625 -0.515625 \nQ 12.796875 0.390625 7.625 2.203125 \nL 7.625 11.71875 \nQ 11.71875 9.328125 16.59375 8.109375 \nQ 21.484375 6.890625 26.8125 6.890625 \nQ 36.078125 6.890625 40.9375 10.546875 \nQ 45.796875 14.203125 45.796875 21.1875 \nQ 45.796875 27.640625 41.28125 31.265625 \nQ 36.765625 34.90625 28.71875 34.90625 \nL 20.21875 34.90625 \nL 20.21875 43.015625 \nL 29.109375 43.015625 \nQ 36.375 43.015625 40.234375 45.921875 \nQ 44.09375 48.828125 44.09375 54.296875 \nQ 44.09375 59.90625 40.109375 62.90625 \nQ 36.140625 65.921875 28.71875 65.921875 \nQ 24.65625 65.921875 20.015625 65.03125 \nQ 15.375 64.15625 9.8125 62.3125 \nL 9.8125 71.09375 \nQ 15.4375 72.65625 20.34375 73.4375 \nQ 25.25 74.21875 29.59375 74.21875 \nQ 40.828125 74.21875 47.359375 69.109375 \nQ 53.90625 64.015625 53.90625 55.328125 \nQ 53.90625 49.265625 50.4375 45.09375 \nQ 46.96875 40.921875 40.578125 39.3125 \nz\n\" id=\"DejaVuSans-51\"/>\n       </defs>\n       <use xlink:href=\"#DejaVuSans-51\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n   </g>\n   <g id=\"matplotlib.axis_2\">\n    <g id=\"ytick_1\">\n     <g id=\"line2d_5\">\n      <defs>\n       <path d=\"M 0 0 \nL -3.5 0 \n\" id=\"mf24712d37c\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n      </defs>\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"38.482813\" xlink:href=\"#mf24712d37c\" y=\"105.824694\"/>\n      </g>\n     </g>\n     <g id=\"text_5\">\n      <!-- −2.5 -->\n      <g transform=\"translate(7.2 109.623913)scale(0.1 -0.1)\">\n       <defs>\n        <path d=\"M 10.59375 35.5 \nL 73.1875 35.5 \nL 73.1875 27.203125 \nL 10.59375 27.203125 \nz\n\" id=\"DejaVuSans-8722\"/>\n        <path d=\"M 10.6875 12.40625 \nL 21 12.40625 \nL 21 0 \nL 10.6875 0 \nz\n\" id=\"DejaVuSans-46\"/>\n        <path d=\"M 10.796875 72.90625 \nL 49.515625 72.90625 \nL 49.515625 64.59375 \nL 19.828125 64.59375 \nL 19.828125 46.734375 \nQ 21.96875 47.46875 24.109375 47.828125 \nQ 26.265625 48.1875 28.421875 48.1875 \nQ 40.625 48.1875 47.75 41.5 \nQ 54.890625 34.8125 54.890625 23.390625 \nQ 54.890625 11.625 47.5625 5.09375 \nQ 40.234375 -1.421875 26.90625 -1.421875 \nQ 22.3125 -1.421875 17.546875 -0.640625 \nQ 12.796875 0.140625 7.71875 1.703125 \nL 7.71875 11.625 \nQ 12.109375 9.234375 16.796875 8.0625 \nQ 21.484375 6.890625 26.703125 6.890625 \nQ 35.15625 6.890625 40.078125 11.328125 \nQ 45.015625 15.765625 45.015625 23.390625 \nQ 45.015625 31 40.078125 35.4375 \nQ 35.15625 39.890625 26.703125 39.890625 \nQ 22.75 39.890625 18.8125 39.015625 \nQ 14.890625 38.140625 10.796875 36.28125 \nz\n\" id=\"DejaVuSans-53\"/>\n       </defs>\n       <use xlink:href=\"#DejaVuSans-8722\"/>\n       <use x=\"83.789062\" xlink:href=\"#DejaVuSans-50\"/>\n       <use x=\"147.412109\" xlink:href=\"#DejaVuSans-46\"/>\n       <use x=\"179.199219\" xlink:href=\"#DejaVuSans-53\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"ytick_2\">\n     <g id=\"line2d_6\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"38.482813\" xlink:href=\"#mf24712d37c\" y=\"85.447653\"/>\n      </g>\n     </g>\n     <g id=\"text_6\">\n      <!-- 0.0 -->\n      <g transform=\"translate(15.579688 89.246872)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"ytick_3\">\n     <g id=\"line2d_7\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"38.482813\" xlink:href=\"#mf24712d37c\" y=\"65.070612\"/>\n      </g>\n     </g>\n     <g id=\"text_7\">\n      <!-- 2.5 -->\n      <g transform=\"translate(15.579688 68.86983)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-50\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"text_8\">\n     <!-- 1e−15 -->\n     <g transform=\"translate(38.482813 46.92)scale(0.1 -0.1)\">\n      <defs>\n       <path d=\"M 56.203125 29.59375 \nL 56.203125 25.203125 \nL 14.890625 25.203125 \nQ 15.484375 15.921875 20.484375 11.0625 \nQ 25.484375 6.203125 34.421875 6.203125 \nQ 39.59375 6.203125 44.453125 7.46875 \nQ 49.3125 8.734375 54.109375 11.28125 \nL 54.109375 2.78125 \nQ 49.265625 0.734375 44.1875 -0.34375 \nQ 39.109375 -1.421875 33.890625 -1.421875 \nQ 20.796875 -1.421875 13.15625 6.1875 \nQ 5.515625 13.8125 5.515625 26.8125 \nQ 5.515625 40.234375 12.765625 48.109375 \nQ 20.015625 56 32.328125 56 \nQ 43.359375 56 49.78125 48.890625 \nQ 56.203125 41.796875 56.203125 29.59375 \nz\nM 47.21875 32.234375 \nQ 47.125 39.59375 43.09375 43.984375 \nQ 39.0625 48.390625 32.421875 48.390625 \nQ 24.90625 48.390625 20.390625 44.140625 \nQ 15.875 39.890625 15.1875 32.171875 \nz\n\" id=\"DejaVuSans-101\"/>\n      </defs>\n      <use xlink:href=\"#DejaVuSans-49\"/>\n      <use x=\"63.623047\" xlink:href=\"#DejaVuSans-101\"/>\n      <use x=\"125.146484\" xlink:href=\"#DejaVuSans-8722\"/>\n      <use x=\"208.935547\" xlink:href=\"#DejaVuSans-49\"/>\n      <use x=\"272.558594\" xlink:href=\"#DejaVuSans-53\"/>\n     </g>\n    </g>\n   </g>\n   <g id=\"line2d_8\">\n    <path clip-path=\"url(#p6b101e6f4c)\" d=\"M 46.308777 76.623069 \nL 46.465349 86.142865 \nL 46.517539 86.142863 \nL 46.56973 84.146774 \nL 46.62192 84.300318 \nL 46.726301 96.123293 \nL 46.830682 74.626966 \nL 46.882873 78.158503 \nL 47.091635 93.666559 \nL 47.143825 94.127194 \nL 47.196016 95.662644 \nL 47.352587 82.304209 \nL 47.404778 85.068021 \nL 47.456968 84.914474 \nL 47.509159 83.993201 \nL 47.61354 88.446008 \nL 47.717921 82.150653 \nL 47.874492 98.119346 \nL 47.978873 76.776565 \nL 48.031064 80.308102 \nL 48.135445 88.292448 \nL 48.187635 84.300272 \nL 48.239826 86.756993 \nL 48.292016 87.371172 \nL 48.448588 83.993174 \nL 48.552969 86.449893 \nL 48.65735 95.35551 \nL 48.70954 92.13106 \nL 48.761731 83.993164 \nL 48.813921 87.985337 \nL 48.866112 89.981423 \nL 48.970492 86.603426 \nL 49.022683 87.524695 \nL 49.127064 82.304156 \nL 49.179254 89.367233 \nL 49.231445 85.989238 \nL 49.283635 79.693884 \nL 49.335826 84.760873 \nL 49.388016 91.823949 \nL 49.440207 89.827861 \nL 49.544588 86.910499 \nL 49.596778 90.288491 \nL 49.648969 88.753038 \nL 49.80554 81.689956 \nL 50.066493 90.442023 \nL 50.118683 90.749111 \nL 50.327445 77.697766 \nL 50.431826 81.843482 \nL 50.588398 93.973546 \nL 50.744969 80.922202 \nL 50.79716 86.142736 \nL 50.84935 93.973538 \nL 50.901541 93.819991 \nL 51.005922 85.067914 \nL 51.110303 69.099212 \nL 51.214684 87.985266 \nL 51.319065 86.603356 \nL 51.371255 86.142719 \nL 51.423446 86.910444 \nL 51.475636 93.97352 \nL 51.527827 91.516796 \nL 51.632208 86.756892 \nL 51.684398 93.819969 \nL 51.736589 88.445886 \nL 51.788779 92.284514 \nL 51.997541 79.693803 \nL 52.049732 80.154438 \nL 52.154113 86.756877 \nL 52.206303 81.689884 \nL 52.258494 83.532425 \nL 52.310684 88.599414 \nL 52.362875 85.989145 \nL 52.467256 90.134861 \nL 52.623827 85.528501 \nL 52.676018 86.296226 \nL 52.728208 85.067863 \nL 52.832589 89.367125 \nL 52.989161 75.701599 \nL 53.250113 92.745106 \nL 53.302304 91.209652 \nL 53.406685 78.4654 \nL 53.511066 93.666369 \nL 53.563256 91.823825 \nL 53.615447 81.229207 \nL 53.667637 82.457567 \nL 53.719828 84.300108 \nL 53.824209 99.501076 \nL 53.876399 91.05609 \nL 53.92859 80.000836 \nL 53.98078 80.15438 \nL 54.085161 89.827723 \nL 54.293923 76.622831 \nL 54.450494 89.213531 \nL 54.502685 85.3749 \nL 54.554875 79.540182 \nL 54.607066 85.989078 \nL 54.711447 98.426234 \nL 54.815828 74.473184 \nL 54.868018 76.16218 \nL 55.128971 100.422309 \nL 55.389923 65.874637 \nL 55.546495 95.969487 \nL 55.598685 88.752862 \nL 55.807447 78.618874 \nL 55.911828 95.969476 \nL 56.016209 83.071678 \nL 56.0684 85.83549 \nL 56.224971 92.745018 \nL 56.329352 82.150398 \nL 56.381543 83.225212 \nL 56.433733 85.681934 \nL 56.538114 79.079488 \nL 56.746876 88.292192 \nL 56.799067 98.579717 \nL 56.955638 79.540111 \nL 57.060019 71.402214 \nL 57.216591 90.902446 \nL 57.320972 77.236922 \nL 57.373162 80.76846 \nL 57.477543 90.441803 \nL 57.634115 78.465275 \nL 57.686305 81.229086 \nL 57.738496 81.07554 \nL 57.790686 77.543999 \nL 57.842877 78.311724 \nL 57.895067 80.154264 \nL 57.947258 79.693627 \nL 57.999448 77.543993 \nL 58.051639 79.847169 \nL 58.103829 80.154258 \nL 58.15602 77.390443 \nL 58.312591 89.366962 \nL 58.364782 88.906325 \nL 58.469163 79.386521 \nL 58.521353 79.540065 \nL 58.782306 95.201664 \nL 58.834496 91.363034 \nL 58.886687 76.469151 \nL 58.938877 79.386507 \nL 59.043258 89.520485 \nL 59.19983 75.24078 \nL 59.304211 86.296029 \nL 59.356401 83.68576 \nL 59.408592 78.618767 \nL 59.460782 83.685756 \nL 59.565163 92.284283 \nL 59.617353 88.599197 \nL 59.669544 86.296018 \nL 59.721734 88.138559 \nL 59.773925 92.898458 \nL 59.930496 74.165942 \nL 60.034877 86.603098 \nL 60.087068 72.323395 \nL 60.139258 75.087207 \nL 60.243639 97.197708 \nL 60.29583 88.599177 \nL 60.34802 81.075462 \nL 60.400211 86.295997 \nL 60.504592 93.359071 \nL 60.713354 75.240735 \nL 60.765544 75.701369 \nL 60.922116 91.823607 \nL 61.026497 80.768352 \nL 61.078687 86.603067 \nL 61.130878 85.681794 \nL 61.287449 79.232892 \nL 61.39183 87.984964 \nL 61.548402 94.740947 \nL 61.704973 82.303783 \nL 61.757164 84.453414 \nL 61.861545 91.977125 \nL 62.070307 75.854875 \nL 62.279069 92.591293 \nL 62.331259 79.847042 \nL 62.38345 82.150218 \nL 62.43564 91.670017 \nL 62.487831 90.595199 \nL 62.592212 79.693489 \nL 62.800974 93.051913 \nL 62.853164 95.815724 \nL 62.957545 86.910101 \nL 63.009736 87.21719 \nL 63.061926 86.910098 \nL 63.322879 81.996645 \nL 63.42726 89.213265 \nL 63.531641 81.689549 \nL 63.636022 88.906169 \nL 63.688212 88.138441 \nL 63.949165 78.004452 \nL 64.053546 88.13843 \nL 64.105736 87.063612 \nL 64.157927 88.445517 \nL 64.314498 76.77608 \nL 64.366689 77.850894 \nL 64.52326 88.445507 \nL 64.679832 78.618611 \nL 64.836403 87.677772 \nL 64.888593 83.685596 \nL 64.940784 85.374591 \nL 64.992974 91.362851 \nL 65.045165 90.748669 \nL 65.201736 82.91786 \nL 65.306117 86.602941 \nL 65.462689 82.764307 \nL 65.56707 85.988753 \nL 65.61926 85.374571 \nL 65.671451 82.917846 \nL 65.775832 91.055738 \nL 65.984594 79.386298 \nL 66.141165 88.445459 \nL 66.297737 79.693379 \nL 66.349927 80.768194 \nL 66.506499 90.134445 \nL 66.715261 83.224906 \nL 66.767451 83.071359 \nL 66.819642 83.992628 \nL 66.871832 87.370621 \nL 66.924023 85.374532 \nL 66.976213 85.220985 \nL 67.080594 79.846901 \nL 67.132785 81.689442 \nL 67.184975 81.842985 \nL 67.237166 82.9178 \nL 67.289356 86.909973 \nL 67.341547 85.37452 \nL 67.445928 77.390167 \nL 67.602499 83.83906 \nL 67.915642 90.748584 \nL 67.967833 89.827311 \nL 68.020023 88.445403 \nL 68.072214 92.898211 \nL 68.124404 91.976939 \nL 68.280976 82.917769 \nL 68.385357 84.913853 \nL 68.437547 88.906026 \nL 68.489738 88.752479 \nL 68.594119 83.071305 \nL 68.646309 83.378394 \nL 68.75069 91.362739 \nL 68.907262 84.760292 \nL 69.011643 87.984738 \nL 69.063833 87.831191 \nL 69.116024 87.524099 \nL 69.376976 81.689375 \nL 69.690119 88.752444 \nL 69.7945 84.913811 \nL 69.846691 85.988626 \nL 69.898881 85.220899 \nL 70.003262 80.30745 \nL 70.159834 87.831159 \nL 70.264214 80.000352 \nL 70.316405 82.917709 \nL 70.525167 88.598874 \nL 70.577357 87.831146 \nL 70.629548 83.992516 \nL 70.681738 85.374421 \nL 70.786119 92.744586 \nL 70.83831 91.516223 \nL 70.942691 79.386151 \nL 70.994881 83.838959 \nL 71.099262 89.213037 \nL 71.203643 82.457047 \nL 71.255834 83.838952 \nL 71.308024 89.213031 \nL 71.360215 88.905939 \nL 71.412405 84.760218 \nL 71.464596 85.988578 \nL 71.516786 89.36657 \nL 71.568977 87.063391 \nL 71.725548 81.689306 \nL 71.829929 86.756293 \nL 71.88212 85.067295 \nL 71.93431 82.917661 \nL 71.986501 84.453111 \nL 72.090882 89.213008 \nL 72.195263 84.60665 \nL 72.351834 91.669723 \nL 72.508406 81.996372 \nL 72.560596 84.760184 \nL 72.612787 86.449179 \nL 72.664977 85.527907 \nL 72.717168 85.527905 \nL 72.821549 89.520077 \nL 72.97812 83.22472 \nL 73.030311 85.527896 \nL 73.082501 85.067259 \nL 73.134692 84.606622 \nL 73.239073 87.216887 \nL 73.291263 85.988524 \nL 73.500025 82.149888 \nL 73.552216 82.610522 \nL 73.656597 87.370419 \nL 73.708787 86.756237 \nL 73.813168 79.232521 \nL 73.865359 80.15379 \nL 73.96974 86.449139 \nL 74.02193 85.067231 \nL 74.074121 84.760139 \nL 74.178502 87.523949 \nL 74.230692 87.370402 \nL 74.282883 85.681404 \nL 74.335073 87.216854 \nL 74.387264 87.216853 \nL 74.439454 86.756216 \nL 74.596026 89.520024 \nL 74.909169 80.153759 \nL 74.961359 81.842755 \nL 75.06574 86.449107 \nL 75.117931 85.374289 \nL 75.274502 88.905823 \nL 75.431074 80.153744 \nL 75.483264 81.996284 \nL 75.692026 87.216814 \nL 75.744216 87.216812 \nL 75.848597 87.984535 \nL 75.900788 87.063263 \nL 76.057359 82.917538 \nL 76.16174 87.984526 \nL 76.422693 78.464717 \nL 76.579264 86.909697 \nL 76.683645 88.905782 \nL 76.735836 85.834876 \nL 76.788026 87.523872 \nL 76.840217 89.366412 \nL 76.892407 88.905775 \nL 76.996788 84.913598 \nL 77.048979 86.602593 \nL 77.15336 81.228509 \nL 77.20555 81.689143 \nL 77.309931 83.531682 \nL 77.362122 82.456864 \nL 77.414312 83.378134 \nL 77.466503 83.531677 \nL 77.518693 85.067127 \nL 77.570884 84.452945 \nL 77.623074 84.606489 \nL 77.675265 84.145852 \nL 77.727455 82.149763 \nL 77.779646 82.303306 \nL 77.831836 82.76394 \nL 77.884027 87.063204 \nL 77.936217 85.834841 \nL 77.988408 86.44902 \nL 78.040598 86.295473 \nL 78.144979 85.220654 \nL 78.19717 82.917475 \nL 78.24936 83.531654 \nL 78.353741 83.992286 \nL 78.405932 82.763923 \nL 78.458122 87.216732 \nL 78.510313 85.681279 \nL 78.562503 85.067096 \nL 78.614694 86.602547 \nL 78.719075 81.842643 \nL 78.823456 86.141905 \nL 78.875646 82.149729 \nL 78.927837 82.456818 \nL 79.136599 89.826979 \nL 79.188789 90.287614 \nL 79.345361 85.834799 \nL 79.397551 85.988343 \nL 79.449742 83.685163 \nL 79.554123 90.287603 \nL 79.658504 85.067064 \nL 79.710694 86.141878 \nL 79.867266 83.531606 \nL 79.919456 86.909598 \nL 79.971647 85.2206 \nL 80.023837 84.913508 \nL 80.128218 79.539424 \nL 80.180409 80.614238 \nL 80.28479 86.448952 \nL 80.33698 91.669486 \nL 80.389171 89.059217 \nL 80.493552 82.610316 \nL 80.597933 87.677304 \nL 80.754504 80.460676 \nL 80.963266 90.441106 \nL 81.067647 81.228393 \nL 81.119837 83.224479 \nL 81.224218 86.448924 \nL 81.328599 82.610292 \nL 81.43298 89.212731 \nL 81.693933 80.307103 \nL 81.902695 87.984356 \nL 82.007076 82.303181 \nL 82.059266 78.311005 \nL 82.215838 94.126153 \nL 82.47679 80.767716 \nL 82.633362 90.901692 \nL 82.685552 89.212694 \nL 82.737743 83.838611 \nL 82.789933 86.602423 \nL 82.842124 89.673325 \nL 82.894314 89.212687 \nL 82.998695 82.917332 \nL 83.050886 84.759873 \nL 83.155267 87.830773 \nL 83.207457 87.523681 \nL 83.311838 78.771604 \nL 83.364029 79.999963 \nL 83.46841 91.362303 \nL 83.5206 86.909491 \nL 83.624981 77.696778 \nL 83.677172 82.763767 \nL 83.833743 93.051289 \nL 83.938124 83.07085 \nL 83.990315 83.224393 \nL 84.094696 79.078671 \nL 84.199077 87.523652 \nL 84.303458 86.755923 \nL 84.407839 80.614113 \nL 84.460029 83.377924 \nL 84.56441 86.141735 \nL 84.668791 81.688922 \nL 84.720982 82.763736 \nL 84.877553 85.220454 \nL 84.981934 79.84637 \nL 85.034125 81.996001 \nL 85.086315 85.527538 \nL 85.138506 84.913356 \nL 85.190696 84.299174 \nL 85.295077 78.003819 \nL 85.451649 96.582779 \nL 85.503839 94.433146 \nL 85.60822 85.834613 \nL 85.660411 89.212605 \nL 85.816982 71.554906 \nL 85.869173 76.928985 \nL 85.921363 86.60233 \nL 85.973554 83.224334 \nL 86.025744 73.704532 \nL 86.077935 75.086437 \nL 86.234506 90.594495 \nL 86.338887 79.999875 \nL 86.495458 95.968569 \nL 86.70422 78.464412 \nL 86.808601 94.279562 \nL 86.912982 89.673204 \nL 87.121744 80.767578 \nL 87.173935 82.149483 \nL 87.226125 86.295201 \nL 87.278316 83.070751 \nL 87.330506 79.23212 \nL 87.434887 94.125999 \nL 87.487078 91.055093 \nL 87.591459 80.306928 \nL 87.643649 87.52355 \nL 87.69584 86.295187 \nL 87.800221 77.236019 \nL 87.852411 80.30692 \nL 88.008983 94.433072 \nL 88.061173 91.822802 \nL 88.165554 76.314737 \nL 88.217745 76.46828 \nL 88.322126 89.673162 \nL 88.374316 82.456537 \nL 88.426507 78.310816 \nL 88.583078 91.208606 \nL 88.687459 87.216428 \nL 88.73965 90.133785 \nL 88.844031 76.161172 \nL 88.948412 81.228159 \nL 89.000602 78.771434 \nL 89.052793 81.535246 \nL 89.157174 88.751866 \nL 89.209364 83.838419 \nL 89.261555 85.527415 \nL 89.313745 84.759687 \nL 89.365936 79.078514 \nL 89.470317 89.980218 \nL 89.574698 75.546969 \nL 89.626888 80.613958 \nL 89.679079 86.602218 \nL 89.731269 85.988036 \nL 89.78346 78.310776 \nL 89.83565 85.373852 \nL 89.887841 87.984119 \nL 90.096603 79.385583 \nL 90.148793 79.999762 \nL 90.253174 87.216382 \nL 90.305365 83.377751 \nL 90.409746 82.149387 \nL 90.514127 93.511726 \nL 90.775079 80.767469 \nL 90.87946 89.212451 \nL 90.931651 88.291178 \nL 91.036032 83.838365 \nL 91.088222 89.519535 \nL 91.140413 89.365988 \nL 91.349175 79.539091 \nL 91.401365 83.531264 \nL 91.453556 79.385543 \nL 91.505746 76.928818 \nL 91.714508 89.519516 \nL 91.92327 74.625628 \nL 91.97546 79.231982 \nL 92.027651 78.157164 \nL 92.079841 78.617798 \nL 92.184222 89.365957 \nL 92.288603 88.598228 \nL 92.340794 88.905317 \nL 92.445175 78.003607 \nL 92.497365 78.15715 \nL 92.653937 87.523401 \nL 92.706127 87.369854 \nL 92.862699 86.141488 \nL 92.914889 87.062758 \nL 93.071461 76.621681 \nL 93.175842 88.137566 \nL 93.228032 84.298935 \nL 93.332413 79.999667 \nL 93.384604 86.909199 \nL 93.436794 83.377658 \nL 93.488985 74.011401 \nL 93.541175 76.007487 \nL 93.645556 84.606013 \nL 93.697747 81.228018 \nL 93.749937 81.381562 \nL 93.802128 90.59427 \nL 93.854318 90.133634 \nL 93.906509 83.684735 \nL 93.958699 85.527275 \nL 94.06308 90.901353 \nL 94.219652 84.452451 \nL 94.376223 83.684721 \nL 94.428414 85.680806 \nL 94.584985 97.657325 \nL 94.689366 89.826518 \nL 94.793747 77.235811 \nL 94.898128 88.905241 \nL 94.950319 87.523333 \nL 95.002509 85.373699 \nL 95.10689 94.432861 \nL 95.159081 93.972224 \nL 95.263462 97.50376 \nL 95.315652 94.893491 \nL 95.472224 76.928701 \nL 95.680986 93.204483 \nL 95.733176 86.755584 \nL 95.785367 82.763408 \nL 95.837557 82.916951 \nL 95.889748 85.373673 \nL 95.994129 78.464137 \nL 96.202891 107.484167 \nL 96.359462 79.999578 \nL 96.463843 81.074391 \nL 96.568224 88.291011 \nL 96.620415 86.602012 \nL 96.672605 86.448466 \nL 96.724796 79.538931 \nL 96.776986 82.609833 \nL 96.829176 90.28709 \nL 96.881367 84.913008 \nL 96.933557 83.224009 \nL 96.985748 84.298824 \nL 97.090129 88.905176 \nL 97.142319 95.968253 \nL 97.19451 91.515441 \nL 97.2467 90.901259 \nL 97.351081 86.448446 \nL 97.403272 93.204432 \nL 97.455462 88.598075 \nL 97.507653 90.28707 \nL 97.925177 73.704179 \nL 97.977367 75.85381 \nL 98.081748 91.208324 \nL 98.133939 90.287052 \nL 98.23832 76.775074 \nL 98.29051 81.074337 \nL 98.342701 83.684603 \nL 98.447082 94.586307 \nL 98.603653 78.464059 \nL 98.655844 98.271385 \nL 98.708034 92.129576 \nL 98.760225 62.188267 \nL 98.812415 83.838134 \nL 98.864606 74.778968 \nL 98.968987 75.54669 \nL 99.073368 53.129091 \nL 99.28213 98.117821 \nL 99.33432 87.830293 \nL 99.386511 105.795077 \nL 99.438701 97.657182 \nL 99.543082 87.523197 \nL 99.595273 90.594099 \nL 99.647463 95.968178 \nL 99.804035 67.255225 \nL 99.856225 106.255699 \nL 99.960606 103.184792 \nL 100.064987 59.577959 \nL 100.117178 85.680638 \nL 100.169368 99.192611 \nL 100.273749 98.578428 \nL 100.32594 67.715845 \nL 100.37813 87.062536 \nL 100.534702 91.361797 \nL 100.586892 75.700187 \nL 100.639083 88.444435 \nL 100.691273 103.79895 \nL 100.847845 73.704092 \nL 100.900035 70.633187 \nL 101.108797 87.830241 \nL 101.213178 117.310909 \nL 101.265369 107.330472 \nL 101.42194 54.203838 \nL 101.526321 88.290864 \nL 101.578512 75.700158 \nL 101.630702 92.743671 \nL 101.735083 67.408714 \nL 101.839464 91.054667 \nL 101.891655 89.826305 \nL 101.943845 80.152957 \nL 102.100417 103.798909 \nL 102.256988 85.680574 \nL 102.309178 89.672747 \nL 102.413559 76.160769 \nL 102.51794 88.75147 \nL 102.570131 87.062471 \nL 102.622321 60.6527 \nL 102.674512 75.700125 \nL 102.726702 84.912834 \nL 102.778893 115.928958 \nL 102.831083 89.058551 \nL 102.987655 74.471755 \nL 103.144226 85.527003 \nL 103.196417 82.609643 \nL 103.248607 83.070277 \nL 103.352988 89.365626 \nL 103.405179 85.219905 \nL 103.50956 93.971976 \nL 103.718322 67.101565 \nL 103.770512 83.070261 \nL 103.874893 82.456078 \nL 103.927084 75.546543 \nL 103.979274 77.235538 \nL 104.031465 84.605705 \nL 104.083655 84.145068 \nL 104.135846 80.152892 \nL 104.188036 81.841887 \nL 104.292417 88.444327 \nL 104.344608 81.381247 \nL 104.396798 92.129408 \nL 104.448989 89.826229 \nL 104.501179 89.212047 \nL 104.657751 74.932341 \nL 104.814322 90.593944 \nL 104.970894 81.99541 \nL 105.075275 89.51912 \nL 105.127465 87.215941 \nL 105.179656 79.999316 \nL 105.231846 87.062392 \nL 105.284037 85.066304 \nL 105.388418 89.672656 \nL 105.440608 82.916667 \nL 105.492799 87.830111 \nL 105.59718 85.373385 \nL 105.64937 88.904922 \nL 105.701561 83.377294 \nL 105.753751 86.294651 \nL 105.805942 86.141104 \nL 105.910323 81.841837 \nL 106.066894 92.589994 \nL 106.171275 87.062365 \nL 106.223466 87.676544 \nL 106.275656 87.830087 \nL 106.588799 79.231548 \nL 106.797561 92.897062 \nL 106.901942 79.53863 \nL 106.954133 83.837893 \nL 107.006323 85.219798 \nL 107.058514 80.766986 \nL 107.110704 86.755246 \nL 107.162895 81.227619 \nL 107.215085 81.995343 \nL 107.267276 89.058419 \nL 107.319466 84.452063 \nL 107.371657 87.830055 \nL 107.476038 78.770886 \nL 107.528228 79.692156 \nL 107.684799 93.818307 \nL 107.893561 80.459871 \nL 107.945752 83.377228 \nL 107.997942 81.227594 \nL 108.050133 81.841773 \nL 108.102323 89.365485 \nL 108.154514 88.597757 \nL 108.311085 81.227584 \nL 108.363276 84.759122 \nL 108.415466 82.609488 \nL 108.519847 85.373298 \nL 108.572038 80.459851 \nL 108.624228 81.07403 \nL 108.7808 90.286736 \nL 108.937371 83.377198 \nL 109.041752 85.833918 \nL 109.093943 87.983549 \nL 109.198324 84.759097 \nL 109.250514 85.680367 \nL 109.302705 85.83391 \nL 109.459276 88.137083 \nL 109.563657 80.766912 \nL 109.668038 87.676442 \nL 109.720229 85.373262 \nL 109.82461 84.605533 \nL 109.928991 88.75125 \nL 109.981181 87.983522 \nL 110.085562 82.148803 \nL 110.189943 85.066158 \nL 110.294324 83.837794 \nL 110.346515 87.369331 \nL 110.398705 85.833878 \nL 110.450896 85.987421 \nL 110.503086 87.062236 \nL 110.555277 90.900864 \nL 110.659658 79.384973 \nL 110.711848 81.381058 \nL 110.816229 85.833865 \nL 110.92061 76.774697 \nL 110.972801 78.924328 \nL 111.233753 92.129205 \nL 111.390325 86.601574 \nL 111.599087 81.073942 \nL 111.651277 84.298389 \nL 111.703468 83.070026 \nL 111.755658 83.070024 \nL 111.860039 86.60156 \nL 111.91223 86.448014 \nL 112.016611 84.451923 \nL 112.068801 84.605467 \nL 112.173182 89.518909 \nL 112.277563 85.066096 \nL 112.329754 91.668537 \nL 112.381944 90.440174 \nL 112.695087 83.991268 \nL 112.747278 84.451902 \nL 112.851658 91.054341 \nL 112.956039 85.526712 \nL 113.06042 89.365338 \nL 113.216992 82.14871 \nL 113.269182 82.455799 \nL 113.373563 84.758973 \nL 113.425754 83.377065 \nL 113.477944 84.912515 \nL 113.530135 87.522782 \nL 113.582325 86.140874 \nL 113.686706 81.534516 \nL 113.738897 81.841604 \nL 113.947659 87.215679 \nL 114.10423 81.073867 \nL 114.208611 90.74721 \nL 114.260802 90.286573 \nL 114.312992 86.908578 \nL 114.365183 87.983393 \nL 114.417373 89.518843 \nL 114.573945 79.845492 \nL 114.626135 82.302213 \nL 114.730516 86.44793 \nL 114.834897 85.06602 \nL 114.887088 84.758928 \nL 114.991469 81.380932 \nL 115.14804 88.444005 \nL 115.200231 86.140826 \nL 115.252421 83.530556 \nL 115.304612 84.758916 \nL 115.408993 88.136907 \nL 115.461183 87.829815 \nL 115.722136 82.148636 \nL 115.774326 82.762815 \nL 115.826517 80.613181 \nL 115.878707 82.455722 \nL 115.930898 86.754985 \nL 115.983088 85.373077 \nL 116.035279 83.376988 \nL 116.13966 89.518792 \nL 116.19185 87.062067 \nL 116.348422 85.526611 \nL 116.400612 85.680155 \nL 116.452803 86.294334 \nL 116.504993 85.526606 \nL 116.609374 90.286504 \nL 116.818136 79.998971 \nL 116.922517 86.29432 \nL 116.974708 85.219502 \nL 117.079089 82.455686 \nL 117.392232 90.747116 \nL 117.653184 79.691856 \nL 117.705375 81.841487 \nL 117.757565 87.522656 \nL 117.809756 86.447839 \nL 117.914137 83.684022 \nL 118.018518 85.833652 \nL 118.070708 85.219469 \nL 118.122899 81.841474 \nL 118.175089 82.455653 \nL 118.33166 89.672272 \nL 118.436041 83.069826 \nL 118.488232 83.376915 \nL 118.644803 87.061995 \nL 118.696994 85.833632 \nL 118.749184 83.991088 \nL 118.801375 84.451722 \nL 118.853565 84.45172 \nL 119.114518 88.597432 \nL 119.271089 83.837527 \nL 119.427661 87.522607 \nL 119.479851 88.290331 \nL 119.584232 83.376883 \nL 119.636423 85.219423 \nL 119.792994 77.388615 \nL 119.897375 87.829683 \nL 119.949566 86.447775 \nL 120.053947 79.691784 \nL 120.158328 91.51476 \nL 120.210518 90.593487 \nL 120.314899 77.69569 \nL 120.36709 78.309869 \nL 120.523661 89.979297 \nL 120.680233 84.912302 \nL 120.732423 85.372936 \nL 120.784614 88.136747 \nL 120.836804 85.526478 \nL 120.888995 82.455573 \nL 120.941185 84.605204 \nL 120.993376 84.144567 \nL 121.045566 84.29811 \nL 121.097757 87.676102 \nL 121.149947 86.140649 \nL 121.254328 81.534291 \nL 121.358709 91.207634 \nL 121.4109 89.825726 \nL 121.619662 82.455551 \nL 121.776233 91.207621 \nL 121.932805 82.148451 \nL 122.089376 89.05798 \nL 122.193757 81.994898 \nL 122.245948 84.45162 \nL 122.298138 85.67998 \nL 122.402519 90.439877 \nL 122.559091 86.140607 \nL 122.611281 88.597329 \nL 122.663472 87.676056 \nL 122.715662 85.987058 \nL 122.767853 86.601237 \nL 122.820043 89.365048 \nL 122.872234 87.98314 \nL 122.924424 87.061868 \nL 123.080996 89.36504 \nL 123.237567 79.384599 \nL 123.498519 89.057938 \nL 123.655091 81.53422 \nL 123.811662 94.278464 \nL 123.916043 85.987022 \nL 123.968234 87.676017 \nL 124.020424 89.518558 \nL 124.124805 83.223203 \nL 124.229186 93.050091 \nL 124.281377 88.904369 \nL 124.333567 82.916106 \nL 124.385758 88.290186 \nL 124.437948 90.132726 \nL 124.59452 78.309743 \nL 124.698901 90.286264 \nL 124.751091 87.368904 \nL 124.907663 82.762544 \nL 125.064234 94.431972 \nL 125.168615 88.443708 \nL 125.220806 88.750796 \nL 125.325187 92.128787 \nL 125.481758 83.683798 \nL 125.533949 84.297977 \nL 125.586139 79.69162 \nL 125.63833 82.762522 \nL 125.742711 90.900413 \nL 125.794901 87.061782 \nL 125.847092 81.38061 \nL 125.899282 81.841243 \nL 126.003663 93.971309 \nL 126.160235 78.463242 \nL 126.264616 87.522404 \nL 126.316806 86.601131 \nL 126.421187 76.774237 \nL 126.577759 93.971292 \nL 126.73433 80.612857 \nL 126.890902 87.06175 \nL 126.995283 82.762482 \nL 127.047473 83.223116 \nL 127.099664 88.904286 \nL 127.151854 88.136558 \nL 127.256235 79.230935 \nL 127.464997 92.435814 \nL 127.621569 82.301828 \nL 127.673759 83.376642 \nL 127.830331 93.510619 \nL 127.986902 83.837269 \nL 128.039093 77.234825 \nL 128.091283 83.530175 \nL 128.300045 93.817696 \nL 128.352236 94.58542 \nL 128.456617 81.534077 \nL 128.508807 82.455347 \nL 128.560998 85.526249 \nL 128.613188 84.604976 \nL 128.717569 85.065608 \nL 128.82195 90.900322 \nL 128.87414 89.211323 \nL 129.030712 80.91988 \nL 129.082902 78.156065 \nL 129.135093 80.612786 \nL 129.396045 89.979034 \nL 129.448236 88.597126 \nL 129.552617 81.3805 \nL 129.604807 82.148224 \nL 129.656998 83.376584 \nL 129.761379 92.589291 \nL 129.86576 79.077313 \nL 129.91795 81.073398 \nL 129.970141 86.140388 \nL 130.022331 81.841121 \nL 130.074522 78.923762 \nL 130.178903 87.829378 \nL 130.231093 83.069476 \nL 130.283284 84.144291 \nL 130.335474 92.742819 \nL 130.387665 89.364824 \nL 130.439855 84.451377 \nL 130.492046 85.679737 \nL 130.544236 89.671909 \nL 130.596427 87.829366 \nL 130.752998 77.081199 \nL 130.805189 81.534008 \nL 130.90957 92.589257 \nL 131.013951 86.140357 \nL 131.066141 86.60099 \nL 131.118332 86.754534 \nL 131.170522 86.600987 \nL 131.274903 89.825433 \nL 131.327094 84.14426 \nL 131.379284 86.140346 \nL 131.535856 89.211244 \nL 131.588046 86.908065 \nL 131.692427 92.128598 \nL 131.796808 86.293878 \nL 131.848999 89.978961 \nL 131.901189 87.982872 \nL 132.00557 70.939355 \nL 132.057761 73.856712 \nL 132.266523 91.20731 \nL 132.318713 88.28995 \nL 132.370904 90.746671 \nL 132.423094 92.589212 \nL 132.475285 92.128575 \nL 132.579666 79.998503 \nL 132.631856 81.533953 \nL 132.736237 92.128567 \nL 132.788428 87.829301 \nL 132.840618 88.13639 \nL 132.892809 89.057659 \nL 132.944999 88.443477 \nL 132.99719 82.455214 \nL 133.04938 82.915847 \nL 133.101571 86.60093 \nL 133.153761 85.065477 \nL 133.205952 84.451295 \nL 133.310333 82.148114 \nL 133.362523 83.376474 \nL 133.466904 98.116807 \nL 133.675666 75.238571 \nL 133.780047 96.12071 \nL 133.832238 86.293818 \nL 133.936619 80.152008 \nL 134.041 92.74271 \nL 134.09319 92.282072 \nL 134.197571 83.069359 \nL 134.249761 92.435613 \nL 134.301952 91.51434 \nL 134.354142 84.758351 \nL 134.406333 87.982798 \nL 134.510714 92.742695 \nL 134.562904 91.360787 \nL 134.719476 68.943187 \nL 134.771666 81.2268 \nL 134.823857 89.211147 \nL 134.876047 82.762248 \nL 135.032619 75.392075 \nL 135.084809 75.699164 \nL 135.397952 96.888389 \nL 135.450143 93.049758 \nL 135.554524 80.612595 \nL 135.606714 82.455136 \nL 135.711095 92.128479 \nL 135.867667 75.852686 \nL 135.919857 78.770043 \nL 136.024238 88.750476 \nL 136.128619 81.84094 \nL 136.233 90.900102 \nL 136.337381 76.773943 \nL 136.389572 76.927486 \nL 136.493953 85.833104 \nL 136.546143 84.29765 \nL 136.598334 82.608652 \nL 136.702715 69.864399 \nL 136.859286 98.577342 \nL 136.963667 86.44727 \nL 137.015858 93.356801 \nL 137.068048 90.746532 \nL 137.172429 82.45509 \nL 137.22462 84.29763 \nL 137.329001 79.077091 \nL 137.485572 99.95923 \nL 137.589953 94.12451 \nL 137.798715 78.002261 \nL 137.955287 87.829148 \nL 138.111858 79.230613 \nL 138.216239 98.577301 \nL 138.26843 89.825225 \nL 138.372811 79.230606 \nL 138.477192 87.982677 \nL 138.529382 85.679498 \nL 138.581573 84.144045 \nL 138.633763 85.52595 \nL 138.738144 102.108826 \nL 138.790335 97.963104 \nL 139.051287 72.628143 \nL 139.103478 72.321052 \nL 139.207859 83.06921 \nL 139.36443 73.395859 \nL 139.573192 84.758196 \nL 139.625382 87.522008 \nL 139.677573 86.44719 \nL 139.729763 84.911737 \nL 139.781954 79.691199 \nL 139.834144 84.911734 \nL 139.938525 88.136179 \nL 139.990716 75.084838 \nL 140.042906 75.699017 \nL 140.199478 86.90781 \nL 140.251668 88.903896 \nL 140.303859 86.907807 \nL 140.356049 81.840815 \nL 140.40824 86.754259 \nL 140.512621 79.076997 \nL 140.564811 79.844721 \nL 140.617002 86.293617 \nL 140.669192 85.218799 \nL 140.721383 84.451072 \nL 140.773573 84.604615 \nL 140.825764 87.675517 \nL 140.877954 86.754245 \nL 141.034526 76.620259 \nL 141.138907 97.809489 \nL 141.191097 91.821226 \nL 141.243288 84.451056 \nL 141.295478 88.289684 \nL 141.347669 94.124399 \nL 141.45205 77.541517 \nL 141.50424 82.147871 \nL 141.556431 85.525863 \nL 141.608621 83.376229 \nL 141.660812 84.297499 \nL 141.713002 82.454955 \nL 141.765193 88.443215 \nL 141.817383 87.521943 \nL 141.921764 84.758126 \nL 141.973955 86.600667 \nL 142.026145 80.458859 \nL 142.078336 81.840763 \nL 142.443669 96.273998 \nL 142.49586 94.124365 \nL 142.756812 69.096494 \nL 142.861193 85.218734 \nL 142.913384 83.683281 \nL 142.965574 77.541472 \nL 143.017765 78.923378 \nL 143.069955 79.998192 \nL 143.122146 90.592807 \nL 143.174336 89.82508 \nL 143.278717 74.163469 \nL 143.330908 75.69892 \nL 143.435289 93.510157 \nL 143.59186 81.840719 \nL 143.800622 88.5967 \nL 143.905003 85.525793 \nL 143.957194 85.986427 \nL 144.061575 82.147795 \nL 144.113765 83.069064 \nL 144.165956 89.21087 \nL 144.218146 87.982507 \nL 144.58348 80.305238 \nL 144.63567 86.293498 \nL 144.740051 77.694965 \nL 144.896622 83.990312 \nL 145.001003 78.769773 \nL 145.105384 81.533584 \nL 145.261956 96.12037 \nL 145.314146 94.124281 \nL 145.470718 76.773672 \nL 145.575099 93.356548 \nL 145.627289 90.592733 \nL 145.67948 90.592731 \nL 145.73167 90.746275 \nL 145.888242 82.915467 \nL 145.940432 84.297372 \nL 146.044813 93.202989 \nL 146.097004 86.446999 \nL 146.149194 86.907633 \nL 146.201385 88.289538 \nL 146.357956 83.529633 \nL 146.514528 89.51789 \nL 146.566718 88.903708 \nL 146.671099 80.919356 \nL 146.72329 75.238183 \nL 146.77548 79.537446 \nL 146.984242 90.746238 \nL 147.088623 72.934995 \nL 147.140814 76.927168 \nL 147.245195 89.057233 \nL 147.297385 85.372148 \nL 147.401766 85.679235 \nL 147.506147 92.895855 \nL 147.558338 90.592676 \nL 147.714909 84.604409 \nL 147.7671 88.750127 \nL 147.81929 86.139858 \nL 147.975862 80.919317 \nL 148.080243 88.289483 \nL 148.132433 86.907575 \nL 148.236814 80.91931 \nL 148.393386 90.899741 \nL 148.497767 89.978467 \nL 148.758719 80.305114 \nL 148.81091 82.301199 \nL 148.8631 88.59655 \nL 148.915291 85.832735 \nL 149.019672 83.222464 \nL 149.071862 83.683098 \nL 149.124053 83.683097 \nL 149.228434 90.592626 \nL 149.280624 86.907541 \nL 149.332815 83.529545 \nL 149.385005 84.60436 \nL 149.437196 84.757903 \nL 149.489386 83.375995 \nL 149.541577 84.911446 \nL 149.645958 83.0689 \nL 149.698148 85.832712 \nL 149.750339 84.297259 \nL 149.802529 81.840534 \nL 149.90691 90.592606 \nL 149.959101 88.596517 \nL 150.063482 84.757885 \nL 150.115672 86.13979 \nL 150.167862 84.450791 \nL 150.272243 84.604333 \nL 150.324434 87.368145 \nL 150.376624 85.525601 \nL 150.481005 76.619978 \nL 150.689767 87.982315 \nL 150.794148 89.671309 \nL 150.95072 83.222407 \nL 151.107291 77.694776 \nL 151.159482 76.927049 \nL 151.316053 92.435107 \nL 151.420434 80.612125 \nL 151.577006 94.277641 \nL 151.681387 81.226298 \nL 151.733577 86.446832 \nL 151.785768 88.596463 \nL 151.837958 87.982281 \nL 151.890149 87.521644 \nL 152.04672 81.686922 \nL 152.151101 86.600365 \nL 152.203292 85.372002 \nL 152.255482 83.683004 \nL 152.307673 85.525544 \nL 152.359863 86.753904 \nL 152.464244 82.761726 \nL 152.620816 89.364164 \nL 152.725197 83.68299 \nL 152.777387 83.990079 \nL 152.829578 85.832619 \nL 152.881768 85.064892 \nL 152.933959 84.604255 \nL 152.986149 80.458533 \nL 153.03834 81.840438 \nL 153.142721 87.060971 \nL 153.194911 85.525518 \nL 153.247102 83.836519 \nL 153.299292 84.143608 \nL 153.351483 85.064878 \nL 153.455864 89.364139 \nL 153.508054 88.749957 \nL 153.664626 81.686875 \nL 153.769007 86.907407 \nL 153.821197 85.525499 \nL 153.977769 79.844323 \nL 154.238721 88.2893 \nL 154.343102 85.525484 \nL 154.447483 87.214478 \nL 154.604055 85.986112 \nL 154.708436 87.52156 \nL 154.812817 80.612024 \nL 154.865007 82.147475 \nL 154.917198 82.915199 \nL 155.073769 92.28145 \nL 155.12596 90.285361 \nL 155.334722 82.454551 \nL 155.386912 82.608095 \nL 155.491293 89.210534 \nL 155.595674 81.686817 \nL 155.647864 83.375813 \nL 155.700055 88.749892 \nL 155.752245 88.596346 \nL 155.856626 85.832529 \nL 155.908817 86.293163 \nL 155.961007 91.974333 \nL 156.013198 89.210518 \nL 156.169769 82.761616 \nL 156.22196 86.600244 \nL 156.27415 83.682884 \nL 156.326341 80.458434 \nL 156.378531 83.682881 \nL 156.482912 90.438866 \nL 156.535103 88.596322 \nL 156.639484 81.993877 \nL 156.691674 83.529327 \nL 156.900436 85.678953 \nL 157.161389 79.844229 \nL 157.26577 82.915129 \nL 157.31796 81.226131 \nL 157.370151 82.761581 \nL 157.422341 83.06867 \nL 157.474532 81.840307 \nL 157.578913 87.828565 \nL 157.631103 83.529299 \nL 157.683294 83.682843 \nL 157.787675 85.371836 \nL 157.892056 81.533204 \nL 157.944246 83.682835 \nL 158.048627 88.289187 \nL 158.100818 87.060824 \nL 158.153008 85.21828 \nL 158.205199 85.371824 \nL 158.257389 87.521455 \nL 158.30958 86.753727 \nL 158.36177 86.139545 \nL 158.466151 79.997735 \nL 158.570532 90.899439 \nL 158.622723 84.14345 \nL 158.674913 80.151274 \nL 158.727104 83.068631 \nL 158.831485 91.513612 \nL 158.883675 89.824614 \nL 158.935866 85.218257 \nL 158.988056 85.525346 \nL 159.092437 89.056882 \nL 159.301199 79.844165 \nL 159.35339 81.686706 \nL 159.40558 81.84025 \nL 159.509961 85.371785 \nL 159.614342 81.533153 \nL 159.666533 84.604055 \nL 159.718723 83.682782 \nL 159.823104 78.155153 \nL 160.031866 86.753676 \nL 160.136247 85.218222 \nL 160.188438 84.757585 \nL 160.240628 85.371764 \nL 160.345009 90.745842 \nL 160.3972 88.289117 \nL 160.44939 83.836306 \nL 160.501581 86.139482 \nL 160.553771 90.745835 \nL 160.605962 86.753659 \nL 160.658152 83.989845 \nL 160.762533 91.6671 \nL 160.866914 79.844119 \nL 160.919104 81.840205 \nL 160.971295 81.840203 \nL 161.023485 81.533111 \nL 161.127866 86.446553 \nL 161.232247 82.607921 \nL 161.336628 92.281264 \nL 161.388819 89.210359 \nL 161.597581 81.379549 \nL 161.754152 84.911083 \nL 161.858533 81.072451 \nL 162.171676 87.981974 \nL 162.223867 87.981973 \nL 162.276057 86.139429 \nL 162.328248 86.292973 \nL 162.380438 87.981968 \nL 162.432629 82.300795 \nL 162.484819 83.6827 \nL 162.53701 86.446512 \nL 162.5892 85.525239 \nL 162.693581 83.529149 \nL 162.745772 84.450418 \nL 162.797962 83.375601 \nL 162.850153 83.98978 \nL 163.006724 85.985862 \nL 163.058915 85.67877 \nL 163.163296 88.903216 \nL 163.267677 81.68659 \nL 163.372058 82.607858 \nL 163.528629 91.359928 \nL 163.63301 90.285108 \nL 163.789582 84.296842 \nL 164.050534 90.285096 \nL 164.259296 82.454286 \nL 164.363677 88.90318 \nL 164.468058 83.989732 \nL 164.520249 87.521269 \nL 164.572439 85.064545 \nL 164.62463 82.761366 \nL 164.67682 85.064542 \nL 164.729011 84.910995 \nL 164.781201 82.14718 \nL 164.833392 84.296811 \nL 164.885582 84.6039 \nL 164.989963 82.147174 \nL 165.094344 88.135433 \nL 165.146535 86.599979 \nL 165.198725 85.832252 \nL 165.250916 86.292886 \nL 165.407487 89.056695 \nL 165.511868 84.910972 \nL 165.564059 85.218061 \nL 165.616249 82.454246 \nL 165.72063 82.761333 \nL 165.929392 87.521227 \nL 165.981583 86.7535 \nL 166.033773 83.52905 \nL 166.085963 83.682593 \nL 166.190344 90.592123 \nL 166.242535 86.753492 \nL 166.294725 82.454226 \nL 166.346916 83.375495 \nL 166.451297 88.288938 \nL 166.503487 87.367665 \nL 166.868821 81.379392 \nL 166.973202 88.288922 \nL 167.077583 83.068383 \nL 167.286345 87.981823 \nL 167.442916 71.552484 \nL 167.495107 76.005293 \nL 167.651678 86.13927 \nL 167.703869 79.07619 \nL 167.80825 79.690368 \nL 168.017012 91.052705 \nL 168.069202 89.977886 \nL 168.121393 88.749524 \nL 168.225774 79.8439 \nL 168.277964 80.918715 \nL 168.330155 80.918714 \nL 168.434536 83.682524 \nL 168.486726 87.060516 \nL 168.591107 77.387167 \nL 168.695488 85.985694 \nL 168.747679 85.217966 \nL 168.799869 80.765155 \nL 168.85206 82.914785 \nL 168.956441 95.659032 \nL 169.008631 93.970033 \nL 169.165203 78.922602 \nL 169.217393 79.843871 \nL 169.269584 84.757315 \nL 169.321774 79.690323 \nL 169.426155 77.847778 \nL 169.739298 85.371482 \nL 169.89587 79.076125 \nL 170.156822 96.273177 \nL 170.313394 76.158754 \nL 170.365584 82.30056 \nL 170.417775 92.127449 \nL 170.469965 90.899086 \nL 170.522156 84.450188 \nL 170.574346 85.064367 \nL 170.626537 85.678546 \nL 170.730918 76.772923 \nL 170.783108 79.076099 \nL 170.835299 77.3871 \nL 170.99187 92.280978 \nL 171.044061 85.371443 \nL 171.096251 75.391005 \nL 171.148442 76.15873 \nL 171.252823 86.139163 \nL 171.305013 83.835984 \nL 171.357204 81.99344 \nL 171.461584 90.131331 \nL 171.618156 78.001258 \nL 171.670346 84.757244 \nL 171.722537 77.387074 \nL 171.774727 71.091721 \nL 171.931299 88.595865 \nL 172.08787 79.690241 \nL 172.140061 83.068233 \nL 172.192251 88.135222 \nL 172.296632 77.387057 \nL 172.401013 91.8203 \nL 172.557585 74.316146 \nL 172.609775 79.53668 \nL 172.714156 94.277014 \nL 172.818537 82.914668 \nL 172.922918 90.745468 \nL 173.027299 79.076032 \nL 173.07949 84.910747 \nL 173.13168 84.910746 \nL 173.183871 77.079941 \nL 173.236061 77.387029 \nL 173.340442 89.97773 \nL 173.392633 85.678464 \nL 173.444823 84.603646 \nL 173.601395 90.745448 \nL 173.653585 91.359627 \nL 173.757966 81.225643 \nL 173.810157 84.143 \nL 173.862347 85.064269 \nL 173.914538 81.072093 \nL 173.966728 81.225637 \nL 174.1233 92.43443 \nL 174.17549 89.363525 \nL 174.227681 88.442252 \nL 174.279871 89.824157 \nL 174.384252 81.225625 \nL 174.488633 89.20997 \nL 174.540824 84.450068 \nL 174.593014 84.757157 \nL 174.645205 87.213878 \nL 174.697395 86.446151 \nL 174.801776 84.14297 \nL 174.958348 90.745408 \nL 175.062729 77.694065 \nL 175.114919 79.229516 \nL 175.2193 85.217774 \nL 175.271491 84.142956 \nL 175.428062 92.280846 \nL 175.480253 91.052483 \nL 175.584634 86.753215 \nL 175.689015 76.00505 \nL 175.741205 78.154681 \nL 175.845586 89.056385 \nL 175.897777 87.674477 \nL 176.002158 89.824106 \nL 176.106539 84.142932 \nL 176.158729 84.45002 \nL 176.21092 87.367377 \nL 176.26311 84.910653 \nL 176.315301 86.446103 \nL 176.367491 82.914562 \nL 176.419682 83.375197 \nL 176.524063 90.438271 \nL 176.680634 80.764921 \nL 176.732825 81.532645 \nL 176.889396 97.501338 \nL 177.150348 77.233368 \nL 177.202539 75.237279 \nL 177.254729 85.831894 \nL 177.30692 80.611357 \nL 177.35911 81.532626 \nL 177.411301 81.07199 \nL 177.515682 94.123326 \nL 177.567872 90.591785 \nL 177.672253 90.438237 \nL 177.724444 91.359507 \nL 177.828825 75.851441 \nL 177.881015 82.607427 \nL 177.933206 95.19813 \nL 177.985396 93.355586 \nL 178.089777 82.453876 \nL 178.141968 85.831868 \nL 178.194158 91.359493 \nL 178.246349 90.284675 \nL 178.40292 80.918415 \nL 178.507301 83.682225 \nL 178.611682 77.540415 \nL 178.716063 89.516935 \nL 178.820444 74.62305 \nL 178.924825 93.355559 \nL 178.977016 91.97365 \nL 179.029206 91.359468 \nL 179.081397 92.894918 \nL 179.185778 85.985382 \nL 179.237968 80.150664 \nL 179.39454 95.965812 \nL 179.498921 73.394669 \nL 179.551111 76.158481 \nL 179.655492 95.965804 \nL 179.707683 89.209815 \nL 179.759873 77.847471 \nL 179.812064 81.993189 \nL 179.916445 93.66262 \nL 180.020826 81.839638 \nL 180.073016 85.371175 \nL 180.125207 95.198065 \nL 180.177397 86.906624 \nL 180.333969 90.745249 \nL 180.49054 76.311997 \nL 180.647112 90.591694 \nL 180.751493 84.756974 \nL 180.803683 83.989247 \nL 180.855874 84.756971 \nL 180.908064 84.603425 \nL 181.064636 75.08362 \nL 181.116826 77.693886 \nL 181.221207 93.816126 \nL 181.273398 89.056224 \nL 181.325588 84.910503 \nL 181.377779 85.371137 \nL 181.48216 92.434212 \nL 181.586541 104.410732 \nL 181.743112 86.292397 \nL 181.795303 90.438115 \nL 182.004065 79.843492 \nL 182.108445 91.052286 \nL 182.160636 88.288472 \nL 182.212826 84.603386 \nL 182.265017 85.217565 \nL 182.369398 87.981375 \nL 182.421588 93.201909 \nL 182.473779 88.442007 \nL 182.63035 76.158389 \nL 182.682541 70.784307 \nL 182.839112 98.729524 \nL 182.891303 89.363266 \nL 182.995684 71.859114 \nL 183.100065 89.209715 \nL 183.152255 88.902623 \nL 183.256636 75.237099 \nL 183.308827 82.300176 \nL 183.517589 95.6586 \nL 183.62197 76.46545 \nL 183.67416 81.993075 \nL 183.726351 87.060064 \nL 183.778541 85.985246 \nL 183.830732 74.929992 \nL 183.882922 75.390626 \nL 184.091684 93.816041 \nL 184.248256 77.847338 \nL 184.404827 98.115296 \nL 184.457018 95.505026 \nL 184.509208 75.851243 \nL 184.561399 77.233148 \nL 184.66578 93.969569 \nL 184.770161 73.240968 \nL 184.822351 83.067857 \nL 184.874542 99.497189 \nL 184.926732 94.737287 \nL 185.031113 87.060025 \nL 185.135494 92.127012 \nL 185.292066 79.229214 \nL 185.344256 85.063929 \nL 185.448637 95.658542 \nL 185.500828 92.127002 \nL 185.605209 80.457566 \nL 185.657399 87.520642 \nL 185.70959 87.981276 \nL 185.918352 80.304011 \nL 185.970542 76.15829 \nL 186.127114 91.512802 \nL 186.179304 76.311829 \nL 186.231495 80.918183 \nL 186.283685 90.437982 \nL 186.335876 86.906441 \nL 186.440257 75.39055 \nL 186.596828 92.74115 \nL 186.80559 85.678066 \nL 186.857781 85.83161 \nL 186.962162 84.603245 \nL 187.014352 80.918159 \nL 187.066543 82.607155 \nL 187.170924 91.512772 \nL 187.223114 90.898589 \nL 187.275305 92.126949 \nL 187.379686 78.614971 \nL 187.484066 90.130856 \nL 187.536257 82.760686 \nL 187.588447 76.311787 \nL 187.692828 87.674127 \nL 187.797209 82.914224 \nL 187.90159 89.209572 \nL 187.953781 87.981209 \nL 188.058162 79.996857 \nL 188.110352 74.008594 \nL 188.214733 97.808093 \nL 188.266924 94.276552 \nL 188.371305 83.221297 \nL 188.475686 97.193904 \nL 188.527876 96.272632 \nL 188.736638 84.296102 \nL 188.788829 84.449646 \nL 188.9454 91.205629 \nL 188.997591 91.512717 \nL 189.101972 81.225188 \nL 189.154162 83.374819 \nL 189.258543 87.827626 \nL 189.310734 86.906353 \nL 189.415115 77.540095 \nL 189.519496 84.91026 \nL 189.571686 81.225174 \nL 189.780448 87.366975 \nL 189.884829 79.075532 \nL 189.93702 79.382621 \nL 190.145782 97.500945 \nL 190.197972 90.898501 \nL 190.302353 80.150336 \nL 190.354544 82.299967 \nL 190.406734 80.918059 \nL 190.458925 81.378693 \nL 190.563306 85.677954 \nL 190.667687 80.457415 \nL 190.719877 82.760592 \nL 190.824258 90.130757 \nL 190.98083 79.38259 \nL 191.085211 87.827571 \nL 191.137401 85.217302 \nL 191.241782 83.681847 \nL 191.293973 80.150306 \nL 191.346163 82.914118 \nL 191.398354 87.059836 \nL 191.450544 85.217293 \nL 191.502735 80.303846 \nL 191.554925 81.37866 \nL 191.659306 86.752738 \nL 191.711497 85.217285 \nL 191.763687 82.760561 \nL 191.815878 86.292098 \nL 191.868068 85.985006 \nL 191.920259 85.370824 \nL 191.972449 81.685738 \nL 192.02464 85.217276 \nL 192.129021 93.048076 \nL 192.285592 78.614825 \nL 192.389973 86.445626 \nL 192.442164 83.681811 \nL 192.494354 80.764452 \nL 192.546545 82.914082 \nL 192.650926 85.677893 \nL 192.807497 81.839259 \nL 192.859687 81.071531 \nL 192.911878 81.532165 \nL 193.068449 86.906241 \nL 193.12064 84.295972 \nL 193.17283 85.217242 \nL 193.329402 87.827505 \nL 193.485973 84.910142 \nL 193.590354 88.134587 \nL 193.694735 85.063681 \nL 193.799116 89.362942 \nL 193.955688 83.374676 \nL 194.007878 87.366849 \nL 194.060069 86.292031 \nL 194.268831 80.150218 \nL 194.373212 91.359013 \nL 194.425402 88.134563 \nL 194.529783 79.382485 \nL 194.581974 83.067567 \nL 194.634164 87.520376 \nL 194.686355 86.445558 \nL 194.738545 81.532111 \nL 194.790736 83.067561 \nL 194.895117 90.591272 \nL 194.947307 88.595183 \nL 195.051688 80.764376 \nL 195.103879 83.067552 \nL 195.156069 88.134541 \nL 195.20826 84.603 \nL 195.312641 83.374636 \nL 195.469212 88.902257 \nL 195.521403 90.898343 \nL 195.677974 83.681715 \nL 195.782355 93.969239 \nL 195.938927 83.221072 \nL 196.043308 87.059698 \nL 196.147689 80.610798 \nL 196.25207 82.146247 \nL 196.408641 89.055775 \nL 196.460832 88.902228 \nL 196.565213 87.673864 \nL 196.617403 88.902223 \nL 196.721784 82.299778 \nL 196.773975 83.681683 \nL 196.878356 91.051848 \nL 196.930546 89.055759 \nL 196.982737 84.756493 \nL 197.034927 86.752579 \nL 197.087118 86.906122 \nL 197.191499 81.224948 \nL 197.243689 83.221033 \nL 197.29588 87.520297 \nL 197.34807 86.138389 \nL 197.400261 84.295845 \nL 197.452451 85.063569 \nL 197.556832 85.984837 \nL 197.661213 84.756473 \nL 197.713404 85.984833 \nL 197.817785 91.358911 \nL 198.026547 80.764287 \nL 198.078737 84.602915 \nL 198.130927 87.059636 \nL 198.183118 82.606825 \nL 198.235308 82.760369 \nL 198.339689 86.598995 \nL 198.39188 85.984813 \nL 198.496261 81.071364 \nL 198.548451 83.988721 \nL 198.600642 85.063535 \nL 198.652832 84.756443 \nL 198.809404 82.760351 \nL 198.965975 90.744696 \nL 199.018166 87.213155 \nL 199.122547 87.213152 \nL 199.279118 83.528063 \nL 199.43569 87.980869 \nL 199.48788 87.059596 \nL 199.644452 83.528053 \nL 199.801023 88.748584 \nL 199.905404 85.370587 \nL 199.957595 86.445402 \nL 200.061976 89.055667 \nL 200.218547 82.146129 \nL 200.270738 83.835124 \nL 200.4795 86.291841 \nL 200.636071 81.531936 \nL 200.688262 83.835112 \nL 200.740452 85.524107 \nL 200.792643 85.217015 \nL 200.844833 82.146111 \nL 200.897024 83.528015 \nL 201.053595 89.516273 \nL 201.105786 83.220919 \nL 201.157976 85.67764 \nL 201.210167 85.524093 \nL 201.262357 86.445363 \nL 201.366738 82.453185 \nL 201.418929 79.38228 \nL 201.471119 79.99646 \nL 201.52331 81.224819 \nL 201.679881 89.516254 \nL 201.784262 81.531902 \nL 201.836453 83.527988 \nL 201.940834 87.520159 \nL 201.993024 86.905977 \nL 202.045215 87.05952 \nL 202.306167 82.913793 \nL 202.358358 83.067337 \nL 202.462739 86.598872 \nL 202.514929 86.445326 \nL 202.61931 83.374419 \nL 202.671501 80.457059 \nL 202.775882 87.059499 \nL 202.828072 86.138226 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-width:0.5;\"/>\n   </g>\n   <g id=\"patch_3\">\n    <path d=\"M 38.482813 120.52 \nL 38.482813 49.92 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n   <g id=\"patch_4\">\n    <path d=\"M 210.654037 120.52 \nL 210.654037 49.92 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n   <g id=\"patch_5\">\n    <path d=\"M 38.482813 120.52 \nL 210.654037 120.52 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n   <g id=\"patch_6\">\n    <path d=\"M 38.482813 49.92 \nL 210.654037 49.92 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n  </g>\n  <g id=\"axes_2\">\n   <g id=\"patch_7\">\n    <path d=\"M 249.082812 120.52 \nL 421.254037 120.52 \nL 421.254037 49.92 \nL 249.082812 49.92 \nz\n\" style=\"fill:#ffffff;\"/>\n   </g>\n   <g id=\"matplotlib.axis_3\">\n    <g id=\"xtick_5\">\n     <g id=\"line2d_9\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"256.908777\" xlink:href=\"#mdb113ebe91\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_9\">\n      <!-- 0 -->\n      <g transform=\"translate(253.727527 135.118437)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"xtick_6\">\n     <g id=\"line2d_10\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"309.099272\" xlink:href=\"#mdb113ebe91\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_10\">\n      <!-- 1000 -->\n      <g transform=\"translate(296.374272 135.118437)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-49\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"xtick_7\">\n     <g id=\"line2d_11\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"361.289767\" xlink:href=\"#mdb113ebe91\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_11\">\n      <!-- 2000 -->\n      <g transform=\"translate(348.564767 135.118437)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-50\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"xtick_8\">\n     <g id=\"line2d_12\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"413.480263\" xlink:href=\"#mdb113ebe91\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_12\">\n      <!-- 3000 -->\n      <g transform=\"translate(400.755263 135.118437)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-51\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n   </g>\n   <g id=\"matplotlib.axis_4\">\n    <g id=\"ytick_4\">\n     <g id=\"line2d_13\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"249.082812\" xlink:href=\"#mf24712d37c\" y=\"105.824694\"/>\n      </g>\n     </g>\n     <g id=\"text_13\">\n      <!-- −2.5 -->\n      <g transform=\"translate(217.8 109.623913)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-8722\"/>\n       <use x=\"83.789062\" xlink:href=\"#DejaVuSans-50\"/>\n       <use x=\"147.412109\" xlink:href=\"#DejaVuSans-46\"/>\n       <use x=\"179.199219\" xlink:href=\"#DejaVuSans-53\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"ytick_5\">\n     <g id=\"line2d_14\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"249.082812\" xlink:href=\"#mf24712d37c\" y=\"85.447653\"/>\n      </g>\n     </g>\n     <g id=\"text_14\">\n      <!-- 0.0 -->\n      <g transform=\"translate(226.179688 89.246872)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"ytick_6\">\n     <g id=\"line2d_15\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"249.082812\" xlink:href=\"#mf24712d37c\" y=\"65.070612\"/>\n      </g>\n     </g>\n     <g id=\"text_15\">\n      <!-- 2.5 -->\n      <g transform=\"translate(226.179688 68.86983)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-50\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-46\"/>\n       <use x=\"95.410156\" xlink:href=\"#DejaVuSans-53\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"text_16\">\n     <!-- 1e−15 -->\n     <g transform=\"translate(249.082812 46.92)scale(0.1 -0.1)\">\n      <use xlink:href=\"#DejaVuSans-49\"/>\n      <use x=\"63.623047\" xlink:href=\"#DejaVuSans-101\"/>\n      <use x=\"125.146484\" xlink:href=\"#DejaVuSans-8722\"/>\n      <use x=\"208.935547\" xlink:href=\"#DejaVuSans-49\"/>\n      <use x=\"272.558594\" xlink:href=\"#DejaVuSans-53\"/>\n     </g>\n    </g>\n   </g>\n   <g id=\"line2d_16\">\n    <path clip-path=\"url(#pe68711bdcf)\" d=\"M 256.908777 85.344758 \nL 257.326301 85.482498 \nL 257.482873 85.403158 \nL 257.796016 85.596552 \nL 258.109159 85.459773 \nL 258.526683 85.513873 \nL 258.683254 85.428206 \nL 258.996397 85.46487 \nL 259.152969 85.50406 \nL 259.30954 85.58155 \nL 259.570492 85.482993 \nL 259.935826 85.464693 \nL 260.144588 85.495802 \nL 260.770874 85.464149 \nL 261.031826 85.438056 \nL 261.292779 85.481549 \nL 261.919065 85.481546 \nL 262.44097 85.489683 \nL 262.649732 85.394625 \nL 262.910684 85.471116 \nL 263.432589 85.44482 \nL 263.589161 85.328557 \nL 263.850113 85.498327 \nL 264.319828 85.47474 \nL 264.476399 85.508711 \nL 264.632971 85.453573 \nL 265.62459 85.576794 \nL 265.781161 85.552586 \nL 266.094304 85.432901 \nL 266.250876 85.447849 \nL 266.929352 85.447352 \nL 267.190305 85.344921 \nL 267.399067 85.526967 \nL 267.660019 85.269071 \nL 267.816591 85.430497 \nL 267.868781 85.381381 \nL 267.973162 85.39338 \nL 268.077543 85.51238 \nL 268.286305 85.307297 \nL 269.277925 85.463739 \nL 269.382306 85.576969 \nL 269.434496 85.520349 \nL 269.538877 85.395004 \nL 269.643258 85.429329 \nL 269.79983 85.262269 \nL 269.956401 85.378175 \nL 270.112973 85.428689 \nL 270.269544 85.508697 \nL 270.426115 85.411682 \nL 270.634877 85.343805 \nL 270.739258 85.363955 \nL 270.843639 85.529695 \nL 270.89583 85.503345 \nL 271.052401 85.505309 \nL 271.156782 85.5014 \nL 271.365544 85.314828 \nL 271.522116 85.476993 \nL 271.730878 85.391383 \nL 271.887449 85.36033 \nL 272.200592 85.518204 \nL 272.357164 85.455337 \nL 272.513735 85.461746 \nL 272.670307 85.353073 \nL 272.879069 85.509052 \nL 272.98345 85.442623 \nL 273.087831 85.508639 \nL 273.192212 85.396374 \nL 273.244402 85.442099 \nL 273.505355 85.543959 \nL 273.818498 85.442727 \nL 274.131641 85.402408 \nL 274.340403 85.419915 \nL 274.549165 85.3293 \nL 274.705736 85.449185 \nL 274.810117 85.41151 \nL 274.966689 85.309212 \nL 275.12326 85.446214 \nL 275.279832 85.339512 \nL 275.592974 85.521725 \nL 276.532403 85.348056 \nL 276.636784 85.357175 \nL 276.741165 85.452677 \nL 276.949927 85.371886 \nL 277.158689 85.476099 \nL 278.411261 85.478049 \nL 278.724404 85.529883 \nL 278.933166 85.430604 \nL 279.141928 85.445214 \nL 280.551072 85.379027 \nL 280.707643 85.415512 \nL 280.812024 85.391148 \nL 280.968595 85.405767 \nL 281.751453 85.468451 \nL 281.960215 85.480069 \nL 282.377739 85.426642 \nL 282.743072 85.476691 \nL 283.734692 85.441191 \nL 284.047835 85.388473 \nL 284.517549 85.409613 \nL 284.726311 85.464374 \nL 285.196026 85.497474 \nL 287.179264 85.467907 \nL 287.544598 85.476309 \nL 288.014312 85.406213 \nL 290.206313 85.482753 \nL 290.832599 85.404218 \nL 291.145742 85.423089 \nL 292.711457 85.486643 \nL 292.868028 85.536766 \nL 293.128981 85.507271 \nL 293.285552 85.545106 \nL 293.442124 85.530277 \nL 294.016219 85.433786 \nL 294.172791 85.41495 \nL 294.277172 85.443722 \nL 294.485934 85.47062 \nL 294.746886 85.338991 \nL 294.903458 85.435869 \nL 295.11222 85.397685 \nL 295.477553 85.378155 \nL 295.895077 85.324308 \nL 296.051649 85.60509 \nL 296.103839 85.57665 \nL 296.416982 85.219296 \nL 296.573554 85.353429 \nL 296.625744 85.243615 \nL 296.677935 85.283728 \nL 297.147649 85.562569 \nL 297.356411 85.487023 \nL 297.408601 85.609705 \nL 297.460792 85.573356 \nL 297.773935 85.414843 \nL 298.087078 85.477718 \nL 298.191459 85.354867 \nL 298.243649 85.40495 \nL 300.800984 85.39995 \nL 300.957555 85.440402 \nL 301.009746 85.438006 \nL 301.114127 85.603039 \nL 301.166317 85.554337 \nL 301.636032 85.440714 \nL 301.740413 85.480349 \nL 301.949175 85.347151 \nL 302.053556 85.334645 \nL 302.210127 85.334809 \nL 302.314508 85.443816 \nL 302.366698 85.386384 \nL 302.52327 85.260751 \nL 302.57546 85.322678 \nL 302.732032 85.375214 \nL 302.940794 85.47389 \nL 303.097365 85.365929 \nL 303.149556 85.437722 \nL 303.358318 85.450131 \nL 304.349937 85.396355 \nL 304.454318 85.48762 \nL 304.558699 85.450548 \nL 304.767461 85.509643 \nL 304.976223 85.493038 \nL 305.289366 85.545 \nL 305.393747 85.42224 \nL 305.498128 85.564178 \nL 305.550319 85.531496 \nL 305.602509 85.506352 \nL 305.70689 85.647186 \nL 305.759081 85.600808 \nL 305.915652 85.624415 \nL 306.072224 85.39278 \nL 306.489748 85.50656 \nL 306.646319 85.509208 \nL 306.7507 85.612004 \nL 306.802891 85.693204 \nL 306.855081 85.611979 \nL 306.959462 85.443794 \nL 307.011653 85.484765 \nL 307.585748 85.446828 \nL 307.8467 85.640479 \nL 308.055462 85.465267 \nL 308.212034 85.469503 \nL 308.577367 85.292035 \nL 308.733939 85.499777 \nL 308.83832 85.316831 \nL 309.047082 85.581995 \nL 309.099272 85.45851 \nL 309.151463 85.644676 \nL 309.203653 85.340897 \nL 309.255844 85.57541 \nL 309.308034 85.488449 \nL 309.360225 85.078673 \nL 309.412415 85.384449 \nL 309.464606 85.221662 \nL 309.516796 85.336599 \nL 309.621177 85.27248 \nL 309.673368 85.048276 \nL 309.88213 85.606716 \nL 309.93432 85.377669 \nL 309.986511 85.643847 \nL 310.090892 85.477662 \nL 310.143082 85.515432 \nL 310.195273 85.516824 \nL 310.247463 85.657842 \nL 310.299654 85.510675 \nL 310.351844 85.567049 \nL 310.404035 85.424342 \nL 310.456225 85.833918 \nL 310.508416 85.720802 \nL 310.560606 85.727007 \nL 310.664987 85.22349 \nL 310.717178 85.530482 \nL 310.873749 85.635239 \nL 310.92594 85.325763 \nL 310.97813 85.448668 \nL 311.134702 85.535147 \nL 311.186892 85.342382 \nL 311.239083 85.441675 \nL 311.291273 85.536621 \nL 311.447845 85.259494 \nL 311.656607 85.287747 \nL 311.813178 85.903023 \nL 311.865369 85.760019 \nL 312.02194 84.931155 \nL 312.126321 85.281217 \nL 312.178512 85.212743 \nL 312.230702 85.36676 \nL 312.335083 85.115812 \nL 312.491655 85.423359 \nL 312.543845 85.380434 \nL 312.700417 85.773739 \nL 313.222321 85.191497 \nL 313.274512 85.343723 \nL 313.326702 85.427334 \nL 313.378893 85.764204 \nL 313.431083 85.520742 \nL 313.587655 85.14506 \nL 313.744226 85.393588 \nL 313.900798 85.478954 \nL 314.10956 85.557579 \nL 314.318322 85.134971 \nL 314.474893 85.340367 \nL 314.579274 85.296537 \nL 314.735846 85.369895 \nL 314.944608 85.416357 \nL 315.048989 85.526624 \nL 315.257751 85.201097 \nL 315.309941 85.332588 \nL 315.414322 85.50992 \nL 315.466513 85.431735 \nL 315.570894 85.390607 \nL 315.675275 85.521593 \nL 315.727465 85.464313 \nL 315.779656 85.382468 \nL 315.831846 85.44495 \nL 316.040608 85.473319 \nL 316.353751 85.47099 \nL 316.510323 85.411808 \nL 316.666894 85.632889 \nL 316.875656 85.520406 \nL 317.032228 85.402118 \nL 317.188799 85.319108 \nL 317.345371 85.585212 \nL 317.397561 85.552089 \nL 317.554133 85.376371 \nL 317.971657 85.450647 \nL 318.128228 85.342444 \nL 318.284799 85.57064 \nL 318.33699 85.514983 \nL 318.597942 85.358281 \nL 318.911085 85.38638 \nL 319.119847 85.420915 \nL 319.224228 85.387563 \nL 319.43299 85.453272 \nL 320.42461 85.449936 \nL 320.581181 85.486718 \nL 320.946515 85.465163 \nL 321.46842 85.360495 \nL 321.572801 85.327562 \nL 321.990325 85.468683 \nL 322.303468 85.399746 \nL 323.034135 85.50022 \nL 323.399468 85.493225 \nL 323.66042 85.476414 \nL 323.921373 85.424819 \nL 324.547659 85.464176 \nL 324.70423 85.415536 \nL 324.912992 85.466734 \nL 325.539278 85.414561 \nL 325.69585 85.471005 \nL 326.374326 85.413389 \nL 326.478707 85.401018 \nL 326.583088 85.441685 \nL 326.687469 85.463903 \nL 326.844041 85.460527 \nL 327.78347 85.454554 \nL 328.200994 85.409694 \nL 328.357565 85.454576 \nL 328.87947 85.466624 \nL 329.036041 85.425784 \nL 329.505756 85.460644 \nL 329.714518 85.513996 \nL 329.871089 85.450166 \nL 330.079851 85.477297 \nL 330.392994 85.345779 \nL 330.601756 85.421589 \nL 330.706137 85.446642 \nL 330.862709 85.443282 \nL 330.96709 85.392559 \nL 331.175852 85.508754 \nL 331.906519 85.478357 \nL 332.06309 85.481299 \nL 332.271852 85.499955 \nL 332.376233 85.550835 \nL 332.584995 85.46231 \nL 333.576615 85.500609 \nL 333.733186 85.427712 \nL 333.889758 85.387985 \nL 334.098519 85.503875 \nL 334.255091 85.415347 \nL 334.411662 85.574225 \nL 334.620424 85.513267 \nL 335.559853 85.513485 \nL 335.716425 85.525592 \nL 336.708044 85.418124 \nL 336.968997 85.383059 \nL 337.073378 85.426688 \nL 337.229949 85.475845 \nL 337.490902 85.449269 \nL 337.751854 85.461952 \nL 337.908426 85.471165 \nL 338.169378 85.531568 \nL 338.32595 85.478869 \nL 338.430331 85.546865 \nL 338.482521 85.469059 \nL 338.795664 85.52496 \nL 339.004426 85.489652 \nL 339.160998 85.487402 \nL 339.839474 85.415006 \nL 340.361379 85.493285 \nL 340.51795 85.360125 \nL 340.831093 85.43889 \nL 341.248617 85.451755 \nL 341.405189 85.419928 \nL 341.56176 85.477383 \nL 342.970904 85.480981 \nL 343.075285 85.541371 \nL 343.231856 85.469171 \nL 343.336237 85.584205 \nL 343.388428 85.519095 \nL 343.962523 85.451452 \nL 344.066904 85.584031 \nL 344.275666 85.300877 \nL 344.380047 85.544407 \nL 344.432238 85.447023 \nL 344.536619 85.424272 \nL 344.69319 85.540539 \nL 344.954142 85.448231 \nL 345.162904 85.532447 \nL 345.319476 85.171323 \nL 345.371666 85.349642 \nL 345.423857 85.462094 \nL 345.476047 85.38174 \nL 345.737 85.36651 \nL 345.997952 85.599251 \nL 346.206714 85.437482 \nL 346.311095 85.582833 \nL 346.467667 85.260922 \nL 346.833 85.491698 \nL 346.989572 85.274663 \nL 347.146143 85.407407 \nL 347.250524 85.33287 \nL 347.302715 85.315077 \nL 347.459286 85.5778 \nL 347.563667 85.479456 \nL 347.720239 85.504908 \nL 348.033382 85.548894 \nL 348.085572 85.634223 \nL 348.137763 85.586979 \nL 348.711858 85.375685 \nL 348.816239 85.605031 \nL 348.86843 85.499546 \nL 348.972811 85.405938 \nL 349.025001 85.457492 \nL 349.390335 85.599596 \nL 349.703478 85.254783 \nL 349.807859 85.415 \nL 349.96443 85.269958 \nL 350.173192 85.384342 \nL 350.329763 85.390043 \nL 350.381954 85.348692 \nL 350.434144 85.418279 \nL 350.538525 85.434382 \nL 350.642906 85.270896 \nL 350.799478 85.46644 \nL 350.903859 85.451216 \nL 351.112621 85.285044 \nL 351.477954 85.447745 \nL 351.634526 85.293593 \nL 351.738907 85.677079 \nL 351.791097 85.609395 \nL 351.895478 85.530178 \nL 351.947669 85.564609 \nL 352.05205 85.321789 \nL 352.10424 85.387014 \nL 352.469574 85.463742 \nL 352.626145 85.408652 \nL 352.782717 85.539591 \nL 352.887098 85.590286 \nL 352.939288 85.500367 \nL 352.991479 85.561532 \nL 353.09586 85.621687 \nL 353.356812 85.213486 \nL 353.461193 85.367951 \nL 353.513384 85.32369 \nL 353.669955 85.349986 \nL 353.774336 85.447714 \nL 353.930908 85.288725 \nL 354.035289 85.496077 \nL 354.087479 85.427587 \nL 354.348432 85.430633 \nL 354.452813 85.467924 \nL 354.713765 85.418027 \nL 354.818146 85.497357 \nL 355.18348 85.357564 \nL 355.23567 85.434238 \nL 355.287861 85.328306 \nL 355.340051 85.273276 \nL 355.392241 85.332788 \nL 355.496622 85.395807 \nL 355.601003 85.306837 \nL 355.653194 85.343189 \nL 355.966337 85.567182 \nL 356.070718 85.366805 \nL 356.175099 85.633727 \nL 356.227289 85.552703 \nL 356.592623 85.558131 \nL 356.644813 85.636523 \nL 356.749194 85.501914 \nL 356.905766 85.50031 \nL 356.957956 85.43282 \nL 357.010147 85.481107 \nL 357.166718 85.509393 \nL 357.32329 85.213573 \nL 357.427671 85.338988 \nL 357.584242 85.493193 \nL 357.688623 85.18265 \nL 357.740814 85.285395 \nL 357.845195 85.44519 \nL 357.897385 85.420263 \nL 358.158338 85.570478 \nL 358.575862 85.370286 \nL 358.732433 85.485016 \nL 358.889005 85.431891 \nL 359.097767 85.565947 \nL 359.41091 85.391006 \nL 359.4631 85.561565 \nL 359.515291 85.440501 \nL 359.671862 85.369004 \nL 359.776243 85.457241 \nL 359.828434 85.576836 \nL 359.880624 85.471902 \nL 360.037196 85.3987 \nL 360.245958 85.354623 \nL 360.350339 85.404086 \nL 360.402529 85.359969 \nL 360.45472 85.459987 \nL 360.50691 85.560422 \nL 360.559101 85.524266 \nL 360.767862 85.39154 \nL 360.976624 85.403293 \nL 361.081005 85.177112 \nL 361.289767 85.475139 \nL 361.55072 85.405687 \nL 361.707291 85.291016 \nL 361.811672 85.354779 \nL 361.916053 85.566589 \nL 362.020434 85.44291 \nL 362.177006 85.673493 \nL 362.281387 85.418962 \nL 362.333577 85.536477 \nL 362.542339 85.457493 \nL 362.698911 85.366159 \nL 362.855482 85.417964 \nL 363.220816 85.550231 \nL 363.377387 85.399845 \nL 363.63834 85.284449 \nL 363.742721 85.44186 \nL 363.794911 85.388066 \nL 363.951483 85.462569 \nL 364.108054 85.54574 \nL 364.264626 85.345551 \nL 364.316816 85.34289 \nL 364.369007 85.455059 \nL 364.421197 85.402778 \nL 364.577769 85.285322 \nL 364.838721 85.509944 \nL 364.995293 85.495177 \nL 365.308436 85.493369 \nL 365.412817 85.368942 \nL 365.465007 85.414024 \nL 365.569388 85.47431 \nL 365.673769 85.611591 \nL 365.72596 85.582952 \nL 365.986912 85.431458 \nL 366.091293 85.510496 \nL 366.143483 85.465894 \nL 366.247864 85.440779 \nL 366.404436 85.523529 \nL 366.665388 85.522865 \nL 366.926341 85.359182 \nL 367.135103 85.485793 \nL 367.500436 85.424404 \nL 368.126722 85.407239 \nL 368.283294 85.407682 \nL 369.118342 85.438958 \nL 369.170532 85.488627 \nL 369.222723 85.423313 \nL 369.379294 85.498305 \nL 369.535866 85.501881 \nL 370.527485 85.352473 \nL 370.736247 85.449168 \nL 371.414723 85.406238 \nL 371.571295 85.341955 \nL 372.354152 85.403695 \nL 372.510724 85.387933 \nL 372.876057 85.467146 \nL 373.711105 85.44934 \nL 373.867677 85.425313 \nL 375.015868 85.45896 \nL 375.537773 85.414115 \nL 377.36444 85.421763 \nL 377.834154 85.414146 \nL 378.773583 85.433845 \nL 379.034536 85.418213 \nL 379.713012 85.421592 \nL 380.130536 85.403866 \nL 380.809013 85.4706 \nL 380.965584 85.436644 \nL 381.122156 85.429222 \nL 382.948823 85.46104 \nL 383.575109 85.454058 \nL 383.836061 85.41897 \nL 384.201395 85.496055 \nL 387.385015 85.499893 \nL 387.541586 85.497559 \nL 387.802539 85.381145 \nL 388.063491 85.482692 \nL 388.324444 85.51455 \nL 388.481015 85.472295 \nL 388.585396 85.553197 \nL 388.637587 85.51954 \nL 388.794158 85.525523 \nL 389.420444 85.388263 \nL 389.629206 85.523827 \nL 389.785778 85.475729 \nL 389.890159 85.485056 \nL 390.04673 85.468143 \nL 390.151111 85.408185 \nL 390.255492 85.537026 \nL 390.307683 85.489969 \nL 390.412064 85.443627 \nL 390.568635 85.50667 \nL 390.673016 85.480406 \nL 390.829588 85.538753 \nL 390.933969 85.495464 \nL 391.142731 85.361095 \nL 391.247112 85.485474 \nL 391.299302 85.43991 \nL 391.612445 85.333605 \nL 391.716826 85.351675 \nL 391.821207 85.555861 \nL 391.873398 85.527636 \nL 392.029969 85.520638 \nL 392.186541 85.70767 \nL 392.238731 85.622155 \nL 392.343112 85.512441 \nL 392.447493 85.518989 \nL 392.604065 85.402347 \nL 392.708445 85.532969 \nL 392.760636 85.488341 \nL 392.917207 85.450886 \nL 393.073779 85.462584 \nL 393.23035 85.320635 \nL 393.282541 85.259223 \nL 393.334731 85.320876 \nL 393.439112 85.508715 \nL 393.491303 85.4534 \nL 393.595684 85.281734 \nL 393.647874 85.359564 \nL 393.752255 85.408147 \nL 393.856636 85.316694 \nL 394.013208 85.421059 \nL 394.117589 85.570471 \nL 394.169779 85.420794 \nL 394.22197 85.327198 \nL 394.27416 85.380011 \nL 394.378541 85.415337 \nL 394.430732 85.284578 \nL 394.482922 85.31283 \nL 394.691684 85.518101 \nL 394.848256 85.386364 \nL 395.057018 85.60638 \nL 395.161399 85.375286 \nL 395.26578 85.517992 \nL 395.31797 85.482186 \nL 395.370161 85.348861 \nL 395.422351 85.475284 \nL 395.474542 85.656276 \nL 395.526732 85.57964 \nL 395.892066 85.401454 \nL 396.100828 85.570638 \nL 396.205209 85.389732 \nL 396.257399 85.512366 \nL 396.622733 85.368298 \nL 396.727114 85.518811 \nL 396.779304 85.294003 \nL 396.831495 85.366312 \nL 396.883685 85.491373 \nL 396.935876 85.414153 \nL 397.040257 85.333528 \nL 397.196828 85.585733 \nL 397.666543 85.388039 \nL 397.823114 85.527828 \nL 397.875305 85.526556 \nL 397.979686 85.308803 \nL 398.031876 85.355964 \nL 398.084066 85.47174 \nL 398.136257 85.371961 \nL 398.188447 85.271152 \nL 398.292828 85.436759 \nL 398.397209 85.395461 \nL 398.553781 85.475365 \nL 398.710352 85.314989 \nL 398.762543 85.487277 \nL 398.814733 85.629006 \nL 398.866924 85.578772 \nL 398.971305 85.451277 \nL 399.127876 85.602616 \nL 399.336638 85.441312 \nL 399.388829 85.443724 \nL 399.49321 85.552552 \nL 399.5454 85.525197 \nL 399.649781 85.463103 \nL 399.701972 85.37032 \nL 399.754162 85.426196 \nL 400.53702 85.380147 \nL 400.745782 85.620215 \nL 400.902353 85.385123 \nL 400.954544 85.42889 \nL 401.215496 85.346659 \nL 401.319877 85.367424 \nL 401.424258 85.489665 \nL 401.58083 85.297372 \nL 401.685211 85.442058 \nL 401.893973 85.323005 \nL 402.62464 85.465889 \nL 402.729021 85.587657 \nL 402.781211 85.451739 \nL 402.885592 85.306121 \nL 402.937783 85.355619 \nL 402.989973 85.422505 \nL 403.042164 85.376654 \nL 403.146545 85.370434 \nL 403.250926 85.397383 \nL 403.459687 85.277123 \nL 403.668449 85.489289 \nL 403.77283 85.442191 \nL 403.929402 85.507471 \nL 405.390736 85.4159 \nL 405.547307 85.480105 \nL 406.069212 85.531831 \nL 406.225784 85.526655 \nL 406.277974 85.425405 \nL 406.382355 85.648662 \nL 406.538927 85.433362 \nL 406.747689 85.386436 \nL 406.85207 85.405641 \nL 407.008641 85.51554 \nL 407.217403 85.576763 \nL 407.321784 85.449819 \nL 407.373975 85.509663 \nL 407.478356 85.629442 \nL 407.530546 85.571721 \nL 407.582737 85.44365 \nL 407.634927 85.501871 \nL 407.739308 85.454894 \nL 407.843689 85.389981 \nL 407.89588 85.531424 \nL 407.94807 85.427285 \nL 408.104642 85.426195 \nL 408.261213 85.471898 \nL 408.365594 85.544743 \nL 408.522166 85.525327 \nL 408.626547 85.354434 \nL 408.678737 85.462808 \nL 408.730927 85.527405 \nL 408.835308 85.363283 \nL 408.99188 85.437053 \nL 409.096261 85.285639 \nL 409.148451 85.379632 \nL 409.305023 85.400625 \nL 409.513785 85.426246 \nL 409.565975 85.600252 \nL 409.618166 85.488959 \nL 410.244452 85.428727 \nL 410.401023 85.549204 \nL 410.714166 85.526004 \nL 410.818547 85.337126 \nL 410.870738 85.405035 \nL 411.0795 85.440252 \nL 411.236071 85.326716 \nL 411.392643 85.431924 \nL 411.497024 85.419721 \nL 411.653595 85.52765 \nL 411.705786 85.38768 \nL 411.757976 85.456924 \nL 412.227691 85.417517 \nL 412.279881 85.506696 \nL 412.332072 85.455272 \nL 412.384262 85.362317 \nL 412.436453 85.429467 \nL 412.593024 85.476757 \nL 412.801786 85.434094 \nL 412.958358 85.385545 \nL 413.16712 85.424651 \nL 413.271501 85.31605 \nL 413.323691 85.395243 \nL 413.428072 85.425437 \nL 413.428072 85.425437 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-width:0.5;\"/>\n   </g>\n   <g id=\"patch_8\">\n    <path d=\"M 249.082812 120.52 \nL 249.082812 49.92 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n   <g id=\"patch_9\">\n    <path d=\"M 421.254037 120.52 \nL 421.254037 49.92 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n   <g id=\"patch_10\">\n    <path d=\"M 249.082812 120.52 \nL 421.254037 120.52 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n   <g id=\"patch_11\">\n    <path d=\"M 249.082812 49.92 \nL 421.254037 49.92 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n  </g>\n  <g id=\"text_17\">\n   <!-- BG.ACR..DP.0346833.npz -->\n   <g transform=\"translate(146.81375 16.318125)scale(0.12 -0.12)\">\n    <defs>\n     <path d=\"M 19.671875 34.8125 \nL 19.671875 8.109375 \nL 35.5 8.109375 \nQ 43.453125 8.109375 47.28125 11.40625 \nQ 51.125 14.703125 51.125 21.484375 \nQ 51.125 28.328125 47.28125 31.5625 \nQ 43.453125 34.8125 35.5 34.8125 \nz\nM 19.671875 64.796875 \nL 19.671875 42.828125 \nL 34.28125 42.828125 \nQ 41.5 42.828125 45.03125 45.53125 \nQ 48.578125 48.25 48.578125 53.8125 \nQ 48.578125 59.328125 45.03125 62.0625 \nQ 41.5 64.796875 34.28125 64.796875 \nz\nM 9.8125 72.90625 \nL 35.015625 72.90625 \nQ 46.296875 72.90625 52.390625 68.21875 \nQ 58.5 63.53125 58.5 54.890625 \nQ 58.5 48.1875 55.375 44.234375 \nQ 52.25 40.28125 46.1875 39.3125 \nQ 53.46875 37.75 57.5 32.78125 \nQ 61.53125 27.828125 61.53125 20.40625 \nQ 61.53125 10.640625 54.890625 5.3125 \nQ 48.25 0 35.984375 0 \nL 9.8125 0 \nz\n\" id=\"DejaVuSans-66\"/>\n     <path d=\"M 59.515625 10.40625 \nL 59.515625 29.984375 \nL 43.40625 29.984375 \nL 43.40625 38.09375 \nL 69.28125 38.09375 \nL 69.28125 6.78125 \nQ 63.578125 2.734375 56.6875 0.65625 \nQ 49.8125 -1.421875 42 -1.421875 \nQ 24.90625 -1.421875 15.25 8.5625 \nQ 5.609375 18.5625 5.609375 36.375 \nQ 5.609375 54.25 15.25 64.234375 \nQ 24.90625 74.21875 42 74.21875 \nQ 49.125 74.21875 55.546875 72.453125 \nQ 61.96875 70.703125 67.390625 67.28125 \nL 67.390625 56.78125 \nQ 61.921875 61.421875 55.765625 63.765625 \nQ 49.609375 66.109375 42.828125 66.109375 \nQ 29.4375 66.109375 22.71875 58.640625 \nQ 16.015625 51.171875 16.015625 36.375 \nQ 16.015625 21.625 22.71875 14.15625 \nQ 29.4375 6.6875 42.828125 6.6875 \nQ 48.046875 6.6875 52.140625 7.59375 \nQ 56.25 8.5 59.515625 10.40625 \nz\n\" id=\"DejaVuSans-71\"/>\n     <path d=\"M 34.1875 63.1875 \nL 20.796875 26.90625 \nL 47.609375 26.90625 \nz\nM 28.609375 72.90625 \nL 39.796875 72.90625 \nL 67.578125 0 \nL 57.328125 0 \nL 50.6875 18.703125 \nL 17.828125 18.703125 \nL 11.1875 0 \nL 0.78125 0 \nz\n\" id=\"DejaVuSans-65\"/>\n     <path d=\"M 64.40625 67.28125 \nL 64.40625 56.890625 \nQ 59.421875 61.53125 53.78125 63.8125 \nQ 48.140625 66.109375 41.796875 66.109375 \nQ 29.296875 66.109375 22.65625 58.46875 \nQ 16.015625 50.828125 16.015625 36.375 \nQ 16.015625 21.96875 22.65625 14.328125 \nQ 29.296875 6.6875 41.796875 6.6875 \nQ 48.140625 6.6875 53.78125 8.984375 \nQ 59.421875 11.28125 64.40625 15.921875 \nL 64.40625 5.609375 \nQ 59.234375 2.09375 53.4375 0.328125 \nQ 47.65625 -1.421875 41.21875 -1.421875 \nQ 24.65625 -1.421875 15.125 8.703125 \nQ 5.609375 18.84375 5.609375 36.375 \nQ 5.609375 53.953125 15.125 64.078125 \nQ 24.65625 74.21875 41.21875 74.21875 \nQ 47.75 74.21875 53.53125 72.484375 \nQ 59.328125 70.75 64.40625 67.28125 \nz\n\" id=\"DejaVuSans-67\"/>\n     <path d=\"M 44.390625 34.1875 \nQ 47.5625 33.109375 50.5625 29.59375 \nQ 53.5625 26.078125 56.59375 19.921875 \nL 66.609375 0 \nL 56 0 \nL 46.6875 18.703125 \nQ 43.0625 26.03125 39.671875 28.421875 \nQ 36.28125 30.8125 30.421875 30.8125 \nL 19.671875 30.8125 \nL 19.671875 0 \nL 9.8125 0 \nL 9.8125 72.90625 \nL 32.078125 72.90625 \nQ 44.578125 72.90625 50.734375 67.671875 \nQ 56.890625 62.453125 56.890625 51.90625 \nQ 56.890625 45.015625 53.6875 40.46875 \nQ 50.484375 35.9375 44.390625 34.1875 \nz\nM 19.671875 64.796875 \nL 19.671875 38.921875 \nL 32.078125 38.921875 \nQ 39.203125 38.921875 42.84375 42.21875 \nQ 46.484375 45.515625 46.484375 51.90625 \nQ 46.484375 58.296875 42.84375 61.546875 \nQ 39.203125 64.796875 32.078125 64.796875 \nz\n\" id=\"DejaVuSans-82\"/>\n     <path d=\"M 19.671875 64.796875 \nL 19.671875 8.109375 \nL 31.59375 8.109375 \nQ 46.6875 8.109375 53.6875 14.9375 \nQ 60.6875 21.78125 60.6875 36.53125 \nQ 60.6875 51.171875 53.6875 57.984375 \nQ 46.6875 64.796875 31.59375 64.796875 \nz\nM 9.8125 72.90625 \nL 30.078125 72.90625 \nQ 51.265625 72.90625 61.171875 64.09375 \nQ 71.09375 55.28125 71.09375 36.53125 \nQ 71.09375 17.671875 61.125 8.828125 \nQ 51.171875 0 30.078125 0 \nL 9.8125 0 \nz\n\" id=\"DejaVuSans-68\"/>\n     <path d=\"M 19.671875 64.796875 \nL 19.671875 37.40625 \nL 32.078125 37.40625 \nQ 38.96875 37.40625 42.71875 40.96875 \nQ 46.484375 44.53125 46.484375 51.125 \nQ 46.484375 57.671875 42.71875 61.234375 \nQ 38.96875 64.796875 32.078125 64.796875 \nz\nM 9.8125 72.90625 \nL 32.078125 72.90625 \nQ 44.34375 72.90625 50.609375 67.359375 \nQ 56.890625 61.8125 56.890625 51.125 \nQ 56.890625 40.328125 50.609375 34.8125 \nQ 44.34375 29.296875 32.078125 29.296875 \nL 19.671875 29.296875 \nL 19.671875 0 \nL 9.8125 0 \nz\n\" id=\"DejaVuSans-80\"/>\n     <path d=\"M 37.796875 64.3125 \nL 12.890625 25.390625 \nL 37.796875 25.390625 \nz\nM 35.203125 72.90625 \nL 47.609375 72.90625 \nL 47.609375 25.390625 \nL 58.015625 25.390625 \nL 58.015625 17.1875 \nL 47.609375 17.1875 \nL 47.609375 0 \nL 37.796875 0 \nL 37.796875 17.1875 \nL 4.890625 17.1875 \nL 4.890625 26.703125 \nz\n\" id=\"DejaVuSans-52\"/>\n     <path d=\"M 33.015625 40.375 \nQ 26.375 40.375 22.484375 35.828125 \nQ 18.609375 31.296875 18.609375 23.390625 \nQ 18.609375 15.53125 22.484375 10.953125 \nQ 26.375 6.390625 33.015625 6.390625 \nQ 39.65625 6.390625 43.53125 10.953125 \nQ 47.40625 15.53125 47.40625 23.390625 \nQ 47.40625 31.296875 43.53125 35.828125 \nQ 39.65625 40.375 33.015625 40.375 \nz\nM 52.59375 71.296875 \nL 52.59375 62.3125 \nQ 48.875 64.0625 45.09375 64.984375 \nQ 41.3125 65.921875 37.59375 65.921875 \nQ 27.828125 65.921875 22.671875 59.328125 \nQ 17.53125 52.734375 16.796875 39.40625 \nQ 19.671875 43.65625 24.015625 45.921875 \nQ 28.375 48.1875 33.59375 48.1875 \nQ 44.578125 48.1875 50.953125 41.515625 \nQ 57.328125 34.859375 57.328125 23.390625 \nQ 57.328125 12.15625 50.6875 5.359375 \nQ 44.046875 -1.421875 33.015625 -1.421875 \nQ 20.359375 -1.421875 13.671875 8.265625 \nQ 6.984375 17.96875 6.984375 36.375 \nQ 6.984375 53.65625 15.1875 63.9375 \nQ 23.390625 74.21875 37.203125 74.21875 \nQ 40.921875 74.21875 44.703125 73.484375 \nQ 48.484375 72.75 52.59375 71.296875 \nz\n\" id=\"DejaVuSans-54\"/>\n     <path d=\"M 31.78125 34.625 \nQ 24.75 34.625 20.71875 30.859375 \nQ 16.703125 27.09375 16.703125 20.515625 \nQ 16.703125 13.921875 20.71875 10.15625 \nQ 24.75 6.390625 31.78125 6.390625 \nQ 38.8125 6.390625 42.859375 10.171875 \nQ 46.921875 13.96875 46.921875 20.515625 \nQ 46.921875 27.09375 42.890625 30.859375 \nQ 38.875 34.625 31.78125 34.625 \nz\nM 21.921875 38.8125 \nQ 15.578125 40.375 12.03125 44.71875 \nQ 8.5 49.078125 8.5 55.328125 \nQ 8.5 64.0625 14.71875 69.140625 \nQ 20.953125 74.21875 31.78125 74.21875 \nQ 42.671875 74.21875 48.875 69.140625 \nQ 55.078125 64.0625 55.078125 55.328125 \nQ 55.078125 49.078125 51.53125 44.71875 \nQ 48 40.375 41.703125 38.8125 \nQ 48.828125 37.15625 52.796875 32.3125 \nQ 56.78125 27.484375 56.78125 20.515625 \nQ 56.78125 9.90625 50.3125 4.234375 \nQ 43.84375 -1.421875 31.78125 -1.421875 \nQ 19.734375 -1.421875 13.25 4.234375 \nQ 6.78125 9.90625 6.78125 20.515625 \nQ 6.78125 27.484375 10.78125 32.3125 \nQ 14.796875 37.15625 21.921875 38.8125 \nz\nM 18.3125 54.390625 \nQ 18.3125 48.734375 21.84375 45.5625 \nQ 25.390625 42.390625 31.78125 42.390625 \nQ 38.140625 42.390625 41.71875 45.5625 \nQ 45.3125 48.734375 45.3125 54.390625 \nQ 45.3125 60.0625 41.71875 63.234375 \nQ 38.140625 66.40625 31.78125 66.40625 \nQ 25.390625 66.40625 21.84375 63.234375 \nQ 18.3125 60.0625 18.3125 54.390625 \nz\n\" id=\"DejaVuSans-56\"/>\n     <path d=\"M 54.890625 33.015625 \nL 54.890625 0 \nL 45.90625 0 \nL 45.90625 32.71875 \nQ 45.90625 40.484375 42.875 44.328125 \nQ 39.84375 48.1875 33.796875 48.1875 \nQ 26.515625 48.1875 22.3125 43.546875 \nQ 18.109375 38.921875 18.109375 30.90625 \nL 18.109375 0 \nL 9.078125 0 \nL 9.078125 54.6875 \nL 18.109375 54.6875 \nL 18.109375 46.1875 \nQ 21.34375 51.125 25.703125 53.5625 \nQ 30.078125 56 35.796875 56 \nQ 45.21875 56 50.046875 50.171875 \nQ 54.890625 44.34375 54.890625 33.015625 \nz\n\" id=\"DejaVuSans-110\"/>\n     <path d=\"M 18.109375 8.203125 \nL 18.109375 -20.796875 \nL 9.078125 -20.796875 \nL 9.078125 54.6875 \nL 18.109375 54.6875 \nL 18.109375 46.390625 \nQ 20.953125 51.265625 25.265625 53.625 \nQ 29.59375 56 35.59375 56 \nQ 45.5625 56 51.78125 48.09375 \nQ 58.015625 40.1875 58.015625 27.296875 \nQ 58.015625 14.40625 51.78125 6.484375 \nQ 45.5625 -1.421875 35.59375 -1.421875 \nQ 29.59375 -1.421875 25.265625 0.953125 \nQ 20.953125 3.328125 18.109375 8.203125 \nz\nM 48.6875 27.296875 \nQ 48.6875 37.203125 44.609375 42.84375 \nQ 40.53125 48.484375 33.40625 48.484375 \nQ 26.265625 48.484375 22.1875 42.84375 \nQ 18.109375 37.203125 18.109375 27.296875 \nQ 18.109375 17.390625 22.1875 11.75 \nQ 26.265625 6.109375 33.40625 6.109375 \nQ 40.53125 6.109375 44.609375 11.75 \nQ 48.6875 17.390625 48.6875 27.296875 \nz\n\" id=\"DejaVuSans-112\"/>\n     <path d=\"M 5.515625 54.6875 \nL 48.1875 54.6875 \nL 48.1875 46.484375 \nL 14.40625 7.171875 \nL 48.1875 7.171875 \nL 48.1875 0 \nL 4.296875 0 \nL 4.296875 8.203125 \nL 38.09375 47.515625 \nL 5.515625 47.515625 \nz\n\" id=\"DejaVuSans-122\"/>\n    </defs>\n    <use xlink:href=\"#DejaVuSans-66\"/>\n    <use x=\"66.853516\" xlink:href=\"#DejaVuSans-71\"/>\n    <use x=\"144.34375\" xlink:href=\"#DejaVuSans-46\"/>\n    <use x=\"176.130859\" xlink:href=\"#DejaVuSans-65\"/>\n    <use x=\"242.789062\" xlink:href=\"#DejaVuSans-67\"/>\n    <use x=\"312.613281\" xlink:href=\"#DejaVuSans-82\"/>\n    <use x=\"378.470703\" xlink:href=\"#DejaVuSans-46\"/>\n    <use x=\"410.257812\" xlink:href=\"#DejaVuSans-46\"/>\n    <use x=\"442.044922\" xlink:href=\"#DejaVuSans-68\"/>\n    <use x=\"519.046875\" xlink:href=\"#DejaVuSans-80\"/>\n    <use x=\"563.724609\" xlink:href=\"#DejaVuSans-46\"/>\n    <use x=\"595.511719\" xlink:href=\"#DejaVuSans-48\"/>\n    <use x=\"659.134766\" xlink:href=\"#DejaVuSans-51\"/>\n    <use x=\"722.757812\" xlink:href=\"#DejaVuSans-52\"/>\n    <use x=\"786.380859\" xlink:href=\"#DejaVuSans-54\"/>\n    <use x=\"850.003906\" xlink:href=\"#DejaVuSans-56\"/>\n    <use x=\"913.626953\" xlink:href=\"#DejaVuSans-51\"/>\n    <use x=\"977.25\" xlink:href=\"#DejaVuSans-51\"/>\n    <use x=\"1040.873047\" xlink:href=\"#DejaVuSans-46\"/>\n    <use x=\"1072.660156\" xlink:href=\"#DejaVuSans-110\"/>\n    <use x=\"1136.039062\" xlink:href=\"#DejaVuSans-112\"/>\n    <use x=\"1199.515625\" xlink:href=\"#DejaVuSans-122\"/>\n   </g>\n  </g>\n </g>\n <defs>\n  <clipPath id=\"p6b101e6f4c\">\n   <rect height=\"70.6\" width=\"172.171224\" x=\"38.482813\" y=\"49.92\"/>\n  </clipPath>\n  <clipPath id=\"pe68711bdcf\">\n   <rect height=\"70.6\" width=\"172.171224\" x=\"249.082812\" y=\"49.92\"/>\n  </clipPath>\n </defs>\n</svg>\n",
      "image/png": "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uy6OHcncIp0TattOPvlk3WeffZpEBttqboccckiT5V1QUFDntOvWrattPFpppGMHTaRL5thhBIn66lEyxsT+BfQSkZ4ikg2cCbwSk+YV4Bxx+DmwVVXTrivRW9w2lueeey7qeOjQof4KFrE8++yzSZervowePbpJ8r377rsbfO7BBx/s77/ySuzfA84+++waYd7bdry348bQvXt3wFlqy3srjyV2knxpaam/IksT0mJ0yTCai0YbMVWtAi4D3gSWAM+q6mIRuVhEvA9QvQZ8i+MWPBP4bWPLTRZz5szx970uq1dffTVquabWrVuz9957884773D66afTt29fcnNzG1ymN8epobz22mtRx54snuddYWEhubm5u1wJpL4cdthhvPjii1FhV199da3njBgxgpEjR0atiHLSSScBRH1/7IknnvD3H3roIQDeeOMNIPlGzFtHs1+/foTDYa6//voaaUSEoUOHMmnSJKDmKiBNQdB1yTBSQn2abc29NaQ7ceDAgXHD480n++tf/6qvv/66Ajp8+HA9//zzFZxVII477jg/TlW1uro6qvzIOUR//OMf/f1nnnmmRjkzZsxQwF/xoX///vXq8rrhhhv8/SuuuEKXLVsWFT9z5kxfzrPPPlsnTJigpaWlWllZGZXuxBNPbFTX28cff6xbtmyJCkt0L37/+9/78aqqS5curXHOE088USPspptuUlXVDh066FtvvaWA/uIXv0hqF+Lw4cMV0A8//FALCgqi6nDAAQcoOKuwnH/++f69rgvYih2G0Wjqq0eBXbEj0ZtxvLfqa665xvegikRVadeuHQMGDODxxx/nyiuvBKBdu3b+wLXX3RQ7IOmtM5idnR1VpnMPovE+1ujJXN9V1H/5y1/6+zfeeCO9e/eOmlt25JFH+qtdPPnkk1x33XXk5+cTCoXo1asXmZmZrFixImH+RUVFdZYl0XU/5JBDAGe9yJ07d3LjjTdGxXueaN4ajAMHDqR9+/b+PDGAkSNH+uetXbuWvn37Mnr0aL8ldsYZZwBQUFBAXl4egN9Sqg8dO3akY8eO9OnTx79fw4cPJyMjgzPOOIMxY8YwYcIEv/u0OVphhmE0jMBqZ2QXk/fhQ4A99tijRtqhQ4cm/DrxoEGD+OKLL+jUqRM5OTnss88+FBUVUVlZSVZWlu/2mojI+NGjR9cwYscdd1yNc9q0aVNrnpFMmTIlygB7XkhHHXUUU6ZMobS0lH333TdqvKZDhw6AY3iXLVtGZWUlPXr0SFjG3nvvDVBjtXiALl3+OwUpIyMjoXeRZ+yHDBlCdnZ2jQd/QUEBZ511Fr/9rdP7NX/+fEaOHMm6desYO3YsQNRHTjMzM+nWrRsjR47063/kkUcCjgvy4MGDGTt2bNyXhkR4k9Pvvvtu3y3a47XXXmPIkCEcccQRzJo1i6OOOoq2bdvWOW/DMFJDizBi/fv39/f79u1bI63nyhs5qfWss86qse5i9+7d+dvf/gY4DhpHH32071yQiMj4Cy+8kEGDBkXFe0anV69eu6hRfCZNmkS/fv38ScGRD95JkybtUr5Yo+M5NYDz0Utwxp7Wrl3L6tWr/fUBvZXbI1tpkS7REF2n0aNH19rC7Nq1K0899ZS/1qGXT6tWrXj88cdrrUNmZib5+flcfvnldOvWjTZt2jBnzhwef/xx34hFtujisX79er/VFgqFCIfDtGrVivvuu89PE+8zNIZhpDeBNWKRrZnMzExuuukmLrzwQvLz8znhhBOi0noPX2/SJDhGMPYtPi8vz+8Wa9euXdwuyETcdtttHHvssey1115+WI8ePejTpw+QeGkjb3JnPLzuTXC635YsWRL1OZb6cswxxzB16lSGDRvGddddx9SpU+nYsSOZmZnsvvvuZGRk+HXed999AaIcXEQkqoUVWacrrrjCbyl5nHvuuQ2W1cPr0vUmGp9xxhlxr4HXmvOcXGI9NCPnd3lGLDs72z8PHO/UAw44oNEyG4bRfCRjsnNKiHzwh0KhqDGYeK2TMWPG+K2Q9evXM3HixHp1Re2KiRMn1giLHIdK9IZf2yr8p556atSxZxAbiudJeNppp/lhiT5cGTvT3wsTEXJycti5c+cuWy2PPfZYo+QF5/q0bdvWH1O79957o+JVlZEjRzJs2DCmT5/O+PHjufXWW2sdx/KMWCxDhgxptLyGYTQvgW2JXXfddYwaNYrp06fX+jDt0aMHGRkZXHrppfTs2RNw3spvueWWqA9cJpOOHTvWcEVPRFZWFs8++2zch25zdG0lam16LcpYI6bqrHAQ+fHP22+/vcnkGzt2LNOmTeOcc86JG6+qDBkyhJNPPpnzzjuPW265xfFYysjwu0RvvvnmqHM8px3DMIJPYI3YJZdcQteuXXfZmtp3332jjIG3Zle3bt2abOB+zZo1jBo1qtY0ubm57LnnnogIJ598cto9VLt168YHH3yQ0Ig9+uijfvjvfve7JpMjFAqRm5vLI488Eje+Y8eOtG/fHiBKJsD3YIztfgyFQo2eq2cYRnoQWCMGMGrUKA4//PBa0xQUFER1Pd51111NLVadxtI2bdrE8uXLfeMV2bJJNXfccQcARxxxRNTYo4jQqlUrFixYkCLJajJ+/HjfbT8W7+UlspW7dOlSsrOz+fLLL5tFPsMwmhZJ5rhQsjn44IN1/vz59T7viiuuYPDgwVx44YVs2rSpXg4azYm36rfntBDbffjee++lfJwmHA6TmZlJ3759mTVrViAcH0SErVu3kpeXx5133kmPHj349a9/3RzlfqaqB+86ZfPSUD0yjFRQXz1Kz6d7I7nvvvsoKyvj0EMPTVsDBsEYmwmFQrz88stMnjw5UJN+vRbk5MmTzW3eMFowwXkq1QMRIT8/P2pdxHQk9jtL6Yo3ZhdEYxBEmQ3DqDst0ogFhSA9YK+99tqo1TsMwzDSgUb1tYnIXcBJQAXwDXCeqhbHSbcCKAHCQFU6jhsYtXP++eenWoQWjemSYTSMxrbE3gJ+pqoHAMtxPuKXiKNVdYApXe2MGzcOcFzcjYaRameYBmK6ZBgNoFFGTFXnqPMNJICPgZqr7xr1Yr/99gPwJ2Yb9ee9995LtQj1xnTJMBpGMsfEfgO8niBOgTki8pmIjKstExEZJyLzRWT+xo0bkyhe+nPjjTdGre9o/GRptC79lPXI+GmxyzExEXkbqPmNDrheVV9201wPVAFPxUkHcISqrhGRTsBbIrJUVeMuea6qM4AZ4MxvqUMdAo3X8gK46aabUieI0eQ0py791PTI+OmySyOmqsfWFi8iY4ETgV9oAn9xVV3j/m4QkReBQUD9vgzZQlm4cGHCuCB5Lxq7xnTJMJJPo7oTReQE4HfAyapaliBNvojs5u0DxwGLGlNuS6I2QxWEOWRGcjBdMoyG0dgxsenAbjjdGgtE5CEAEekqIq+5aToDH4jIl8CnwN9V9Y1GlmsYLQ3TJcNoAI2aJ6aq+yQIXwOMcPe/BfrHS2cYhoPpkmE0DFuxwzAMwwgsZsQMwzCMwGJGzDAMwwgsZsTSGHOxNwzDqJ30/djWT5w//elP9OnTJ9ViGIZhpDVmxNKQMWPGcOihh6ZaDMMwjLTHuhPTkFmzZqVaBMMwjEBgRswwDMMILGbEDMMwjMAi6bw+n4hsBL5PEN0B+LEZxWkOWlqdfmr16aGqHZtLmLqyCz2Cn959ChotrT5Qe53qpUdpbcRqQ0Tmt7Qv27a0Oll9gkFLq5fVJ/1JZp2sO9EwDMMILGbEDMMwjMASZCM2I9UCNAEtrU5Wn2DQ0upl9Ul/klanwI6JGYZhGEaQW2KGYRjGTxwzYoZhGEZgCaQRE5ETRGSZiHwtIhNTLU8iRORREdkgIosiwtqJyFsi8h/3tzAibpJbp2UicnxE+EEistCNmyYpWt5eRLqLyDsiskREFovIlUGuk4jkisinIvKlW5+bg1yf+hIUPYKWpUstTY9cOVKnS6oaqA0IAd8AewHZwJdAv1TLlUDWIcBAYFFE2J3ARHd/InCHu9/PrUsO0NOtY8iN+xQ4DBDgdWB4iurTBRjo7u8GLHflDmSd3LJbu/tZwCfAz4Nan3rWPTB65MrbYnSppemRK0fKdCmILbFBwNeq+q2qVgCzgFNSLFNcVPV9YHNM8CnAE+7+E8CoiPBZqrpTVb8DvgYGiUgXoI2qfqTOHX4y4pxmRVXXqurn7n4JsAToRkDrpA6l7mGWuykBrU89CYweQcvSpZamR5BaXQqiEesGrIw4XuWGBYXOqroWnD8z0MkNT1Svbu5+bHhKEZEi4ECcN67A1klEQiKyANgAvKWqga5PPQi6HkELuE8tRY8gdboURCMWr3+0JcwTSFSvtKuviLQGngeuUtVttSWNE5ZWdVLVsKoOAPbAeRP8WS3J074+9SCIMteVQNynlqRHkDpdCqIRWwV0jzjeA1iTIlkawnq3yYz7u8ENT1SvVe5+bHhKEJEsHMV7SlVfcIMDXScAVS0G3gVOoAXUpw4EXY8gwPeppeoRNL8uBdGI/QvoJSI9RSQbOBN4JcUy1YdXgLHu/ljg5YjwM0UkR0R6Ar2AT90meImI/Nz10jkn4pxmxS3/EWCJqt4TERXIOolIRxEpcPfzgGOBpQS0PvUk6HoEAb1PLU2PIMW6lApPlsZuwAgcj55vgOtTLU8tcj4NrAUqcd4wzgfaA/8A/uP+totIf71bp2VEeOQABwOL3LjpuCutpKA+g3Ga9v8GFrjbiKDWCTgA+MKtzyLg9254IOvTgPoHQo9cWVuMLrU0PXLlSJku2bJThmEYRmAJYneiYRiGYQBmxAzDMIwAY0bMMAzDCCxmxAzDMIzAYkbMMAzDCCxmxAzDMIzAYkbMMAzDCCz/B97pmw3E2q5xAAAAAElFTkSuQmCC\n"
     },
     "metadata": {
      "needs_background": "light"
     }
    },
    {
     "output_type": "display_data",
     "data": {
      "text/plain": "<Figure size 432x144 with 2 Axes>",
      "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<!-- Created with matplotlib (https://matplotlib.org/) -->\n<svg height=\"144.398125pt\" version=\"1.1\" viewBox=\"0 0 423.864638 144.398125\" width=\"423.864638pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n <metadata>\n  <rdf:RDF xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" 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>2021-07-18T21:09:28.681996</dc:date>\n    <dc:format>image/svg+xml</dc:format>\n    <dc:creator>\n     <cc:Agent>\n      <dc:title>Matplotlib v3.3.2, 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-linecap:butt;stroke-linejoin:round;}</style>\n </defs>\n <g id=\"figure_1\">\n  <g id=\"patch_1\">\n   <path d=\"M 0 144.398125 \nL 423.864638 144.398125 \nL 423.864638 0 \nL 0 0 \nz\n\" style=\"fill:none;\"/>\n  </g>\n  <g id=\"axes_1\">\n   <g id=\"patch_2\">\n    <path d=\"M 28.942188 120.52 \nL 201.113412 120.52 \nL 201.113412 49.92 \nL 28.942188 49.92 \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 d=\"M 0 0 \nL 0 3.5 \n\" id=\"m3c8f405461\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n      </defs>\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"36.768152\" xlink:href=\"#m3c8f405461\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_1\">\n      <!-- 0 -->\n      <g transform=\"translate(33.586902 135.118437)scale(0.1 -0.1)\">\n       <defs>\n        <path d=\"M 31.78125 66.40625 \nQ 24.171875 66.40625 20.328125 58.90625 \nQ 16.5 51.421875 16.5 36.375 \nQ 16.5 21.390625 20.328125 13.890625 \nQ 24.171875 6.390625 31.78125 6.390625 \nQ 39.453125 6.390625 43.28125 13.890625 \nQ 47.125 21.390625 47.125 36.375 \nQ 47.125 51.421875 43.28125 58.90625 \nQ 39.453125 66.40625 31.78125 66.40625 \nz\nM 31.78125 74.21875 \nQ 44.046875 74.21875 50.515625 64.515625 \nQ 56.984375 54.828125 56.984375 36.375 \nQ 56.984375 17.96875 50.515625 8.265625 \nQ 44.046875 -1.421875 31.78125 -1.421875 \nQ 19.53125 -1.421875 13.0625 8.265625 \nQ 6.59375 17.96875 6.59375 36.375 \nQ 6.59375 54.828125 13.0625 64.515625 \nQ 19.53125 74.21875 31.78125 74.21875 \nz\n\" id=\"DejaVuSans-48\"/>\n       </defs>\n       <use xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"xtick_2\">\n     <g id=\"line2d_2\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"88.958647\" xlink:href=\"#m3c8f405461\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_2\">\n      <!-- 1000 -->\n      <g transform=\"translate(76.233647 135.118437)scale(0.1 -0.1)\">\n       <defs>\n        <path d=\"M 12.40625 8.296875 \nL 28.515625 8.296875 \nL 28.515625 63.921875 \nL 10.984375 60.40625 \nL 10.984375 69.390625 \nL 28.421875 72.90625 \nL 38.28125 72.90625 \nL 38.28125 8.296875 \nL 54.390625 8.296875 \nL 54.390625 0 \nL 12.40625 0 \nz\n\" id=\"DejaVuSans-49\"/>\n       </defs>\n       <use xlink:href=\"#DejaVuSans-49\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"xtick_3\">\n     <g id=\"line2d_3\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"141.149142\" xlink:href=\"#m3c8f405461\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_3\">\n      <!-- 2000 -->\n      <g transform=\"translate(128.424142 135.118437)scale(0.1 -0.1)\">\n       <defs>\n        <path d=\"M 19.1875 8.296875 \nL 53.609375 8.296875 \nL 53.609375 0 \nL 7.328125 0 \nL 7.328125 8.296875 \nQ 12.9375 14.109375 22.625 23.890625 \nQ 32.328125 33.6875 34.8125 36.53125 \nQ 39.546875 41.84375 41.421875 45.53125 \nQ 43.3125 49.21875 43.3125 52.78125 \nQ 43.3125 58.59375 39.234375 62.25 \nQ 35.15625 65.921875 28.609375 65.921875 \nQ 23.96875 65.921875 18.8125 64.3125 \nQ 13.671875 62.703125 7.8125 59.421875 \nL 7.8125 69.390625 \nQ 13.765625 71.78125 18.9375 73 \nQ 24.125 74.21875 28.421875 74.21875 \nQ 39.75 74.21875 46.484375 68.546875 \nQ 53.21875 62.890625 53.21875 53.421875 \nQ 53.21875 48.921875 51.53125 44.890625 \nQ 49.859375 40.875 45.40625 35.40625 \nQ 44.1875 33.984375 37.640625 27.21875 \nQ 31.109375 20.453125 19.1875 8.296875 \nz\n\" id=\"DejaVuSans-50\"/>\n       </defs>\n       <use xlink:href=\"#DejaVuSans-50\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"xtick_4\">\n     <g id=\"line2d_4\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"193.339638\" xlink:href=\"#m3c8f405461\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_4\">\n      <!-- 3000 -->\n      <g transform=\"translate(180.614638 135.118437)scale(0.1 -0.1)\">\n       <defs>\n        <path d=\"M 40.578125 39.3125 \nQ 47.65625 37.796875 51.625 33 \nQ 55.609375 28.21875 55.609375 21.1875 \nQ 55.609375 10.40625 48.1875 4.484375 \nQ 40.765625 -1.421875 27.09375 -1.421875 \nQ 22.515625 -1.421875 17.65625 -0.515625 \nQ 12.796875 0.390625 7.625 2.203125 \nL 7.625 11.71875 \nQ 11.71875 9.328125 16.59375 8.109375 \nQ 21.484375 6.890625 26.8125 6.890625 \nQ 36.078125 6.890625 40.9375 10.546875 \nQ 45.796875 14.203125 45.796875 21.1875 \nQ 45.796875 27.640625 41.28125 31.265625 \nQ 36.765625 34.90625 28.71875 34.90625 \nL 20.21875 34.90625 \nL 20.21875 43.015625 \nL 29.109375 43.015625 \nQ 36.375 43.015625 40.234375 45.921875 \nQ 44.09375 48.828125 44.09375 54.296875 \nQ 44.09375 59.90625 40.109375 62.90625 \nQ 36.140625 65.921875 28.71875 65.921875 \nQ 24.65625 65.921875 20.015625 65.03125 \nQ 15.375 64.15625 9.8125 62.3125 \nL 9.8125 71.09375 \nQ 15.4375 72.65625 20.34375 73.4375 \nQ 25.25 74.21875 29.59375 74.21875 \nQ 40.828125 74.21875 47.359375 69.109375 \nQ 53.90625 64.015625 53.90625 55.328125 \nQ 53.90625 49.265625 50.4375 45.09375 \nQ 46.96875 40.921875 40.578125 39.3125 \nz\n\" id=\"DejaVuSans-51\"/>\n       </defs>\n       <use xlink:href=\"#DejaVuSans-51\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n   </g>\n   <g id=\"matplotlib.axis_2\">\n    <g id=\"ytick_1\">\n     <g id=\"line2d_5\">\n      <defs>\n       <path d=\"M 0 0 \nL -3.5 0 \n\" id=\"m1a14619fdd\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n      </defs>\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"28.942188\" xlink:href=\"#m1a14619fdd\" y=\"109.968528\"/>\n      </g>\n     </g>\n     <g id=\"text_5\">\n      <!-- −2 -->\n      <g transform=\"translate(7.2 113.767747)scale(0.1 -0.1)\">\n       <defs>\n        <path d=\"M 10.59375 35.5 \nL 73.1875 35.5 \nL 73.1875 27.203125 \nL 10.59375 27.203125 \nz\n\" id=\"DejaVuSans-8722\"/>\n       </defs>\n       <use xlink:href=\"#DejaVuSans-8722\"/>\n       <use x=\"83.789062\" xlink:href=\"#DejaVuSans-50\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"ytick_2\">\n     <g id=\"line2d_6\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"28.942188\" xlink:href=\"#m1a14619fdd\" y=\"83.840951\"/>\n      </g>\n     </g>\n     <g id=\"text_6\">\n      <!-- 0 -->\n      <g transform=\"translate(15.579688 87.640169)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"ytick_3\">\n     <g id=\"line2d_7\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"28.942188\" xlink:href=\"#m1a14619fdd\" y=\"57.713373\"/>\n      </g>\n     </g>\n     <g id=\"text_7\">\n      <!-- 2 -->\n      <g transform=\"translate(15.579688 61.512592)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-50\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"text_8\">\n     <!-- 1e−14 -->\n     <g transform=\"translate(28.942188 46.92)scale(0.1 -0.1)\">\n      <defs>\n       <path d=\"M 56.203125 29.59375 \nL 56.203125 25.203125 \nL 14.890625 25.203125 \nQ 15.484375 15.921875 20.484375 11.0625 \nQ 25.484375 6.203125 34.421875 6.203125 \nQ 39.59375 6.203125 44.453125 7.46875 \nQ 49.3125 8.734375 54.109375 11.28125 \nL 54.109375 2.78125 \nQ 49.265625 0.734375 44.1875 -0.34375 \nQ 39.109375 -1.421875 33.890625 -1.421875 \nQ 20.796875 -1.421875 13.15625 6.1875 \nQ 5.515625 13.8125 5.515625 26.8125 \nQ 5.515625 40.234375 12.765625 48.109375 \nQ 20.015625 56 32.328125 56 \nQ 43.359375 56 49.78125 48.890625 \nQ 56.203125 41.796875 56.203125 29.59375 \nz\nM 47.21875 32.234375 \nQ 47.125 39.59375 43.09375 43.984375 \nQ 39.0625 48.390625 32.421875 48.390625 \nQ 24.90625 48.390625 20.390625 44.140625 \nQ 15.875 39.890625 15.1875 32.171875 \nz\n\" id=\"DejaVuSans-101\"/>\n       <path d=\"M 37.796875 64.3125 \nL 12.890625 25.390625 \nL 37.796875 25.390625 \nz\nM 35.203125 72.90625 \nL 47.609375 72.90625 \nL 47.609375 25.390625 \nL 58.015625 25.390625 \nL 58.015625 17.1875 \nL 47.609375 17.1875 \nL 47.609375 0 \nL 37.796875 0 \nL 37.796875 17.1875 \nL 4.890625 17.1875 \nL 4.890625 26.703125 \nz\n\" id=\"DejaVuSans-52\"/>\n      </defs>\n      <use xlink:href=\"#DejaVuSans-49\"/>\n      <use x=\"63.623047\" xlink:href=\"#DejaVuSans-101\"/>\n      <use x=\"125.146484\" xlink:href=\"#DejaVuSans-8722\"/>\n      <use x=\"208.935547\" xlink:href=\"#DejaVuSans-49\"/>\n      <use x=\"272.558594\" xlink:href=\"#DejaVuSans-52\"/>\n     </g>\n    </g>\n   </g>\n   <g id=\"line2d_8\">\n    <path clip-path=\"url(#pce4528d238)\" d=\"M 36.768152 83.372526 \nL 36.820343 83.397138 \nL 36.976914 84.233868 \nL 37.029105 84.898329 \nL 37.081295 84.430748 \nL 37.237867 83.594028 \nL 37.290057 85.3167 \nL 37.342248 85.095216 \nL 37.446629 82.412775 \nL 37.498819 83.052626 \nL 37.55101 84.455373 \nL 37.6032 83.987793 \nL 37.707581 83.17568 \nL 37.916343 85.833522 \nL 38.020724 83.76632 \nL 38.072915 84.529219 \nL 38.125105 85.784309 \nL 38.177296 84.750708 \nL 38.229486 83.520231 \nL 38.281677 83.987815 \nL 38.333867 84.824542 \nL 38.386058 84.553839 \nL 38.438248 83.98782 \nL 38.490439 84.307746 \nL 38.59482 85.193694 \nL 38.751391 82.683522 \nL 38.855772 84.381587 \nL 38.960153 83.126502 \nL 39.116725 85.513636 \nL 39.168915 85.218323 \nL 39.325487 82.535883 \nL 39.377677 83.44644 \nL 39.482058 83.372614 \nL 39.586439 84.160124 \nL 39.638629 84.135516 \nL 39.795201 83.249576 \nL 39.899582 84.676935 \nL 40.003963 82.486686 \nL 40.108344 85.242962 \nL 40.160534 84.160143 \nL 40.212725 83.126542 \nL 40.264915 84.233975 \nL 40.317106 85.169141 \nL 40.369296 84.996875 \nL 40.525868 82.339046 \nL 40.578058 83.003506 \nL 40.682439 85.439858 \nL 40.78682 83.249609 \nL 40.839011 83.520316 \nL 40.943392 84.60314 \nL 40.995582 84.381656 \nL 41.099963 82.60977 \nL 41.204344 84.283224 \nL 41.308725 81.305469 \nL 41.413106 84.750813 \nL 41.465297 84.209404 \nL 41.517487 83.864872 \nL 41.621868 84.775429 \nL 41.674059 83.963315 \nL 41.77844 83.987928 \nL 41.83063 83.717224 \nL 41.987202 85.218414 \nL 42.091583 81.477761 \nL 42.143773 81.62542 \nL 42.300345 84.332479 \nL 42.404726 83.421928 \nL 42.456916 83.495758 \nL 42.561297 84.849289 \nL 42.613488 84.553975 \nL 42.717869 82.757479 \nL 42.770059 83.495768 \nL 42.82225 83.446551 \nL 42.87444 82.43756 \nL 42.926631 82.855924 \nL 43.031012 84.357112 \nL 43.083202 83.938751 \nL 43.135393 82.831322 \nL 43.187583 83.495782 \nL 43.396345 82.093043 \nL 43.552917 83.938766 \nL 43.657298 82.929777 \nL 43.813869 85.439959 \nL 43.86606 85.292303 \nL 43.970441 83.618855 \nL 44.022631 83.864953 \nL 44.074822 83.175886 \nL 44.127012 83.495812 \nL 44.179203 83.274328 \nL 44.231393 83.668083 \nL 44.283584 83.126674 \nL 44.387965 85.243101 \nL 44.544536 83.22512 \nL 44.753298 85.858352 \nL 45.01425 82.511458 \nL 45.066441 82.782165 \nL 45.223012 84.455621 \nL 45.327393 81.650133 \nL 45.379584 82.339203 \nL 45.483965 83.372808 \nL 45.536155 82.043893 \nL 45.588346 82.117723 \nL 45.692727 84.332589 \nL 45.744917 84.160323 \nL 45.797108 83.988058 \nL 45.901489 82.511487 \nL 45.953679 83.249776 \nL 46.00587 83.397435 \nL 46.05806 84.111114 \nL 46.110251 84.061897 \nL 46.214632 83.126736 \nL 46.319013 84.357219 \nL 46.423394 83.175962 \nL 46.632156 85.513879 \nL 46.684346 85.612319 \nL 46.840918 81.847058 \nL 46.945299 83.914266 \nL 46.997489 83.151371 \nL 47.206251 84.627953 \nL 47.310632 84.061936 \nL 47.467204 82.216222 \nL 47.728156 85.292428 \nL 47.832537 83.077569 \nL 47.884728 83.71742 \nL 47.989109 85.440094 \nL 48.041299 85.194 \nL 48.09349 84.13579 \nL 48.14568 84.80025 \nL 48.197871 85.833854 \nL 48.250061 85.686198 \nL 48.458823 82.634617 \nL 48.511014 81.97016 \nL 48.667585 85.021753 \nL 48.771966 81.89634 \nL 48.824157 82.363924 \nL 48.980728 85.292469 \nL 49.1373 82.634639 \nL 49.346062 85.587795 \nL 49.398252 83.938955 \nL 49.450443 84.308101 \nL 49.502633 85.02178 \nL 49.659205 82.856142 \nL 49.711395 83.742089 \nL 49.815776 80.34597 \nL 49.867967 80.788944 \nL 49.972348 84.037412 \nL 50.024538 83.397565 \nL 50.076728 82.04404 \nL 50.128919 82.831548 \nL 50.181109 84.062028 \nL 50.2333 83.225304 \nL 50.28549 83.323744 \nL 50.337681 82.782335 \nL 50.442062 84.160475 \nL 50.494252 82.708512 \nL 50.546443 83.742116 \nL 50.650824 86.301515 \nL 50.755205 84.185095 \nL 50.807395 84.357364 \nL 50.859586 84.726509 \nL 50.911776 84.357367 \nL 51.016157 83.003844 \nL 51.172729 83.815965 \nL 51.27711 83.274557 \nL 51.3293 83.939018 \nL 51.433681 82.8562 \nL 51.538062 85.858572 \nL 51.590253 85.46482 \nL 51.642443 85.292555 \nL 51.746824 83.471449 \nL 51.799015 83.840595 \nL 51.851205 84.332788 \nL 51.903396 84.135913 \nL 52.059967 82.610124 \nL 52.112158 82.757783 \nL 52.216539 83.914437 \nL 52.32092 82.290208 \nL 52.477491 84.185151 \nL 52.581872 84.234373 \nL 52.686253 82.807021 \nL 52.738444 82.880851 \nL 52.842825 85.218765 \nL 52.895015 84.135945 \nL 52.947206 83.988289 \nL 53.051587 85.169552 \nL 53.155968 82.388673 \nL 53.312539 85.071123 \nL 53.469111 81.601177 \nL 53.625682 82.90549 \nL 53.677873 83.077758 \nL 53.886635 84.677388 \nL 53.938825 84.972704 \nL 53.991016 86.129356 \nL 54.043206 85.366461 \nL 54.147587 83.693013 \nL 54.199778 84.259035 \nL 54.251968 83.545359 \nL 54.356349 85.169595 \nL 54.46073 82.314887 \nL 54.512921 82.80708 \nL 54.565111 83.766855 \nL 54.617302 83.348494 \nL 54.669492 82.388722 \nL 54.721683 82.905525 \nL 54.826064 84.702028 \nL 54.878254 83.791475 \nL 54.930445 83.668429 \nL 55.087016 84.972742 \nL 55.191397 83.373122 \nL 55.295778 85.391111 \nL 55.347968 84.234463 \nL 55.400159 84.012978 \nL 55.50454 81.847338 \nL 55.608921 85.317293 \nL 55.661111 84.923541 \nL 55.765492 82.684073 \nL 55.817683 83.127047 \nL 56.026445 85.218868 \nL 56.078635 84.652849 \nL 56.130826 83.693077 \nL 56.183016 83.889956 \nL 56.287397 85.489582 \nL 56.391778 83.643867 \nL 56.443969 84.062231 \nL 56.54835 84.037625 \nL 56.60054 85.440373 \nL 56.652731 85.169669 \nL 56.757112 82.438009 \nL 56.809302 83.791537 \nL 56.861493 83.520834 \nL 56.913683 83.200911 \nL 56.965874 83.816152 \nL 57.018064 83.323962 \nL 57.122445 84.382178 \nL 57.174636 84.33296 \nL 57.226826 84.99742 \nL 57.279017 84.332963 \nL 57.331207 83.274753 \nL 57.383398 83.668508 \nL 57.487779 84.898991 \nL 57.539969 83.545465 \nL 57.64435 83.570078 \nL 57.696541 83.890005 \nL 57.748731 82.782575 \nL 57.800922 83.74235 \nL 57.957493 84.136109 \nL 58.114065 82.265786 \nL 58.218446 86.129493 \nL 58.270636 84.972845 \nL 58.322827 82.487279 \nL 58.375017 83.127129 \nL 58.479398 85.07129 \nL 58.531589 84.997463 \nL 58.792541 82.585732 \nL 58.896922 82.807222 \nL 58.949113 82.068936 \nL 59.105684 84.603728 \nL 59.210065 85.465067 \nL 59.314446 84.28381 \nL 59.418827 85.145149 \nL 59.523208 83.274824 \nL 59.627589 83.447095 \nL 59.67978 83.570144 \nL 59.73197 82.192009 \nL 59.784161 83.668586 \nL 59.888542 86.818615 \nL 59.940732 85.612748 \nL 60.045113 85.046731 \nL 60.097304 85.268219 \nL 60.201685 82.585778 \nL 60.253875 83.348676 \nL 60.358256 84.899083 \nL 60.514828 81.650624 \nL 60.619209 85.120578 \nL 60.671399 84.677607 \nL 60.82797 82.782675 \nL 60.880161 84.136203 \nL 60.932351 83.890109 \nL 60.984542 83.422529 \nL 61.036732 81.626031 \nL 61.088923 81.872129 \nL 61.245494 85.243646 \nL 61.297685 84.800675 \nL 61.349875 84.800677 \nL 61.454256 84.210051 \nL 61.558637 82.167459 \nL 61.715209 84.923737 \nL 61.767399 84.062403 \nL 61.81959 83.963967 \nL 61.923971 83.34873 \nL 61.976161 84.111629 \nL 62.028352 83.717878 \nL 62.184923 82.807328 \nL 62.289304 84.136249 \nL 62.341495 83.767107 \nL 62.498066 84.923762 \nL 62.550257 84.899154 \nL 62.706828 82.979612 \nL 62.759019 83.22571 \nL 62.91559 84.997604 \nL 62.967781 84.579243 \nL 63.019971 84.776122 \nL 63.228733 82.979629 \nL 63.385305 84.111675 \nL 63.489686 83.373391 \nL 63.541876 83.693317 \nL 63.594067 83.939414 \nL 63.646257 83.865587 \nL 63.698448 83.840979 \nL 63.802829 83.250353 \nL 64.011591 84.357791 \nL 64.168162 84.72694 \nL 64.376924 82.659742 \nL 64.481305 83.742566 \nL 64.585686 82.930454 \nL 64.637877 83.22577 \nL 64.794448 84.431645 \nL 64.846639 84.013284 \nL 64.95102 83.398048 \nL 65.055401 83.988681 \nL 65.159782 83.348835 \nL 65.211972 83.545713 \nL 65.316353 84.55471 \nL 65.472925 83.988694 \nL 65.629496 83.791823 \nL 65.681687 83.964091 \nL 65.786068 83.176588 \nL 65.838258 83.398076 \nL 65.942639 83.644175 \nL 66.09921 84.407077 \nL 66.151401 84.234812 \nL 66.203591 84.308643 \nL 66.307972 85.046933 \nL 66.464544 83.152001 \nL 66.725496 84.136392 \nL 66.829877 83.29967 \nL 66.934258 84.751639 \nL 66.986449 84.259449 \nL 67.09083 83.127411 \nL 67.14302 83.250461 \nL 67.299592 84.431726 \nL 67.403973 83.619613 \nL 67.508354 82.586014 \nL 67.560544 83.078207 \nL 67.664925 84.407128 \nL 67.769306 84.210255 \nL 67.821497 84.210256 \nL 67.873687 83.52119 \nL 67.925878 83.718068 \nL 68.030259 84.308702 \nL 68.082449 83.988779 \nL 68.18683 84.13644 \nL 68.291211 83.865738 \nL 68.395592 84.579419 \nL 68.499973 83.348943 \nL 68.552164 83.742698 \nL 68.604354 84.284111 \nL 68.656545 83.693482 \nL 68.813116 84.333336 \nL 68.969688 83.299739 \nL 69.021878 83.496618 \nL 69.074069 84.185687 \nL 69.126259 84.038032 \nL 69.23064 82.782946 \nL 69.282831 82.955215 \nL 69.439402 84.72711 \nL 69.595974 83.27515 \nL 69.648164 83.422809 \nL 69.752545 83.619689 \nL 69.804736 83.201328 \nL 69.856926 83.472035 \nL 69.909117 83.988838 \nL 69.961307 83.693525 \nL 70.013498 83.791965 \nL 70.117879 83.422824 \nL 70.170069 83.595093 \nL 70.326641 84.825577 \nL 70.483212 83.915028 \nL 70.691974 84.16113 \nL 70.744165 83.545892 \nL 70.796355 83.570504 \nL 70.952927 84.111919 \nL 71.213879 82.955278 \nL 71.37045 84.431858 \nL 71.474831 84.161155 \nL 71.527022 84.038109 \nL 71.631403 82.659976 \nL 71.787974 84.5057 \nL 71.944546 83.890465 \nL 72.048927 83.545935 \nL 72.101117 82.979916 \nL 72.153308 83.299842 \nL 72.36207 84.358061 \nL 72.41426 84.50572 \nL 72.570832 83.102979 \nL 72.623022 83.521344 \nL 72.727403 84.308854 \nL 72.779594 83.939711 \nL 72.831784 83.964323 \nL 72.936165 84.604175 \nL 72.988356 83.693622 \nL 73.040546 84.210425 \nL 73.197118 83.595191 \nL 73.249308 83.841288 \nL 73.353689 84.038168 \nL 73.40588 83.988951 \nL 73.45807 83.767466 \nL 73.510261 84.431927 \nL 73.614642 84.40732 \nL 73.771213 83.54599 \nL 73.875594 84.3335 \nL 73.927785 84.161235 \nL 74.032166 83.915142 \nL 74.136547 84.431947 \nL 74.240928 82.881547 \nL 74.293118 83.053816 \nL 74.397499 83.299915 \nL 74.44969 82.610848 \nL 74.50188 82.832336 \nL 74.762833 84.481186 \nL 74.815023 83.693682 \nL 74.867214 83.964389 \nL 74.971595 83.865954 \nL 75.023785 84.308928 \nL 75.128166 82.955404 \nL 75.180357 83.250721 \nL 75.232547 83.103065 \nL 75.284738 83.570649 \nL 75.336928 83.201507 \nL 75.389119 82.635488 \nL 75.441309 82.980024 \nL 75.54569 84.210506 \nL 75.650071 83.644489 \nL 75.702262 83.964416 \nL 75.754452 83.22613 \nL 75.806643 83.570666 \nL 75.858833 83.373791 \nL 76.067595 84.505838 \nL 76.224167 83.201536 \nL 76.276357 83.373804 \nL 76.328548 84.653504 \nL 76.380738 84.481239 \nL 76.53731 83.472251 \nL 76.5895 83.669129 \nL 76.693881 83.25077 \nL 76.850452 84.998055 \nL 76.954833 84.062894 \nL 77.007024 84.653526 \nL 77.059214 84.235165 \nL 77.111405 84.284386 \nL 77.163595 83.964463 \nL 77.215786 84.038293 \nL 77.372357 84.481271 \nL 77.528929 83.423064 \nL 77.581119 83.521504 \nL 77.63331 84.185964 \nL 77.6855 83.546117 \nL 77.789881 84.432065 \nL 77.842072 84.161361 \nL 77.894262 83.792219 \nL 77.946453 84.185974 \nL 77.998643 85.071921 \nL 78.050834 84.407464 \nL 78.155215 83.69379 \nL 78.207405 83.841449 \nL 78.259596 83.939889 \nL 78.363977 83.250824 \nL 78.416167 83.423093 \nL 78.468358 84.161382 \nL 78.520548 83.915288 \nL 78.624929 83.767633 \nL 78.67712 84.06295 \nL 78.72931 83.792246 \nL 78.781501 83.226228 \nL 78.833691 83.619983 \nL 78.885882 84.013738 \nL 78.938072 83.915301 \nL 78.990263 83.693817 \nL 79.042453 83.792257 \nL 79.146834 84.579766 \nL 79.303406 83.201635 \nL 79.355596 83.841486 \nL 79.407787 83.570782 \nL 79.459977 83.644613 \nL 79.564358 84.407513 \nL 79.668739 84.235249 \nL 79.77312 83.447746 \nL 79.825311 83.570796 \nL 79.877501 84.112208 \nL 79.929692 83.792285 \nL 80.034073 83.12783 \nL 80.138454 85.022771 \nL 80.190644 84.505971 \nL 80.295025 82.906352 \nL 80.399406 84.702855 \nL 80.451597 84.358322 \nL 80.503787 83.890742 \nL 80.555978 84.063011 \nL 80.608168 84.013793 \nL 80.660359 84.186062 \nL 80.712549 84.087626 \nL 80.76474 84.112237 \nL 80.81693 83.496999 \nL 80.869121 83.595439 \nL 80.921311 84.112242 \nL 81.025692 83.201691 \nL 81.077883 83.423179 \nL 81.130073 83.866153 \nL 81.182264 83.792326 \nL 81.234454 83.66928 \nL 81.338835 84.087646 \nL 81.391026 83.9646 \nL 81.547597 83.595461 \nL 81.599788 83.74312 \nL 81.651978 83.25093 \nL 81.704169 83.423199 \nL 81.80855 84.72751 \nL 81.86074 84.382978 \nL 81.912931 83.989226 \nL 81.965121 84.530638 \nL 82.017311 84.481421 \nL 82.069502 83.373992 \nL 82.121692 83.423212 \nL 82.226073 84.678304 \nL 82.330454 83.595486 \nL 82.382645 84.235337 \nL 82.434835 83.989243 \nL 82.539216 83.324788 \nL 82.747978 84.653712 \nL 82.852359 83.152531 \nL 82.90455 83.644724 \nL 83.008931 85.465836 \nL 83.061121 84.481455 \nL 83.165502 84.506068 \nL 83.322074 83.177155 \nL 83.478645 84.161544 \nL 83.583026 82.955678 \nL 83.635217 83.103337 \nL 83.739598 83.620141 \nL 83.791788 84.259992 \nL 83.843979 84.136946 \nL 83.94836 83.570929 \nL 84.00055 82.561938 \nL 84.052741 82.758816 \nL 84.104931 82.758818 \nL 84.209312 84.702978 \nL 84.261503 84.235398 \nL 84.313693 83.792427 \nL 84.365884 83.915477 \nL 84.418074 84.555327 \nL 84.470265 83.89087 \nL 84.522455 83.890872 \nL 84.679027 84.28463 \nL 84.99217 82.783456 \nL 85.148741 85.293638 \nL 85.253122 82.586588 \nL 85.305313 82.931124 \nL 85.409694 84.53075 \nL 85.514075 84.358486 \nL 85.566265 83.251057 \nL 85.618456 83.570983 \nL 85.722837 84.481541 \nL 85.827218 82.488168 \nL 85.983789 84.43233 \nL 86.03598 84.013969 \nL 86.08817 84.137019 \nL 86.244742 84.629215 \nL 86.349123 83.817102 \nL 86.401313 84.284686 \nL 86.453504 84.580003 \nL 86.557885 83.546404 \nL 86.610075 83.644844 \nL 86.662266 83.98938 \nL 86.714456 83.595628 \nL 86.766647 83.374144 \nL 86.871028 83.644852 \nL 86.923218 82.562033 \nL 86.975409 82.685082 \nL 87.07979 84.210879 \nL 87.184171 83.989397 \nL 87.288551 83.251112 \nL 87.445123 85.096836 \nL 87.601694 83.521828 \nL 87.653885 83.817145 \nL 87.810456 85.244505 \nL 87.862647 85.04763 \nL 87.914837 83.743324 \nL 87.967028 83.989422 \nL 88.019218 84.1863 \nL 88.071409 83.866377 \nL 88.123599 82.094489 \nL 88.17579 82.217539 \nL 88.332361 83.423413 \nL 88.384552 82.955833 \nL 88.436742 83.374198 \nL 88.593314 84.407805 \nL 88.749885 82.414434 \nL 88.854266 84.801567 \nL 89.010838 79.190588 \nL 89.063028 75.917515 \nL 89.167409 104.046269 \nL 89.2196 91.372336 \nL 89.376171 70.700295 \nL 89.532743 96.663406 \nL 89.584933 91.175471 \nL 89.793695 75.27769 \nL 89.898076 96.269665 \nL 89.950267 85.785985 \nL 90.002457 76.680442 \nL 90.106838 77.197247 \nL 90.211219 102.914262 \nL 90.26341 89.994233 \nL 90.3156 89.69892 \nL 90.367791 90.092675 \nL 90.472172 53.129091 \nL 90.524362 56.033022 \nL 90.680934 106.507276 \nL 90.733124 102.889668 \nL 90.785315 104.415464 \nL 90.941886 56.352959 \nL 91.046267 78.132442 \nL 91.150648 107.024091 \nL 91.202839 103.308046 \nL 91.411601 53.768969 \nL 91.463791 70.724972 \nL 91.568172 117.310909 \nL 91.620363 103.800251 \nL 91.776934 64.006566 \nL 92.037887 115.391377 \nL 92.142268 61.201087 \nL 92.194458 64.006579 \nL 92.40322 105.670606 \nL 92.559792 68.19022 \nL 92.611982 69.100776 \nL 92.716363 100.502603 \nL 92.768553 87.92711 \nL 92.872934 84.654039 \nL 93.081696 93.464275 \nL 93.186077 76.97586 \nL 93.290458 68.583997 \nL 93.44703 96.712752 \nL 93.49922 89.945119 \nL 93.707982 78.157137 \nL 93.760173 71.291066 \nL 93.812363 77.64034 \nL 93.864554 82.38999 \nL 93.916744 99.592088 \nL 93.968935 92.209216 \nL 94.021125 84.850953 \nL 94.073316 85.884557 \nL 94.125506 86.647456 \nL 94.177697 84.014232 \nL 94.334268 71.192647 \nL 94.595221 100.428836 \nL 94.647411 76.459107 \nL 94.751792 78.575534 \nL 94.803983 81.996267 \nL 94.856173 79.510701 \nL 94.908364 79.363045 \nL 94.960554 80.568917 \nL 95.169316 94.719431 \nL 95.221507 94.079584 \nL 95.430269 66.812177 \nL 95.639031 104.120306 \nL 95.691221 98.14018 \nL 95.743412 77.591182 \nL 95.795602 82.759196 \nL 95.847793 91.717085 \nL 95.899983 81.947083 \nL 96.004364 73.924363 \nL 96.056555 77.468145 \nL 96.160936 91.840143 \nL 96.213126 86.278379 \nL 96.265317 88.320976 \nL 96.317507 95.408537 \nL 96.369698 87.410425 \nL 96.421888 86.745968 \nL 96.474079 95.605418 \nL 96.682841 66.68917 \nL 96.735031 67.993479 \nL 96.943793 104.514101 \nL 97.048174 84.92488 \nL 97.100365 85.220196 \nL 97.152555 87.410451 \nL 97.204746 84.383474 \nL 97.309127 68.977881 \nL 97.361317 71.365011 \nL 97.413508 69.322418 \nL 97.570079 94.178098 \nL 97.62227 92.799964 \nL 97.778841 78.403364 \nL 97.883222 78.993998 \nL 98.039793 97.426578 \nL 98.248555 77.025243 \nL 98.352936 88.468701 \nL 98.405127 84.038979 \nL 98.457317 81.651851 \nL 98.509508 90.166767 \nL 98.561698 85.367901 \nL 98.666079 75.425634 \nL 98.71827 79.929189 \nL 98.822651 86.622998 \nL 98.874841 82.931563 \nL 98.979222 81.873354 \nL 99.031413 82.291719 \nL 99.083603 79.830762 \nL 99.292365 89.182409 \nL 99.344556 89.059363 \nL 99.396746 91.175789 \nL 99.501127 82.587049 \nL 99.605508 90.757433 \nL 99.81427 77.222171 \nL 100.023032 87.484372 \nL 100.075223 79.215555 \nL 100.127413 86.770698 \nL 100.179604 95.433272 \nL 100.231794 90.732843 \nL 100.336175 67.058431 \nL 100.388366 73.530752 \nL 100.492747 84.112875 \nL 100.544937 83.792952 \nL 100.597128 86.696884 \nL 100.649318 86.549228 \nL 100.701509 84.408197 \nL 100.753699 90.240668 \nL 100.80589 88.296514 \nL 100.85808 86.475406 \nL 100.962461 92.381709 \nL 101.014652 91.766471 \nL 101.223414 74.884306 \nL 101.327795 76.63159 \nL 101.432176 81.774995 \nL 101.484366 75.74565 \nL 101.536557 76.188624 \nL 101.588747 77.492933 \nL 101.797509 94.49816 \nL 101.8497 92.750881 \nL 102.058462 77.468339 \nL 102.162843 83.47308 \nL 102.215033 82.217993 \nL 102.319414 88.542658 \nL 102.371605 85.687949 \nL 102.475986 80.766036 \nL 102.528176 73.555431 \nL 102.684748 89.453224 \nL 102.841319 81.110582 \nL 102.9457 88.887213 \nL 103.154462 78.157443 \nL 103.206653 82.53795 \nL 103.258843 78.551199 \nL 103.311033 79.75707 \nL 103.363224 84.925084 \nL 103.415414 83.768435 \nL 103.571986 80.593804 \nL 103.676367 88.370435 \nL 103.728557 85.712602 \nL 103.780748 82.710235 \nL 103.832938 85.048147 \nL 103.98951 82.80868 \nL 104.0417 82.808682 \nL 104.146081 84.531356 \nL 104.354843 78.895769 \nL 104.511415 87.213812 \nL 104.563605 90.019306 \nL 104.615796 89.970088 \nL 104.667986 85.761852 \nL 104.720177 85.98334 \nL 104.772367 88.641176 \nL 104.824558 87.287651 \nL 104.981129 80.987603 \nL 105.03332 82.43957 \nL 105.137701 85.195847 \nL 105.189891 84.383732 \nL 105.242082 84.482172 \nL 105.294272 86.352502 \nL 105.398653 78.403611 \nL 105.450844 81.529029 \nL 105.503034 83.793112 \nL 105.555225 83.153265 \nL 105.607415 82.168884 \nL 105.659606 83.07944 \nL 105.711796 82.56264 \nL 105.868368 85.860329 \nL 105.920558 86.327913 \nL 105.972749 85.98338 \nL 106.07713 84.359151 \nL 106.12932 84.605249 \nL 106.233701 82.341171 \nL 106.338082 85.786515 \nL 106.494654 80.298584 \nL 106.546844 82.98103 \nL 106.599035 82.882593 \nL 106.703416 80.126324 \nL 106.859987 84.408396 \nL 106.912178 84.580665 \nL 107.068749 87.829134 \nL 107.12094 85.417397 \nL 107.225321 85.688106 \nL 107.329702 85.220527 \nL 107.434083 79.240402 \nL 107.486273 80.64315 \nL 107.590654 84.654515 \nL 107.642845 83.104113 \nL 107.695035 81.356835 \nL 107.747226 82.981069 \nL 107.799416 84.408426 \nL 107.851607 83.522483 \nL 107.903797 83.670142 \nL 108.008178 81.701379 \nL 108.16475 86.574081 \nL 108.21694 85.392823 \nL 108.373512 78.84668 \nL 108.477893 86.992454 \nL 108.582274 81.824446 \nL 108.686654 85.392838 \nL 108.738845 84.18697 \nL 108.791035 85.515889 \nL 108.843226 87.607705 \nL 108.999797 81.947507 \nL 109.104178 85.515899 \nL 109.156369 85.442072 \nL 109.31294 81.430716 \nL 109.417321 84.629965 \nL 109.521702 84.039338 \nL 109.626083 81.20924 \nL 109.678274 81.8737 \nL 109.887036 85.417486 \nL 109.939226 84.506934 \nL 110.147988 80.766284 \nL 110.200179 80.249485 \nL 110.35675 85.023748 \nL 110.408941 84.777654 \nL 110.513322 81.332317 \nL 110.617703 82.636628 \nL 110.722084 84.260863 \nL 110.774274 86.352679 \nL 110.826465 86.057366 \nL 110.930846 83.768678 \nL 110.983036 83.916337 \nL 111.035227 85.319085 \nL 111.087417 85.072991 \nL 111.243989 81.89836 \nL 111.34837 81.55383 \nL 111.504941 85.122224 \nL 111.609322 84.236282 \nL 111.713703 83.645656 \nL 111.765894 83.744096 \nL 111.818084 84.630042 \nL 111.870275 84.113243 \nL 111.922465 83.301128 \nL 112.131227 85.196073 \nL 112.235608 83.768721 \nL 112.339989 85.14686 \nL 112.44437 82.144495 \nL 112.496561 82.587469 \nL 112.548751 84.507018 \nL 112.600942 84.285534 \nL 112.705323 83.54725 \nL 112.861894 85.023829 \nL 112.914085 84.950002 \nL 113.018466 87.115649 \nL 113.070656 86.721897 \nL 113.279418 80.692557 \nL 113.331609 81.135531 \nL 113.383799 82.538279 \nL 113.43599 81.97226 \nL 113.644752 82.858212 \nL 113.801323 87.632475 \nL 113.957894 83.424242 \nL 114.062275 83.916437 \nL 114.218847 84.703949 \nL 114.427609 81.873854 \nL 114.58418 84.580913 \nL 114.636371 84.457866 \nL 114.792942 81.578551 \nL 114.845133 82.439888 \nL 115.106085 86.648134 \nL 115.158276 85.540705 \nL 115.471419 81.824668 \nL 115.523609 81.652403 \nL 115.62799 83.128981 \nL 115.680181 82.169209 \nL 115.732371 82.390697 \nL 115.993324 86.426677 \nL 116.045514 86.402069 \nL 116.410848 81.086411 \nL 116.776181 84.482545 \nL 116.880562 84.359501 \nL 116.984943 83.670436 \nL 117.037134 83.818095 \nL 117.089324 84.310288 \nL 117.141515 83.621222 \nL 117.193705 83.670443 \nL 117.298086 84.408733 \nL 117.350277 85.220851 \nL 117.402467 84.162641 \nL 117.506848 84.211863 \nL 117.71561 82.882953 \nL 117.819991 83.498196 \nL 117.872182 84.851724 \nL 117.924372 84.753288 \nL 118.133134 81.50483 \nL 118.185325 81.677099 \nL 118.341896 84.85174 \nL 118.446277 84.679476 \nL 118.498468 84.851745 \nL 118.550658 84.60565 \nL 118.602849 83.399783 \nL 118.655039 84.679483 \nL 118.70723 85.466991 \nL 118.75942 84.728705 \nL 119.020373 83.276748 \nL 119.072563 83.84277 \nL 119.124754 84.900984 \nL 119.176944 83.941212 \nL 119.229135 83.00605 \nL 119.281325 83.645901 \nL 119.333515 83.276758 \nL 119.385706 83.449027 \nL 119.490087 84.777948 \nL 119.542277 84.75334 \nL 119.80323 82.784582 \nL 119.85542 82.833803 \nL 120.011992 84.950232 \nL 120.064182 84.753357 \nL 120.116373 84.507263 \nL 120.168563 84.679532 \nL 120.272944 82.0217 \nL 120.325135 82.046312 \nL 120.481706 85.171733 \nL 120.533897 84.408838 \nL 120.586087 84.310401 \nL 120.690468 84.974863 \nL 120.89923 82.735398 \nL 121.003611 84.901045 \nL 121.055802 84.162759 \nL 121.107992 84.285809 \nL 121.212373 83.030723 \nL 121.473326 84.827231 \nL 121.525516 84.728795 \nL 121.577707 84.974892 \nL 121.786469 82.636989 \nL 121.838659 82.907696 \nL 122.047421 83.498332 \nL 122.151802 84.925691 \nL 122.203993 84.630378 \nL 122.360564 82.710836 \nL 122.412755 82.932324 \nL 122.464945 83.596784 \nL 122.517136 82.883108 \nL 122.673707 83.522962 \nL 122.725898 83.030772 \nL 122.778088 83.572185 \nL 122.830279 84.138207 \nL 122.93466 83.129217 \nL 122.98685 83.153829 \nL 123.039041 83.350707 \nL 123.247803 84.556583 \nL 123.299993 84.458147 \nL 123.352184 84.851902 \nL 123.404374 84.605807 \nL 123.560946 83.129238 \nL 123.613136 82.464781 \nL 123.665327 82.563221 \nL 123.769708 84.507381 \nL 123.821898 84.236677 \nL 124.03066 83.006205 \nL 124.082851 83.276912 \nL 124.291613 84.876542 \nL 124.552565 83.12927 \nL 124.709136 84.60585 \nL 124.761327 84.532023 \nL 124.970089 82.932407 \nL 125.283232 84.236725 \nL 125.335422 84.113678 \nL 125.439803 83.62149 \nL 125.544184 84.38439 \nL 125.700756 83.400012 \nL 125.857327 82.809387 \nL 125.909518 82.883218 \nL 126.11828 85.196525 \nL 126.274851 83.892222 \nL 126.327042 84.950436 \nL 126.379232 84.359808 \nL 126.640185 82.932461 \nL 126.848947 86.427028 \nL 126.901137 85.664133 \nL 127.057709 83.843029 \nL 127.109899 83.695373 \nL 127.16209 83.867642 \nL 127.21428 83.966082 \nL 127.370852 83.572333 \nL 127.475233 83.867652 \nL 127.579614 83.080149 \nL 127.631804 83.572342 \nL 127.683995 83.572344 \nL 127.736185 84.335242 \nL 127.788376 84.039929 \nL 127.840566 84.138369 \nL 127.892757 83.326254 \nL 127.944947 83.892277 \nL 128.101519 85.098151 \nL 128.2059 83.375484 \nL 128.25809 82.218835 \nL 128.310281 82.464933 \nL 128.675614 85.393485 \nL 128.779995 83.990742 \nL 128.936567 82.686439 \nL 128.988757 82.809489 \nL 129.197519 84.630604 \nL 129.3019 84.655217 \nL 129.354091 84.236856 \nL 129.406281 84.70444 \nL 129.615043 83.178653 \nL 129.667234 83.670846 \nL 129.719424 83.572409 \nL 129.771615 83.547801 \nL 129.928186 85.491963 \nL 129.980376 84.999773 \nL 130.136948 84.163053 \nL 130.189138 84.113835 \nL 130.293519 84.433763 \nL 130.3979 83.597041 \nL 130.450091 84.089234 \nL 130.554472 83.326341 \nL 130.606662 82.26813 \nL 130.658853 82.711104 \nL 130.919805 84.753708 \nL 131.024186 83.67089 \nL 131.076377 83.793939 \nL 131.128567 84.015427 \nL 131.285139 85.098254 \nL 131.44171 82.858787 \nL 131.598282 83.720128 \nL 131.807044 83.498648 \nL 131.911425 82.858802 \nL 132.015806 83.597093 \nL 132.067996 83.252561 \nL 132.120187 83.498658 \nL 132.276758 84.778361 \nL 132.48552 83.941643 \nL 132.537711 84.064692 \nL 132.642092 82.538902 \nL 132.694282 83.203362 \nL 132.746473 84.950644 \nL 132.798663 84.360015 \nL 132.955235 82.218987 \nL 133.111806 85.221361 \nL 133.268378 82.07134 \nL 133.320568 83.203382 \nL 133.372759 83.227993 \nL 133.47714 83.843236 \nL 133.633711 84.630748 \nL 133.685902 84.58153 \nL 133.738092 84.310827 \nL 133.790283 84.630753 \nL 133.842473 84.507707 \nL 133.946854 82.957307 \nL 133.999045 83.351062 \nL 134.312188 85.295229 \nL 134.52095 82.809668 \nL 134.57314 82.588183 \nL 134.677521 84.040152 \nL 134.781902 83.351087 \nL 134.834093 83.301869 \nL 134.938474 84.237037 \nL 134.990664 82.637416 \nL 135.042855 82.711246 \nL 135.147236 84.778454 \nL 135.251616 82.735863 \nL 135.355997 85.393701 \nL 135.408188 84.089395 \nL 135.460378 84.286273 \nL 135.512569 84.53237 \nL 135.564759 83.941742 \nL 135.61695 84.286278 \nL 135.66914 84.28628 \nL 135.825712 83.498778 \nL 135.930093 84.532384 \nL 135.982283 83.572612 \nL 136.034474 83.720271 \nL 136.086664 83.843321 \nL 136.191045 83.178865 \nL 136.243236 83.400353 \nL 136.347617 84.015596 \nL 136.451998 82.760511 \nL 136.504188 83.252704 \nL 136.556379 83.892555 \nL 136.608569 83.080441 \nL 136.66076 83.572634 \nL 136.71295 84.335533 \nL 136.817331 81.234729 \nL 136.869522 82.169895 \nL 136.921712 83.794129 \nL 136.973903 83.252719 \nL 137.026093 82.292948 \nL 137.078284 82.686702 \nL 137.182665 85.147664 \nL 137.234855 84.606255 \nL 137.339236 83.548046 \nL 137.443617 83.646488 \nL 137.547998 85.319943 \nL 137.600189 85.196897 \nL 137.652379 83.966419 \nL 137.70457 85.147681 \nL 137.861141 82.735947 \nL 137.913332 83.105092 \nL 137.965522 83.252751 \nL 138.017713 82.932829 \nL 138.069903 84.360186 \nL 138.122094 84.261749 \nL 138.174284 83.277368 \nL 138.226475 83.351198 \nL 138.330856 85.19692 \nL 138.435237 83.449643 \nL 138.487427 83.843398 \nL 138.591808 83.129724 \nL 138.643999 82.071514 \nL 138.696189 82.785193 \nL 138.80057 84.36021 \nL 138.852761 84.310992 \nL 138.904951 83.277391 \nL 138.957142 83.326612 \nL 139.113713 84.95085 \nL 139.165904 84.532488 \nL 139.218094 82.859039 \nL 139.270285 83.105136 \nL 139.374666 84.114132 \nL 139.426856 83.843429 \nL 139.583428 84.926255 \nL 139.739999 81.973111 \nL 139.84438 83.498908 \nL 139.896571 83.277424 \nL 139.948761 83.228206 \nL 140.053142 84.434079 \nL 140.209714 83.105167 \nL 140.366285 84.754014 \nL 140.418476 83.523536 \nL 140.470666 83.572757 \nL 140.575047 85.320041 \nL 140.731618 82.14541 \nL 140.88819 85.516927 \nL 140.94038 85.197005 \nL 140.992571 83.154411 \nL 141.044761 83.818871 \nL 141.149142 83.52356 \nL 141.305714 83.843489 \nL 141.357904 84.064977 \nL 141.462285 85.812261 \nL 141.514476 84.507955 \nL 141.566666 84.581785 \nL 141.618857 85.344684 \nL 141.775428 81.825519 \nL 141.879809 85.073987 \nL 141.98419 82.539204 \nL 142.088571 85.393918 \nL 142.192952 83.179059 \nL 142.349524 86.3537 \nL 142.401714 85.713853 \nL 142.506095 82.022419 \nL 142.558286 83.080633 \nL 142.610476 83.646655 \nL 142.662667 83.228294 \nL 142.714857 83.154467 \nL 142.767048 83.818927 \nL 142.819238 82.834546 \nL 142.871429 83.105253 \nL 142.97581 86.304501 \nL 143.080191 83.818937 \nL 143.132381 84.33574 \nL 143.236762 85.295517 \nL 143.288953 84.532622 \nL 143.341143 84.704891 \nL 143.445524 85.910763 \nL 143.654286 82.908401 \nL 143.706477 83.179108 \nL 143.810858 85.123269 \nL 143.863048 84.089668 \nL 143.915239 84.483423 \nL 143.967429 84.508034 \nL 144.01962 84.729522 \nL 144.176191 84.114288 \nL 144.228382 84.532652 \nL 144.280572 83.252956 \nL 144.332763 83.572882 \nL 144.437144 85.566261 \nL 144.541525 83.597498 \nL 144.593715 83.671329 \nL 144.645906 83.548283 \nL 144.750287 84.877203 \nL 144.802477 84.286575 \nL 144.906858 85.147914 \nL 144.959049 84.729552 \nL 145.011239 83.917438 \nL 145.06343 84.360412 \nL 145.11562 84.655729 \nL 145.480954 82.93307 \nL 145.533144 83.449873 \nL 145.585335 82.686978 \nL 145.689716 85.590911 \nL 145.794097 85.246381 \nL 145.846287 85.000287 \nL 145.898477 85.566309 \nL 145.950668 84.926461 \nL 146.055049 85.76319 \nL 146.21162 83.351457 \nL 146.368192 82.219421 \nL 146.420382 82.268642 \nL 146.472573 82.391691 \nL 146.524763 81.924111 \nL 146.681335 84.089759 \nL 146.733525 83.892884 \nL 146.785716 84.188201 \nL 146.837906 84.040545 \nL 146.890097 82.785458 \nL 146.942287 83.868281 \nL 146.994478 84.803447 \nL 147.046668 84.434305 \nL 147.151049 82.834686 \nL 147.307621 85.22182 \nL 147.412002 82.46555 \nL 147.464192 83.056182 \nL 147.568573 84.951123 \nL 147.620764 84.852686 \nL 147.672954 84.286668 \nL 147.725145 84.335889 \nL 147.777335 84.705034 \nL 147.986097 82.908541 \nL 148.090478 84.803482 \nL 148.142669 84.581998 \nL 148.29924 83.892935 \nL 148.403621 85.467951 \nL 148.508002 82.736291 \nL 148.560193 82.810122 \nL 148.612383 83.671459 \nL 148.664574 83.179269 \nL 148.716764 81.899572 \nL 148.768955 82.687081 \nL 148.821145 84.483582 \nL 148.873336 84.212878 \nL 148.925526 83.548421 \nL 148.977717 84.335929 \nL 149.029907 84.262102 \nL 149.082098 82.539433 \nL 149.134288 83.326941 \nL 149.238669 84.606643 \nL 149.34305 82.61327 \nL 149.447431 85.344937 \nL 149.499622 85.123453 \nL 149.708384 83.105474 \nL 149.760574 84.188297 \nL 149.812765 83.622278 \nL 149.917146 83.450015 \nL 150.073717 84.532841 \nL 150.178098 83.548461 \nL 150.230289 84.31136 \nL 150.282479 84.139095 \nL 150.33467 83.548467 \nL 150.543432 85.172706 \nL 150.647813 85.541853 \nL 150.700003 85.074272 \nL 150.752194 83.179336 \nL 150.804384 83.400824 \nL 150.856575 83.597703 \nL 150.960956 83.007076 \nL 151.065337 84.286778 \nL 151.117527 83.819197 \nL 151.221908 82.391845 \nL 151.274098 82.711771 \nL 151.378479 85.172733 \nL 151.48286 82.490292 \nL 151.587241 85.271178 \nL 151.691622 81.309039 \nL 151.743813 81.801232 \nL 151.848194 83.696173 \nL 151.900384 82.736401 \nL 151.952575 83.671567 \nL 152.004765 85.34502 \nL 152.056956 84.508296 \nL 152.161337 82.391875 \nL 152.213527 82.761021 \nL 152.370099 85.541908 \nL 152.47448 83.204002 \nL 152.578861 85.517306 \nL 152.735432 83.351668 \nL 152.787623 84.262224 \nL 152.892004 81.875098 \nL 153.048575 86.15717 \nL 153.100766 85.615761 \nL 153.257337 82.244253 \nL 153.361718 84.38529 \nL 153.413909 85.615771 \nL 153.466099 84.631389 \nL 153.622671 83.893107 \nL 153.674861 84.237643 \nL 153.727052 83.868501 \nL 153.779242 84.04077 \nL 153.831433 82.662635 \nL 153.883623 83.474753 \nL 153.988004 86.083371 \nL 154.040195 86.009544 \nL 154.144576 81.875138 \nL 154.196766 83.474763 \nL 154.248957 85.566579 \nL 154.301147 85.222046 \nL 154.405528 82.539605 \nL 154.457719 82.908751 \nL 154.5621 83.548603 \nL 154.61429 82.859537 \nL 154.666481 82.884148 \nL 154.718671 83.45017 \nL 154.875243 82.490402 \nL 154.979624 82.17048 \nL 155.031814 82.29353 \nL 155.136195 84.533005 \nL 155.188386 83.425576 \nL 155.240576 82.933386 \nL 155.292767 83.302531 \nL 155.397148 84.434575 \nL 155.501529 82.884175 \nL 155.553719 83.105663 \nL 155.762481 85.41897 \nL 155.866862 82.933406 \nL 155.919053 83.081065 \nL 155.971243 83.228724 \nL 156.127815 85.665078 \nL 156.232196 82.096692 \nL 156.284386 82.958029 \nL 156.388767 84.508436 \nL 156.493148 82.613502 \nL 156.545338 83.474839 \nL 156.597529 82.785772 \nL 156.649719 82.908822 \nL 156.858481 84.976033 \nL 156.910672 85.123692 \nL 156.962862 85.000646 \nL 157.067243 84.508458 \nL 157.171624 82.8104 \nL 157.276005 85.492848 \nL 157.328196 83.991665 \nL 157.380386 82.490482 \nL 157.432577 82.835018 \nL 157.589148 84.705351 \nL 157.693529 83.20417 \nL 157.902291 84.877629 \nL 157.954482 84.631535 \nL 158.111053 85.320608 \nL 158.215434 84.533105 \nL 158.267625 84.582325 \nL 158.319815 84.754594 \nL 158.372006 84.705377 \nL 158.528577 83.770218 \nL 158.580768 84.090144 \nL 158.632958 85.738987 \nL 158.685149 84.877654 \nL 158.737339 85.172971 \nL 158.84172 83.770228 \nL 158.893911 83.893277 \nL 158.946101 84.508519 \nL 158.998292 83.696404 \nL 159.050482 83.967111 \nL 159.102673 83.917894 \nL 159.154863 83.64719 \nL 159.207054 83.942507 \nL 159.311435 81.924525 \nL 159.468006 84.606974 \nL 159.676768 82.761262 \nL 159.83334 84.508547 \nL 159.88553 84.016357 \nL 159.937721 83.179633 \nL 159.989911 83.524169 \nL 160.042102 84.065582 \nL 160.094292 83.844097 \nL 160.146483 83.376517 \nL 160.198673 84.360902 \nL 160.250864 83.696445 \nL 160.303054 82.269091 \nL 160.355245 82.465969 \nL 160.564007 84.607009 \nL 160.772769 83.967167 \nL 160.824959 83.794902 \nL 160.92934 82.884351 \nL 161.033721 84.188662 \nL 161.085912 83.745691 \nL 161.138102 83.204282 \nL 161.190293 83.474989 \nL 161.294674 84.262499 \nL 161.399055 82.736708 \nL 161.451245 83.253511 \nL 161.660007 84.188682 \nL 161.920959 83.376574 \nL 161.97315 83.327357 \nL 162.077531 83.622675 \nL 162.129721 84.360964 \nL 162.181912 83.991822 \nL 162.234102 83.450413 \nL 162.286293 83.647291 \nL 162.390674 85.197698 \nL 162.547245 84.164101 \nL 162.599436 84.434808 \nL 162.651626 83.450427 \nL 162.703817 83.598086 \nL 162.756007 84.336375 \nL 162.808198 84.287157 \nL 162.912579 82.613709 \nL 162.964769 83.204341 \nL 163.01696 83.819582 \nL 163.06915 83.499659 \nL 163.121341 83.032079 \nL 163.277912 84.237953 \nL 163.382293 83.130526 \nL 163.434484 83.770376 \nL 163.486674 84.090303 \nL 163.538865 83.794989 \nL 163.695436 84.090309 \nL 163.747627 83.967263 \nL 163.799817 84.090313 \nL 163.852008 84.041095 \nL 163.904198 83.770392 \nL 164.008579 83.795005 \nL 164.06077 83.819616 \nL 164.217341 83.204381 \nL 164.321722 84.385645 \nL 164.478294 83.622753 \nL 164.582675 84.287215 \nL 164.634865 84.188778 \nL 164.687056 83.893465 \nL 164.739246 84.016514 \nL 164.791437 84.287221 \nL 164.843627 84.188785 \nL 164.948008 83.942692 \nL 165.052389 84.139572 \nL 165.261151 83.696607 \nL 165.313342 83.278246 \nL 165.365532 83.548953 \nL 165.469913 84.533339 \nL 165.626485 83.376694 \nL 165.783056 84.164206 \nL 165.887437 83.52436 \nL 165.991818 85.000938 \nL 166.044009 84.927111 \nL 166.20058 83.573589 \nL 166.252771 83.376714 \nL 166.304961 83.401326 \nL 166.357152 83.770471 \nL 166.409342 83.745863 \nL 166.513723 83.155237 \nL 166.670295 84.43494 \nL 166.879057 82.49079 \nL 167.035628 84.188856 \nL 167.087819 83.918152 \nL 167.140009 83.991982 \nL 167.29658 84.853323 \nL 167.348771 84.484181 \nL 167.400961 83.819724 \nL 167.453152 83.893554 \nL 167.505342 84.213481 \nL 167.609723 83.425977 \nL 167.714104 84.582631 \nL 167.766295 84.361146 \nL 167.975057 83.327551 \nL 168.027247 83.229114 \nL 168.183819 83.696701 \nL 168.2882 83.229123 \nL 168.444771 84.361168 \nL 168.549152 83.081474 \nL 168.653533 83.967422 \nL 168.705724 83.770547 \nL 168.757914 83.549062 \nL 168.862295 84.139696 \nL 168.914486 83.868992 \nL 168.966676 83.155316 \nL 169.018867 83.57368 \nL 169.071057 84.164312 \nL 169.123248 83.967437 \nL 169.279819 83.327593 \nL 169.33201 83.327595 \nL 169.3842 83.13072 \nL 169.592962 84.287377 \nL 169.749534 83.20456 \nL 169.853915 83.352221 \nL 169.906105 83.622928 \nL 169.958296 82.983081 \nL 170.010486 83.672151 \nL 170.062677 84.435049 \nL 170.114867 84.410442 \nL 170.271439 83.303016 \nL 170.323629 83.524503 \nL 170.42801 84.361233 \nL 170.480201 84.238186 \nL 170.688963 82.786228 \nL 170.741153 83.229202 \nL 170.897725 83.992104 \nL 171.054296 83.32765 \nL 171.158677 84.13977 \nL 171.210868 83.967505 \nL 171.263058 83.696801 \nL 171.315249 83.84446 \nL 171.367439 84.312044 \nL 171.41963 83.844463 \nL 171.47182 83.376883 \nL 171.524011 83.819857 \nL 171.628392 83.672203 \nL 171.680582 83.327671 \nL 171.837154 84.631983 \nL 171.993725 83.327681 \nL 172.045916 83.401511 \nL 172.150297 84.26285 \nL 172.202487 84.139804 \nL 172.254678 84.312072 \nL 172.306868 84.016759 \nL 172.359059 84.287466 \nL 172.46344 83.746059 \nL 172.51563 84.287471 \nL 172.56782 83.942939 \nL 172.672201 83.647627 \nL 172.776582 84.164432 \nL 172.828773 83.992166 \nL 172.880963 83.967559 \nL 172.985344 84.705849 \nL 173.037535 84.361317 \nL 173.141916 83.77069 \nL 173.246297 84.336714 \nL 173.298487 83.672257 \nL 173.350678 84.361327 \nL 173.455059 84.38594 \nL 173.507249 83.623045 \nL 173.55944 84.0168 \nL 173.61163 83.893753 \nL 173.716011 83.450784 \nL 173.768202 83.524615 \nL 173.820392 83.992199 \nL 173.872583 83.795324 \nL 174.029154 83.450795 \nL 174.133535 83.598455 \nL 174.185726 83.844553 \nL 174.237916 83.623068 \nL 174.342297 83.524633 \nL 174.394488 83.770731 \nL 174.446678 83.450808 \nL 174.498869 83.918392 \nL 174.551059 83.672298 \nL 174.60325 83.573861 \nL 174.65544 82.983233 \nL 174.707631 83.032454 \nL 174.759821 83.623085 \nL 174.812012 83.42621 \nL 174.916393 83.253947 \nL 174.968583 83.303167 \nL 175.125155 83.967631 \nL 175.177345 83.401613 \nL 175.281726 84.410609 \nL 175.333917 84.090686 \nL 175.438298 82.983258 \nL 175.542679 84.755151 \nL 175.594869 84.287571 \nL 175.64706 84.262963 \nL 175.69925 84.115307 \nL 175.751441 84.164528 \nL 175.803631 84.189139 \nL 175.908012 83.327807 \nL 175.960203 83.377028 \nL 176.012393 83.450859 \nL 176.064584 83.278593 \nL 176.116774 83.426252 \nL 176.168965 83.795398 \nL 176.221155 83.475475 \nL 176.325536 83.278602 \nL 176.377727 83.524699 \nL 176.534298 84.484478 \nL 176.586489 84.312213 \nL 176.638679 83.647756 \nL 176.69087 83.820024 \nL 176.795251 84.238391 \nL 176.899632 83.032525 \nL 177.004013 83.130966 \nL 177.056203 83.229406 \nL 177.264965 84.287625 \nL 177.369346 82.860273 \nL 177.421537 83.327856 \nL 177.525918 84.386072 \nL 177.682489 82.515749 \nL 177.73468 82.860284 \nL 177.839061 84.533739 \nL 177.943441 83.180216 \nL 177.995632 83.795457 \nL 178.047822 84.28765 \nL 178.100013 83.943118 \nL 178.152203 83.623195 \nL 178.204394 84.263046 \nL 178.256584 84.066171 \nL 178.413156 82.441944 \nL 178.569727 84.263058 \nL 178.621918 84.21384 \nL 178.726299 83.770871 \nL 178.778489 84.066188 \nL 178.83068 84.01697 \nL 178.935061 83.327905 \nL 179.091632 85.198238 \nL 179.143823 84.60761 \nL 179.248204 82.983381 \nL 179.300394 83.549403 \nL 179.404775 84.213865 \nL 179.509156 83.229486 \nL 179.561347 83.524802 \nL 179.717918 83.869341 \nL 179.87449 83.032621 \nL 179.92668 83.20489 \nL 180.031061 84.681468 \nL 180.083252 84.509202 \nL 180.135442 84.583033 \nL 180.239823 83.869358 \nL 180.292014 83.30334 \nL 180.448585 84.361557 \nL 180.552966 83.549444 \nL 180.657347 84.656878 \nL 180.709538 84.607661 \nL 180.813919 83.155699 \nL 180.9183 83.229531 \nL 181.022681 83.155706 \nL 181.074871 84.336967 \nL 181.127062 84.213921 \nL 181.179252 83.352587 \nL 181.231443 83.992438 \nL 181.283633 84.336974 \nL 181.335824 83.992442 \nL 181.388014 82.491259 \nL 181.440205 82.786576 \nL 181.544586 84.090887 \nL 181.648967 82.885021 \nL 181.753348 83.574092 \nL 181.805538 83.475656 \nL 181.857729 83.106514 \nL 181.909919 83.352611 \nL 182.066491 84.730753 \nL 182.223062 83.45106 \nL 182.275253 83.820205 \nL 182.379634 82.885044 \nL 182.431824 83.25419 \nL 182.536205 84.386234 \nL 182.588396 83.894044 \nL 182.640586 83.992484 \nL 182.797158 85.862817 \nL 182.849348 85.616723 \nL 182.953729 83.328035 \nL 183.00592 84.583126 \nL 183.05811 84.558518 \nL 183.162491 82.614364 \nL 183.214681 83.746407 \nL 183.266872 83.746408 \nL 183.371253 83.967898 \nL 183.423443 83.771023 \nL 183.527824 82.466719 \nL 183.580015 82.688206 \nL 183.632205 82.811256 \nL 183.684396 82.589772 \nL 183.893158 84.82925 \nL 183.997539 84.484719 \nL 184.10192 83.377292 \nL 184.15411 83.623389 \nL 184.206301 84.755431 \nL 184.258491 84.115584 \nL 184.310682 83.401908 \nL 184.362872 83.820272 \nL 184.519444 85.149195 \nL 184.571634 85.075368 \nL 184.780396 82.885122 \nL 184.832587 83.278877 \nL 184.936968 84.410921 \nL 184.989158 84.140217 \nL 185.093539 83.5742 \nL 185.14573 84.041784 \nL 185.19792 85.838285 \nL 185.250111 85.813677 \nL 185.354492 83.131236 \nL 185.406682 83.377334 \nL 185.511063 85.346103 \nL 185.563254 85.296886 \nL 185.772016 82.934373 \nL 186.032968 84.952367 \nL 186.137349 83.771111 \nL 186.18954 84.903153 \nL 186.24173 84.730888 \nL 186.346111 82.4422 \nL 186.554873 85.19848 \nL 186.607064 86.035207 \nL 186.659254 86.010599 \nL 186.868016 82.786751 \nL 186.920207 82.540657 \nL 186.972397 83.05746 \nL 187.076778 85.543031 \nL 187.128969 84.755526 \nL 187.181159 83.205124 \nL 187.23335 83.968023 \nL 187.28554 84.164901 \nL 187.389921 83.352788 \nL 187.598683 85.124685 \nL 187.703064 82.639121 \nL 187.807445 83.918822 \nL 187.911826 84.927818 \nL 188.068398 83.057495 \nL 188.224969 85.39541 \nL 188.27716 84.681734 \nL 188.381541 82.663752 \nL 188.485922 84.804789 \nL 188.538112 83.623531 \nL 188.590302 82.442273 \nL 188.642493 82.71298 \nL 188.746874 84.0419 \nL 188.799064 83.402053 \nL 188.851255 82.983692 \nL 188.955636 83.008305 \nL 189.007826 83.279012 \nL 189.164398 85.961461 \nL 189.37316 81.827058 \nL 189.42535 82.220813 \nL 189.529731 84.730994 \nL 189.581922 84.46029 \nL 189.634112 83.180594 \nL 189.738493 86.355233 \nL 189.790684 84.755612 \nL 189.895065 83.377479 \nL 190.156017 84.558747 \nL 190.260398 84.140388 \nL 190.41697 85.518529 \nL 190.521351 81.211856 \nL 190.573541 82.614604 \nL 190.677922 85.001737 \nL 190.730113 83.820478 \nL 190.938875 82.590006 \nL 191.043256 86.306056 \nL 191.095446 85.543161 \nL 191.199827 81.334926 \nL 191.252018 82.097825 \nL 191.408589 83.205261 \nL 191.46078 84.53418 \nL 191.51297 83.574408 \nL 191.565161 82.836122 \nL 191.617351 83.475973 \nL 191.669542 84.706454 \nL 191.773923 84.583409 \nL 191.878304 83.131447 \nL 191.930494 84.85412 \nL 191.982685 84.755683 \nL 192.087066 84.288104 \nL 192.139256 84.829517 \nL 192.295828 82.417783 \nL 192.348018 83.27912 \nL 192.400209 84.140457 \nL 192.452399 83.45139 \nL 192.50459 83.229906 \nL 192.608971 82.294745 \nL 192.765542 85.001804 \nL 192.817733 84.091251 \nL 192.922114 83.131481 \nL 192.974304 82.048661 \nL 193.026495 83.131484 \nL 193.130876 83.500631 \nL 193.183066 82.639298 \nL 193.235257 82.663909 \nL 193.287447 84.238924 \nL 193.287447 84.238924 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-width:0.5;\"/>\n   </g>\n   <g id=\"patch_3\">\n    <path d=\"M 28.942188 120.52 \nL 28.942188 49.92 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n   <g id=\"patch_4\">\n    <path d=\"M 201.113412 120.52 \nL 201.113412 49.92 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n   <g id=\"patch_5\">\n    <path d=\"M 28.942188 120.52 \nL 201.113412 120.52 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n   <g id=\"patch_6\">\n    <path d=\"M 28.942188 49.92 \nL 201.113412 49.92 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n  </g>\n  <g id=\"axes_2\">\n   <g id=\"patch_7\">\n    <path d=\"M 239.542187 120.52 \nL 411.713412 120.52 \nL 411.713412 49.92 \nL 239.542187 49.92 \nz\n\" style=\"fill:#ffffff;\"/>\n   </g>\n   <g id=\"matplotlib.axis_3\">\n    <g id=\"xtick_5\">\n     <g id=\"line2d_9\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"247.368152\" xlink:href=\"#m3c8f405461\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_9\">\n      <!-- 0 -->\n      <g transform=\"translate(244.186902 135.118437)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"xtick_6\">\n     <g id=\"line2d_10\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"299.558647\" xlink:href=\"#m3c8f405461\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_10\">\n      <!-- 1000 -->\n      <g transform=\"translate(286.833647 135.118437)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-49\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"xtick_7\">\n     <g id=\"line2d_11\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"351.749142\" xlink:href=\"#m3c8f405461\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_11\">\n      <!-- 2000 -->\n      <g transform=\"translate(339.024142 135.118437)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-50\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"xtick_8\">\n     <g id=\"line2d_12\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"403.939638\" xlink:href=\"#m3c8f405461\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_12\">\n      <!-- 3000 -->\n      <g transform=\"translate(391.214638 135.118437)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-51\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n   </g>\n   <g id=\"matplotlib.axis_4\">\n    <g id=\"ytick_4\">\n     <g id=\"line2d_13\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"239.542187\" xlink:href=\"#m1a14619fdd\" y=\"109.968528\"/>\n      </g>\n     </g>\n     <g id=\"text_13\">\n      <!-- −2 -->\n      <g transform=\"translate(217.8 113.767747)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-8722\"/>\n       <use x=\"83.789062\" xlink:href=\"#DejaVuSans-50\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"ytick_5\">\n     <g id=\"line2d_14\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"239.542187\" xlink:href=\"#m1a14619fdd\" y=\"83.840951\"/>\n      </g>\n     </g>\n     <g id=\"text_14\">\n      <!-- 0 -->\n      <g transform=\"translate(226.179687 87.640169)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"ytick_6\">\n     <g id=\"line2d_15\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"239.542187\" xlink:href=\"#m1a14619fdd\" y=\"57.713373\"/>\n      </g>\n     </g>\n     <g id=\"text_15\">\n      <!-- 2 -->\n      <g transform=\"translate(226.179687 61.512592)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-50\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"text_16\">\n     <!-- 1e−14 -->\n     <g transform=\"translate(239.542187 46.92)scale(0.1 -0.1)\">\n      <use xlink:href=\"#DejaVuSans-49\"/>\n      <use x=\"63.623047\" xlink:href=\"#DejaVuSans-101\"/>\n      <use x=\"125.146484\" xlink:href=\"#DejaVuSans-8722\"/>\n      <use x=\"208.935547\" xlink:href=\"#DejaVuSans-49\"/>\n      <use x=\"272.558594\" xlink:href=\"#DejaVuSans-52\"/>\n     </g>\n    </g>\n   </g>\n   <g id=\"line2d_16\">\n    <path clip-path=\"url(#p4cf4da37fc)\" d=\"M 247.368152 83.820912 \nL 249.664534 83.848575 \nL 249.821106 83.852017 \nL 250.186439 83.838197 \nL 258.74568 83.867696 \nL 259.006633 83.846529 \nL 259.319776 83.829287 \nL 259.998252 83.852672 \nL 263.338444 83.831908 \nL 263.912539 83.848663 \nL 264.330063 83.837938 \nL 271.010447 83.832186 \nL 271.167018 83.834913 \nL 271.37578 83.828348 \nL 271.949875 83.854532 \nL 273.619971 83.855758 \nL 274.246257 83.839853 \nL 275.498829 83.830865 \nL 278.212735 83.837314 \nL 278.473687 83.831528 \nL 279.517497 83.837942 \nL 279.882831 83.811369 \nL 280.091593 83.848015 \nL 280.456926 83.828718 \nL 280.87445 83.880943 \nL 283.223022 83.830264 \nL 283.379594 83.849259 \nL 283.640546 83.869361 \nL 284.266832 83.868461 \nL 284.423404 83.864143 \nL 284.788737 83.785237 \nL 284.945309 83.800753 \nL 285.675976 83.823173 \nL 285.728166 83.736308 \nL 285.780357 83.781042 \nL 287.24169 83.834964 \nL 287.346071 83.835601 \nL 287.450452 83.972055 \nL 287.554833 83.853066 \nL 287.607024 83.941822 \nL 287.659214 83.869653 \nL 288.076738 83.807433 \nL 288.181119 83.802438 \nL 288.23331 83.909714 \nL 288.2855 83.840868 \nL 288.703024 83.877015 \nL 288.911786 83.821447 \nL 289.120548 83.834604 \nL 289.32931 83.833161 \nL 289.381501 83.744647 \nL 289.433691 83.832745 \nL 289.590263 83.832325 \nL 290.842835 83.83902 \nL 290.895025 83.745551 \nL 290.947216 83.859195 \nL 291.051597 83.873935 \nL 291.469121 83.83045 \nL 291.521311 83.9074 \nL 291.677883 83.786191 \nL 291.886645 83.854559 \nL 292.40855 83.889494 \nL 292.617311 83.89438 \nL 292.669502 83.783203 \nL 292.721692 83.814896 \nL 292.878264 83.874414 \nL 293.034835 83.839418 \nL 293.55674 83.929875 \nL 293.608931 83.960468 \nL 293.661121 83.830354 \nL 293.713312 83.90475 \nL 294.757122 83.839447 \nL 294.809312 83.90471 \nL 294.861503 83.858231 \nL 294.965884 83.836513 \nL 295.122455 83.847929 \nL 295.435598 83.83618 \nL 295.59217 83.773144 \nL 295.748741 83.915882 \nL 295.800932 83.850938 \nL 295.853122 83.746286 \nL 295.905313 83.796108 \nL 296.114075 83.856762 \nL 296.218456 83.824705 \nL 296.322837 83.903864 \nL 296.427218 83.755199 \nL 296.479408 83.844024 \nL 296.68817 83.85732 \nL 297.053504 83.89889 \nL 297.210075 83.810349 \nL 297.418837 83.848395 \nL 297.471028 83.847007 \nL 297.575409 83.7545 \nL 297.836361 83.804503 \nL 297.888551 83.746315 \nL 298.045123 83.968408 \nL 298.201694 83.782454 \nL 298.253885 83.828622 \nL 298.358266 83.931643 \nL 298.410456 84.133565 \nL 298.462647 84.10465 \nL 298.514837 83.757663 \nL 298.567028 83.840262 \nL 298.619218 83.954047 \nL 298.671409 83.89614 \nL 298.723599 83.366158 \nL 298.77579 83.426429 \nL 298.932361 83.743915 \nL 298.984552 83.531026 \nL 299.036742 83.709046 \nL 299.193314 84.109109 \nL 299.349885 83.186875 \nL 299.454266 84.419436 \nL 299.663028 78.611369 \nL 299.767409 96.650225 \nL 299.8196 88.251528 \nL 299.976171 75.822039 \nL 300.132743 91.685758 \nL 300.184933 88.418976 \nL 300.393695 78.595451 \nL 300.498076 92.091864 \nL 300.550267 85.015899 \nL 300.602457 79.162537 \nL 300.706838 79.741134 \nL 300.811219 97.228893 \nL 300.86341 89.462909 \nL 300.967791 86.933747 \nL 301.072172 60.506897 \nL 301.124362 63.169499 \nL 301.280934 102.608862 \nL 301.333124 100.201749 \nL 301.385315 98.878697 \nL 301.541886 63.834502 \nL 301.646267 79.805892 \nL 301.750648 101.34231 \nL 301.802839 99.133819 \nL 302.011601 60.677662 \nL 302.063791 73.839354 \nL 302.168172 108.847464 \nL 302.376934 71.712713 \nL 302.429125 76.332274 \nL 302.481315 77.878623 \nL 302.637887 105.999931 \nL 302.742268 68.133076 \nL 302.794458 69.451742 \nL 303.00322 97.725105 \nL 303.159792 74.416541 \nL 303.211982 73.601212 \nL 303.316363 94.997083 \nL 303.368553 86.866915 \nL 303.420744 83.768083 \nL 303.472934 84.040917 \nL 303.681696 90.475578 \nL 303.786077 79.06284 \nL 303.890458 73.570808 \nL 304.04703 92.976531 \nL 304.09922 88.018936 \nL 304.307982 80.041209 \nL 304.360173 74.808375 \nL 304.412363 78.732837 \nL 304.516744 94.83997 \nL 304.568935 90.041829 \nL 304.621125 84.535902 \nL 304.673316 85.055118 \nL 304.725506 86.529538 \nL 304.934268 74.491204 \nL 304.986459 78.452297 \nL 305.038649 90.50467 \nL 305.09084 87.193208 \nL 305.14303 85.963252 \nL 305.195221 95.917411 \nL 305.247411 78.626747 \nL 305.351792 80.441053 \nL 305.403983 81.769578 \nL 305.456173 80.270483 \nL 305.508364 79.730424 \nL 305.560554 81.142477 \nL 305.769316 92.690715 \nL 305.821507 91.84595 \nL 306.030269 70.737479 \nL 306.18684 86.363663 \nL 306.239031 100.16267 \nL 306.291221 94.968995 \nL 306.343412 78.721594 \nL 306.395602 82.801221 \nL 306.447793 89.974698 \nL 306.499983 82.781632 \nL 306.604364 76.28771 \nL 306.656555 78.631566 \nL 306.760936 89.641685 \nL 306.813126 85.244456 \nL 306.865317 86.735239 \nL 306.917507 92.572461 \nL 306.969698 86.451178 \nL 307.021888 86.196492 \nL 307.074079 93.206067 \nL 307.282841 69.463693 \nL 307.335031 70.421964 \nL 307.543793 100.723584 \nL 307.648174 84.461771 \nL 307.700365 85.292979 \nL 307.752555 86.977673 \nL 307.804746 84.641027 \nL 307.909127 72.138769 \nL 307.961317 73.692412 \nL 308.013508 72.642511 \nL 308.170079 92.418392 \nL 308.22227 91.443654 \nL 308.378841 79.3741 \nL 308.483222 79.611523 \nL 308.639793 94.378551 \nL 308.691984 87.142082 \nL 308.848555 78.403388 \nL 308.952936 87.617288 \nL 309.005127 83.894493 \nL 309.057317 82.346029 \nL 309.109508 88.760849 \nL 309.161698 85.553427 \nL 309.266079 77.687699 \nL 309.31827 80.968347 \nL 309.422651 86.24606 \nL 309.474841 83.660955 \nL 309.683603 80.854416 \nL 309.892365 87.260186 \nL 309.944556 87.309647 \nL 309.996746 88.635651 \nL 310.101127 82.178305 \nL 310.205508 88.914422 \nL 310.41427 78.682249 \nL 310.623032 86.725382 \nL 310.675223 80.443394 \nL 310.727413 85.994382 \nL 310.779604 93.338853 \nL 310.831794 89.452718 \nL 310.936175 71.030091 \nL 310.988366 76.127928 \nL 311.092747 83.991984 \nL 311.144937 83.608348 \nL 311.197128 85.828868 \nL 311.249318 85.428815 \nL 311.301509 84.019557 \nL 311.353699 88.137495 \nL 311.40589 86.915769 \nL 311.45808 85.160142 \nL 311.562461 89.861066 \nL 311.614652 89.787485 \nL 311.823414 77.745787 \nL 311.927795 79.215086 \nL 312.032176 82.679639 \nL 312.136557 78.201863 \nL 312.188747 79.381727 \nL 312.397509 92.091994 \nL 312.50189 85.637388 \nL 312.658462 79.1263 \nL 312.762843 83.667547 \nL 312.815033 82.683234 \nL 312.919414 87.486193 \nL 312.971605 85.326101 \nL 313.075986 81.340138 \nL 313.128176 76.349758 \nL 313.232557 88.136445 \nL 313.284748 87.665006 \nL 313.441319 81.808884 \nL 313.5457 87.569057 \nL 313.597891 84.372888 \nL 313.650081 84.09929 \nL 313.754462 80.216765 \nL 313.806653 82.972376 \nL 313.858843 80.656875 \nL 313.911033 81.162894 \nL 313.963224 85.163128 \nL 314.015414 84.204919 \nL 314.171986 81.727163 \nL 314.276367 87.283659 \nL 314.328557 85.061828 \nL 314.380748 83.175711 \nL 314.432938 84.550573 \nL 314.6417 83.035993 \nL 314.746081 84.394513 \nL 314.954843 80.33308 \nL 315.059224 83.197973 \nL 315.163605 87.783235 \nL 315.215796 87.562927 \nL 315.267986 84.561625 \nL 315.320177 84.672719 \nL 315.372367 86.573435 \nL 315.424558 85.747444 \nL 315.581129 81.38605 \nL 315.737701 84.863192 \nL 315.789891 84.152032 \nL 315.842082 84.304378 \nL 315.894272 85.78806 \nL 315.998653 80.051547 \nL 316.050844 82.164177 \nL 316.103034 84.040568 \nL 316.155225 83.312812 \nL 316.207415 82.760456 \nL 316.259606 83.219343 \nL 316.311796 83.135554 \nL 316.468368 85.131314 \nL 316.520558 85.51453 \nL 316.572749 85.302799 \nL 316.833701 82.743558 \nL 316.938082 85.151427 \nL 317.094654 81.654545 \nL 317.199035 83.520846 \nL 317.303416 81.521552 \nL 317.407797 84.13433 \nL 317.459987 83.920076 \nL 317.668749 86.197769 \nL 317.72094 84.857675 \nL 317.825321 85.023188 \nL 317.877511 84.761489 \nL 317.929702 84.791424 \nL 318.034083 80.816439 \nL 318.086273 81.79075 \nL 318.190654 84.589056 \nL 318.242845 83.512634 \nL 318.295035 82.267496 \nL 318.347226 83.42133 \nL 318.399416 84.386535 \nL 318.451607 83.79868 \nL 318.503797 83.857784 \nL 318.608178 82.472659 \nL 318.76475 85.829491 \nL 318.81694 84.834316 \nL 318.973512 80.645141 \nL 319.077893 86.192879 \nL 319.182274 82.538838 \nL 319.286654 85.156529 \nL 319.338845 83.81484 \nL 319.391035 84.935377 \nL 319.443226 86.12652 \nL 319.547607 82.621742 \nL 319.599797 82.841966 \nL 319.704178 85.083552 \nL 319.756369 84.746023 \nL 319.91294 82.410831 \nL 320.017321 84.347771 \nL 320.121702 83.989836 \nL 320.226083 82.30018 \nL 320.278274 82.642051 \nL 320.487036 85.105242 \nL 320.539226 84.310719 \nL 320.747988 81.763392 \nL 320.800179 81.686375 \nL 320.95675 84.587588 \nL 321.008941 84.694581 \nL 321.113322 82.474514 \nL 321.165512 82.659157 \nL 321.374274 85.40585 \nL 321.426465 85.321583 \nL 321.530846 83.786875 \nL 321.583036 83.823156 \nL 321.635227 84.832036 \nL 321.687417 84.596393 \nL 321.896179 82.353035 \nL 321.94837 82.371101 \nL 322.104941 84.66764 \nL 322.209322 84.097451 \nL 322.313703 83.657862 \nL 322.365894 83.813322 \nL 322.418084 84.31422 \nL 322.470275 84.021318 \nL 322.522465 83.426328 \nL 322.574656 84.085728 \nL 322.731227 84.695271 \nL 322.835608 83.757733 \nL 322.939989 84.686074 \nL 323.04437 82.592558 \nL 323.096561 82.961948 \nL 323.148751 84.207007 \nL 323.200942 84.162802 \nL 323.305323 83.625523 \nL 323.618466 86.10667 \nL 323.670656 85.726526 \nL 323.879418 81.731515 \nL 323.931609 82.113585 \nL 323.983799 82.884515 \nL 324.08818 82.810831 \nL 324.296942 84.934917 \nL 324.401323 86.280474 \nL 324.557894 83.562044 \nL 324.662275 83.90996 \nL 324.766656 83.971323 \nL 324.818847 84.286778 \nL 325.027609 82.607151 \nL 325.079799 83.00645 \nL 325.18418 84.393489 \nL 325.236371 84.198912 \nL 325.392942 82.449627 \nL 325.445133 82.809342 \nL 325.706085 85.629176 \nL 326.071419 82.60225 \nL 326.123609 82.540174 \nL 326.22799 83.399189 \nL 326.280181 82.869462 \nL 326.332371 82.978083 \nL 326.593324 85.415659 \nL 326.645514 85.308413 \nL 327.010848 82.221436 \nL 327.063038 82.613745 \nL 327.21961 83.721983 \nL 327.428372 84.224957 \nL 327.480562 84.121312 \nL 327.584943 83.712317 \nL 327.689324 84.080106 \nL 327.793705 83.721681 \nL 327.950277 84.657972 \nL 328.002467 84.192105 \nL 328.054658 84.21181 \nL 328.106848 84.085242 \nL 328.211229 83.495954 \nL 328.26342 83.634306 \nL 328.31561 83.382845 \nL 328.367801 83.424565 \nL 328.472182 84.410537 \nL 328.524372 84.3668 \nL 328.733134 82.503659 \nL 328.785325 82.610082 \nL 329.098468 84.385814 \nL 329.202849 83.705462 \nL 329.30723 84.692007 \nL 329.35942 84.365819 \nL 329.515992 83.947369 \nL 329.620373 83.488427 \nL 329.724754 84.299616 \nL 329.776944 83.88976 \nL 329.829135 83.452839 \nL 329.881325 83.705279 \nL 329.933515 83.583014 \nL 329.985706 83.671328 \nL 330.090087 84.393269 \nL 330.142277 84.367074 \nL 330.40323 83.262919 \nL 330.45542 83.282966 \nL 330.611992 84.378444 \nL 330.664182 84.249192 \nL 330.716373 84.132653 \nL 330.768563 84.178525 \nL 330.872944 82.936887 \nL 330.925135 82.990453 \nL 331.081706 84.468154 \nL 331.133897 84.1951 \nL 331.186087 84.14223 \nL 331.290468 84.4084 \nL 331.49923 83.28046 \nL 331.603611 84.263918 \nL 331.655802 84.01192 \nL 331.707992 83.945908 \nL 331.812373 83.470791 \nL 332.073326 84.327427 \nL 332.125516 84.296201 \nL 332.177707 84.393908 \nL 332.386469 83.196314 \nL 332.438659 83.352796 \nL 332.647421 83.627646 \nL 332.751802 84.410995 \nL 332.803993 84.265454 \nL 332.960564 83.276231 \nL 333.012755 83.383515 \nL 333.064945 83.618967 \nL 333.117136 83.400223 \nL 333.430279 83.987243 \nL 333.58685 83.493992 \nL 333.639041 83.59707 \nL 333.795612 84.210608 \nL 333.899993 84.186834 \nL 333.952184 84.326057 \nL 334.004374 84.24411 \nL 334.265327 83.171023 \nL 334.369708 84.107929 \nL 334.421898 83.960081 \nL 334.63066 83.465983 \nL 334.682851 83.593795 \nL 334.891613 84.357189 \nL 334.943803 84.24974 \nL 335.100375 83.669724 \nL 335.152565 83.565115 \nL 335.309136 84.22356 \nL 335.361327 84.18053 \nL 335.570089 83.366498 \nL 335.883232 84.049268 \nL 335.935422 84.008994 \nL 336.039803 83.702097 \nL 336.144184 84.104403 \nL 336.300756 83.624234 \nL 336.509518 83.310721 \nL 336.71828 84.390756 \nL 336.874851 83.944789 \nL 336.927042 84.275695 \nL 336.979232 84.087076 \nL 337.187994 83.590391 \nL 337.240185 83.474876 \nL 337.448947 85.114291 \nL 337.501137 84.746612 \nL 337.657709 83.859904 \nL 337.709899 83.723681 \nL 337.76209 83.848113 \nL 337.81428 83.883304 \nL 337.970852 83.745398 \nL 338.075233 83.907322 \nL 338.179614 83.542011 \nL 338.231804 83.679793 \nL 338.440566 84.014877 \nL 338.492757 83.700031 \nL 338.544947 83.904359 \nL 338.597138 84.374351 \nL 338.701519 84.309961 \nL 338.8059 83.686556 \nL 338.85809 83.297727 \nL 338.910281 83.335173 \nL 339.119043 84.140024 \nL 339.171233 84.012778 \nL 339.223424 84.084426 \nL 339.275614 84.43223 \nL 339.327805 84.308058 \nL 339.536567 83.437817 \nL 339.588757 83.473851 \nL 339.745329 83.860114 \nL 339.9019 84.068247 \nL 339.954091 83.977329 \nL 340.006281 84.140921 \nL 340.058472 83.979607 \nL 340.215043 83.615095 \nL 340.371615 83.771166 \nL 340.528186 84.544318 \nL 340.580376 84.33457 \nL 340.736948 83.96914 \nL 340.841329 84.035666 \nL 340.893519 84.051702 \nL 340.9979 83.793331 \nL 341.050091 83.945844 \nL 341.102281 83.878331 \nL 341.206662 83.260207 \nL 341.258853 83.3581 \nL 341.519805 84.141765 \nL 341.676377 83.858667 \nL 341.885139 84.272439 \nL 342.04171 83.549335 \nL 342.093901 83.739231 \nL 342.146091 83.661513 \nL 342.198282 83.72742 \nL 342.407044 83.678471 \nL 342.459234 83.652343 \nL 342.511425 83.491127 \nL 342.615806 83.736784 \nL 342.667996 83.5626 \nL 342.720187 83.693006 \nL 342.876758 84.225023 \nL 343.08552 83.871852 \nL 343.137711 83.868115 \nL 343.242092 83.543576 \nL 343.294282 83.634598 \nL 343.346473 84.020628 \nL 343.398663 83.826 \nL 343.555235 83.301669 \nL 343.711806 84.135527 \nL 343.763997 83.998814 \nL 343.868378 83.326964 \nL 344.07714 83.909667 \nL 344.233711 84.078344 \nL 344.494664 83.988122 \nL 344.546854 83.77213 \nL 344.599045 83.849301 \nL 344.912188 84.270811 \nL 345.12095 83.535248 \nL 345.225331 83.653494 \nL 345.277521 83.824219 \nL 345.329712 83.691706 \nL 345.538474 83.794372 \nL 345.590664 83.528102 \nL 345.642855 83.600308 \nL 345.747236 83.952524 \nL 345.799426 83.855575 \nL 345.851616 83.707384 \nL 345.955997 84.245975 \nL 346.008188 84.089185 \nL 346.060378 84.162428 \nL 346.112569 84.090417 \nL 346.164759 83.940731 \nL 346.21695 84.060231 \nL 346.321331 83.891774 \nL 346.425712 83.75826 \nL 346.530093 84.104825 \nL 346.686664 83.76819 \nL 346.791045 83.572667 \nL 346.947617 83.790163 \nL 347.051998 83.541293 \nL 347.104188 83.597893 \nL 347.156379 83.812032 \nL 347.208569 83.705556 \nL 347.31295 83.838407 \nL 347.417331 83.277449 \nL 347.469522 83.397456 \nL 347.573903 83.64252 \nL 347.626093 83.576198 \nL 347.678284 83.649582 \nL 347.782665 84.115937 \nL 347.834855 84.074611 \nL 347.991427 83.815676 \nL 348.043617 83.897942 \nL 348.147998 84.278747 \nL 348.200189 84.208411 \nL 348.252379 83.974326 \nL 348.30457 84.191804 \nL 348.408951 83.796876 \nL 348.461141 83.568314 \nL 348.513332 83.622454 \nL 348.669903 83.933794 \nL 348.722094 83.862663 \nL 348.774284 83.684301 \nL 348.826475 83.726601 \nL 348.930856 84.081426 \nL 348.983046 83.895674 \nL 349.243999 83.373321 \nL 349.452761 83.860822 \nL 349.504951 83.70777 \nL 349.557142 83.794153 \nL 349.713713 84.116156 \nL 349.765904 84.042253 \nL 349.818094 83.680066 \nL 349.870285 83.697815 \nL 350.026856 83.819966 \nL 350.183428 83.976112 \nL 350.339999 83.407319 \nL 350.39219 83.527271 \nL 350.44438 83.720273 \nL 350.496571 83.668769 \nL 350.548761 83.648819 \nL 350.600952 83.891338 \nL 350.653142 83.812785 \nL 350.809714 83.776065 \nL 350.966285 84.068016 \nL 351.018476 83.891882 \nL 351.070666 83.841963 \nL 351.175047 84.081992 \nL 351.331618 83.570135 \nL 351.54038 84.139186 \nL 351.592571 83.767913 \nL 351.644761 83.929839 \nL 351.749142 83.861338 \nL 352.062285 84.263682 \nL 352.114476 84.061771 \nL 352.166666 84.092567 \nL 352.218857 84.154796 \nL 352.375428 83.638396 \nL 352.479809 84.0464 \nL 352.532 83.973759 \nL 352.58419 83.804628 \nL 352.636381 83.999845 \nL 352.688571 84.093473 \nL 352.792952 83.864537 \nL 352.949524 84.269206 \nL 353.001714 84.228191 \nL 353.158286 83.671316 \nL 353.262667 83.789413 \nL 353.419238 83.691341 \nL 353.471429 83.783597 \nL 353.57581 84.294889 \nL 353.628 84.118846 \nL 353.680191 83.953991 \nL 353.732381 83.989891 \nL 353.784572 83.994364 \nL 353.836762 84.160343 \nL 353.888953 84.100674 \nL 353.993334 84.213378 \nL 354.045524 84.343997 \nL 354.254286 83.679814 \nL 354.306477 83.730908 \nL 354.410858 84.168765 \nL 354.463048 83.927025 \nL 354.515239 83.977948 \nL 354.67181 84.017139 \nL 354.932763 83.829813 \nL 355.037144 84.227063 \nL 355.141525 83.792292 \nL 355.193715 83.844827 \nL 355.245906 83.769037 \nL 355.454668 84.181315 \nL 355.506858 84.266029 \nL 355.559049 84.156113 \nL 355.611239 83.946632 \nL 355.66343 83.971855 \nL 355.71562 84.036256 \nL 355.767811 83.976068 \nL 355.872192 83.984629 \nL 356.028763 83.660782 \nL 356.080954 83.646991 \nL 356.133144 83.768871 \nL 356.185335 83.592791 \nL 356.289716 84.288834 \nL 356.341906 84.238774 \nL 356.550668 84.054636 \nL 356.655049 84.286747 \nL 356.81162 83.75826 \nL 357.020382 83.478563 \nL 357.176954 83.53825 \nL 357.281335 83.894588 \nL 357.333525 83.845861 \nL 357.437906 83.882259 \nL 357.490097 83.624326 \nL 357.542287 83.869739 \nL 357.594478 84.002755 \nL 357.646668 83.918675 \nL 357.751049 83.661191 \nL 357.80324 83.840956 \nL 357.907621 84.08417 \nL 358.012002 83.593141 \nL 358.064192 83.728934 \nL 358.220764 84.104272 \nL 358.325145 84.044398 \nL 358.377335 84.088269 \nL 358.586097 83.756361 \nL 358.690478 84.084407 \nL 358.742669 84.045361 \nL 358.89924 83.866793 \nL 359.003621 84.140898 \nL 359.160193 83.651854 \nL 359.264574 83.687238 \nL 359.316764 83.546128 \nL 359.368955 83.634607 \nL 359.473336 83.833308 \nL 359.525526 83.757671 \nL 359.577717 83.858244 \nL 359.629907 83.840739 \nL 359.682098 83.679331 \nL 359.734288 83.828963 \nL 359.838669 83.936108 \nL 359.94305 83.725441 \nL 360.099622 84.145777 \nL 360.464955 83.743148 \nL 360.569336 83.932512 \nL 360.673717 83.995151 \nL 360.778098 83.813363 \nL 360.882479 83.988183 \nL 360.93467 83.958283 \nL 361.091241 84.038885 \nL 361.247813 84.106584 \nL 361.300003 84.049969 \nL 361.352194 83.795863 \nL 361.404384 83.833545 \nL 361.456575 83.856847 \nL 361.560956 83.742925 \nL 361.665337 83.892892 \nL 361.717527 83.794671 \nL 361.821908 83.671947 \nL 361.978479 83.886076 \nL 362.08286 83.65601 \nL 362.187241 83.881 \nL 362.343813 83.519873 \nL 362.604765 83.931755 \nL 362.813527 83.771858 \nL 362.970099 84.092636 \nL 363.022289 83.993269 \nL 363.07448 83.858366 \nL 363.178861 84.070338 \nL 363.335432 83.832768 \nL 363.387623 84.027196 \nL 363.439813 83.858021 \nL 363.492004 83.725874 \nL 363.648575 84.093974 \nL 363.909528 83.847485 \nL 363.961718 83.932104 \nL 364.013909 84.00519 \nL 364.066099 83.914079 \nL 364.274861 83.931398 \nL 364.431433 83.809754 \nL 364.640195 84.140687 \nL 364.744576 83.749643 \nL 364.796766 83.88282 \nL 364.848957 84.030513 \nL 364.901147 83.959601 \nL 365.057719 83.646097 \nL 365.109909 83.714919 \nL 365.1621 83.746841 \nL 365.21429 83.649343 \nL 365.423052 83.644996 \nL 365.631814 83.51842 \nL 365.736195 83.788221 \nL 365.788386 83.686371 \nL 365.892767 83.682491 \nL 365.997148 83.851662 \nL 366.049338 83.76074 \nL 366.101529 83.707614 \nL 366.153719 83.762982 \nL 366.362481 84.087032 \nL 366.519053 83.813705 \nL 366.571243 83.803095 \nL 366.727815 83.999689 \nL 366.832196 83.671919 \nL 366.884386 83.725321 \nL 366.988767 83.825829 \nL 367.093148 83.663507 \nL 367.458481 84.046316 \nL 367.615053 84.023759 \nL 367.771624 83.801738 \nL 367.823815 83.909218 \nL 367.876005 84.066809 \nL 367.928196 83.880655 \nL 367.980386 83.725094 \nL 368.032577 83.759686 \nL 368.136958 83.94059 \nL 368.189148 84.014955 \nL 368.293529 83.757446 \nL 368.502291 84.043067 \nL 369.180768 83.953678 \nL 369.232958 84.165004 \nL 369.285149 84.090773 \nL 369.337339 84.074114 \nL 369.44172 83.85999 \nL 369.493911 83.92307 \nL 369.546101 83.944187 \nL 369.754863 83.732236 \nL 369.807054 83.773065 \nL 369.911435 83.506378 \nL 370.068006 83.842579 \nL 370.276768 83.659559 \nL 370.43334 83.848822 \nL 370.48553 83.79256 \nL 370.589911 83.753787 \nL 370.694292 83.791417 \nL 370.746483 83.719356 \nL 370.798673 83.855858 \nL 370.850864 83.766498 \nL 370.903054 83.582754 \nL 370.955245 83.616706 \nL 371.268388 83.921084 \nL 371.52934 83.65893 \nL 371.581531 83.776994 \nL 371.633721 83.845025 \nL 371.685912 83.76916 \nL 371.738102 83.686404 \nL 371.790293 83.728384 \nL 371.946864 83.825549 \nL 371.999055 83.604823 \nL 372.051245 83.687421 \nL 372.260007 83.86521 \nL 372.468769 83.733785 \nL 372.677531 83.795036 \nL 372.729721 83.921111 \nL 372.781912 83.887614 \nL 372.886293 83.880701 \nL 372.990674 84.090858 \nL 373.042864 84.034279 \nL 373.199436 83.954059 \nL 373.303817 83.832905 \nL 373.356007 83.950597 \nL 373.408198 83.893862 \nL 373.564769 83.670796 \nL 373.66915 83.698415 \nL 373.721341 83.656579 \nL 373.877912 83.880155 \nL 373.930103 83.856706 \nL 373.982293 83.696914 \nL 374.034484 83.8102 \nL 374.243246 83.916086 \nL 374.817341 83.682396 \nL 374.921722 83.970641 \nL 375.078294 83.803961 \nL 375.234865 83.960475 \nL 375.287056 83.891191 \nL 375.495818 83.904313 \nL 375.965532 83.776743 \nL 376.017723 83.960847 \nL 376.069913 83.943099 \nL 376.226485 83.78388 \nL 376.383056 83.929632 \nL 376.435247 83.883801 \nL 376.487437 83.859148 \nL 376.591818 84.09152 \nL 376.644009 84.055637 \nL 376.80058 83.828676 \nL 376.957152 83.768068 \nL 377.061533 83.754781 \nL 377.113723 83.673001 \nL 377.165914 83.751302 \nL 377.270295 83.870863 \nL 377.479057 83.614999 \nL 377.635628 83.936671 \nL 377.740009 83.886144 \nL 377.948771 84.016102 \nL 378.053152 83.901244 \nL 378.105342 83.968055 \nL 378.157533 83.880263 \nL 378.209723 83.813614 \nL 378.314104 83.976105 \nL 378.366295 83.917422 \nL 378.627247 83.67962 \nL 378.783819 83.767235 \nL 378.94039 83.712889 \nL 379.044771 83.861281 \nL 379.149152 83.648352 \nL 379.357914 83.807088 \nL 379.514486 83.833424 \nL 379.566676 83.698731 \nL 379.618867 83.753253 \nL 379.671057 83.835519 \nL 379.723248 83.783028 \nL 379.9842 83.674035 \nL 380.192962 83.872436 \nL 380.453915 83.73474 \nL 380.506105 83.821491 \nL 380.558296 83.647237 \nL 380.610486 83.762466 \nL 380.662677 83.925105 \nL 380.714867 83.886732 \nL 380.97582 83.875547 \nL 381.080201 83.847548 \nL 381.288963 83.561586 \nL 381.341153 83.636106 \nL 381.497725 83.802362 \nL 381.654296 83.70649 \nL 381.810868 83.867166 \nL 381.863058 83.820582 \nL 382.01963 83.833923 \nL 382.07182 83.754707 \nL 382.124011 83.829279 \nL 382.593725 83.811045 \nL 382.645916 83.801631 \nL 382.802487 83.933465 \nL 382.959059 83.975133 \nL 383.428773 83.90984 \nL 383.533154 83.989222 \nL 383.585344 84.088105 \nL 383.637535 84.036829 \nL 383.741916 83.84986 \nL 383.794106 83.989212 \nL 383.846297 83.958885 \nL 384.002868 83.90466 \nL 384.055059 83.947717 \nL 384.107249 83.869313 \nL 384.21163 83.860738 \nL 384.316011 83.711966 \nL 384.368202 83.767716 \nL 384.472583 83.844971 \nL 384.681345 83.719231 \nL 384.837916 83.767765 \nL 384.890107 83.706949 \nL 384.942297 83.758272 \nL 385.151059 83.78432 \nL 385.307631 83.580384 \nL 385.359821 83.734198 \nL 385.412012 83.681569 \nL 385.568583 83.698942 \nL 385.829536 83.895774 \nL 385.881726 83.960894 \nL 385.933917 83.873761 \nL 386.038298 83.668532 \nL 386.142679 84.047462 \nL 386.194869 83.924321 \nL 386.403631 83.909244 \nL 386.612393 83.728807 \nL 386.716774 83.728354 \nL 386.768965 83.796312 \nL 386.821155 83.718337 \nL 386.977727 83.77986 \nL 387.134298 83.959072 \nL 387.186489 83.951874 \nL 387.29087 83.820371 \nL 387.34306 83.84298 \nL 387.395251 83.900442 \nL 387.447441 83.79662 \nL 387.604013 83.656994 \nL 387.760584 83.66757 \nL 387.864965 83.853255 \nL 387.917156 83.771916 \nL 387.969346 83.675056 \nL 388.021537 83.74365 \nL 388.125918 83.83083 \nL 388.33468 83.620624 \nL 388.439061 83.869343 \nL 388.491251 83.815616 \nL 388.543441 83.739326 \nL 388.595632 83.816672 \nL 388.647822 83.882095 \nL 388.700013 83.803735 \nL 388.752203 83.760363 \nL 388.804394 83.87448 \nL 388.856584 83.794939 \nL 389.013156 83.540253 \nL 389.169727 83.844827 \nL 389.43068 83.931365 \nL 389.48287 83.812899 \nL 389.535061 83.865601 \nL 389.691632 84.104012 \nL 389.743823 84.029881 \nL 389.848204 83.772733 \nL 389.900394 83.822229 \nL 390.004775 83.85336 \nL 390.109156 83.639393 \nL 390.161347 83.72017 \nL 390.317918 83.782532 \nL 390.47449 83.695309 \nL 390.52668 83.679058 \nL 390.631061 83.971118 \nL 390.683252 83.905631 \nL 390.787633 84.003759 \nL 390.839823 83.927165 \nL 390.892014 83.825935 \nL 391.048585 83.994067 \nL 391.152966 83.834529 \nL 391.205157 83.948676 \nL 391.309538 84.011003 \nL 391.5183 83.7192 \nL 391.622681 83.661653 \nL 391.674871 83.858408 \nL 391.727062 83.842732 \nL 391.779252 83.741453 \nL 391.831443 83.853308 \nL 391.935824 83.756626 \nL 392.040205 83.585703 \nL 392.144586 83.767198 \nL 392.196776 83.632776 \nL 392.248967 83.578507 \nL 392.301157 83.668536 \nL 392.666491 83.953803 \nL 392.718681 83.861751 \nL 392.823062 83.728008 \nL 392.875253 83.838261 \nL 392.927443 83.723627 \nL 392.979634 83.684519 \nL 393.136205 83.976483 \nL 393.188396 83.892967 \nL 393.292777 84.050396 \nL 393.449348 84.187161 \nL 393.553729 83.862676 \nL 393.65811 83.989374 \nL 393.866872 83.786374 \nL 394.284396 83.587638 \nL 394.597539 83.923682 \nL 394.70192 83.792653 \nL 394.806301 84.104513 \nL 394.858491 84.001585 \nL 394.910682 83.845645 \nL 394.962872 83.922266 \nL 395.171634 84.074651 \nL 395.432587 83.79026 \nL 395.536968 83.916554 \nL 395.589158 83.892676 \nL 395.850111 84.158164 \nL 396.006682 83.862135 \nL 396.163254 84.124196 \nL 396.372016 83.778152 \nL 396.632968 84.071307 \nL 396.737349 83.905957 \nL 396.78954 84.062641 \nL 396.84173 84.04362 \nL 396.946111 83.759447 \nL 397.050492 83.991074 \nL 397.102683 83.946233 \nL 397.259254 84.120232 \nL 397.468016 83.781997 \nL 397.572397 83.778661 \nL 397.676778 84.060034 \nL 397.781159 83.709793 \nL 397.83335 83.86173 \nL 397.88554 83.898784 \nL 397.937731 83.812965 \nL 398.146493 83.926086 \nL 398.198683 84.06265 \nL 398.250874 84.005829 \nL 398.303064 83.73311 \nL 398.355255 83.805692 \nL 398.511826 84.017969 \nL 398.668398 83.772852 \nL 398.824969 84.042057 \nL 398.981541 83.674441 \nL 399.033731 83.75368 \nL 399.085922 83.91083 \nL 399.190302 83.604368 \nL 399.242493 83.665352 \nL 399.451255 83.690804 \nL 399.607826 83.808742 \nL 399.764398 84.032328 \nL 399.868779 83.849905 \nL 399.97316 83.655635 \nL 400.02535 83.725305 \nL 400.077541 83.986641 \nL 400.129731 83.917143 \nL 400.181922 83.934871 \nL 400.234112 83.787102 \nL 400.338493 84.25308 \nL 400.390684 84.016989 \nL 400.495065 83.825966 \nL 400.547255 83.847599 \nL 400.651636 83.906193 \nL 400.808208 83.957469 \nL 400.964779 83.958992 \nL 401.01697 84.005656 \nL 401.121351 83.579614 \nL 401.173541 83.709933 \nL 401.486684 83.727024 \nL 401.538875 83.701487 \nL 401.643256 83.964123 \nL 401.695446 83.895542 \nL 401.799827 83.512841 \nL 401.852018 83.553493 \nL 402.008589 83.689586 \nL 402.06078 83.877737 \nL 402.11297 83.784763 \nL 402.165161 83.682218 \nL 402.217351 83.797752 \nL 402.373923 83.918586 \nL 402.478304 83.756739 \nL 402.530494 83.986379 \nL 402.582685 83.965427 \nL 402.843637 83.765122 \nL 402.895828 83.611616 \nL 402.948018 83.727247 \nL 403.000209 83.830712 \nL 403.052399 83.703041 \nL 403.15678 83.631136 \nL 403.261161 83.636786 \nL 403.365542 83.914558 \nL 403.417733 83.768644 \nL 403.522114 83.691597 \nL 403.574304 83.538939 \nL 403.626495 83.722217 \nL 403.835257 83.650329 \nL 403.887447 83.835992 \nL 403.887447 83.835992 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-width:0.5;\"/>\n   </g>\n   <g id=\"patch_8\">\n    <path d=\"M 239.542187 120.52 \nL 239.542187 49.92 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n   <g id=\"patch_9\">\n    <path d=\"M 411.713412 120.52 \nL 411.713412 49.92 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n   <g id=\"patch_10\">\n    <path d=\"M 239.542188 120.52 \nL 411.713412 120.52 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n   <g id=\"patch_11\">\n    <path d=\"M 239.542188 49.92 \nL 411.713412 49.92 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n  </g>\n  <g id=\"text_17\">\n   <!-- BG.AL6..DP.0301915.npz -->\n   <g transform=\"translate(138.14875 16.318125)scale(0.12 -0.12)\">\n    <defs>\n     <path d=\"M 19.671875 34.8125 \nL 19.671875 8.109375 \nL 35.5 8.109375 \nQ 43.453125 8.109375 47.28125 11.40625 \nQ 51.125 14.703125 51.125 21.484375 \nQ 51.125 28.328125 47.28125 31.5625 \nQ 43.453125 34.8125 35.5 34.8125 \nz\nM 19.671875 64.796875 \nL 19.671875 42.828125 \nL 34.28125 42.828125 \nQ 41.5 42.828125 45.03125 45.53125 \nQ 48.578125 48.25 48.578125 53.8125 \nQ 48.578125 59.328125 45.03125 62.0625 \nQ 41.5 64.796875 34.28125 64.796875 \nz\nM 9.8125 72.90625 \nL 35.015625 72.90625 \nQ 46.296875 72.90625 52.390625 68.21875 \nQ 58.5 63.53125 58.5 54.890625 \nQ 58.5 48.1875 55.375 44.234375 \nQ 52.25 40.28125 46.1875 39.3125 \nQ 53.46875 37.75 57.5 32.78125 \nQ 61.53125 27.828125 61.53125 20.40625 \nQ 61.53125 10.640625 54.890625 5.3125 \nQ 48.25 0 35.984375 0 \nL 9.8125 0 \nz\n\" id=\"DejaVuSans-66\"/>\n     <path d=\"M 59.515625 10.40625 \nL 59.515625 29.984375 \nL 43.40625 29.984375 \nL 43.40625 38.09375 \nL 69.28125 38.09375 \nL 69.28125 6.78125 \nQ 63.578125 2.734375 56.6875 0.65625 \nQ 49.8125 -1.421875 42 -1.421875 \nQ 24.90625 -1.421875 15.25 8.5625 \nQ 5.609375 18.5625 5.609375 36.375 \nQ 5.609375 54.25 15.25 64.234375 \nQ 24.90625 74.21875 42 74.21875 \nQ 49.125 74.21875 55.546875 72.453125 \nQ 61.96875 70.703125 67.390625 67.28125 \nL 67.390625 56.78125 \nQ 61.921875 61.421875 55.765625 63.765625 \nQ 49.609375 66.109375 42.828125 66.109375 \nQ 29.4375 66.109375 22.71875 58.640625 \nQ 16.015625 51.171875 16.015625 36.375 \nQ 16.015625 21.625 22.71875 14.15625 \nQ 29.4375 6.6875 42.828125 6.6875 \nQ 48.046875 6.6875 52.140625 7.59375 \nQ 56.25 8.5 59.515625 10.40625 \nz\n\" id=\"DejaVuSans-71\"/>\n     <path d=\"M 10.6875 12.40625 \nL 21 12.40625 \nL 21 0 \nL 10.6875 0 \nz\n\" id=\"DejaVuSans-46\"/>\n     <path d=\"M 34.1875 63.1875 \nL 20.796875 26.90625 \nL 47.609375 26.90625 \nz\nM 28.609375 72.90625 \nL 39.796875 72.90625 \nL 67.578125 0 \nL 57.328125 0 \nL 50.6875 18.703125 \nL 17.828125 18.703125 \nL 11.1875 0 \nL 0.78125 0 \nz\n\" id=\"DejaVuSans-65\"/>\n     <path d=\"M 9.8125 72.90625 \nL 19.671875 72.90625 \nL 19.671875 8.296875 \nL 55.171875 8.296875 \nL 55.171875 0 \nL 9.8125 0 \nz\n\" id=\"DejaVuSans-76\"/>\n     <path d=\"M 33.015625 40.375 \nQ 26.375 40.375 22.484375 35.828125 \nQ 18.609375 31.296875 18.609375 23.390625 \nQ 18.609375 15.53125 22.484375 10.953125 \nQ 26.375 6.390625 33.015625 6.390625 \nQ 39.65625 6.390625 43.53125 10.953125 \nQ 47.40625 15.53125 47.40625 23.390625 \nQ 47.40625 31.296875 43.53125 35.828125 \nQ 39.65625 40.375 33.015625 40.375 \nz\nM 52.59375 71.296875 \nL 52.59375 62.3125 \nQ 48.875 64.0625 45.09375 64.984375 \nQ 41.3125 65.921875 37.59375 65.921875 \nQ 27.828125 65.921875 22.671875 59.328125 \nQ 17.53125 52.734375 16.796875 39.40625 \nQ 19.671875 43.65625 24.015625 45.921875 \nQ 28.375 48.1875 33.59375 48.1875 \nQ 44.578125 48.1875 50.953125 41.515625 \nQ 57.328125 34.859375 57.328125 23.390625 \nQ 57.328125 12.15625 50.6875 5.359375 \nQ 44.046875 -1.421875 33.015625 -1.421875 \nQ 20.359375 -1.421875 13.671875 8.265625 \nQ 6.984375 17.96875 6.984375 36.375 \nQ 6.984375 53.65625 15.1875 63.9375 \nQ 23.390625 74.21875 37.203125 74.21875 \nQ 40.921875 74.21875 44.703125 73.484375 \nQ 48.484375 72.75 52.59375 71.296875 \nz\n\" id=\"DejaVuSans-54\"/>\n     <path d=\"M 19.671875 64.796875 \nL 19.671875 8.109375 \nL 31.59375 8.109375 \nQ 46.6875 8.109375 53.6875 14.9375 \nQ 60.6875 21.78125 60.6875 36.53125 \nQ 60.6875 51.171875 53.6875 57.984375 \nQ 46.6875 64.796875 31.59375 64.796875 \nz\nM 9.8125 72.90625 \nL 30.078125 72.90625 \nQ 51.265625 72.90625 61.171875 64.09375 \nQ 71.09375 55.28125 71.09375 36.53125 \nQ 71.09375 17.671875 61.125 8.828125 \nQ 51.171875 0 30.078125 0 \nL 9.8125 0 \nz\n\" id=\"DejaVuSans-68\"/>\n     <path d=\"M 19.671875 64.796875 \nL 19.671875 37.40625 \nL 32.078125 37.40625 \nQ 38.96875 37.40625 42.71875 40.96875 \nQ 46.484375 44.53125 46.484375 51.125 \nQ 46.484375 57.671875 42.71875 61.234375 \nQ 38.96875 64.796875 32.078125 64.796875 \nz\nM 9.8125 72.90625 \nL 32.078125 72.90625 \nQ 44.34375 72.90625 50.609375 67.359375 \nQ 56.890625 61.8125 56.890625 51.125 \nQ 56.890625 40.328125 50.609375 34.8125 \nQ 44.34375 29.296875 32.078125 29.296875 \nL 19.671875 29.296875 \nL 19.671875 0 \nL 9.8125 0 \nz\n\" id=\"DejaVuSans-80\"/>\n     <path d=\"M 10.984375 1.515625 \nL 10.984375 10.5 \nQ 14.703125 8.734375 18.5 7.8125 \nQ 22.3125 6.890625 25.984375 6.890625 \nQ 35.75 6.890625 40.890625 13.453125 \nQ 46.046875 20.015625 46.78125 33.40625 \nQ 43.953125 29.203125 39.59375 26.953125 \nQ 35.25 24.703125 29.984375 24.703125 \nQ 19.046875 24.703125 12.671875 31.3125 \nQ 6.296875 37.9375 6.296875 49.421875 \nQ 6.296875 60.640625 12.9375 67.421875 \nQ 19.578125 74.21875 30.609375 74.21875 \nQ 43.265625 74.21875 49.921875 64.515625 \nQ 56.59375 54.828125 56.59375 36.375 \nQ 56.59375 19.140625 48.40625 8.859375 \nQ 40.234375 -1.421875 26.421875 -1.421875 \nQ 22.703125 -1.421875 18.890625 -0.6875 \nQ 15.09375 0.046875 10.984375 1.515625 \nz\nM 30.609375 32.421875 \nQ 37.25 32.421875 41.125 36.953125 \nQ 45.015625 41.5 45.015625 49.421875 \nQ 45.015625 57.28125 41.125 61.84375 \nQ 37.25 66.40625 30.609375 66.40625 \nQ 23.96875 66.40625 20.09375 61.84375 \nQ 16.21875 57.28125 16.21875 49.421875 \nQ 16.21875 41.5 20.09375 36.953125 \nQ 23.96875 32.421875 30.609375 32.421875 \nz\n\" id=\"DejaVuSans-57\"/>\n     <path d=\"M 10.796875 72.90625 \nL 49.515625 72.90625 \nL 49.515625 64.59375 \nL 19.828125 64.59375 \nL 19.828125 46.734375 \nQ 21.96875 47.46875 24.109375 47.828125 \nQ 26.265625 48.1875 28.421875 48.1875 \nQ 40.625 48.1875 47.75 41.5 \nQ 54.890625 34.8125 54.890625 23.390625 \nQ 54.890625 11.625 47.5625 5.09375 \nQ 40.234375 -1.421875 26.90625 -1.421875 \nQ 22.3125 -1.421875 17.546875 -0.640625 \nQ 12.796875 0.140625 7.71875 1.703125 \nL 7.71875 11.625 \nQ 12.109375 9.234375 16.796875 8.0625 \nQ 21.484375 6.890625 26.703125 6.890625 \nQ 35.15625 6.890625 40.078125 11.328125 \nQ 45.015625 15.765625 45.015625 23.390625 \nQ 45.015625 31 40.078125 35.4375 \nQ 35.15625 39.890625 26.703125 39.890625 \nQ 22.75 39.890625 18.8125 39.015625 \nQ 14.890625 38.140625 10.796875 36.28125 \nz\n\" id=\"DejaVuSans-53\"/>\n     <path d=\"M 54.890625 33.015625 \nL 54.890625 0 \nL 45.90625 0 \nL 45.90625 32.71875 \nQ 45.90625 40.484375 42.875 44.328125 \nQ 39.84375 48.1875 33.796875 48.1875 \nQ 26.515625 48.1875 22.3125 43.546875 \nQ 18.109375 38.921875 18.109375 30.90625 \nL 18.109375 0 \nL 9.078125 0 \nL 9.078125 54.6875 \nL 18.109375 54.6875 \nL 18.109375 46.1875 \nQ 21.34375 51.125 25.703125 53.5625 \nQ 30.078125 56 35.796875 56 \nQ 45.21875 56 50.046875 50.171875 \nQ 54.890625 44.34375 54.890625 33.015625 \nz\n\" id=\"DejaVuSans-110\"/>\n     <path d=\"M 18.109375 8.203125 \nL 18.109375 -20.796875 \nL 9.078125 -20.796875 \nL 9.078125 54.6875 \nL 18.109375 54.6875 \nL 18.109375 46.390625 \nQ 20.953125 51.265625 25.265625 53.625 \nQ 29.59375 56 35.59375 56 \nQ 45.5625 56 51.78125 48.09375 \nQ 58.015625 40.1875 58.015625 27.296875 \nQ 58.015625 14.40625 51.78125 6.484375 \nQ 45.5625 -1.421875 35.59375 -1.421875 \nQ 29.59375 -1.421875 25.265625 0.953125 \nQ 20.953125 3.328125 18.109375 8.203125 \nz\nM 48.6875 27.296875 \nQ 48.6875 37.203125 44.609375 42.84375 \nQ 40.53125 48.484375 33.40625 48.484375 \nQ 26.265625 48.484375 22.1875 42.84375 \nQ 18.109375 37.203125 18.109375 27.296875 \nQ 18.109375 17.390625 22.1875 11.75 \nQ 26.265625 6.109375 33.40625 6.109375 \nQ 40.53125 6.109375 44.609375 11.75 \nQ 48.6875 17.390625 48.6875 27.296875 \nz\n\" id=\"DejaVuSans-112\"/>\n     <path d=\"M 5.515625 54.6875 \nL 48.1875 54.6875 \nL 48.1875 46.484375 \nL 14.40625 7.171875 \nL 48.1875 7.171875 \nL 48.1875 0 \nL 4.296875 0 \nL 4.296875 8.203125 \nL 38.09375 47.515625 \nL 5.515625 47.515625 \nz\n\" id=\"DejaVuSans-122\"/>\n    </defs>\n    <use xlink:href=\"#DejaVuSans-66\"/>\n    <use x=\"66.853516\" xlink:href=\"#DejaVuSans-71\"/>\n    <use x=\"144.34375\" xlink:href=\"#DejaVuSans-46\"/>\n    <use x=\"176.130859\" xlink:href=\"#DejaVuSans-65\"/>\n    <use x=\"244.539062\" xlink:href=\"#DejaVuSans-76\"/>\n    <use x=\"300.251953\" xlink:href=\"#DejaVuSans-54\"/>\n    <use x=\"363.875\" xlink:href=\"#DejaVuSans-46\"/>\n    <use x=\"395.662109\" xlink:href=\"#DejaVuSans-46\"/>\n    <use x=\"427.449219\" xlink:href=\"#DejaVuSans-68\"/>\n    <use x=\"504.451172\" xlink:href=\"#DejaVuSans-80\"/>\n    <use x=\"549.128906\" xlink:href=\"#DejaVuSans-46\"/>\n    <use x=\"580.916016\" xlink:href=\"#DejaVuSans-48\"/>\n    <use x=\"644.539062\" xlink:href=\"#DejaVuSans-51\"/>\n    <use x=\"708.162109\" xlink:href=\"#DejaVuSans-48\"/>\n    <use x=\"771.785156\" xlink:href=\"#DejaVuSans-49\"/>\n    <use x=\"835.408203\" xlink:href=\"#DejaVuSans-57\"/>\n    <use x=\"899.03125\" xlink:href=\"#DejaVuSans-49\"/>\n    <use x=\"962.654297\" xlink:href=\"#DejaVuSans-53\"/>\n    <use x=\"1026.277344\" xlink:href=\"#DejaVuSans-46\"/>\n    <use x=\"1058.064453\" xlink:href=\"#DejaVuSans-110\"/>\n    <use x=\"1121.443359\" xlink:href=\"#DejaVuSans-112\"/>\n    <use x=\"1184.919922\" xlink:href=\"#DejaVuSans-122\"/>\n   </g>\n  </g>\n </g>\n <defs>\n  <clipPath id=\"pce4528d238\">\n   <rect height=\"70.6\" width=\"172.171224\" x=\"28.942188\" y=\"49.92\"/>\n  </clipPath>\n  <clipPath id=\"p4cf4da37fc\">\n   <rect height=\"70.6\" width=\"172.171224\" x=\"239.542187\" y=\"49.92\"/>\n  </clipPath>\n </defs>\n</svg>\n",
      "image/png": "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N9XEiRODLcfaWpBe3U1VWlrKXXfdxV//+ldPjl+flq5LrdXw4cOZPHky69ev56qrruLEE09k2rRp5ObmBt+zBQUFjerpMC1MVZs1APHAVqAPkARkAWfWt83AgQO1PjNnztTc3Fx944039Le//a0CCujAgQN1x44dCug555yjv/jFL4LLBgwYoAcPHtQhQ4YooP369VNA58yZo1lZWQpo9+7dg+sXFxerqur27duDx83MzFRV1cLCwhrL1q1bp9nZ2TViraioCI7v2bNHf/jhB500aZKuW7dOMzMzg8driUFEdOjQoVXmDRkyRDMyMvS8887Tn3/+WdPT0zU7O1v37Nmj8+fP10AgoEVFRVpRUaGBQEBHjRqlRUVFOnbsWD169Kg+8MADmpycrJ9//rlu3bpVAR03bpwOGjRIBwwYoLfccosC2qFDh2DZc3Nzg+ca0LffflvLyspqxLtgwQLt3bu3zps3T1VVe/TooWPHjtWDBw/qjh07tKCgIHguV61apfn5+cHpoqKiOt8vixcv1jlz5gSnFy5cqMXFxTps2DAtLy/XQCCg48eP19WrV+vkyZO1S5cuVeKaOHFive9HIEObWU8aMrREXYol4agz1V97QO+55x5dvXq1nnPOOfrqq6/qhAkT9IUXXtD3339fP/nkk+B7yDRfY+qSaDM/vYrIxcB4VR3sTo8BUNWJdW2Tnp6uGRkZtS5bvHgx11xzTbNiao6UlBTy8vK46aabgk85/stf/sKECROC64waNYoZM2Z4FGH9Km+hjZQzzjiDTZs2NXq7jRs30r9//xrzr7vuOhYuXAhAampqjVbuiy++yLx58/j888+bFG9d6qsHIpKpqul1rhAm4a5LP/74I4FAgISEhOB7QkRqHcBpUcbHxxMIBKqcj7rOjYiQkOB8jz/0O0iV+wsEAiQmJpKYmEhpaSlxcXGUl5dTWFgYnB8IBKioqAget3379sTHx1NSUkJhYSHx8fFUVFTw4osvMn369EaczeYbNGgQS5YsoV+/fmzZsgWAtm3bctZZZ7F161YeeOABCgoKOOWUU1i1ahVnnnkmgwYN4rXXXqO4uJi///3vLFu2jNmzZzNo0CAeeeQRxo8fz5o1awC45pprSE1NJTExkTZt2nD06FGysrL45ptvGD58OJ999hnXX389OTk5rF+/nsGDBxMIBHj33Xe56KKL6NKlCz169GDbtm18/fXXdO3alX79+iEitGnThm7dulFWVsb27dtp164dO3fupH379pSVlXHuueeSkpLCunXr2LZtGz179mT//v1kZ2dz4YUXkpSUxL59+9i1axdXXnklu3fv5vzzz6eoqIj9+/dTVFTE7t276d+/P0uXLqVz587s3LmTxx9/PPieqE1j6lI4ktOvgKtV9Q53egRwkareX229u4C7AHr37j0wtBsu1CuvvMK9997brJhM7Lvxxhsb/B2yY5k0aRKjR4+uc3kEk1NY69L7779PQUEB5eXlxMU5Pfh1fUoFSEpKoqKigri4OOLi4oLzK7etrjKxqCoJCQlV1lNVRISysjIqKipITEykoqKChIQERIS2bdvy7bffkpKSEkxScXFxlJSUsH//fnr37s3Ro0cpLS0lKSmJCRMm+Ob7fz179mTXrl31rpOenk5GRkaVD2+XXHIJK1asYODAgXTs2JFPP/201m0TExMpKyvj9NNPp1OnTnTv3h1V5cMPP6Rr1648++yzvPXWW8F1RYTLL7+c8vJyysrK2LlzJ2lpaZSWlrJ79266dOmCqtKnTx9yc3Pp27cvxcXFfPzxx1x99dXk5+eTk5ND37592bVrF3v27CEpKYmSkhJ69uzJihUrOPvss8nJyWHFihW0a9eO8vJyBg8ezPz58xk5ciR79+7lnHPOYezYsSQnJ9d5XhpVlxraxKrnTf1r4I2Q6RHA1Pq2qa8rYs+ePcHm9mmnnaaAPv744/rcc8/p8OHDFdCDBw9q165da222V3Y7hQ633357lek+ffro2LFjNSsrS/Pz87W8vFynTJmixcXFWlZWpvn5+bphwwYNBAJaWloa7AJTVX3nnXd00aJFunr1at23b5/OmjVL8/PzdeLEifr888/r2rVrdcyYMVpYWKidO3fW2bNnt2jXXuXw2GOPKaAPPfSQXn/99QrolClTgt0WK1eu1IyMDP3iiy9027ZtCuisWbMU0BEjRuj06dN10qRJOnr0aB03bpzeeuutetppp2lBQYECescdd+gTTzxR5/HT0tIU0G7duum1116rvXv3rrFOYmJileni4mI9evSoqqqOHj06+B7YtGmTrl27Vr/++usq743i4mI9cuRIsEs2NzdXA4GAVlRU6MaNG/XVV1/VnJwcLSkp0Y4dO+qSJUv0pptuqjPm008/XR9+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\n"
     },
     "metadata": {
      "needs_background": "light"
     }
    },
    {
     "output_type": "display_data",
     "data": {
      "text/plain": "<Figure size 432x144 with 2 Axes>",
      "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<!-- Created with matplotlib (https://matplotlib.org/) -->\n<svg height=\"144.398125pt\" version=\"1.1\" viewBox=\"0 0 423.864638 144.398125\" width=\"423.864638pt\" xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\">\n <metadata>\n  <rdf:RDF xmlns:cc=\"http://creativecommons.org/ns#\" xmlns:dc=\"http://purl.org/dc/elements/1.1/\" 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>2021-07-18T21:09:29.054022</dc:date>\n    <dc:format>image/svg+xml</dc:format>\n    <dc:creator>\n     <cc:Agent>\n      <dc:title>Matplotlib v3.3.2, 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-linecap:butt;stroke-linejoin:round;}</style>\n </defs>\n <g id=\"figure_1\">\n  <g id=\"patch_1\">\n   <path d=\"M 0 144.398125 \nL 423.864638 144.398125 \nL 423.864638 0 \nL 0 0 \nz\n\" style=\"fill:none;\"/>\n  </g>\n  <g id=\"axes_1\">\n   <g id=\"patch_2\">\n    <path d=\"M 28.942188 120.52 \nL 201.113412 120.52 \nL 201.113412 49.92 \nL 28.942188 49.92 \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 d=\"M 0 0 \nL 0 3.5 \n\" id=\"mb4250d9bce\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n      </defs>\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"36.768152\" xlink:href=\"#mb4250d9bce\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_1\">\n      <!-- 0 -->\n      <g transform=\"translate(33.586902 135.118437)scale(0.1 -0.1)\">\n       <defs>\n        <path d=\"M 31.78125 66.40625 \nQ 24.171875 66.40625 20.328125 58.90625 \nQ 16.5 51.421875 16.5 36.375 \nQ 16.5 21.390625 20.328125 13.890625 \nQ 24.171875 6.390625 31.78125 6.390625 \nQ 39.453125 6.390625 43.28125 13.890625 \nQ 47.125 21.390625 47.125 36.375 \nQ 47.125 51.421875 43.28125 58.90625 \nQ 39.453125 66.40625 31.78125 66.40625 \nz\nM 31.78125 74.21875 \nQ 44.046875 74.21875 50.515625 64.515625 \nQ 56.984375 54.828125 56.984375 36.375 \nQ 56.984375 17.96875 50.515625 8.265625 \nQ 44.046875 -1.421875 31.78125 -1.421875 \nQ 19.53125 -1.421875 13.0625 8.265625 \nQ 6.59375 17.96875 6.59375 36.375 \nQ 6.59375 54.828125 13.0625 64.515625 \nQ 19.53125 74.21875 31.78125 74.21875 \nz\n\" id=\"DejaVuSans-48\"/>\n       </defs>\n       <use xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"xtick_2\">\n     <g id=\"line2d_2\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"88.958647\" xlink:href=\"#mb4250d9bce\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_2\">\n      <!-- 1000 -->\n      <g transform=\"translate(76.233647 135.118437)scale(0.1 -0.1)\">\n       <defs>\n        <path d=\"M 12.40625 8.296875 \nL 28.515625 8.296875 \nL 28.515625 63.921875 \nL 10.984375 60.40625 \nL 10.984375 69.390625 \nL 28.421875 72.90625 \nL 38.28125 72.90625 \nL 38.28125 8.296875 \nL 54.390625 8.296875 \nL 54.390625 0 \nL 12.40625 0 \nz\n\" id=\"DejaVuSans-49\"/>\n       </defs>\n       <use xlink:href=\"#DejaVuSans-49\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"xtick_3\">\n     <g id=\"line2d_3\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"141.149142\" xlink:href=\"#mb4250d9bce\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_3\">\n      <!-- 2000 -->\n      <g transform=\"translate(128.424142 135.118437)scale(0.1 -0.1)\">\n       <defs>\n        <path d=\"M 19.1875 8.296875 \nL 53.609375 8.296875 \nL 53.609375 0 \nL 7.328125 0 \nL 7.328125 8.296875 \nQ 12.9375 14.109375 22.625 23.890625 \nQ 32.328125 33.6875 34.8125 36.53125 \nQ 39.546875 41.84375 41.421875 45.53125 \nQ 43.3125 49.21875 43.3125 52.78125 \nQ 43.3125 58.59375 39.234375 62.25 \nQ 35.15625 65.921875 28.609375 65.921875 \nQ 23.96875 65.921875 18.8125 64.3125 \nQ 13.671875 62.703125 7.8125 59.421875 \nL 7.8125 69.390625 \nQ 13.765625 71.78125 18.9375 73 \nQ 24.125 74.21875 28.421875 74.21875 \nQ 39.75 74.21875 46.484375 68.546875 \nQ 53.21875 62.890625 53.21875 53.421875 \nQ 53.21875 48.921875 51.53125 44.890625 \nQ 49.859375 40.875 45.40625 35.40625 \nQ 44.1875 33.984375 37.640625 27.21875 \nQ 31.109375 20.453125 19.1875 8.296875 \nz\n\" id=\"DejaVuSans-50\"/>\n       </defs>\n       <use xlink:href=\"#DejaVuSans-50\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"xtick_4\">\n     <g id=\"line2d_4\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"193.339638\" xlink:href=\"#mb4250d9bce\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_4\">\n      <!-- 3000 -->\n      <g transform=\"translate(180.614638 135.118437)scale(0.1 -0.1)\">\n       <defs>\n        <path d=\"M 40.578125 39.3125 \nQ 47.65625 37.796875 51.625 33 \nQ 55.609375 28.21875 55.609375 21.1875 \nQ 55.609375 10.40625 48.1875 4.484375 \nQ 40.765625 -1.421875 27.09375 -1.421875 \nQ 22.515625 -1.421875 17.65625 -0.515625 \nQ 12.796875 0.390625 7.625 2.203125 \nL 7.625 11.71875 \nQ 11.71875 9.328125 16.59375 8.109375 \nQ 21.484375 6.890625 26.8125 6.890625 \nQ 36.078125 6.890625 40.9375 10.546875 \nQ 45.796875 14.203125 45.796875 21.1875 \nQ 45.796875 27.640625 41.28125 31.265625 \nQ 36.765625 34.90625 28.71875 34.90625 \nL 20.21875 34.90625 \nL 20.21875 43.015625 \nL 29.109375 43.015625 \nQ 36.375 43.015625 40.234375 45.921875 \nQ 44.09375 48.828125 44.09375 54.296875 \nQ 44.09375 59.90625 40.109375 62.90625 \nQ 36.140625 65.921875 28.71875 65.921875 \nQ 24.65625 65.921875 20.015625 65.03125 \nQ 15.375 64.15625 9.8125 62.3125 \nL 9.8125 71.09375 \nQ 15.4375 72.65625 20.34375 73.4375 \nQ 25.25 74.21875 29.59375 74.21875 \nQ 40.828125 74.21875 47.359375 69.109375 \nQ 53.90625 64.015625 53.90625 55.328125 \nQ 53.90625 49.265625 50.4375 45.09375 \nQ 46.96875 40.921875 40.578125 39.3125 \nz\n\" id=\"DejaVuSans-51\"/>\n       </defs>\n       <use xlink:href=\"#DejaVuSans-51\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n   </g>\n   <g id=\"matplotlib.axis_2\">\n    <g id=\"ytick_1\">\n     <g id=\"line2d_5\">\n      <defs>\n       <path d=\"M 0 0 \nL -3.5 0 \n\" id=\"mba83b2b5db\" style=\"stroke:#000000;stroke-width:0.8;\"/>\n      </defs>\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"28.942188\" xlink:href=\"#mba83b2b5db\" y=\"109.811538\"/>\n      </g>\n     </g>\n     <g id=\"text_5\">\n      <!-- −5 -->\n      <g transform=\"translate(7.2 113.610756)scale(0.1 -0.1)\">\n       <defs>\n        <path d=\"M 10.59375 35.5 \nL 73.1875 35.5 \nL 73.1875 27.203125 \nL 10.59375 27.203125 \nz\n\" id=\"DejaVuSans-8722\"/>\n        <path d=\"M 10.796875 72.90625 \nL 49.515625 72.90625 \nL 49.515625 64.59375 \nL 19.828125 64.59375 \nL 19.828125 46.734375 \nQ 21.96875 47.46875 24.109375 47.828125 \nQ 26.265625 48.1875 28.421875 48.1875 \nQ 40.625 48.1875 47.75 41.5 \nQ 54.890625 34.8125 54.890625 23.390625 \nQ 54.890625 11.625 47.5625 5.09375 \nQ 40.234375 -1.421875 26.90625 -1.421875 \nQ 22.3125 -1.421875 17.546875 -0.640625 \nQ 12.796875 0.140625 7.71875 1.703125 \nL 7.71875 11.625 \nQ 12.109375 9.234375 16.796875 8.0625 \nQ 21.484375 6.890625 26.703125 6.890625 \nQ 35.15625 6.890625 40.078125 11.328125 \nQ 45.015625 15.765625 45.015625 23.390625 \nQ 45.015625 31 40.078125 35.4375 \nQ 35.15625 39.890625 26.703125 39.890625 \nQ 22.75 39.890625 18.8125 39.015625 \nQ 14.890625 38.140625 10.796875 36.28125 \nz\n\" id=\"DejaVuSans-53\"/>\n       </defs>\n       <use xlink:href=\"#DejaVuSans-8722\"/>\n       <use x=\"83.789062\" xlink:href=\"#DejaVuSans-53\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"ytick_2\">\n     <g id=\"line2d_6\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"28.942188\" xlink:href=\"#mba83b2b5db\" y=\"89.159037\"/>\n      </g>\n     </g>\n     <g id=\"text_6\">\n      <!-- 0 -->\n      <g transform=\"translate(15.579688 92.958256)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"ytick_3\">\n     <g id=\"line2d_7\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"28.942188\" xlink:href=\"#mba83b2b5db\" y=\"68.506537\"/>\n      </g>\n     </g>\n     <g id=\"text_7\">\n      <!-- 5 -->\n      <g transform=\"translate(15.579688 72.305756)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-53\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"text_8\">\n     <!-- 1e−14 -->\n     <g transform=\"translate(28.942188 46.92)scale(0.1 -0.1)\">\n      <defs>\n       <path d=\"M 56.203125 29.59375 \nL 56.203125 25.203125 \nL 14.890625 25.203125 \nQ 15.484375 15.921875 20.484375 11.0625 \nQ 25.484375 6.203125 34.421875 6.203125 \nQ 39.59375 6.203125 44.453125 7.46875 \nQ 49.3125 8.734375 54.109375 11.28125 \nL 54.109375 2.78125 \nQ 49.265625 0.734375 44.1875 -0.34375 \nQ 39.109375 -1.421875 33.890625 -1.421875 \nQ 20.796875 -1.421875 13.15625 6.1875 \nQ 5.515625 13.8125 5.515625 26.8125 \nQ 5.515625 40.234375 12.765625 48.109375 \nQ 20.015625 56 32.328125 56 \nQ 43.359375 56 49.78125 48.890625 \nQ 56.203125 41.796875 56.203125 29.59375 \nz\nM 47.21875 32.234375 \nQ 47.125 39.59375 43.09375 43.984375 \nQ 39.0625 48.390625 32.421875 48.390625 \nQ 24.90625 48.390625 20.390625 44.140625 \nQ 15.875 39.890625 15.1875 32.171875 \nz\n\" id=\"DejaVuSans-101\"/>\n       <path d=\"M 37.796875 64.3125 \nL 12.890625 25.390625 \nL 37.796875 25.390625 \nz\nM 35.203125 72.90625 \nL 47.609375 72.90625 \nL 47.609375 25.390625 \nL 58.015625 25.390625 \nL 58.015625 17.1875 \nL 47.609375 17.1875 \nL 47.609375 0 \nL 37.796875 0 \nL 37.796875 17.1875 \nL 4.890625 17.1875 \nL 4.890625 26.703125 \nz\n\" id=\"DejaVuSans-52\"/>\n      </defs>\n      <use xlink:href=\"#DejaVuSans-49\"/>\n      <use x=\"63.623047\" xlink:href=\"#DejaVuSans-101\"/>\n      <use x=\"125.146484\" xlink:href=\"#DejaVuSans-8722\"/>\n      <use x=\"208.935547\" xlink:href=\"#DejaVuSans-49\"/>\n      <use x=\"272.558594\" xlink:href=\"#DejaVuSans-52\"/>\n     </g>\n    </g>\n   </g>\n   <g id=\"line2d_8\">\n    <path clip-path=\"url(#p28a7b2fdb5)\" d=\"M 36.768152 89.155488 \nL 51.224919 89.195458 \nL 51.3293 89.264371 \nL 51.590253 89.140993 \nL 52.059967 89.164333 \nL 52.164348 89.159887 \nL 52.32092 89.183228 \nL 52.477491 89.160998 \nL 52.686253 89.17767 \nL 52.842825 89.167665 \nL 53.155968 89.124316 \nL 53.260349 89.155438 \nL 53.36473 89.163218 \nL 53.521301 89.184336 \nL 53.782254 89.199896 \nL 53.938825 89.13654 \nL 54.095397 89.110975 \nL 54.304159 89.239909 \nL 54.512921 89.206563 \nL 54.669492 89.188779 \nL 54.773873 89.025387 \nL 54.982635 89.213231 \nL 55.347968 89.185442 \nL 55.55673 89.201002 \nL 55.765492 89.138757 \nL 56.704921 89.155427 \nL 56.861493 89.099851 \nL 57.383398 89.153202 \nL 57.539969 89.205442 \nL 57.696541 89.148755 \nL 58.479398 89.118742 \nL 58.63597 89.136526 \nL 61.767399 89.165415 \nL 62.028352 89.160968 \nL 62.91559 89.153185 \nL 63.385305 89.177637 \nL 64.011591 89.180969 \nL 64.168162 89.173188 \nL 65.890449 89.167626 \nL 66.04702 89.183186 \nL 72.570832 89.176497 \nL 72.675213 89.030889 \nL 72.831784 89.177608 \nL 73.562451 89.142037 \nL 73.719023 89.123141 \nL 74.032166 89.179827 \nL 74.240928 89.132032 \nL 74.397499 89.17538 \nL 74.50188 89.204279 \nL 74.554071 89.145369 \nL 74.606261 89.200944 \nL 74.762833 89.126473 \nL 74.919404 89.124249 \nL 75.075976 89.194274 \nL 75.284738 89.205388 \nL 75.441309 89.172042 \nL 75.597881 89.143143 \nL 75.806643 89.164261 \nL 75.911024 89.112019 \nL 76.067595 89.135361 \nL 76.171976 89.064224 \nL 76.380738 89.16537 \nL 76.64169 89.11424 \nL 76.798262 89.049772 \nL 77.007024 89.095344 \nL 77.581119 89.220942 \nL 78.103024 89.096452 \nL 78.207405 89.215383 \nL 78.311786 89.059771 \nL 78.363977 89.097562 \nL 78.468358 89.244281 \nL 78.520548 89.197598 \nL 78.72931 89.139799 \nL 79.042453 89.185369 \nL 79.199025 89.165362 \nL 79.459977 89.144242 \nL 79.564358 89.233163 \nL 79.616549 89.175364 \nL 79.877501 89.174252 \nL 80.242835 89.125344 \nL 80.347216 89.199815 \nL 80.399406 89.135347 \nL 80.81693 89.15313 \nL 81.025692 89.127565 \nL 81.443216 89.1987 \nL 81.704169 89.167577 \nL 82.017311 89.136454 \nL 84.418074 89.144227 \nL 84.574646 89.155342 \nL 84.731217 89.186464 \nL 84.99217 89.160898 \nL 85.514075 89.167566 \nL 87.810456 89.169782 \nL 88.22798 89.159777 \nL 88.436742 89.161999 \nL 88.906457 89.187562 \nL 88.958647 89.087526 \nL 89.063028 85.928619 \nL 89.115219 86.247622 \nL 89.2196 92.316457 \nL 89.27179 96.75471 \nL 89.323981 94.741768 \nL 89.376171 94.22047 \nL 89.480552 85.857482 \nL 89.584933 79.117295 \nL 89.637124 79.26068 \nL 89.845886 101.300777 \nL 89.898076 98.847678 \nL 90.106838 82.888641 \nL 90.211219 84.638155 \nL 90.26341 85.480678 \nL 90.367791 96.96367 \nL 90.419981 94.342733 \nL 90.628743 80.768993 \nL 90.785315 92.722153 \nL 90.837505 97.459402 \nL 90.889696 96.892532 \nL 91.30722 86.229831 \nL 91.411601 93.574678 \nL 91.463791 90.54026 \nL 91.568172 76.00173 \nL 91.620363 81.84493 \nL 91.724744 97.205975 \nL 91.776934 95.825481 \nL 91.933506 89.32538 \nL 91.985696 94.336059 \nL 92.037887 90.615841 \nL 92.142268 78.66268 \nL 92.246649 87.374682 \nL 92.298839 85.738542 \nL 92.455411 106.19474 \nL 92.507601 95.653195 \nL 92.611982 66.204893 \nL 92.664172 70.401949 \nL 92.925125 114.034206 \nL 93.186077 77.608967 \nL 93.238268 80.981283 \nL 93.290458 80.062065 \nL 93.342649 76.855364 \nL 93.44703 100.290405 \nL 93.49922 91.270515 \nL 93.655792 69.743933 \nL 93.707982 70.877671 \nL 93.864554 102.173299 \nL 93.968935 99.203348 \nL 94.021125 100.937302 \nL 94.073316 100.463798 \nL 94.229887 69.2871 \nL 94.282078 71.436759 \nL 94.386459 96.768032 \nL 94.438649 96.116688 \nL 94.49084 95.288614 \nL 94.595221 100.388214 \nL 94.803983 80.038719 \nL 94.856173 76.382968 \nL 95.064935 105.054325 \nL 95.117126 104.257373 \nL 95.221507 77.956863 \nL 95.273697 83.875645 \nL 95.430269 90.001166 \nL 95.482459 79.199528 \nL 95.53465 80.138753 \nL 95.639031 100.064762 \nL 95.691221 94.598364 \nL 95.743412 95.559819 \nL 95.847793 85.193892 \nL 95.899983 87.355775 \nL 95.952174 92.497612 \nL 96.213126 68.985876 \nL 96.317507 87.047886 \nL 96.474079 109.265826 \nL 96.526269 108.479988 \nL 96.735031 85.919704 \nL 96.839412 99.265584 \nL 96.995984 62.219012 \nL 97.048174 67.454216 \nL 97.256936 103.866115 \nL 97.309127 110.137245 \nL 97.361317 104.888703 \nL 97.726651 53.90715 \nL 98.248555 114.533256 \nL 98.300746 114.773344 \nL 98.457317 53.129091 \nL 98.509508 57.536222 \nL 98.71827 114.390984 \nL 98.77046 110.826375 \nL 98.979222 68.65575 \nL 99.031413 71.085506 \nL 99.292365 96.039979 \nL 99.344556 92.286416 \nL 99.501127 115.204606 \nL 99.709889 67.519787 \nL 99.76208 69.826166 \nL 99.918651 104.276254 \nL 100.127413 72.606048 \nL 100.283985 98.240763 \nL 100.336175 96.19781 \nL 100.440556 86.385415 \nL 100.492747 87.204596 \nL 100.544937 88.864078 \nL 100.597128 87.162358 \nL 100.701509 78.591518 \nL 100.80589 100.826129 \nL 100.910271 117.310909 \nL 101.014652 99.98694 \nL 101.171223 65.931437 \nL 101.223414 69.529389 \nL 101.327795 95.038504 \nL 101.379985 94.340477 \nL 101.484366 84.590326 \nL 101.536557 88.257191 \nL 101.640938 102.548965 \nL 101.693128 99.996942 \nL 101.797509 91.196018 \nL 101.90189 71.494533 \nL 101.954081 73.042864 \nL 102.215033 91.900713 \nL 102.267224 87.937075 \nL 102.319414 89.288669 \nL 102.371605 95.365284 \nL 102.423795 93.57909 \nL 102.528176 87.129007 \nL 102.736938 109.173551 \nL 102.789129 104.472982 \nL 103.102272 68.873593 \nL 103.154462 72.341499 \nL 103.311033 87.038973 \nL 103.415414 80.333243 \nL 103.571986 98.524187 \nL 103.676367 93.314548 \nL 103.832938 86.922263 \nL 103.937319 82.46178 \nL 104.198272 93.679121 \nL 104.250462 93.071126 \nL 104.302653 92.899953 \nL 104.407034 89.754384 \nL 104.511415 95.914363 \nL 104.615796 95.77987 \nL 104.667986 97.563841 \nL 104.720177 96.293387 \nL 104.824558 74.755689 \nL 104.876748 76.482974 \nL 105.03332 91.60949 \nL 105.137701 88.650654 \nL 105.189891 84.18239 \nL 105.242082 84.297987 \nL 105.294272 85.981922 \nL 105.398653 81.361382 \nL 105.607415 93.414577 \nL 105.816177 88.349433 \nL 105.920558 90.920352 \nL 106.024939 97.172586 \nL 106.12932 89.76994 \nL 106.181511 90.731394 \nL 106.233701 93.465705 \nL 106.285892 92.709879 \nL 106.390273 91.226015 \nL 106.494654 95.4742 \nL 106.546844 95.038488 \nL 106.703416 78.413658 \nL 106.755606 80.263207 \nL 106.912178 92.706543 \nL 106.964368 91.814001 \nL 107.12094 80.994579 \nL 107.17313 81.083499 \nL 107.329702 93.225616 \nL 107.538464 85.826304 \nL 107.590654 86.877791 \nL 107.642845 86.546561 \nL 107.695035 84.601422 \nL 107.747226 86.166425 \nL 107.851607 97.251497 \nL 107.903797 96.277815 \nL 108.060369 88.077107 \nL 108.16475 91.185995 \nL 108.269131 88.907403 \nL 108.321321 89.972228 \nL 108.425702 96.230019 \nL 108.477893 94.815069 \nL 108.634464 88.582841 \nL 108.686654 88.938524 \nL 108.791035 87.981515 \nL 108.843226 88.141572 \nL 108.947607 87.655843 \nL 109.104178 78.806013 \nL 109.31294 91.188215 \nL 109.365131 90.920341 \nL 109.417321 90.416828 \nL 109.573893 94.215963 \nL 109.834845 82.630711 \nL 109.887036 83.973412 \nL 110.043607 97.85504 \nL 110.30456 83.594387 \nL 110.35675 84.342432 \nL 110.513322 98.81427 \nL 110.617703 96.943601 \nL 110.983036 86.143074 \nL 111.087417 89.733245 \nL 111.40056 80.715577 \nL 111.765894 92.961063 \nL 111.818084 93.296738 \nL 111.974656 91.114847 \nL 112.026846 91.427181 \nL 112.131227 95.100715 \nL 112.183418 93.661312 \nL 112.287799 90.054467 \nL 112.339989 90.834746 \nL 112.39218 90.449052 \nL 112.496561 84.750349 \nL 112.548751 85.397246 \nL 112.757513 93.073322 \nL 112.809704 91.15597 \nL 112.966275 85.797388 \nL 113.018466 86.135287 \nL 113.122847 87.492438 \nL 113.331609 93.509032 \nL 113.592561 85.064903 \nL 114.114466 92.792107 \nL 114.166656 92.088522 \nL 114.375418 85.732917 \nL 114.427609 85.805164 \nL 114.740752 91.795082 \nL 115.001704 87.502436 \nL 115.053895 88.121546 \nL 115.210466 94.275967 \nL 115.262657 92.400852 \nL 115.471419 87.026709 \nL 115.5758 88.598381 \nL 115.62799 90.021112 \nL 115.680181 89.957756 \nL 115.836752 86.64546 \nL 115.941133 87.576904 \nL 116.202086 92.145202 \nL 116.254276 91.87066 \nL 116.410848 88.890705 \nL 116.463038 89.460909 \nL 116.515229 89.968868 \nL 116.776181 85.453921 \nL 116.828372 84.244599 \nL 116.880562 84.883717 \nL 116.984943 85.274967 \nL 117.245896 94.188151 \nL 117.298086 93.625728 \nL 117.454658 89.664312 \nL 117.506848 90.182275 \nL 117.559039 91.461621 \nL 117.611229 91.349358 \nL 118.028753 86.23753 \nL 118.185325 83.338716 \nL 118.446277 91.447168 \nL 118.550658 90.093351 \nL 118.602849 90.756921 \nL 118.75942 92.626478 \nL 118.863801 89.363089 \nL 118.915992 90.015544 \nL 119.020373 94.164804 \nL 119.072563 92.574236 \nL 119.281325 85.872951 \nL 119.437896 87.658033 \nL 119.490087 87.221211 \nL 119.542277 86.947779 \nL 119.751039 90.046664 \nL 119.80323 89.956632 \nL 120.011992 89.097435 \nL 120.116373 90.116688 \nL 120.168563 89.548707 \nL 120.325135 86.61877 \nL 120.377325 87.005575 \nL 120.533897 90.473481 \nL 120.794849 89.107436 \nL 120.84704 89.237482 \nL 120.951421 89.703204 \nL 121.107992 88.291588 \nL 121.160183 88.297145 \nL 121.368945 90.064443 \nL 121.473326 89.429771 \nL 121.525516 89.73099 \nL 121.577707 89.67208 \nL 121.629897 89.567598 \nL 121.682088 89.875486 \nL 121.734278 89.801014 \nL 121.94304 87.987032 \nL 121.995231 87.760284 \nL 122.203993 88.869569 \nL 122.256183 88.839558 \nL 122.308374 88.53167 \nL 122.412755 89.906606 \nL 122.517136 89.868814 \nL 122.673707 90.87584 \nL 122.778088 91.626108 \nL 122.882469 89.764331 \nL 123.039041 85.507254 \nL 123.091231 85.864048 \nL 123.299993 88.257125 \nL 123.456565 90.127793 \nL 123.508755 89.734319 \nL 123.560946 89.769887 \nL 123.665327 91.62944 \nL 123.717517 91.599429 \nL 123.926279 88.274907 \nL 124.135041 89.87659 \nL 124.291613 87.955903 \nL 124.395994 89.049627 \nL 124.500375 88.318254 \nL 124.552565 88.637257 \nL 124.761327 90.264504 \nL 125.022279 88.361601 \nL 125.12666 86.660993 \nL 125.387613 89.388634 \nL 125.491994 89.09853 \nL 125.596375 89.626496 \nL 125.700756 90.749119 \nL 125.752946 90.473465 \nL 125.805137 90.042199 \nL 125.857327 90.206702 \nL 125.909518 90.342306 \nL 125.961708 89.945498 \nL 126.013899 90.340083 \nL 126.066089 90.613514 \nL 126.274851 88.065936 \nL 126.327042 88.911794 \nL 126.379232 89.550911 \nL 126.431423 89.388631 \nL 126.587994 86.243062 \nL 126.692375 86.572068 \nL 127.005518 88.895119 \nL 127.21428 92.321898 \nL 127.266471 92.194075 \nL 127.370852 91.563849 \nL 127.788376 88.3816 \nL 127.840566 88.320467 \nL 127.997138 87.017778 \nL 128.101519 85.717313 \nL 128.153709 85.748436 \nL 128.310281 88.091495 \nL 128.466852 91.866176 \nL 128.519043 91.740576 \nL 128.623424 90.414546 \nL 128.727805 88.898448 \nL 128.779995 88.931793 \nL 128.832186 88.999595 \nL 129.093138 90.969187 \nL 129.197519 90.841363 \nL 129.667234 86.812144 \nL 129.771615 87.223402 \nL 129.928186 87.586865 \nL 130.032567 88.017018 \nL 130.34571 90.590159 \nL 130.450091 90.913608 \nL 130.502281 90.859143 \nL 130.711043 90.305612 \nL 130.763234 90.338957 \nL 130.867615 90.173342 \nL 131.128567 88.901776 \nL 131.650472 86.856599 \nL 131.754853 87.932538 \nL 131.859234 88.911777 \nL 131.911425 88.677248 \nL 131.963615 88.741716 \nL 132.120187 89.863227 \nL 132.276758 91.233716 \nL 132.328949 91.467133 \nL 132.381139 91.337086 \nL 132.589901 90.400084 \nL 132.694282 90.664623 \nL 132.798663 90.074412 \nL 133.007425 87.761362 \nL 133.059616 87.842502 \nL 133.163997 88.41604 \nL 133.216187 88.151501 \nL 133.268378 87.939203 \nL 133.320568 88.173731 \nL 133.52933 88.942894 \nL 133.685902 89.518655 \nL 133.738092 89.359709 \nL 133.946854 88.300441 \nL 133.999045 88.347124 \nL 134.312188 89.164082 \nL 134.416569 90.094414 \nL 134.468759 90.027723 \nL 134.625331 89.643141 \nL 134.729712 89.295238 \nL 134.938474 88.09592 \nL 135.147236 89.337474 \nL 135.199426 89.11295 \nL 135.251616 89.077381 \nL 135.460378 90.444536 \nL 135.512569 90.421194 \nL 135.66914 90.225568 \nL 135.773521 90.504556 \nL 135.825712 90.423416 \nL 136.086664 88.469384 \nL 136.347617 87.865834 \nL 136.399807 87.985877 \nL 136.556379 88.271534 \nL 136.71295 88.677234 \nL 136.921712 90.215561 \nL 136.973903 90.291143 \nL 137.234855 89.231875 \nL 137.391427 88.484941 \nL 137.652379 89.349693 \nL 137.70457 89.281891 \nL 137.75676 89.121834 \nL 137.913332 89.888774 \nL 138.122094 88.786157 \nL 138.226475 88.843955 \nL 138.383046 88.726135 \nL 138.591808 87.813586 \nL 138.74838 88.423804 \nL 138.957142 89.69648 \nL 139.061523 90.157756 \nL 139.113713 90.085507 \nL 139.218094 89.677584 \nL 139.322475 90.254456 \nL 139.374666 90.137748 \nL 139.426856 90.0366 \nL 139.479047 90.177761 \nL 139.531237 90.201103 \nL 139.635618 89.737604 \nL 139.79219 88.269301 \nL 139.896571 88.912864 \nL 139.948761 88.83617 \nL 140.261904 88.746136 \nL 140.575047 89.171843 \nL 140.731618 88.642765 \nL 140.783809 88.835055 \nL 140.94038 89.56865 \nL 141.044761 89.287439 \nL 141.096952 89.346348 \nL 141.201333 89.912106 \nL 141.253523 89.859865 \nL 141.410095 88.903967 \nL 141.462285 88.946204 \nL 141.618857 89.110707 \nL 141.723238 89.383026 \nL 141.827619 89.723147 \nL 141.879809 89.643119 \nL 141.98419 89.623111 \nL 142.245143 88.308196 \nL 142.297333 88.486037 \nL 142.506095 89.064021 \nL 142.767048 89.497508 \nL 142.819238 89.652008 \nL 142.871429 89.567533 \nL 143.132381 88.500484 \nL 143.341143 89.726477 \nL 143.393334 89.623107 \nL 143.602096 88.698331 \nL 143.654286 88.909518 \nL 143.758667 89.334114 \nL 143.863048 88.938416 \nL 144.01962 89.743148 \nL 144.07181 89.621993 \nL 144.280572 89.558637 \nL 144.698096 88.194815 \nL 144.750287 88.224825 \nL 145.376573 89.678676 \nL 145.637525 89.507503 \nL 145.794097 89.198503 \nL 145.846287 89.257413 \nL 145.950668 89.235183 \nL 146.002858 89.215175 \nL 146.055049 89.331884 \nL 146.107239 89.304096 \nL 146.263811 89.028441 \nL 146.472573 89.82428 \nL 146.524763 89.796493 \nL 146.733525 89.196277 \nL 146.785716 89.141813 \nL 147.046668 88.43267 \nL 147.20324 89.100686 \nL 147.25543 88.958413 \nL 147.307621 88.783906 \nL 147.359811 88.851708 \nL 147.464192 88.867269 \nL 147.568573 88.822808 \nL 147.672954 88.965081 \nL 147.829526 88.668308 \nL 148.24705 90.055469 \nL 148.29924 89.873181 \nL 148.351431 89.780926 \nL 148.403621 89.845393 \nL 148.455812 89.874292 \nL 148.612383 89.309646 \nL 148.664574 89.435246 \nL 148.873336 89.540839 \nL 149.082098 88.57716 \nL 149.134288 88.771674 \nL 149.238669 89.025098 \nL 149.447431 88.265937 \nL 149.656193 89.310754 \nL 149.708384 89.198491 \nL 149.864955 88.662744 \nL 149.969336 89.175149 \nL 150.073717 89.681996 \nL 150.125908 89.506378 \nL 150.178098 89.46414 \nL 150.230289 89.534165 \nL 150.33467 89.769805 \nL 150.439051 90.008779 \nL 150.543432 89.554171 \nL 150.700003 88.60272 \nL 150.960956 89.27407 \nL 151.013146 89.309638 \nL 151.065337 89.230721 \nL 151.169718 89.149581 \nL 151.326289 88.970627 \nL 151.48286 89.256284 \nL 151.691622 88.913939 \nL 151.900384 89.177366 \nL 152.109146 88.880593 \nL 152.265718 89.302965 \nL 152.317908 89.229606 \nL 152.422289 89.031757 \nL 152.47448 89.06399 \nL 152.631051 89.38855 \nL 152.787623 89.618632 \nL 152.839813 89.529711 \nL 153.205147 88.949503 \nL 153.257337 89.076215 \nL 153.413909 89.485249 \nL 153.466099 89.384102 \nL 153.727052 89.049537 \nL 153.831433 89.056206 \nL 153.988004 88.86836 \nL 154.144576 88.298156 \nL 154.196766 88.342616 \nL 154.457719 89.236268 \nL 154.666481 90.029884 \nL 154.718671 89.937629 \nL 154.927433 89.068429 \nL 155.031814 89.08399 \nL 155.136195 89.176245 \nL 155.344957 88.889475 \nL 155.553719 89.508584 \nL 155.6581 89.310736 \nL 155.814672 89.164016 \nL 156.023434 89.332965 \nL 156.284386 88.783879 \nL 156.336577 88.960608 \nL 156.597529 89.372977 \nL 156.806291 89.062866 \nL 156.910672 88.995063 \nL 157.067243 89.161789 \nL 157.119434 89.056196 \nL 157.171624 89.107325 \nL 157.223815 89.17735 \nL 157.276005 89.12622 \nL 157.380386 88.918368 \nL 157.432577 88.99395 \nL 157.641339 89.317399 \nL 157.74572 89.169568 \nL 157.850101 88.991726 \nL 158.006672 89.262933 \nL 158.058863 89.176236 \nL 158.215434 89.206246 \nL 158.424196 89.428547 \nL 158.476387 89.346295 \nL 158.580768 89.220694 \nL 158.632958 89.24737 \nL 158.685149 89.286273 \nL 158.737339 89.196241 \nL 158.893911 88.983942 \nL 158.946101 89.013953 \nL 159.102673 88.639374 \nL 159.154863 88.726071 \nL 159.88553 89.580819 \nL 159.989911 89.543028 \nL 160.094292 89.637505 \nL 160.303054 88.938366 \nL 160.407435 89.11065 \nL 160.459626 89.148441 \nL 160.616197 88.9417 \nL 160.772769 89.061742 \nL 161.242483 88.917245 \nL 161.503436 89.37852 \nL 162.181912 88.979486 \nL 162.338483 88.684936 \nL 162.599436 89.464102 \nL 162.651626 89.29293 \nL 162.703817 89.195117 \nL 162.756007 89.235131 \nL 162.860388 89.344059 \nL 162.964769 89.319605 \nL 163.06915 89.523011 \nL 163.121341 89.438536 \nL 163.330103 89.116198 \nL 163.538865 89.108417 \nL 163.643246 88.982816 \nL 163.695436 89.036168 \nL 163.799817 89.181776 \nL 164.06077 88.630467 \nL 164.321722 89.288479 \nL 164.530484 89.390737 \nL 164.634865 89.354057 \nL 164.895818 88.970586 \nL 164.948008 89.036165 \nL 165.208961 89.234012 \nL 165.417723 88.993926 \nL 165.469913 89.103965 \nL 165.574294 89.125083 \nL 165.678675 88.967249 \nL 165.730866 89.000594 \nL 165.939628 89.297366 \nL 166.044009 89.13842 \nL 166.096199 89.178434 \nL 166.252771 89.232898 \nL 166.409342 89.238455 \nL 166.565914 89.379616 \nL 166.774676 89.095069 \nL 166.826866 89.219558 \nL 166.931247 89.450751 \nL 167.140009 88.956129 \nL 167.1922 89.056165 \nL 167.400961 89.189545 \nL 167.609723 89.007257 \nL 167.766295 89.133969 \nL 167.870676 88.962796 \nL 167.922866 89.008368 \nL 168.183819 89.196212 \nL 168.34039 88.95946 \nL 168.601343 89.352933 \nL 168.653533 89.275128 \nL 168.810105 89.138412 \nL 168.966676 89.355155 \nL 169.018867 89.288464 \nL 169.279819 89.005029 \nL 169.488581 89.307359 \nL 169.540772 89.199542 \nL 169.749534 89.009474 \nL 170.062677 89.212879 \nL 170.219248 89.300687 \nL 170.323629 89.471859 \nL 170.37582 89.440737 \nL 170.636772 89.025032 \nL 170.845534 89.182866 \nL 170.897725 89.038369 \nL 171.002106 88.937222 \nL 171.158677 89.268451 \nL 171.210868 89.145073 \nL 171.315249 88.823847 \nL 171.367439 88.896095 \nL 171.576201 89.336252 \nL 171.837154 89.123953 \nL 171.993725 89.216207 \nL 172.254678 89.101721 \nL 172.46344 88.969451 \nL 172.672201 89.392935 \nL 172.828773 89.258442 \nL 172.880963 89.368481 \nL 172.933154 89.296233 \nL 173.037535 89.083935 \nL 173.194106 89.398491 \nL 173.246297 89.349585 \nL 173.455059 89.345138 \nL 173.768202 89.059479 \nL 173.924773 89.186191 \nL 173.976964 89.116166 \nL 174.185726 88.72936 \nL 174.290107 88.83273 \nL 174.394488 89.146175 \nL 174.446678 89.115053 \nL 174.60325 89.065034 \nL 174.812012 89.179519 \nL 174.968583 89.368475 \nL 175.177345 89.176183 \nL 175.333917 89.017237 \nL 175.386107 89.07837 \nL 175.594869 89.172848 \nL 176.221155 89.120605 \nL 176.377727 89.326233 \nL 176.534298 89.08837 \nL 176.586489 89.121715 \nL 176.795251 89.347351 \nL 176.847441 89.304002 \nL 176.951822 89.17062 \nL 177.056203 89.334012 \nL 177.108394 89.304001 \nL 177.264965 88.973882 \nL 177.317156 88.998335 \nL 177.682489 89.213967 \nL 178.100013 89.260649 \nL 178.465346 89.169504 \nL 178.569727 89.169504 \nL 178.726299 88.880511 \nL 178.778489 88.90941 \nL 178.987251 89.036122 \nL 179.091632 89.120596 \nL 179.248204 89.170613 \nL 179.456966 89.090584 \nL 179.665728 89.259533 \nL 179.92668 89.226187 \nL 180.031061 89.291765 \nL 180.292014 89.077243 \nL 180.396395 89.247304 \nL 180.552966 89.381796 \nL 180.813919 89.152824 \nL 181.022681 89.166162 \nL 181.179252 88.918295 \nL 181.231443 88.953863 \nL 181.388014 89.142819 \nL 181.440205 89.088355 \nL 181.701157 88.87161 \nL 182.379634 89.412913 \nL 182.640586 89.16838 \nL 182.692777 89.255077 \nL 182.797158 89.332883 \nL 182.849348 89.298426 \nL 183.110301 88.977199 \nL 183.527824 88.937183 \nL 183.736586 89.327322 \nL 183.945348 89.255074 \nL 184.206301 89.299533 \nL 184.832587 89.097237 \nL 185.250111 89.00498 \nL 185.824206 89.312866 \nL 186.18954 89.145027 \nL 186.293921 89.18393 \nL 186.450492 89.067221 \nL 186.607064 89.031652 \nL 187.076778 89.151694 \nL 187.181159 89.336204 \nL 187.23335 89.266179 \nL 187.337731 89.102787 \nL 187.389921 89.138355 \nL 187.546493 89.219494 \nL 187.703064 89.197264 \nL 187.755255 89.136131 \nL 187.807445 89.190594 \nL 187.911826 89.278403 \nL 188.120588 88.940504 \nL 188.27716 89.335089 \nL 188.32935 89.271733 \nL 188.485922 89.012751 \nL 188.538112 89.062769 \nL 188.694683 89.200595 \nL 188.851255 89.166138 \nL 189.060017 89.126123 \nL 189.216588 89.132792 \nL 189.37316 89.009414 \nL 189.581922 89.152798 \nL 189.738493 89.139459 \nL 190.156017 89.375097 \nL 190.41697 89.108335 \nL 190.625732 89.316186 \nL 191.043256 89.004962 \nL 191.356399 89.052756 \nL 191.51297 89.176133 \nL 191.617351 89.15168 \nL 191.773923 89.292841 \nL 191.878304 89.139452 \nL 191.930494 89.168352 \nL 192.139256 89.247268 \nL 192.243637 89.041639 \nL 192.295828 89.073872 \nL 192.400209 89.259494 \nL 192.50459 89.079429 \nL 192.55678 89.142785 \nL 192.661161 89.213921 \nL 192.869923 89.098324 \nL 193.130876 89.180574 \nL 193.287447 89.139448 \nL 193.287447 89.139448 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-width:0.5;\"/>\n   </g>\n   <g id=\"patch_3\">\n    <path d=\"M 28.942188 120.52 \nL 28.942188 49.92 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n   <g id=\"patch_4\">\n    <path d=\"M 201.113412 120.52 \nL 201.113412 49.92 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n   <g id=\"patch_5\">\n    <path d=\"M 28.942188 120.52 \nL 201.113412 120.52 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n   <g id=\"patch_6\">\n    <path d=\"M 28.942188 49.92 \nL 201.113412 49.92 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n  </g>\n  <g id=\"axes_2\">\n   <g id=\"patch_7\">\n    <path d=\"M 239.542187 120.52 \nL 411.713412 120.52 \nL 411.713412 49.92 \nL 239.542187 49.92 \nz\n\" style=\"fill:#ffffff;\"/>\n   </g>\n   <g id=\"matplotlib.axis_3\">\n    <g id=\"xtick_5\">\n     <g id=\"line2d_9\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"247.368152\" xlink:href=\"#mb4250d9bce\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_9\">\n      <!-- 0 -->\n      <g transform=\"translate(244.186902 135.118437)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"xtick_6\">\n     <g id=\"line2d_10\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"299.558647\" xlink:href=\"#mb4250d9bce\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_10\">\n      <!-- 1000 -->\n      <g transform=\"translate(286.833647 135.118437)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-49\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"xtick_7\">\n     <g id=\"line2d_11\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"351.749142\" xlink:href=\"#mb4250d9bce\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_11\">\n      <!-- 2000 -->\n      <g transform=\"translate(339.024142 135.118437)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-50\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"xtick_8\">\n     <g id=\"line2d_12\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"403.939638\" xlink:href=\"#mb4250d9bce\" y=\"120.52\"/>\n      </g>\n     </g>\n     <g id=\"text_12\">\n      <!-- 3000 -->\n      <g transform=\"translate(391.214638 135.118437)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-51\"/>\n       <use x=\"63.623047\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"127.246094\" xlink:href=\"#DejaVuSans-48\"/>\n       <use x=\"190.869141\" xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n   </g>\n   <g id=\"matplotlib.axis_4\">\n    <g id=\"ytick_4\">\n     <g id=\"line2d_13\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"239.542187\" xlink:href=\"#mba83b2b5db\" y=\"109.811538\"/>\n      </g>\n     </g>\n     <g id=\"text_13\">\n      <!-- −5 -->\n      <g transform=\"translate(217.8 113.610756)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-8722\"/>\n       <use x=\"83.789062\" xlink:href=\"#DejaVuSans-53\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"ytick_5\">\n     <g id=\"line2d_14\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"239.542187\" xlink:href=\"#mba83b2b5db\" y=\"89.159037\"/>\n      </g>\n     </g>\n     <g id=\"text_14\">\n      <!-- 0 -->\n      <g transform=\"translate(226.179687 92.958256)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-48\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"ytick_6\">\n     <g id=\"line2d_15\">\n      <g>\n       <use style=\"stroke:#000000;stroke-width:0.8;\" x=\"239.542187\" xlink:href=\"#mba83b2b5db\" y=\"68.506537\"/>\n      </g>\n     </g>\n     <g id=\"text_15\">\n      <!-- 5 -->\n      <g transform=\"translate(226.179687 72.305756)scale(0.1 -0.1)\">\n       <use xlink:href=\"#DejaVuSans-53\"/>\n      </g>\n     </g>\n    </g>\n    <g id=\"text_16\">\n     <!-- 1e−14 -->\n     <g transform=\"translate(239.542187 46.92)scale(0.1 -0.1)\">\n      <use xlink:href=\"#DejaVuSans-49\"/>\n      <use x=\"63.623047\" xlink:href=\"#DejaVuSans-101\"/>\n      <use x=\"125.146484\" xlink:href=\"#DejaVuSans-8722\"/>\n      <use x=\"208.935547\" xlink:href=\"#DejaVuSans-49\"/>\n      <use x=\"272.558594\" xlink:href=\"#DejaVuSans-52\"/>\n     </g>\n    </g>\n   </g>\n   <g id=\"line2d_16\">\n    <path clip-path=\"url(#pca3c9bdf03)\" d=\"M 247.368152 89.159012 \nL 299.297695 89.114289 \nL 299.402076 88.910163 \nL 299.454266 88.982869 \nL 299.558647 89.016997 \nL 299.663028 87.392158 \nL 299.715219 87.684128 \nL 299.87179 93.180019 \nL 299.923981 91.707081 \nL 300.028362 89.923188 \nL 300.184933 84.682814 \nL 300.237124 84.758944 \nL 300.445886 94.774315 \nL 300.498076 93.349534 \nL 300.706838 86.812316 \nL 300.811219 87.384129 \nL 300.86341 87.259969 \nL 300.967791 93.377308 \nL 301.019981 91.828282 \nL 301.228743 84.738386 \nL 301.385315 90.770754 \nL 301.437505 93.399705 \nL 301.489696 92.901429 \nL 301.90722 87.547852 \nL 302.011601 91.731958 \nL 302.063791 90.189019 \nL 302.168172 82.251322 \nL 302.220363 85.307743 \nL 302.324744 93.56766 \nL 302.376934 92.72473 \nL 302.533506 89.076687 \nL 302.585696 91.812295 \nL 302.637887 89.831933 \nL 302.742268 83.603067 \nL 302.846649 88.258908 \nL 302.898839 87.449958 \nL 303.055411 97.758673 \nL 303.107601 92.391342 \nL 303.211982 75.723042 \nL 303.264172 77.82061 \nL 303.472934 101.393234 \nL 303.525125 104.491582 \nL 303.786077 82.368527 \nL 303.838268 84.509416 \nL 303.890458 83.647114 \nL 303.942649 80.550899 \nL 304.04703 96.796527 \nL 304.09922 90.213376 \nL 304.255792 76.690117 \nL 304.307982 77.352781 \nL 304.464554 97.356837 \nL 304.568935 95.38892 \nL 304.673316 96.592833 \nL 304.829887 75.316429 \nL 304.882078 76.776071 \nL 304.986459 94.571426 \nL 305.038649 93.862937 \nL 305.09084 93.23355 \nL 305.195221 97.273201 \nL 305.403983 82.992447 \nL 305.456173 79.872925 \nL 305.664935 100.885096 \nL 305.717126 100.38053 \nL 305.821507 80.507181 \nL 305.873697 85.615689 \nL 306.030269 90.245228 \nL 306.082459 81.286707 \nL 306.13465 81.677132 \nL 306.239031 97.451723 \nL 306.291221 92.965338 \nL 306.343412 94.347264 \nL 306.447793 86.618615 \nL 306.499983 88.204828 \nL 306.552174 92.150547 \nL 306.813126 73.65119 \nL 306.917507 87.576514 \nL 307.074079 105.763947 \nL 307.126269 105.378183 \nL 307.335031 86.03013 \nL 307.439412 97.896866 \nL 307.595984 66.149298 \nL 307.648174 70.625593 \nL 307.856936 102.336284 \nL 307.909127 107.778893 \nL 307.961317 103.184627 \nL 308.326651 58.714958 \nL 308.848555 112.583726 \nL 308.900746 112.441566 \nL 309.057317 55.218393 \nL 309.109508 59.256451 \nL 309.31827 112.822365 \nL 309.37046 109.213196 \nL 309.579222 70.703149 \nL 309.631413 72.986091 \nL 309.892365 94.826422 \nL 309.944556 91.532338 \nL 310.101127 112.72871 \nL 310.153318 100.954533 \nL 310.309889 69.264943 \nL 310.36208 71.76376 \nL 310.518651 103.853366 \nL 310.727413 74.017344 \nL 310.883985 98.112082 \nL 310.936175 95.921844 \nL 311.040556 86.392888 \nL 311.092747 87.097113 \nL 311.144937 88.510202 \nL 311.197128 86.786323 \nL 311.301509 78.916693 \nL 311.40589 99.344235 \nL 311.510271 114.774332 \nL 311.614652 98.571609 \nL 311.771223 67.483694 \nL 311.823414 71.198106 \nL 311.927795 94.780626 \nL 311.979985 94.036356 \nL 312.084366 84.815056 \nL 312.136557 87.98051 \nL 312.240938 101.417472 \nL 312.293128 99.312509 \nL 312.397509 91.116926 \nL 312.50189 73.290912 \nL 312.554081 74.754568 \nL 312.815033 91.758989 \nL 312.867224 88.102948 \nL 312.919414 89.296529 \nL 312.971605 94.768973 \nL 313.023795 93.101579 \nL 313.128176 87.007108 \nL 313.336938 107.551475 \nL 313.389129 103.320906 \nL 313.702272 70.311046 \nL 313.754462 73.60555 \nL 313.911033 87.590188 \nL 314.015414 81.214946 \nL 314.171986 97.877 \nL 314.276367 92.963262 \nL 314.432938 87.107525 \nL 314.537319 82.945959 \nL 314.798272 93.224017 \nL 314.902653 92.310927 \nL 315.007034 89.259841 \nL 315.111415 95.16897 \nL 315.215796 95.137074 \nL 315.267986 96.941668 \nL 315.320177 95.782082 \nL 315.424558 75.458443 \nL 315.476748 77.199787 \nL 315.63332 91.933527 \nL 315.737701 89.13667 \nL 315.789891 84.920449 \nL 315.842082 85.018135 \nL 315.894272 86.615514 \nL 315.998653 82.161238 \nL 316.207415 93.33393 \nL 316.416177 88.133933 \nL 316.520558 90.404411 \nL 316.624939 96.287953 \nL 316.72932 89.221955 \nL 316.781511 90.188975 \nL 316.833701 92.798818 \nL 316.885892 92.091228 \nL 316.990273 90.652629 \nL 317.094654 94.924283 \nL 317.146844 94.732974 \nL 317.303416 79.077236 \nL 317.355606 80.903891 \nL 317.512178 92.986845 \nL 317.564368 92.103465 \nL 317.72094 81.55169 \nL 317.77313 81.652939 \nL 317.929702 93.341038 \nL 318.138464 85.974691 \nL 318.190654 86.970122 \nL 318.242845 86.627874 \nL 318.295035 84.715272 \nL 318.347226 86.227501 \nL 318.451607 96.898086 \nL 318.503797 95.917815 \nL 318.660369 87.919212 \nL 318.76475 90.898999 \nL 318.869131 88.65935 \nL 318.921321 89.708403 \nL 319.025702 95.746341 \nL 319.077893 94.403888 \nL 319.234464 88.502315 \nL 319.286654 88.896865 \nL 319.391035 88.104867 \nL 319.443226 88.352734 \nL 319.495416 88.309941 \nL 319.547607 88.048565 \nL 319.704178 79.412152 \nL 319.91294 91.308231 \nL 319.965131 91.042683 \nL 320.017321 90.539211 \nL 320.173893 94.192158 \nL 320.434845 82.780972 \nL 320.487036 84.070364 \nL 320.643607 97.688369 \nL 320.90456 83.659047 \nL 320.95675 84.358617 \nL 321.113322 98.39404 \nL 321.217703 96.528233 \nL 321.583036 86.160913 \nL 321.687417 89.745849 \nL 322.00056 81.179259 \nL 322.365894 92.908223 \nL 322.418084 93.205653 \nL 322.574656 90.964277 \nL 322.626846 91.227922 \nL 322.731227 94.803787 \nL 322.783418 93.402524 \nL 322.887799 89.914835 \nL 322.939989 90.697505 \nL 322.99218 90.344384 \nL 323.096561 84.790254 \nL 323.148751 85.412644 \nL 323.357513 92.963333 \nL 323.409704 91.111597 \nL 323.566275 85.885484 \nL 323.618466 86.213644 \nL 323.722847 87.537 \nL 323.931609 93.412108 \nL 324.192561 85.225475 \nL 324.714466 92.701249 \nL 324.766656 92.019998 \nL 324.975418 85.802865 \nL 325.027609 85.862919 \nL 325.340752 91.681955 \nL 325.601704 87.441213 \nL 325.653895 88.058814 \nL 325.810466 94.107201 \nL 325.862657 92.30527 \nL 326.071419 87.102043 \nL 326.1758 88.67215 \nL 326.22799 90.077505 \nL 326.280181 90.020583 \nL 326.436752 86.760894 \nL 326.541133 87.620975 \nL 326.802086 91.992808 \nL 326.854276 91.728214 \nL 327.010848 88.836343 \nL 327.063038 89.413767 \nL 327.115229 89.93543 \nL 327.376181 85.643945 \nL 327.428372 84.423785 \nL 327.480562 85.011217 \nL 327.584943 85.333057 \nL 327.845896 94.01383 \nL 327.898086 93.429893 \nL 328.054658 89.492437 \nL 328.106848 90.038994 \nL 328.159039 91.351675 \nL 328.211229 91.312218 \nL 328.576563 87.385948 \nL 328.785325 83.605695 \nL 329.046277 91.265447 \nL 329.150658 89.858244 \nL 329.202849 90.491062 \nL 329.35942 92.326592 \nL 329.463801 89.082423 \nL 329.515992 89.726322 \nL 329.620373 93.889527 \nL 329.672563 92.384872 \nL 329.881325 86.033548 \nL 330.037896 87.819545 \nL 330.090087 87.381757 \nL 330.142277 87.110393 \nL 330.351039 90.131028 \nL 330.40323 90.027369 \nL 330.611992 89.124183 \nL 330.716373 90.126102 \nL 330.768563 89.559233 \nL 330.925135 86.673645 \nL 330.977325 87.05184 \nL 331.133897 90.465298 \nL 331.394849 89.097036 \nL 331.44704 89.224526 \nL 331.551421 89.685942 \nL 331.707992 88.303736 \nL 331.760183 88.308356 \nL 331.968945 90.027707 \nL 332.073326 89.402638 \nL 332.125516 89.70051 \nL 332.177707 89.653744 \nL 332.229897 89.559584 \nL 332.282088 89.866966 \nL 332.334278 89.79599 \nL 332.54304 88.040267 \nL 332.595231 87.824941 \nL 332.803993 88.886212 \nL 332.856183 88.831727 \nL 332.908374 88.513593 \nL 333.012755 89.82158 \nL 333.117136 89.778438 \nL 333.273707 90.774326 \nL 333.378088 91.533334 \nL 333.482469 89.727298 \nL 333.639041 85.631431 \nL 333.691231 85.9975 \nL 333.899993 88.306414 \nL 334.056565 90.10029 \nL 334.108755 89.694453 \nL 334.160946 89.710196 \nL 334.265327 91.520448 \nL 334.317517 91.484506 \nL 334.526279 88.256999 \nL 334.735041 89.87734 \nL 334.891613 87.991085 \nL 334.995994 89.072519 \nL 335.100375 88.340026 \nL 335.152565 88.643973 \nL 335.361327 90.252901 \nL 335.622279 88.41813 \nL 335.72666 86.761193 \nL 335.987613 89.372708 \nL 336.091994 89.025487 \nL 336.144184 89.157718 \nL 336.300756 90.610456 \nL 336.352946 90.339776 \nL 336.405137 89.916547 \nL 336.457327 90.069589 \nL 336.509518 90.19454 \nL 336.561708 89.831056 \nL 336.613899 90.221293 \nL 336.666089 90.522078 \nL 336.874851 88.209546 \nL 336.979232 89.716561 \nL 337.031423 89.567356 \nL 337.187994 86.480441 \nL 337.292375 86.812832 \nL 337.657709 89.845654 \nL 337.81428 92.078376 \nL 337.918661 91.735879 \nL 338.388376 88.568212 \nL 338.440566 88.553646 \nL 338.544947 87.939765 \nL 338.701519 85.998832 \nL 338.753709 86.020603 \nL 338.910281 88.296058 \nL 339.066852 91.839497 \nL 339.119043 91.64399 \nL 339.327805 88.73016 \nL 339.432186 88.833081 \nL 339.693138 90.76676 \nL 339.797519 90.670592 \nL 340.267234 87.03077 \nL 340.371615 87.441464 \nL 340.528186 87.788853 \nL 340.632567 88.121963 \nL 340.9979 90.583446 \nL 341.050091 90.717939 \nL 341.102281 90.661613 \nL 341.311043 90.107109 \nL 341.363234 90.147125 \nL 341.467615 90.061508 \nL 341.676377 89.11173 \nL 341.780758 88.768092 \nL 342.04171 87.579749 \nL 342.250472 87.077166 \nL 342.354853 88.060993 \nL 342.459234 88.951222 \nL 342.511425 88.710577 \nL 342.563615 88.746731 \nL 342.720187 89.80074 \nL 342.876758 91.077192 \nL 342.928949 91.256867 \nL 342.981139 91.102532 \nL 343.189901 90.236056 \nL 343.294282 90.536792 \nL 343.346473 90.397158 \nL 343.607425 87.796485 \nL 343.711806 88.280326 \nL 343.763997 88.511872 \nL 343.816187 88.277563 \nL 343.868378 88.078609 \nL 343.920568 88.291578 \nL 344.12933 89.015529 \nL 344.285902 89.575987 \nL 344.338092 89.422337 \nL 344.546854 88.390177 \nL 344.599045 88.422546 \nL 344.912188 89.161516 \nL 345.016569 90.052166 \nL 345.068759 89.993603 \nL 345.225331 89.621731 \nL 345.329712 89.291169 \nL 345.538474 88.140594 \nL 345.747236 89.317806 \nL 345.799426 89.100083 \nL 345.851616 89.057958 \nL 346.060378 90.323109 \nL 346.112569 90.278466 \nL 346.26914 90.108367 \nL 346.373521 90.417922 \nL 346.425712 90.3478 \nL 346.686664 88.500747 \nL 346.947617 88.005174 \nL 346.999807 88.104303 \nL 347.156379 88.339471 \nL 347.26076 88.40274 \nL 347.573903 90.24443 \nL 347.626093 90.102776 \nL 347.782665 89.497019 \nL 347.991427 88.49997 \nL 348.043617 88.695387 \nL 348.147998 89.34987 \nL 348.200189 89.336764 \nL 348.30457 89.271148 \nL 348.35676 89.14024 \nL 348.513332 89.896208 \nL 348.565522 89.671632 \nL 348.722094 88.84067 \nL 348.826475 88.906102 \nL 348.983046 88.801307 \nL 349.191808 87.92933 \nL 349.34838 88.458583 \nL 349.557142 89.639791 \nL 349.661523 90.062028 \nL 349.713713 89.990645 \nL 349.818094 89.585442 \nL 349.922475 90.105894 \nL 349.974666 90.01302 \nL 350.026856 89.924099 \nL 350.131237 90.121527 \nL 350.183428 90.035947 \nL 350.39219 88.318117 \nL 350.44438 88.706323 \nL 350.496571 88.937587 \nL 350.548761 88.889346 \nL 350.809714 88.82408 \nL 350.914095 88.879718 \nL 351.175047 89.18471 \nL 351.331618 88.667988 \nL 351.383809 88.850998 \nL 351.54038 89.541634 \nL 351.644761 89.250841 \nL 351.696952 89.31441 \nL 351.801333 89.862312 \nL 351.853523 89.811703 \nL 352.010095 88.893252 \nL 352.062285 88.931049 \nL 352.218857 89.087516 \nL 352.323238 89.351571 \nL 352.427619 89.68809 \nL 352.479809 89.638155 \nL 352.58419 89.626712 \nL 352.845143 88.383937 \nL 352.897333 88.558585 \nL 353.106095 89.122217 \nL 353.314857 89.253521 \nL 353.419238 89.637076 \nL 353.471429 89.558983 \nL 353.732381 88.518491 \nL 353.941143 89.703263 \nL 353.993334 89.6159 \nL 354.202096 88.717548 \nL 354.254286 88.91829 \nL 354.358667 89.316232 \nL 354.463048 88.95251 \nL 354.61962 89.708635 \nL 354.67181 89.601697 \nL 354.932763 89.390111 \nL 355.298096 88.323569 \nL 355.402477 88.493964 \nL 356.028763 89.58943 \nL 356.602858 89.214501 \nL 356.707239 89.28667 \nL 356.863811 89.028343 \nL 357.020382 89.557059 \nL 357.072573 89.769879 \nL 357.124763 89.743907 \nL 357.333525 89.20578 \nL 357.490097 88.905052 \nL 357.646668 88.518344 \nL 357.698859 88.75244 \nL 357.80324 89.156412 \nL 357.85543 89.028831 \nL 357.907621 88.869403 \nL 357.959811 88.914607 \nL 358.064192 88.925569 \nL 358.168573 88.883986 \nL 358.272954 89.010863 \nL 358.429526 88.725605 \nL 358.586097 89.160556 \nL 358.638288 89.042387 \nL 358.742669 89.426913 \nL 358.84705 89.911957 \nL 358.89924 89.757673 \nL 358.951431 89.670232 \nL 359.003621 89.725068 \nL 359.055812 89.751476 \nL 359.212383 89.231554 \nL 359.264574 89.330343 \nL 359.473336 89.518 \nL 359.682098 88.655464 \nL 359.838669 89.09477 \nL 360.047431 88.378527 \nL 360.256193 89.364459 \nL 360.308384 89.236859 \nL 360.464955 88.674663 \nL 360.569336 89.163822 \nL 360.673717 89.629419 \nL 360.725908 89.47653 \nL 360.778098 89.413014 \nL 360.830289 89.457787 \nL 360.93467 89.696454 \nL 361.039051 89.946244 \nL 361.143432 89.514148 \nL 361.300003 88.627424 \nL 361.560956 89.271748 \nL 361.665337 89.255249 \nL 361.769718 89.15684 \nL 361.926289 88.991314 \nL 362.08286 89.256865 \nL 362.291622 88.939201 \nL 362.500384 89.192509 \nL 362.552575 89.109689 \nL 362.709146 88.910809 \nL 362.865718 89.297351 \nL 362.917908 89.228149 \nL 363.022289 89.036049 \nL 363.07448 89.058931 \nL 363.283242 89.454437 \nL 363.387623 89.580122 \nL 363.805147 88.955993 \nL 363.857337 89.070039 \nL 364.013909 89.466788 \nL 364.066099 89.385699 \nL 364.327052 89.10373 \nL 364.535814 89.11568 \nL 364.744576 88.413412 \nL 364.796766 88.457017 \nL 365.109909 89.412304 \nL 365.266481 89.948973 \nL 365.370862 89.524279 \nL 365.527433 89.009315 \nL 365.631814 89.064203 \nL 365.736195 89.169936 \nL 365.944957 88.905915 \nL 366.153719 89.487236 \nL 366.2581 89.301275 \nL 366.414672 89.149221 \nL 366.623434 89.32916 \nL 366.884386 88.818946 \nL 366.936577 88.969483 \nL 367.197529 89.357541 \nL 367.458481 89.0279 \nL 367.562862 89.100033 \nL 367.667243 89.161503 \nL 367.719434 89.082193 \nL 367.771624 89.118577 \nL 367.876005 89.127277 \nL 367.980386 88.942955 \nL 368.032577 89.006151 \nL 368.241339 89.312597 \nL 368.34572 89.162478 \nL 368.450101 89.006176 \nL 368.606672 89.247938 \nL 368.658863 89.183358 \nL 368.815434 89.192954 \nL 369.024196 89.392204 \nL 369.076387 89.320405 \nL 369.232958 89.237749 \nL 369.337339 89.193113 \nL 369.493911 89.013594 \nL 369.546101 89.032552 \nL 369.702673 88.70438 \nL 369.754863 88.765904 \nL 370.224578 89.211309 \nL 370.381149 89.375141 \nL 370.48553 89.508513 \nL 370.537721 89.460915 \nL 370.694292 89.582829 \nL 370.903054 88.939719 \nL 371.007435 89.108645 \nL 371.059626 89.144388 \nL 371.111816 89.05992 \nL 371.216197 88.985816 \nL 371.372769 89.098343 \nL 371.842483 88.955898 \nL 372.103436 89.362398 \nL 372.781912 89.01178 \nL 372.938483 88.723483 \nL 373.199436 89.438558 \nL 373.251626 89.289686 \nL 373.356007 89.215041 \nL 373.460388 89.303506 \nL 373.564769 89.294022 \nL 373.66915 89.473702 \nL 373.721341 89.40495 \nL 373.930103 89.118935 \nL 374.138865 89.116877 \nL 374.243246 89.014013 \nL 374.399817 89.219782 \nL 374.452008 89.12922 \nL 374.66077 88.705224 \nL 374.921722 89.293502 \nL 375.130484 89.370621 \nL 375.234865 89.341699 \nL 375.495818 88.977875 \nL 375.548008 89.037822 \nL 375.75677 89.281767 \nL 375.808961 89.237201 \nL 376.017723 89.020155 \nL 376.122104 89.166128 \nL 376.174294 89.133944 \nL 376.330866 89.016216 \nL 376.539628 89.277053 \nL 376.696199 89.159847 \nL 376.852771 89.203511 \nL 377.009342 89.212176 \nL 377.165914 89.338121 \nL 377.374676 89.083729 \nL 377.426866 89.199889 \nL 377.531247 89.418012 \nL 377.740009 88.974666 \nL 377.7922 89.057952 \nL 378.000961 89.191989 \nL 378.209723 89.037008 \nL 378.366295 89.1487 \nL 378.470676 89.002849 \nL 378.522866 89.033868 \nL 378.783819 89.197917 \nL 378.94039 88.986446 \nL 379.201343 89.330402 \nL 379.305724 89.162356 \nL 379.462295 89.189973 \nL 379.566676 89.329747 \nL 379.618867 89.277804 \nL 379.879819 89.022224 \nL 380.088581 89.289447 \nL 380.140772 89.202187 \nL 380.349534 89.021456 \nL 380.558296 89.260453 \nL 380.610486 89.206132 \nL 380.767058 89.207528 \nL 380.97582 89.390709 \nL 381.288963 89.046114 \nL 381.445534 89.186496 \nL 381.602106 88.972432 \nL 381.758677 89.270229 \nL 381.810868 89.158783 \nL 381.915249 88.8648 \nL 381.967439 88.921271 \nL 382.176201 89.327881 \nL 382.437154 89.127352 \nL 382.645916 89.213663 \nL 382.802487 89.170609 \nL 383.06344 88.984299 \nL 383.272201 89.360391 \nL 383.428773 89.240237 \nL 383.480963 89.316134 \nL 383.533154 89.257429 \nL 383.637535 89.076348 \nL 383.846297 89.322654 \nL 384.055059 89.320075 \nL 384.368202 89.082848 \nL 384.524773 89.226974 \nL 384.576964 89.165862 \nL 384.785726 88.802375 \nL 384.890107 88.914408 \nL 385.046678 89.169502 \nL 385.25544 89.107182 \nL 385.725155 89.250149 \nL 385.933917 89.035231 \nL 386.194869 89.17967 \nL 386.560203 89.142377 \nL 386.664584 89.176312 \nL 386.768965 89.079137 \nL 386.821155 89.121098 \nL 386.977727 89.296168 \nL 387.186489 89.113205 \nL 387.447441 89.272727 \nL 387.551822 89.164553 \nL 387.708394 89.281826 \nL 387.917156 89.01833 \nL 388.282489 89.205961 \nL 388.700013 89.243301 \nL 389.48287 89.088733 \nL 390.161347 89.202192 \nL 390.370109 89.234727 \nL 390.578871 89.256814 \nL 390.683252 89.210235 \nL 390.892014 89.081252 \nL 391.257347 89.23364 \nL 391.466109 89.172469 \nL 391.622681 89.180931 \nL 391.779252 88.964536 \nL 391.831443 88.995822 \nL 391.988014 89.163302 \nL 392.040205 89.121351 \nL 392.301157 88.92656 \nL 393.031824 89.334312 \nL 393.240586 89.164796 \nL 393.449348 89.281891 \nL 393.710301 89.001648 \nL 394.127824 88.967811 \nL 394.336586 89.310273 \nL 394.597539 89.25835 \nL 394.806301 89.27214 \nL 396.006682 89.123657 \nL 396.476397 89.256479 \nL 396.737349 89.126577 \nL 396.946111 89.117277 \nL 397.102683 89.111151 \nL 397.259254 89.070089 \nL 397.415826 89.077876 \nL 397.676778 89.160878 \nL 397.781159 89.313959 \nL 397.83335 89.254079 \nL 397.989921 89.130579 \nL 398.198683 89.2376 \nL 398.303064 89.190184 \nL 398.407445 89.185501 \nL 398.511826 89.266279 \nL 398.720588 88.965099 \nL 398.87716 89.317334 \nL 398.92935 89.267824 \nL 399.085922 89.028559 \nL 399.138112 89.071898 \nL 399.294683 89.197805 \nL 399.503445 89.136673 \nL 399.712207 89.15108 \nL 399.816588 89.136759 \nL 399.97316 89.028035 \nL 400.181922 89.152335 \nL 400.338493 89.129829 \nL 400.756017 89.331335 \nL 401.01697 89.105591 \nL 401.225732 89.295609 \nL 401.643256 89.031329 \nL 401.956399 89.075026 \nL 402.11297 89.173467 \nL 402.217351 89.152419 \nL 402.373923 89.272982 \nL 402.530494 89.154436 \nL 402.739256 89.227536 \nL 402.843637 89.054504 \nL 402.895828 89.09187 \nL 403.000209 89.244148 \nL 403.10459 89.095938 \nL 403.15678 89.139735 \nL 403.261161 89.20942 \nL 403.469923 89.103993 \nL 403.730876 89.180308 \nL 403.887447 89.144884 \nL 403.887447 89.144884 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-width:0.5;\"/>\n   </g>\n   <g id=\"patch_8\">\n    <path d=\"M 239.542187 120.52 \nL 239.542187 49.92 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n   <g id=\"patch_9\">\n    <path d=\"M 411.713412 120.52 \nL 411.713412 49.92 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n   <g id=\"patch_10\">\n    <path d=\"M 239.542188 120.52 \nL 411.713412 120.52 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n   <g id=\"patch_11\">\n    <path d=\"M 239.542188 49.92 \nL 411.713412 49.92 \n\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\n   </g>\n  </g>\n  <g id=\"text_17\">\n   <!-- BG.BRP..DP.0414480.npz -->\n   <g transform=\"translate(138.447812 16.318125)scale(0.12 -0.12)\">\n    <defs>\n     <path d=\"M 19.671875 34.8125 \nL 19.671875 8.109375 \nL 35.5 8.109375 \nQ 43.453125 8.109375 47.28125 11.40625 \nQ 51.125 14.703125 51.125 21.484375 \nQ 51.125 28.328125 47.28125 31.5625 \nQ 43.453125 34.8125 35.5 34.8125 \nz\nM 19.671875 64.796875 \nL 19.671875 42.828125 \nL 34.28125 42.828125 \nQ 41.5 42.828125 45.03125 45.53125 \nQ 48.578125 48.25 48.578125 53.8125 \nQ 48.578125 59.328125 45.03125 62.0625 \nQ 41.5 64.796875 34.28125 64.796875 \nz\nM 9.8125 72.90625 \nL 35.015625 72.90625 \nQ 46.296875 72.90625 52.390625 68.21875 \nQ 58.5 63.53125 58.5 54.890625 \nQ 58.5 48.1875 55.375 44.234375 \nQ 52.25 40.28125 46.1875 39.3125 \nQ 53.46875 37.75 57.5 32.78125 \nQ 61.53125 27.828125 61.53125 20.40625 \nQ 61.53125 10.640625 54.890625 5.3125 \nQ 48.25 0 35.984375 0 \nL 9.8125 0 \nz\n\" id=\"DejaVuSans-66\"/>\n     <path d=\"M 59.515625 10.40625 \nL 59.515625 29.984375 \nL 43.40625 29.984375 \nL 43.40625 38.09375 \nL 69.28125 38.09375 \nL 69.28125 6.78125 \nQ 63.578125 2.734375 56.6875 0.65625 \nQ 49.8125 -1.421875 42 -1.421875 \nQ 24.90625 -1.421875 15.25 8.5625 \nQ 5.609375 18.5625 5.609375 36.375 \nQ 5.609375 54.25 15.25 64.234375 \nQ 24.90625 74.21875 42 74.21875 \nQ 49.125 74.21875 55.546875 72.453125 \nQ 61.96875 70.703125 67.390625 67.28125 \nL 67.390625 56.78125 \nQ 61.921875 61.421875 55.765625 63.765625 \nQ 49.609375 66.109375 42.828125 66.109375 \nQ 29.4375 66.109375 22.71875 58.640625 \nQ 16.015625 51.171875 16.015625 36.375 \nQ 16.015625 21.625 22.71875 14.15625 \nQ 29.4375 6.6875 42.828125 6.6875 \nQ 48.046875 6.6875 52.140625 7.59375 \nQ 56.25 8.5 59.515625 10.40625 \nz\n\" id=\"DejaVuSans-71\"/>\n     <path d=\"M 10.6875 12.40625 \nL 21 12.40625 \nL 21 0 \nL 10.6875 0 \nz\n\" id=\"DejaVuSans-46\"/>\n     <path d=\"M 44.390625 34.1875 \nQ 47.5625 33.109375 50.5625 29.59375 \nQ 53.5625 26.078125 56.59375 19.921875 \nL 66.609375 0 \nL 56 0 \nL 46.6875 18.703125 \nQ 43.0625 26.03125 39.671875 28.421875 \nQ 36.28125 30.8125 30.421875 30.8125 \nL 19.671875 30.8125 \nL 19.671875 0 \nL 9.8125 0 \nL 9.8125 72.90625 \nL 32.078125 72.90625 \nQ 44.578125 72.90625 50.734375 67.671875 \nQ 56.890625 62.453125 56.890625 51.90625 \nQ 56.890625 45.015625 53.6875 40.46875 \nQ 50.484375 35.9375 44.390625 34.1875 \nz\nM 19.671875 64.796875 \nL 19.671875 38.921875 \nL 32.078125 38.921875 \nQ 39.203125 38.921875 42.84375 42.21875 \nQ 46.484375 45.515625 46.484375 51.90625 \nQ 46.484375 58.296875 42.84375 61.546875 \nQ 39.203125 64.796875 32.078125 64.796875 \nz\n\" id=\"DejaVuSans-82\"/>\n     <path d=\"M 19.671875 64.796875 \nL 19.671875 37.40625 \nL 32.078125 37.40625 \nQ 38.96875 37.40625 42.71875 40.96875 \nQ 46.484375 44.53125 46.484375 51.125 \nQ 46.484375 57.671875 42.71875 61.234375 \nQ 38.96875 64.796875 32.078125 64.796875 \nz\nM 9.8125 72.90625 \nL 32.078125 72.90625 \nQ 44.34375 72.90625 50.609375 67.359375 \nQ 56.890625 61.8125 56.890625 51.125 \nQ 56.890625 40.328125 50.609375 34.8125 \nQ 44.34375 29.296875 32.078125 29.296875 \nL 19.671875 29.296875 \nL 19.671875 0 \nL 9.8125 0 \nz\n\" id=\"DejaVuSans-80\"/>\n     <path d=\"M 19.671875 64.796875 \nL 19.671875 8.109375 \nL 31.59375 8.109375 \nQ 46.6875 8.109375 53.6875 14.9375 \nQ 60.6875 21.78125 60.6875 36.53125 \nQ 60.6875 51.171875 53.6875 57.984375 \nQ 46.6875 64.796875 31.59375 64.796875 \nz\nM 9.8125 72.90625 \nL 30.078125 72.90625 \nQ 51.265625 72.90625 61.171875 64.09375 \nQ 71.09375 55.28125 71.09375 36.53125 \nQ 71.09375 17.671875 61.125 8.828125 \nQ 51.171875 0 30.078125 0 \nL 9.8125 0 \nz\n\" id=\"DejaVuSans-68\"/>\n     <path d=\"M 31.78125 34.625 \nQ 24.75 34.625 20.71875 30.859375 \nQ 16.703125 27.09375 16.703125 20.515625 \nQ 16.703125 13.921875 20.71875 10.15625 \nQ 24.75 6.390625 31.78125 6.390625 \nQ 38.8125 6.390625 42.859375 10.171875 \nQ 46.921875 13.96875 46.921875 20.515625 \nQ 46.921875 27.09375 42.890625 30.859375 \nQ 38.875 34.625 31.78125 34.625 \nz\nM 21.921875 38.8125 \nQ 15.578125 40.375 12.03125 44.71875 \nQ 8.5 49.078125 8.5 55.328125 \nQ 8.5 64.0625 14.71875 69.140625 \nQ 20.953125 74.21875 31.78125 74.21875 \nQ 42.671875 74.21875 48.875 69.140625 \nQ 55.078125 64.0625 55.078125 55.328125 \nQ 55.078125 49.078125 51.53125 44.71875 \nQ 48 40.375 41.703125 38.8125 \nQ 48.828125 37.15625 52.796875 32.3125 \nQ 56.78125 27.484375 56.78125 20.515625 \nQ 56.78125 9.90625 50.3125 4.234375 \nQ 43.84375 -1.421875 31.78125 -1.421875 \nQ 19.734375 -1.421875 13.25 4.234375 \nQ 6.78125 9.90625 6.78125 20.515625 \nQ 6.78125 27.484375 10.78125 32.3125 \nQ 14.796875 37.15625 21.921875 38.8125 \nz\nM 18.3125 54.390625 \nQ 18.3125 48.734375 21.84375 45.5625 \nQ 25.390625 42.390625 31.78125 42.390625 \nQ 38.140625 42.390625 41.71875 45.5625 \nQ 45.3125 48.734375 45.3125 54.390625 \nQ 45.3125 60.0625 41.71875 63.234375 \nQ 38.140625 66.40625 31.78125 66.40625 \nQ 25.390625 66.40625 21.84375 63.234375 \nQ 18.3125 60.0625 18.3125 54.390625 \nz\n\" id=\"DejaVuSans-56\"/>\n     <path d=\"M 54.890625 33.015625 \nL 54.890625 0 \nL 45.90625 0 \nL 45.90625 32.71875 \nQ 45.90625 40.484375 42.875 44.328125 \nQ 39.84375 48.1875 33.796875 48.1875 \nQ 26.515625 48.1875 22.3125 43.546875 \nQ 18.109375 38.921875 18.109375 30.90625 \nL 18.109375 0 \nL 9.078125 0 \nL 9.078125 54.6875 \nL 18.109375 54.6875 \nL 18.109375 46.1875 \nQ 21.34375 51.125 25.703125 53.5625 \nQ 30.078125 56 35.796875 56 \nQ 45.21875 56 50.046875 50.171875 \nQ 54.890625 44.34375 54.890625 33.015625 \nz\n\" id=\"DejaVuSans-110\"/>\n     <path d=\"M 18.109375 8.203125 \nL 18.109375 -20.796875 \nL 9.078125 -20.796875 \nL 9.078125 54.6875 \nL 18.109375 54.6875 \nL 18.109375 46.390625 \nQ 20.953125 51.265625 25.265625 53.625 \nQ 29.59375 56 35.59375 56 \nQ 45.5625 56 51.78125 48.09375 \nQ 58.015625 40.1875 58.015625 27.296875 \nQ 58.015625 14.40625 51.78125 6.484375 \nQ 45.5625 -1.421875 35.59375 -1.421875 \nQ 29.59375 -1.421875 25.265625 0.953125 \nQ 20.953125 3.328125 18.109375 8.203125 \nz\nM 48.6875 27.296875 \nQ 48.6875 37.203125 44.609375 42.84375 \nQ 40.53125 48.484375 33.40625 48.484375 \nQ 26.265625 48.484375 22.1875 42.84375 \nQ 18.109375 37.203125 18.109375 27.296875 \nQ 18.109375 17.390625 22.1875 11.75 \nQ 26.265625 6.109375 33.40625 6.109375 \nQ 40.53125 6.109375 44.609375 11.75 \nQ 48.6875 17.390625 48.6875 27.296875 \nz\n\" id=\"DejaVuSans-112\"/>\n     <path d=\"M 5.515625 54.6875 \nL 48.1875 54.6875 \nL 48.1875 46.484375 \nL 14.40625 7.171875 \nL 48.1875 7.171875 \nL 48.1875 0 \nL 4.296875 0 \nL 4.296875 8.203125 \nL 38.09375 47.515625 \nL 5.515625 47.515625 \nz\n\" id=\"DejaVuSans-122\"/>\n    </defs>\n    <use xlink:href=\"#DejaVuSans-66\"/>\n    <use x=\"66.853516\" xlink:href=\"#DejaVuSans-71\"/>\n    <use x=\"144.34375\" xlink:href=\"#DejaVuSans-46\"/>\n    <use x=\"176.130859\" xlink:href=\"#DejaVuSans-66\"/>\n    <use x=\"244.734375\" xlink:href=\"#DejaVuSans-82\"/>\n    <use x=\"314.216797\" xlink:href=\"#DejaVuSans-80\"/>\n    <use x=\"358.894531\" xlink:href=\"#DejaVuSans-46\"/>\n    <use x=\"390.681641\" xlink:href=\"#DejaVuSans-46\"/>\n    <use x=\"422.46875\" xlink:href=\"#DejaVuSans-68\"/>\n    <use x=\"499.470703\" xlink:href=\"#DejaVuSans-80\"/>\n    <use x=\"544.148438\" xlink:href=\"#DejaVuSans-46\"/>\n    <use x=\"575.935547\" xlink:href=\"#DejaVuSans-48\"/>\n    <use x=\"639.558594\" xlink:href=\"#DejaVuSans-52\"/>\n    <use x=\"703.181641\" xlink:href=\"#DejaVuSans-49\"/>\n    <use x=\"766.804688\" xlink:href=\"#DejaVuSans-52\"/>\n    <use x=\"830.427734\" xlink:href=\"#DejaVuSans-52\"/>\n    <use x=\"894.050781\" xlink:href=\"#DejaVuSans-56\"/>\n    <use x=\"957.673828\" xlink:href=\"#DejaVuSans-48\"/>\n    <use x=\"1021.296875\" xlink:href=\"#DejaVuSans-46\"/>\n    <use x=\"1053.083984\" xlink:href=\"#DejaVuSans-110\"/>\n    <use x=\"1116.462891\" xlink:href=\"#DejaVuSans-112\"/>\n    <use x=\"1179.939453\" xlink:href=\"#DejaVuSans-122\"/>\n   </g>\n  </g>\n </g>\n <defs>\n  <clipPath id=\"p28a7b2fdb5\">\n   <rect height=\"70.6\" width=\"172.171224\" x=\"28.942188\" y=\"49.92\"/>\n  </clipPath>\n  <clipPath id=\"pca3c9bdf03\">\n   <rect height=\"70.6\" width=\"172.171224\" x=\"239.542187\" y=\"49.92\"/>\n  </clipPath>\n </defs>\n</svg>\n",
      "image/png": "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\n"
     },
     "metadata": {
      "needs_background": "light"
     }
    }
   ],
   "source": [
    "plt.close(\"all\")\n",
    "for i, fp in enumerate(sorted(glob.glob(os.path.join(PROJECT_ROOT, \"output/results/*npz\")))):\n",
    "    signal = np.load(fp)[\"data\"][5000:8000,-1,-1]\n",
    "    raw_signal = np.load(os.path.join(PROJECT_ROOT, \"test_data/npz/\", fp.split(\"/\")[-1]))[\"data\"][5000:8000,-1]\n",
    "    plt.figure(figsize=(6,2))\n",
    "    plt.subplot(121)\n",
    "    plt.plot(raw_signal, 'k', linewidth=0.5)\n",
    "    ylim = plt.ylim()\n",
    "    plt.subplot(122)\n",
    "    plt.plot(signal, 'k', linewidth=0.5)\n",
    "    plt.ylim(ylim)\n",
    "    plt.suptitle(fp.split(\"/\")[-1])\n",
    "    plt.tight_layout()\n",
    "    plt.show()\n",
    "    if i >= 3:\n",
    "        break\n",
    "    "
   ]
  },
  {
   "cell_type": "code",
   "execution_count": null,
   "metadata": {},
   "outputs": [],
   "source": []
  }
 ]
}