Skip to content
Snippets Groups Projects
vis.ipynb 6.48 MiB
Newer Older
5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000
       "   </g>\r\n",
       "   <g id=\"patch_11\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 514.738427 279 \r\n",
       "Q 526.521749 279 537.187037 279 \r\n",
       "\" style=\"fill:none;stroke:#424086;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 533.987037 277.4 \r\n",
       "L 537.187037 279 \r\n",
       "L 533.987037 280.6 \r\n",
       "L 533.987037 277.4 \r\n",
       "z\r\n",
       "\" style=\"fill:#424086;fill-opacity:0.75;stroke:#424086;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_12\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 289.165793 453.710744 \r\n",
       "Q 398.529075 369.006584 507.008442 284.987036 \r\n",
       "\" style=\"fill:none;stroke:#3b528b;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 503.498791 285.68155 \r\n",
       "L 507.008442 284.987036 \r\n",
       "L 505.458263 288.211465 \r\n",
       "L 503.498791 285.68155 \r\n",
       "z\r\n",
       "\" style=\"fill:#3b528b;fill-opacity:0.75;stroke:#3b528b;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_13\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 321.390455 403.793388 \r\n",
       "Q 414.4253 343.74552 506.520782 284.303949 \r\n",
       "\" style=\"fill:none;stroke:#3b528b;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 502.964505 284.694965 \r\n",
       "L 506.520782 284.303949 \r\n",
       "L 504.699829 287.38358 \r\n",
       "L 502.964505 284.694965 \r\n",
       "z\r\n",
       "\" style=\"fill:#3b528b;fill-opacity:0.75;stroke:#3b528b;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_14\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 482.513765 279 \r\n",
       "Q 494.297087 279 504.962375 279 \r\n",
       "\" style=\"fill:none;stroke:#3b528b;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 501.762375 277.4 \r\n",
       "L 504.962375 279 \r\n",
       "L 501.762375 280.6 \r\n",
       "L 501.762375 277.4 \r\n",
       "z\r\n",
       "\" style=\"fill:#3b528b;fill-opacity:0.75;stroke:#3b528b;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_15\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 128.042483 279 \r\n",
       "Q 300.947025 279 472.733533 279 \r\n",
       "\" style=\"fill:none;stroke:#33638d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 469.533533 277.4 \r\n",
       "L 472.733533 279 \r\n",
       "L 469.533533 280.6 \r\n",
       "L 469.533533 277.4 \r\n",
       "z\r\n",
       "\" style=\"fill:#33638d;fill-opacity:0.75;stroke:#33638d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_16\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 192.491807 279 \r\n",
       "Q 333.172547 279 472.735254 279 \r\n",
       "\" style=\"fill:none;stroke:#33638d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 469.535254 277.4 \r\n",
       "L 472.735254 279 \r\n",
       "L 469.535254 280.6 \r\n",
       "L 469.535254 277.4 \r\n",
       "z\r\n",
       "\" style=\"fill:#33638d;fill-opacity:0.75;stroke:#33638d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_17\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 418.064441 279 \r\n",
       "Q 445.960094 279 472.737713 279 \r\n",
       "\" style=\"fill:none;stroke:#33638d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 469.537713 277.4 \r\n",
       "L 472.737713 279 \r\n",
       "L 469.537713 280.6 \r\n",
       "L 469.537713 277.4 \r\n",
       "z\r\n",
       "\" style=\"fill:#33638d;fill-opacity:0.75;stroke:#33638d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_18\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 450.289103 279 \r\n",
       "Q 462.072425 279 472.737713 279 \r\n",
       "\" style=\"fill:none;stroke:#33638d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 469.537713 277.4 \r\n",
       "L 472.737713 279 \r\n",
       "L 469.537713 280.6 \r\n",
       "L 469.537713 277.4 \r\n",
       "z\r\n",
       "\" style=\"fill:#33638d;fill-opacity:0.75;stroke:#33638d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_19\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 128.042483 279 \r\n",
       "Q 284.836292 279 440.512067 279 \r\n",
       "\" style=\"fill:none;stroke:#2c728e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 437.312067 277.4 \r\n",
       "L 440.512067 279 \r\n",
       "L 437.312067 280.6 \r\n",
       "L 437.312067 277.4 \r\n",
       "z\r\n",
       "\" style=\"fill:#2c728e;fill-opacity:0.75;stroke:#2c728e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_20\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 256.941131 403.793388 \r\n",
       "Q 349.975976 343.74552 442.071458 284.303949 \r\n",
       "\" style=\"fill:none;stroke:#2c728e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 438.515181 284.694965 \r\n",
       "L 442.071458 284.303949 \r\n",
       "L 440.250505 287.38358 \r\n",
       "L 438.515181 284.694965 \r\n",
       "z\r\n",
       "\" style=\"fill:#2c728e;fill-opacity:0.75;stroke:#2c728e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_21\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 418.064441 279 \r\n",
       "Q 429.847763 279 440.513051 279 \r\n",
       "\" style=\"fill:none;stroke:#2c728e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 437.313051 277.4 \r\n",
       "L 440.513051 279 \r\n",
       "L 437.313051 280.6 \r\n",
       "L 437.313051 277.4 \r\n",
       "z\r\n",
       "\" style=\"fill:#2c728e;fill-opacity:0.75;stroke:#2c728e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_22\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 128.042483 503.628099 \r\n",
       "Q 269.629321 393.966119 410.332243 284.988749 \r\n",
       "\" style=\"fill:none;stroke:#26828e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 406.822592 285.683264 \r\n",
       "L 410.332243 284.988749 \r\n",
       "L 408.782064 288.213179 \r\n",
       "L 406.822592 285.683264 \r\n",
       "z\r\n",
       "\" style=\"fill:#26828e;fill-opacity:0.75;stroke:#26828e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_23\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 192.491807 279 \r\n",
       "Q 300.94641 279 408.28298 279 \r\n",
       "\" style=\"fill:none;stroke:#26828e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 405.08298 277.4 \r\n",
       "L 408.28298 279 \r\n",
       "L 405.08298 280.6 \r\n",
       "L 405.08298 277.4 \r\n",
       "z\r\n",
       "\" style=\"fill:#26828e;fill-opacity:0.75;stroke:#26828e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_24\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 224.716469 104.289256 \r\n",
       "Q 318.179101 188.742824 410.812195 272.446814 \r\n",
       "\" style=\"fill:none;stroke:#26828e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 409.510626 269.11426 \r\n",
       "L 410.812195 272.446814 \r\n",
       "L 407.36521 271.488537 \r\n",
       "L 409.510626 269.11426 \r\n",
       "z\r\n",
       "\" style=\"fill:#26828e;fill-opacity:0.75;stroke:#26828e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_25\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 289.165793 104.289256 \r\n",
       "Q 351.043477 188.158997 412.257396 271.129063 \r\n",
       "\" style=\"fill:none;stroke:#26828e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 411.645099 267.604139 \r\n",
       "L 412.257396 271.129063 \r\n",
       "L 409.070078 269.503946 \r\n",
       "L 411.645099 267.604139 \r\n",
       "z\r\n",
       "\" style=\"fill:#26828e;fill-opacity:0.75;stroke:#26828e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_26\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 321.390455 154.206612 \r\n",
       "Q 367.076643 213.181466 412.078136 271.272469 \r\n",
       "\" style=\"fill:none;stroke:#26828e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 411.383289 267.762883 \r\n",
       "L 412.078136 271.272469 \r\n",
       "L 408.853559 269.722595 \r\n",
       "L 411.383289 267.762883 \r\n",
       "z\r\n",
       "\" style=\"fill:#26828e;fill-opacity:0.75;stroke:#26828e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_27\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 353.615117 279 \r\n",
       "Q 381.51077 279 408.288389 279 \r\n",
       "\" style=\"fill:none;stroke:#26828e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 405.088389 277.4 \r\n",
       "L 408.288389 279 \r\n",
       "L 405.088389 280.6 \r\n",
       "L 405.088389 277.4 \r\n",
       "z\r\n",
       "\" style=\"fill:#26828e;fill-opacity:0.75;stroke:#26828e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_28\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 385.839779 279 \r\n",
       "Q 397.623101 279 408.288389 279 \r\n",
       "\" style=\"fill:none;stroke:#26828e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 405.088389 277.4 \r\n",
       "L 408.288389 279 \r\n",
       "L 405.088389 280.6 \r\n",
       "L 405.088389 277.4 \r\n",
       "z\r\n",
       "\" style=\"fill:#26828e;fill-opacity:0.75;stroke:#26828e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_29\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 353.615117 279 \r\n",
       "Q 365.398439 279 376.063727 279 \r\n",
       "\" style=\"fill:none;stroke:#21918c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 372.863727 277.4 \r\n",
       "L 376.063727 279 \r\n",
       "L 372.863727 280.6 \r\n",
       "L 372.863727 277.4 \r\n",
       "z\r\n",
       "\" style=\"fill:#21918c;fill-opacity:0.75;stroke:#21918c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_30\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 321.390455 154.206612 \r\n",
       "Q 336.420533 212.41217 351.171078 269.535204 \r\n",
       "\" style=\"fill:none;stroke:#1fa088;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 351.920189 266.0368 \r\n",
       "L 351.171078 269.535204 \r\n",
       "L 348.821821 266.836873 \r\n",
       "L 351.920189 266.0368 \r\n",
       "z\r\n",
       "\" style=\"fill:#1fa088;fill-opacity:0.75;stroke:#1fa088;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_31\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 289.165793 453.710744 \r\n",
       "Q 302.928736 432.391365 316.085299 412.011297 \r\n",
       "\" style=\"fill:none;stroke:#28ae80;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 313.005506 413.831975 \r\n",
       "L 316.085299 412.011297 \r\n",
       "L 315.693966 415.567539 \r\n",
       "L 313.005506 413.831975 \r\n",
       "z\r\n",
       "\" style=\"fill:#28ae80;fill-opacity:0.75;stroke:#28ae80;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_32\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 289.165793 104.289256 \r\n",
       "Q 302.928736 125.608635 316.085299 145.988703 \r\n",
       "\" style=\"fill:none;stroke:#28ae80;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 315.693966 142.432461 \r\n",
       "L 316.085299 145.988703 \r\n",
       "L 313.005506 144.168025 \r\n",
       "L 315.693966 142.432461 \r\n",
       "z\r\n",
       "\" style=\"fill:#28ae80;fill-opacity:0.75;stroke:#28ae80;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_33\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 224.716469 104.289256 \r\n",
       "Q 252.612122 104.289256 279.389741 104.289256 \r\n",
       "\" style=\"fill:none;stroke:#3fbc73;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 276.189741 102.689256 \r\n",
       "L 279.389741 104.289256 \r\n",
       "L 276.189741 105.889256 \r\n",
       "L 276.189741 102.689256 \r\n",
       "z\r\n",
       "\" style=\"fill:#3fbc73;fill-opacity:0.75;stroke:#3fbc73;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_34\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 256.941131 403.793388 \r\n",
       "Q 270.704074 425.112767 283.860637 445.492836 \r\n",
       "\" style=\"fill:none;stroke:#3fbc73;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 283.469304 441.936593 \r\n",
       "L 283.860637 445.492836 \r\n",
       "L 280.780844 443.672157 \r\n",
       "L 283.469304 441.936593 \r\n",
       "z\r\n",
       "\" style=\"fill:#3fbc73;fill-opacity:0.75;stroke:#3fbc73;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_35\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 256.941131 154.206612 \r\n",
       "Q 270.704074 132.887233 283.860637 112.507164 \r\n",
       "\" style=\"fill:none;stroke:#3fbc73;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 280.780844 114.327843 \r\n",
       "L 283.860637 112.507164 \r\n",
       "L 283.469304 116.063407 \r\n",
       "L 280.780844 114.327843 \r\n",
       "z\r\n",
       "\" style=\"fill:#3fbc73;fill-opacity:0.75;stroke:#3fbc73;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_36\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 192.491807 279 \r\n",
       "Q 222.728979 337.548314 252.453124 395.103249 \r\n",
       "\" style=\"fill:none;stroke:#5ec962;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 252.406358 391.525846 \r\n",
       "L 252.453124 395.103249 \r\n",
       "L 249.563142 392.99422 \r\n",
       "L 252.406358 391.525846 \r\n",
       "z\r\n",
       "\" style=\"fill:#5ec962;fill-opacity:0.75;stroke:#5ec962;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_37\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 224.716469 453.710744 \r\n",
       "Q 238.479412 432.391365 251.635975 412.011297 \r\n",
       "\" style=\"fill:none;stroke:#5ec962;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 248.556182 413.831975 \r\n",
       "L 251.635975 412.011297 \r\n",
       "L 251.244642 415.567539 \r\n",
       "L 248.556182 413.831975 \r\n",
       "z\r\n",
       "\" style=\"fill:#5ec962;fill-opacity:0.75;stroke:#5ec962;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_38\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 224.716469 104.289256 \r\n",
       "Q 238.479412 125.608635 251.635975 145.988703 \r\n",
       "\" style=\"fill:none;stroke:#5ec962;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 251.244642 142.432461 \r\n",
       "L 251.635975 145.988703 \r\n",
       "L 248.556182 144.168025 \r\n",
       "L 251.244642 142.432461 \r\n",
       "z\r\n",
       "\" style=\"fill:#5ec962;fill-opacity:0.75;stroke:#5ec962;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_39\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 192.491807 279 \r\n",
       "Q 207.818632 362.096638 222.942661 444.093787 \r\n",
       "\" style=\"fill:none;stroke:#84d44b;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 223.935685 440.656651 \r\n",
       "L 222.942661 444.093787 \r\n",
       "L 220.788766 441.237087 \r\n",
       "L 223.935685 440.656651 \r\n",
       "z\r\n",
       "\" style=\"fill:#84d44b;fill-opacity:0.75;stroke:#84d44b;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_40\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 192.491807 279 \r\n",
       "Q 207.818632 195.903362 222.942661 113.906213 \r\n",
       "\" style=\"fill:none;stroke:#84d44b;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 220.788766 116.762913 \r\n",
       "L 222.942661 113.906213 \r\n",
       "L 223.935685 117.343349 \r\n",
       "L 220.788766 116.762913 \r\n",
       "z\r\n",
       "\" style=\"fill:#84d44b;fill-opacity:0.75;stroke:#84d44b;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_41\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 160.267145 279 \r\n",
       "Q 172.050467 279 182.715755 279 \r\n",
       "\" style=\"fill:none;stroke:#addc30;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 179.515755 277.4 \r\n",
       "L 182.715755 279 \r\n",
       "L 179.515755 280.6 \r\n",
       "L 179.515755 277.4 \r\n",
       "z\r\n",
       "\" style=\"fill:#addc30;fill-opacity:0.75;stroke:#addc30;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_42\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 128.042483 503.628099 \r\n",
       "Q 143.539931 395.600204 158.878614 288.679013 \r\n",
       "\" style=\"fill:none;stroke:#d8e219;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 156.840415 291.619378 \r\n",
       "L 158.878614 288.679013 \r\n",
       "L 160.007987 292.073791 \r\n",
       "L 156.840415 291.619378 \r\n",
       "z\r\n",
       "\" style=\"fill:#d8e219;fill-opacity:0.75;stroke:#d8e219;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_43\">\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 128.042483 54.371901 \r\n",
       "Q 143.539931 162.399796 158.878614 269.320987 \r\n",
       "\" style=\"fill:none;stroke:#d8e219;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "    <path clip-path=\"url(#pb55431ef3d)\" d=\"M 160.007987 265.926209 \r\n",
       "L 158.878614 269.320987 \r\n",
       "L 156.840415 266.380622 \r\n",
       "L 160.007987 265.926209 \r\n",
       "z\r\n",
       "\" style=\"fill:#d8e219;fill-opacity:0.75;stroke:#d8e219;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"matplotlib.axis_1\">\r\n",
       "    <g id=\"xtick_1\"/>\r\n",
       "    <g id=\"xtick_2\"/>\r\n",
       "    <g id=\"xtick_3\"/>\r\n",
       "    <g id=\"xtick_4\"/>\r\n",
       "    <g id=\"xtick_5\"/>\r\n",
       "    <g id=\"xtick_6\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"matplotlib.axis_2\">\r\n",
       "    <g id=\"ytick_1\"/>\r\n",
       "    <g id=\"ytick_2\"/>\r\n",
       "    <g id=\"ytick_3\"/>\r\n",
       "    <g id=\"ytick_4\"/>\r\n",
       "    <g id=\"ytick_5\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"PathCollection_1\">\r\n",
       "    <defs>\r\n",
       "     <path d=\"M 0 8.660254 \r\n",
       "C 2.296726 8.660254 4.499694 7.747755 6.123724 6.123724 \r\n",
       "C 7.747755 4.499694 8.660254 2.296726 8.660254 0 \r\n",
       "C 8.660254 -2.296726 7.747755 -4.499694 6.123724 -6.123724 \r\n",
       "C 4.499694 -7.747755 2.296726 -8.660254 0 -8.660254 \r\n",
       "C -2.296726 -8.660254 -4.499694 -7.747755 -6.123724 -6.123724 \r\n",
       "C -7.747755 -4.499694 -8.660254 -2.296726 -8.660254 0 \r\n",
       "C -8.660254 2.296726 -7.747755 4.499694 -6.123724 6.123724 \r\n",
       "C -4.499694 7.747755 -2.296726 8.660254 0 8.660254 \r\n",
       "z\r\n",
       "\" id=\"m38fbdd01ea\" style=\"stroke:#add8e6;\"/>\r\n",
       "    </defs>\r\n",
       "    <g clip-path=\"url(#pb55431ef3d)\">\r\n",
       "     <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"128.042483\" xlink:href=\"#m38fbdd01ea\" y=\"503.628099\"/>\r\n",
       "     <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"160.267145\" xlink:href=\"#m38fbdd01ea\" y=\"279\"/>\r\n",
       "     <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"418.064441\" xlink:href=\"#m38fbdd01ea\" y=\"279\"/>\r\n",
       "     <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"611.412413\" xlink:href=\"#m38fbdd01ea\" y=\"279\"/>\r\n",
       "     <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"128.042483\" xlink:href=\"#m38fbdd01ea\" y=\"279\"/>\r\n",
       "     <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"450.289103\" xlink:href=\"#m38fbdd01ea\" y=\"279\"/>\r\n",
       "     <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"482.513765\" xlink:href=\"#m38fbdd01ea\" y=\"279\"/>\r\n",
       "     <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"128.042483\" xlink:href=\"#m38fbdd01ea\" y=\"54.371901\"/>\r\n",
       "     <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"192.491807\" xlink:href=\"#m38fbdd01ea\" y=\"279\"/>\r\n",
       "     <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"579.187751\" xlink:href=\"#m38fbdd01ea\" y=\"279\"/>\r\n",
       "     <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"224.716469\" xlink:href=\"#m38fbdd01ea\" y=\"453.710744\"/>\r\n",
       "     <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"224.716469\" xlink:href=\"#m38fbdd01ea\" y=\"104.289256\"/>\r\n",
       "     <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"256.941131\" xlink:href=\"#m38fbdd01ea\" y=\"403.793388\"/>\r\n",
       "     <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"546.963089\" xlink:href=\"#m38fbdd01ea\" y=\"279\"/>\r\n",
       "     <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"256.941131\" xlink:href=\"#m38fbdd01ea\" y=\"154.206612\"/>\r\n",
       "     <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"289.165793\" xlink:href=\"#m38fbdd01ea\" y=\"453.710744\"/>\r\n",
       "     <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"289.165793\" xlink:href=\"#m38fbdd01ea\" y=\"104.289256\"/>\r\n",
       "     <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"321.390455\" xlink:href=\"#m38fbdd01ea\" y=\"154.206612\"/>\r\n",
       "     <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"321.390455\" xlink:href=\"#m38fbdd01ea\" y=\"403.793388\"/>\r\n",
       "     <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"514.738427\" xlink:href=\"#m38fbdd01ea\" y=\"279\"/>\r\n",
       "     <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"353.615117\" xlink:href=\"#m38fbdd01ea\" y=\"279\"/>\r\n",
       "     <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"385.839779\" xlink:href=\"#m38fbdd01ea\" y=\"279\"/>\r\n",
       "    </g>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_44\">\r\n",
       "    <path d=\"M 84.955282 550.8 \r\n",
       "L 84.955282 7.2 \r\n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_45\">\r\n",
       "    <path d=\"M 642.955282 550.8 \r\n",
       "L 642.955282 7.2 \r\n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_46\">\r\n",
       "    <path d=\"M 84.955282 550.8 \r\n",
       "L 642.955282 550.8 \r\n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"patch_47\">\r\n",
       "    <path d=\"M 84.955282 7.2 \r\n",
       "L 642.955282 7.2 \r\n",
       "\" style=\"fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;\"/>\r\n",
       "   </g>\r\n",
       "   <g id=\"text_1\">\r\n",
       "    <g clip-path=\"url(#pb55431ef3d)\">\r\n",
       "     <!-- ( + ) -->\r\n",
       "     <defs>\r\n",
       "      <path d=\"M 31 75.875 \r\n",
       "Q 24.46875 64.65625 21.28125 53.65625 \r\n",
       "Q 18.109375 42.671875 18.109375 31.390625 \r\n",
       "Q 18.109375 20.125 21.3125 9.0625 \r\n",
       "Q 24.515625 -2 31 -13.1875 \r\n",
       "L 23.1875 -13.1875 \r\n",
       "Q 15.875 -1.703125 12.234375 9.375 \r\n",
       "Q 8.59375 20.453125 8.59375 31.390625 \r\n",
       "Q 8.59375 42.28125 12.203125 53.3125 \r\n",
       "Q 15.828125 64.359375 23.1875 75.875 \r\n",
       "z\r\n",
       "\" id=\"DejaVuSans-40\"/>\r\n",
       "      <path id=\"DejaVuSans-32\"/>\r\n",
       "      <path d=\"M 46 62.703125 \r\n",
       "L 46 35.5 \r\n",
       "L 73.1875 35.5 \r\n",
       "L 73.1875 27.203125 \r\n",
       "L 46 27.203125 \r\n",
       "L 46 0 \r\n",
       "L 37.796875 0 \r\n",
       "L 37.796875 27.203125 \r\n",
       "L 10.59375 27.203125 \r\n",
       "L 10.59375 35.5 \r\n",
       "L 37.796875 35.5 \r\n",
       "L 37.796875 62.703125 \r\n",
       "z\r\n",
       "\" id=\"DejaVuSans-43\"/>\r\n",
       "      <path d=\"M 8.015625 75.875 \r\n",
       "L 15.828125 75.875 \r\n",
       "Q 23.140625 64.359375 26.78125 53.3125 \r\n",
       "Q 30.421875 42.28125 30.421875 31.390625 \r\n",
       "Q 30.421875 20.453125 26.78125 9.375 \r\n",
       "Q 23.140625 -1.703125 15.828125 -13.1875 \r\n",
       "L 8.015625 -13.1875 \r\n",
       "Q 14.5 -2 17.703125 9.0625 \r\n",
       "Q 20.90625 20.125 20.90625 31.390625 \r\n",
       "Q 20.90625 42.671875 17.703125 53.65625 \r\n",
       "Q 14.5 64.65625 8.015625 75.875 \r\n",
       "z\r\n",
       "\" id=\"DejaVuSans-41\"/>\r\n",
       "     </defs>\r\n",
       "     <g transform=\"translate(114.519045 506.939349)scale(0.12 -0.12)\">\r\n",
       "      <use xlink:href=\"#DejaVuSans-40\"/>\r\n",
       "      <use x=\"39.013672\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
       "      <use x=\"70.800781\" xlink:href=\"#DejaVuSans-43\"/>\r\n",
       "      <use x=\"154.589844\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
       "      <use x=\"186.376953\" xlink:href=\"#DejaVuSans-41\"/>\r\n",
       "     </g>\r\n",
       "    </g>\r\n",
       "   </g>\r\n",
       "   <g id=\"text_2\">\r\n",
       "    <g clip-path=\"url(#pb55431ef3d)\">\r\n",
       "     <!-- ( + ) -->\r\n",
       "     <g transform=\"translate(114.519045 282.31125)scale(0.12 -0.12)\">\r\n",
       "      <use xlink:href=\"#DejaVuSans-40\"/>\r\n",
       "      <use x=\"39.013672\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
       "      <use x=\"70.800781\" xlink:href=\"#DejaVuSans-43\"/>\r\n",
       "      <use x=\"154.589844\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
       "      <use x=\"186.376953\" xlink:href=\"#DejaVuSans-41\"/>\r\n",
       "     </g>\r\n",
       "    </g>\r\n",
       "   </g>\r\n",
       "   <g id=\"text_3\">\r\n",
       "    <g clip-path=\"url(#pb55431ef3d)\">\r\n",
       "     <!-- ( + ) -->\r\n",
       "     <g transform=\"translate(114.519045 57.683151)scale(0.12 -0.12)\">\r\n",
       "      <use xlink:href=\"#DejaVuSans-40\"/>\r\n",
       "      <use x=\"39.013672\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
       "      <use x=\"70.800781\" xlink:href=\"#DejaVuSans-43\"/>\r\n",
       "      <use x=\"154.589844\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
       "      <use x=\"186.376953\" xlink:href=\"#DejaVuSans-41\"/>\r\n",
       "     </g>\r\n",
       "    </g>\r\n",
       "   </g>\r\n",
       "   <g id=\"text_4\">\r\n",
       "    <g clip-path=\"url(#pb55431ef3d)\">\r\n",
       "     <!-- (tanh) -->\r\n",
       "     <defs>\r\n",
       "      <path d=\"M 18.3125 70.21875 \r\n",
       "L 18.3125 54.6875 \r\n",
       "L 36.8125 54.6875 \r\n",
       "L 36.8125 47.703125 \r\n",
       "L 18.3125 47.703125 \r\n",
       "L 18.3125 18.015625 \r\n",
       "Q 18.3125 11.328125 20.140625 9.421875 \r\n",
       "Q 21.96875 7.515625 27.59375 7.515625 \r\n",
       "L 36.8125 7.515625 \r\n",
       "L 36.8125 0 \r\n",
       "L 27.59375 0 \r\n",
       "Q 17.1875 0 13.234375 3.875 \r\n",
       "Q 9.28125 7.765625 9.28125 18.015625 \r\n",
       "L 9.28125 47.703125 \r\n",
       "L 2.6875 47.703125 \r\n",
       "L 2.6875 54.6875 \r\n",
       "L 9.28125 54.6875 \r\n",
       "L 9.28125 70.21875 \r\n",
       "z\r\n",
       "\" id=\"DejaVuSans-116\"/>\r\n",
       "      <path d=\"M 34.28125 27.484375 \r\n",
       "Q 23.390625 27.484375 19.1875 25 \r\n",
       "Q 14.984375 22.515625 14.984375 16.5 \r\n",
       "Q 14.984375 11.71875 18.140625 8.90625 \r\n",
       "Q 21.296875 6.109375 26.703125 6.109375 \r\n",
       "Q 34.1875 6.109375 38.703125 11.40625 \r\n",
       "Q 43.21875 16.703125 43.21875 25.484375 \r\n",
       "L 43.21875 27.484375 \r\n",
       "z\r\n",
       "M 52.203125 31.203125 \r\n",
       "L 52.203125 0 \r\n",
       "L 43.21875 0 \r\n",
       "L 43.21875 8.296875 \r\n",
       "Q 40.140625 3.328125 35.546875 0.953125 \r\n",
       "Q 30.953125 -1.421875 24.3125 -1.421875 \r\n",
       "Q 15.921875 -1.421875 10.953125 3.296875 \r\n",
       "Q 6 8.015625 6 15.921875 \r\n",
       "Q 6 25.140625 12.171875 29.828125 \r\n",
       "Q 18.359375 34.515625 30.609375 34.515625 \r\n",
       "L 43.21875 34.515625 \r\n",
       "L 43.21875 35.40625 \r\n",
       "Q 43.21875 41.609375 39.140625 45 \r\n",
       "Q 35.0625 48.390625 27.6875 48.390625 \r\n",
       "Q 23 48.390625 18.546875 47.265625 \r\n",
       "Q 14.109375 46.140625 10.015625 43.890625 \r\n",
       "L 10.015625 52.203125 \r\n",
       "Q 14.9375 54.109375 19.578125 55.046875 \r\n",
       "Q 24.21875 56 28.609375 56 \r\n",
       "Q 40.484375 56 46.34375 49.84375 \r\n",
       "Q 52.203125 43.703125 52.203125 31.203125 \r\n",
       "z\r\n",
       "\" id=\"DejaVuSans-97\"/>\r\n",
       "      <path d=\"M 54.890625 33.015625 \r\n",
       "L 54.890625 0 \r\n",
       "L 45.90625 0 \r\n",
       "L 45.90625 32.71875 \r\n",
       "Q 45.90625 40.484375 42.875 44.328125 \r\n",
       "Q 39.84375 48.1875 33.796875 48.1875 \r\n",
       "Q 26.515625 48.1875 22.3125 43.546875 \r\n",
       "Q 18.109375 38.921875 18.109375 30.90625 \r\n",
       "L 18.109375 0 \r\n",
       "L 9.078125 0 \r\n",
       "L 9.078125 54.6875 \r\n",
       "L 18.109375 54.6875 \r\n",
       "L 18.109375 46.1875 \r\n",
       "Q 21.34375 51.125 25.703125 53.5625 \r\n",
       "Q 30.078125 56 35.796875 56 \r\n",
       "Q 45.21875 56 50.046875 50.171875 \r\n",
       "Q 54.890625 44.34375 54.890625 33.015625 \r\n",
       "z\r\n",
       "\" id=\"DejaVuSans-110\"/>\r\n",
       "      <path d=\"M 54.890625 33.015625 \r\n",
       "L 54.890625 0 \r\n",
       "L 45.90625 0 \r\n",
       "L 45.90625 32.71875 \r\n",
       "Q 45.90625 40.484375 42.875 44.328125 \r\n",
       "Q 39.84375 48.1875 33.796875 48.1875 \r\n",
       "Q 26.515625 48.1875 22.3125 43.546875 \r\n",
       "Q 18.109375 38.921875 18.109375 30.90625 \r\n",
       "L 18.109375 0 \r\n",
       "L 9.078125 0 \r\n",
       "L 9.078125 75.984375 \r\n",
       "L 18.109375 75.984375 \r\n",
       "L 18.109375 46.1875 \r\n",
       "Q 21.34375 51.125 25.703125 53.5625 \r\n",
       "Q 30.078125 56 35.796875 56 \r\n",
       "Q 45.21875 56 50.046875 50.171875 \r\n",
       "Q 54.890625 44.34375 54.890625 33.015625 \r\n",
       "z\r\n",
       "\" id=\"DejaVuSans-104\"/>\r\n",
       "     </defs>\r\n",
       "     <g transform=\"translate(141.951207 282.31125)scale(0.12 -0.12)\">\r\n",
       "      <use xlink:href=\"#DejaVuSans-40\"/>\r\n",
       "      <use x=\"39.013672\" xlink:href=\"#DejaVuSans-116\"/>\r\n",
       "      <use x=\"78.222656\" xlink:href=\"#DejaVuSans-97\"/>\r\n",
       "      <use x=\"139.501953\" xlink:href=\"#DejaVuSans-110\"/>\r\n",
       "      <use x=\"202.880859\" xlink:href=\"#DejaVuSans-104\"/>\r\n",
       "      <use x=\"266.259766\" xlink:href=\"#DejaVuSans-41\"/>\r\n",
       "     </g>\r\n",
       "    </g>\r\n",
       "   </g>\r\n",
       "   <g id=\"text_5\">\r\n",
       "    <g clip-path=\"url(#pb55431ef3d)\">\r\n",
       "     <!-- (abs) -->\r\n",
       "     <defs>\r\n",
       "      <path d=\"M 48.6875 27.296875 \r\n",
       "Q 48.6875 37.203125 44.609375 42.84375 \r\n",
       "Q 40.53125 48.484375 33.40625 48.484375 \r\n",
       "Q 26.265625 48.484375 22.1875 42.84375 \r\n",
       "Q 18.109375 37.203125 18.109375 27.296875 \r\n",
       "Q 18.109375 17.390625 22.1875 11.75 \r\n",
       "Q 26.265625 6.109375 33.40625 6.109375 \r\n",
       "Q 40.53125 6.109375 44.609375 11.75 \r\n",
       "Q 48.6875 17.390625 48.6875 27.296875 \r\n",
       "z\r\n",
       "M 18.109375 46.390625 \r\n",
       "Q 20.953125 51.265625 25.265625 53.625 \r\n",
       "Q 29.59375 56 35.59375 56 \r\n",
       "Q 45.5625 56 51.78125 48.09375 \r\n",
       "Q 58.015625 40.1875 58.015625 27.296875 \r\n",
       "Q 58.015625 14.40625 51.78125 6.484375 \r\n",
       "Q 45.5625 -1.421875 35.59375 -1.421875 \r\n",
       "Q 29.59375 -1.421875 25.265625 0.953125 \r\n",
       "Q 20.953125 3.328125 18.109375 8.203125 \r\n",
       "L 18.109375 0 \r\n",
       "L 9.078125 0 \r\n",
       "L 9.078125 75.984375 \r\n",
       "L 18.109375 75.984375 \r\n",
       "z\r\n",
       "\" id=\"DejaVuSans-98\"/>\r\n",
       "      <path d=\"M 44.28125 53.078125 \r\n",
       "L 44.28125 44.578125 \r\n",
       "Q 40.484375 46.53125 36.375 47.5 \r\n",
       "Q 32.28125 48.484375 27.875 48.484375 \r\n",
       "Q 21.1875 48.484375 17.84375 46.4375 \r\n",
       "Q 14.5 44.390625 14.5 40.28125 \r\n",
       "Q 14.5 37.15625 16.890625 35.375 \r\n",
       "Q 19.28125 33.59375 26.515625 31.984375 \r\n",
       "L 29.59375 31.296875 \r\n",
       "Q 39.15625 29.25 43.1875 25.515625 \r\n",
       "Q 47.21875 21.78125 47.21875 15.09375 \r\n",
       "Q 47.21875 7.46875 41.1875 3.015625 \r\n",
       "Q 35.15625 -1.421875 24.609375 -1.421875 \r\n",
       "Q 20.21875 -1.421875 15.453125 -0.5625 \r\n",
       "Q 10.6875 0.296875 5.421875 2 \r\n",
       "L 5.421875 11.28125 \r\n",
       "Q 10.40625 8.6875 15.234375 7.390625 \r\n",
       "Q 20.0625 6.109375 24.8125 6.109375 \r\n",
       "Q 31.15625 6.109375 34.5625 8.28125 \r\n",
       "Q 37.984375 10.453125 37.984375 14.40625 \r\n",
       "Q 37.984375 18.0625 35.515625 20.015625 \r\n",
       "Q 33.0625 21.96875 24.703125 23.78125 \r\n",
       "L 21.578125 24.515625 \r\n",
       "Q 13.234375 26.265625 9.515625 29.90625 \r\n",
       "Q 5.8125 33.546875 5.8125 39.890625 \r\n",
       "Q 5.8125 47.609375 11.28125 51.796875 \r\n",
       "Q 16.75 56 26.8125 56 \r\n",
       "Q 31.78125 56 36.171875 55.265625 \r\n",
       "Q 40.578125 54.546875 44.28125 53.078125 \r\n",
       "z\r\n",
       "\" id=\"DejaVuSans-115\"/>\r\n",
       "     </defs>\r\n",
       "     <g transform=\"translate(177.198369 282.31125)scale(0.12 -0.12)\">\r\n",
       "      <use xlink:href=\"#DejaVuSans-40\"/>\r\n",
       "      <use x=\"39.013672\" xlink:href=\"#DejaVuSans-97\"/>\r\n",
       "      <use x=\"100.292969\" xlink:href=\"#DejaVuSans-98\"/>\r\n",
       "      <use x=\"163.769531\" xlink:href=\"#DejaVuSans-115\"/>\r\n",
       "      <use x=\"215.869141\" xlink:href=\"#DejaVuSans-41\"/>\r\n",
       "     </g>\r\n",
       "    </g>\r\n",
       "   </g>\r\n",
       "   <g id=\"text_6\">\r\n",
       "    <g clip-path=\"url(#pb55431ef3d)\">\r\n",
       "     <!-- (relu) -->\r\n",
       "     <defs>\r\n",
       "      <path d=\"M 41.109375 46.296875 \r\n",
       "Q 39.59375 47.171875 37.8125 47.578125 \r\n",
       "Q 36.03125 48 33.890625 48 \r\n",
       "Q 26.265625 48 22.1875 43.046875 \r\n",
       "Q 18.109375 38.09375 18.109375 28.8125 \r\n",
       "L 18.109375 0 \r\n",
       "L 9.078125 0 \r\n",
       "L 9.078125 54.6875 \r\n",
       "L 18.109375 54.6875 \r\n",
       "L 18.109375 46.1875 \r\n",
       "Q 20.953125 51.171875 25.484375 53.578125 \r\n",
       "Q 30.03125 56 36.53125 56 \r\n",
       "Q 37.453125 56 38.578125 55.875 \r\n",
       "Q 39.703125 55.765625 41.0625 55.515625 \r\n",
       "z\r\n",
       "\" id=\"DejaVuSans-114\"/>\r\n",
       "      <path d=\"M 56.203125 29.59375 \r\n",
       "L 56.203125 25.203125 \r\n",
       "L 14.890625 25.203125 \r\n",
       "Q 15.484375 15.921875 20.484375 11.0625 \r\n",
       "Q 25.484375 6.203125 34.421875 6.203125 \r\n",
       "Q 39.59375 6.203125 44.453125 7.46875 \r\n",
       "Q 49.3125 8.734375 54.109375 11.28125 \r\n",
       "L 54.109375 2.78125 \r\n",
       "Q 49.265625 0.734375 44.1875 -0.34375 \r\n",
       "Q 39.109375 -1.421875 33.890625 -1.421875 \r\n",
       "Q 20.796875 -1.421875 13.15625 6.1875 \r\n",
       "Q 5.515625 13.8125 5.515625 26.8125 \r\n",
       "Q 5.515625 40.234375 12.765625 48.109375 \r\n",
       "Q 20.015625 56 32.328125 56 \r\n",
       "Q 43.359375 56 49.78125 48.890625 \r\n",
       "Q 56.203125 41.796875 56.203125 29.59375 \r\n",
       "z\r\n",
       "M 47.21875 32.234375 \r\n",
       "Q 47.125 39.59375 43.09375 43.984375 \r\n",
       "Q 39.0625 48.390625 32.421875 48.390625 \r\n",
       "Q 24.90625 48.390625 20.390625 44.140625 \r\n",
       "Q 15.875 39.890625 15.1875 32.171875 \r\n",
       "z\r\n",
       "\" id=\"DejaVuSans-101\"/>\r\n",
       "      <path d=\"M 9.421875 75.984375 \r\n",
       "L 18.40625 75.984375 \r\n",
       "L 18.40625 0 \r\n",
       "L 9.421875 0 \r\n",
       "z\r\n",
       "\" id=\"DejaVuSans-108\"/>\r\n",
       "      <path d=\"M 8.5 21.578125 \r\n",
       "L 8.5 54.6875 \r\n",
       "L 17.484375 54.6875 \r\n",
       "L 17.484375 21.921875 \r\n",
       "Q 17.484375 14.15625 20.5 10.265625 \r\n",
       "Q 23.53125 6.390625 29.59375 6.390625 \r\n",
       "Q 36.859375 6.390625 41.078125 11.03125 \r\n",
       "Q 45.3125 15.671875 45.3125 23.6875 \r\n",
       "L 45.3125 54.6875 \r\n",
       "L 54.296875 54.6875 \r\n",
       "L 54.296875 0 \r\n",
       "L 45.3125 0 \r\n",
       "L 45.3125 8.40625 \r\n",
       "Q 42.046875 3.421875 37.71875 1 \r\n",
       "Q 33.40625 -1.421875 27.6875 -1.421875 \r\n",
       "Q 18.265625 -1.421875 13.375 4.4375 \r\n",
       "Q 8.5 10.296875 8.5 21.578125 \r\n",
       "z\r\n",
       "M 31.109375 56 \r\n",
       "z\r\n",
       "\" id=\"DejaVuSans-117\"/>\r\n",
       "     </defs>\r\n",
       "     <g transform=\"translate(208.408656 457.021994)scale(0.12 -0.12)\">\r\n",
       "      <use xlink:href=\"#DejaVuSans-40\"/>\r\n",
       "      <use x=\"39.013672\" xlink:href=\"#DejaVuSans-114\"/>\r\n",
       "      <use x=\"80.095703\" xlink:href=\"#DejaVuSans-101\"/>\r\n",
       "      <use x=\"141.619141\" xlink:href=\"#DejaVuSans-108\"/>\r\n",
       "      <use x=\"169.402344\" xlink:href=\"#DejaVuSans-117\"/>\r\n",
       "      <use x=\"232.78125\" xlink:href=\"#DejaVuSans-41\"/>\r\n",
       "     </g>\r\n",
       "    </g>\r\n",
       "   </g>\r\n",
       "   <g id=\"text_7\">\r\n",
       "    <g clip-path=\"url(#pb55431ef3d)\">\r\n",
       "     <!-- ( - ) -->\r\n",
       "     <defs>\r\n",
       "      <path d=\"M 4.890625 31.390625 \r\n",
       "L 31.203125 31.390625 \r\n",
       "L 31.203125 23.390625 \r\n",
       "L 4.890625 23.390625 \r\n",
       "z\r\n",
       "\" id=\"DejaVuSans-45\"/>\r\n",
       "     </defs>\r\n",
       "     <g transform=\"translate(214.056156 107.600506)scale(0.12 -0.12)\">\r\n",
       "      <use xlink:href=\"#DejaVuSans-40\"/>\r\n",
       "      <use x=\"39.013672\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
       "      <use x=\"70.800781\" xlink:href=\"#DejaVuSans-45\"/>\r\n",
       "      <use x=\"106.884766\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
       "      <use x=\"138.671875\" xlink:href=\"#DejaVuSans-41\"/>\r\n",
       "     </g>\r\n",
       "    </g>\r\n",
       "   </g>\r\n",
       "   <g id=\"text_8\">\r\n",
       "    <g clip-path=\"url(#pb55431ef3d)\">\r\n",
       "     <!-- (abs) -->\r\n",
       "     <g transform=\"translate(241.647693 407.104638)scale(0.12 -0.12)\">\r\n",
       "      <use xlink:href=\"#DejaVuSans-40\"/>\r\n",
       "      <use x=\"39.013672\" xlink:href=\"#DejaVuSans-97\"/>\r\n",
       "      <use x=\"100.292969\" xlink:href=\"#DejaVuSans-98\"/>\r\n",
       "      <use x=\"163.769531\" xlink:href=\"#DejaVuSans-115\"/>\r\n",
       "      <use x=\"215.869141\" xlink:href=\"#DejaVuSans-41\"/>\r\n",
       "     </g>\r\n",
       "    </g>\r\n",
       "   </g>\r\n",
       "   <g id=\"text_9\">\r\n",
       "    <g clip-path=\"url(#pb55431ef3d)\">\r\n",
       "     <!-- (tanh) -->\r\n",
       "     <g transform=\"translate(238.625193 157.517862)scale(0.12 -0.12)\">\r\n",
       "      <use xlink:href=\"#DejaVuSans-40\"/>\r\n",
       "      <use x=\"39.013672\" xlink:href=\"#DejaVuSans-116\"/>\r\n",
       "      <use x=\"78.222656\" xlink:href=\"#DejaVuSans-97\"/>\r\n",
       "      <use x=\"139.501953\" xlink:href=\"#DejaVuSans-110\"/>\r\n",
       "      <use x=\"202.880859\" xlink:href=\"#DejaVuSans-104\"/>\r\n",
       "      <use x=\"266.259766\" xlink:href=\"#DejaVuSans-41\"/>\r\n",
       "     </g>\r\n",
       "    </g>\r\n",
       "   </g>\r\n",
       "   <g id=\"text_10\">\r\n",
       "    <g clip-path=\"url(#pb55431ef3d)\">\r\n",
       "     <!-- ( + ) -->\r\n",
       "     <g transform=\"translate(275.642355 457.021994)scale(0.12 -0.12)\">\r\n",
       "      <use xlink:href=\"#DejaVuSans-40\"/>\r\n",
       "      <use x=\"39.013672\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
       "      <use x=\"70.800781\" xlink:href=\"#DejaVuSans-43\"/>\r\n",
       "      <use x=\"154.589844\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
       "      <use x=\"186.376953\" xlink:href=\"#DejaVuSans-41\"/>\r\n",
       "     </g>\r\n",
       "    </g>\r\n",
       "   </g>\r\n",
       "   <g id=\"text_11\">\r\n",
       "    <g clip-path=\"url(#pb55431ef3d)\">\r\n",
       "     <!-- (gau) -->\r\n",
       "     <defs>\r\n",
       "      <path d=\"M 45.40625 27.984375 \r\n",
       "Q 45.40625 37.75 41.375 43.109375 \r\n",
       "Q 37.359375 48.484375 30.078125 48.484375 \r\n",
       "Q 22.859375 48.484375 18.828125 43.109375 \r\n",
       "Q 14.796875 37.75 14.796875 27.984375 \r\n",
       "Q 14.796875 18.265625 18.828125 12.890625 \r\n",
       "Q 22.859375 7.515625 30.078125 7.515625 \r\n",
       "Q 37.359375 7.515625 41.375 12.890625 \r\n",
       "Q 45.40625 18.265625 45.40625 27.984375 \r\n",
       "z\r\n",
       "M 54.390625 6.78125 \r\n",
       "Q 54.390625 -7.171875 48.1875 -13.984375 \r\n",
       "Q 42 -20.796875 29.203125 -20.796875 \r\n",
       "Q 24.46875 -20.796875 20.265625 -20.09375 \r\n",
       "Q 16.0625 -19.390625 12.109375 -17.921875 \r\n",
       "L 12.109375 -9.1875 \r\n",
       "Q 16.0625 -11.328125 19.921875 -12.34375 \r\n",
       "Q 23.78125 -13.375 27.78125 -13.375 \r\n",
       "Q 36.625 -13.375 41.015625 -8.765625 \r\n",
       "Q 45.40625 -4.15625 45.40625 5.171875 \r\n",
       "L 45.40625 9.625 \r\n",
       "Q 42.625 4.78125 38.28125 2.390625 \r\n",
       "Q 33.9375 0 27.875 0 \r\n",
       "Q 17.828125 0 11.671875 7.65625 \r\n",
       "Q 5.515625 15.328125 5.515625 27.984375 \r\n",
       "Q 5.515625 40.671875 11.671875 48.328125 \r\n",
       "Q 17.828125 56 27.875 56 \r\n",
       "Q 33.9375 56 38.28125 53.609375 \r\n",
       "Q 42.625 51.21875 45.40625 46.390625 \r\n",
       "L 45.40625 54.6875 \r\n",
       "L 54.390625 54.6875 \r\n",
       "z\r\n",
       "\" id=\"DejaVuSans-103\"/>\r\n",
       "     </defs>\r\n",
       "     <g transform=\"translate(273.19548 107.600506)scale(0.12 -0.12)\">\r\n",
       "      <use xlink:href=\"#DejaVuSans-40\"/>\r\n",
       "      <use x=\"39.013672\" xlink:href=\"#DejaVuSans-103\"/>\r\n",
       "      <use x=\"102.490234\" xlink:href=\"#DejaVuSans-97\"/>\r\n",
       "      <use x=\"163.769531\" xlink:href=\"#DejaVuSans-117\"/>\r\n",
       "      <use x=\"227.148438\" xlink:href=\"#DejaVuSans-41\"/>\r\n",
       "     </g>\r\n",
       "    </g>\r\n",
       "   </g>\r\n",
       "   <g id=\"text_12\">\r\n",
       "    <g clip-path=\"url(#pb55431ef3d)\">\r\n",
       "     <!-- (abs) -->\r\n",
       "     <g transform=\"translate(306.097017 407.104638)scale(0.12 -0.12)\">\r\n",
       "      <use xlink:href=\"#DejaVuSans-40\"/>\r\n",
       "      <use x=\"39.013672\" xlink:href=\"#DejaVuSans-97\"/>\r\n",
       "      <use x=\"100.292969\" xlink:href=\"#DejaVuSans-98\"/>\r\n",
       "      <use x=\"163.769531\" xlink:href=\"#DejaVuSans-115\"/>\r\n",
       "      <use x=\"215.869141\" xlink:href=\"#DejaVuSans-41\"/>\r\n",
       "     </g>\r\n",
       "    </g>\r\n",
       "   </g>\r\n",
       "   <g id=\"text_13\">\r\n",
       "    <g clip-path=\"url(#pb55431ef3d)\">\r\n",
       "     <!-- (gau) -->\r\n",
       "     <g transform=\"translate(305.420142 157.517862)scale(0.12 -0.12)\">\r\n",
       "      <use xlink:href=\"#DejaVuSans-40\"/>\r\n",
       "      <use x=\"39.013672\" xlink:href=\"#DejaVuSans-103\"/>\r\n",
       "      <use x=\"102.490234\" xlink:href=\"#DejaVuSans-97\"/>\r\n",
       "      <use x=\"163.769531\" xlink:href=\"#DejaVuSans-117\"/>\r\n",
       "      <use x=\"227.148438\" xlink:href=\"#DejaVuSans-41\"/>\r\n",
       "     </g>\r\n",
       "    </g>\r\n",
       "   </g>\r\n",
       "   <g id=\"text_14\">\r\n",
       "    <g clip-path=\"url(#pb55431ef3d)\">\r\n",
       "     <!-- (sig) -->\r\n",
       "     <defs>\r\n",
       "      <path d=\"M 9.421875 54.6875 \r\n",
       "L 18.40625 54.6875 \r\n",
       "L 18.40625 0 \r\n",
       "L 9.421875 0 \r\n",
       "z\r\n",
       "M 9.421875 75.984375 \r\n",
       "L 18.40625 75.984375 \r\n",
       "L 18.40625 64.59375 \r\n",
       "L 9.421875 64.59375 \r\n",
       "z\r\n",
       "\" id=\"DejaVuSans-105\"/>\r\n",
       "     </defs>\r\n",
       "     <g transform=\"translate(340.331679 282.31125)scale(0.12 -0.12)\">\r\n",
       "      <use xlink:href=\"#DejaVuSans-40\"/>\r\n",
       "      <use x=\"39.013672\" xlink:href=\"#DejaVuSans-115\"/>\r\n",
       "      <use x=\"91.113281\" xlink:href=\"#DejaVuSans-105\"/>\r\n",
       "      <use x=\"118.896484\" xlink:href=\"#DejaVuSans-103\"/>\r\n",
       "      <use x=\"182.373047\" xlink:href=\"#DejaVuSans-41\"/>\r\n",
       "     </g>\r\n",
       "    </g>\r\n",
       "   </g>\r\n",
       "   <g id=\"text_15\">\r\n",
       "    <g clip-path=\"url(#pb55431ef3d)\">\r\n",
       "     <!-- (gau) -->\r\n",
       "     <g transform=\"translate(369.869466 282.31125)scale(0.12 -0.12)\">\r\n",
       "      <use xlink:href=\"#DejaVuSans-40\"/>\r\n",
       "      <use x=\"39.013672\" xlink:href=\"#DejaVuSans-103\"/>\r\n",
       "      <use x=\"102.490234\" xlink:href=\"#DejaVuSans-97\"/>\r\n",
       "      <use x=\"163.769531\" xlink:href=\"#DejaVuSans-117\"/>\r\n",
       "      <use x=\"227.148438\" xlink:href=\"#DejaVuSans-41\"/>\r\n",
       "     </g>\r\n",
       "    </g>\r\n",
       "   </g>\r\n",
       "   <g id=\"text_16\">\r\n",
       "    <g clip-path=\"url(#pb55431ef3d)\">\r\n",
       "     <!-- (tanh) -->\r\n",
       "     <g transform=\"translate(399.748503 282.31125)scale(0.12 -0.12)\">\r\n",
       "      <use xlink:href=\"#DejaVuSans-40\"/>\r\n",
       "      <use x=\"39.013672\" xlink:href=\"#DejaVuSans-116\"/>\r\n",
       "      <use x=\"78.222656\" xlink:href=\"#DejaVuSans-97\"/>\r\n",
       "      <use x=\"139.501953\" xlink:href=\"#DejaVuSans-110\"/>\r\n",
       "      <use x=\"202.880859\" xlink:href=\"#DejaVuSans-104\"/>\r\n",
       "      <use x=\"266.259766\" xlink:href=\"#DejaVuSans-41\"/>\r\n",
       "     </g>\r\n",
       "    </g>\r\n",
       "   </g>\r\n",
       "   <g id=\"text_17\">\r\n",
       "    <g clip-path=\"url(#pb55431ef3d)\">\r\n",
       "     <!-- ( + ) -->\r\n",
       "     <g transform=\"translate(436.765665 282.31125)scale(0.12 -0.12)\">\r\n",
       "      <use xlink:href=\"#DejaVuSans-40\"/>\r\n",
       "      <use x=\"39.013672\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
       "      <use x=\"70.800781\" xlink:href=\"#DejaVuSans-43\"/>\r\n",
       "      <use x=\"154.589844\" xlink:href=\"#DejaVuSans-32\"/>\r\n",
       "      <use x=\"186.376953\" xlink:href=\"#DejaVuSans-41\"/>\r\n",
       "     </g>\r\n",
       "    </g>\r\n",
       "   </g>\r\n",
       "   <g id=\"text_18\">\r\n",
       "    <g clip-path=\"url(#pb55431ef3d)\">\r\n",
       "     <!-- (0/1) -->\r\n",
       "     <defs>\r\n",
       "      <path d=\"M 31.78125 66.40625 \r\n",
       "Q 24.171875 66.40625 20.328125 58.90625 \r\n",
       "Q 16.5 51.421875 16.5 36.375 \r\n",
       "Q 16.5 21.390625 20.328125 13.890625 \r\n",
       "Q 24.171875 6.390625 31.78125 6.390625 \r\n",
       "Q 39.453125 6.390625 43.28125 13.890625 \r\n",
       "Q 47.125 21.390625 47.125 36.375 \r\n",
       "Q 47.125 51.421875 43.28125 58.90625 \r\n",
       "Q 39.453125 66.40625 31.78125 66.40625 \r\n",
       "z\r\n",
       "M 31.78125 74.21875 \r\n",
       "Q 44.046875 74.21875 50.515625 64.515625 \r\n",
       "Q 56.984375 54.828125 56.984375 36.375 \r\n",
       "Q 56.984375 17.96875 50.515625 8.265625 \r\n",
       "Q 44.046875 -1.421875 31.78125 -1.421875 \r\n",
       "Q 19.53125 -1.421875 13.0625 8.265625 \r\n",
       "Q 6.59375 17.96875 6.59375 36.375 \r\n",
       "Q 6.59375 54.828125 13.0625 64.515625 \r\n",
       "Q 19.53125 74.21875 31.78125 74.21875 \r\n",
       "z\r\n",
       "\" id=\"DejaVuSans-48\"/>\r\n",
       "      <path d=\"M 25.390625 72.90625 \r\n",
       "L 33.6875 72.90625 \r\n",
       "L 8.296875 -9.28125 \r\n",
       "L 0 -9.28125 \r\n",
       "z\r\n",
       "\" id=\"DejaVuSans-47\"/>\r\n",
       "      <path d=\"M 12.40625 8.296875 \r\n",
       "L 28.515625 8.296875 \r\n",
       "L 28.515625 63.921875 \r\n",
       "L 10.984375 60.40625 \r\n",
       "L 10.984375 69.390625 \r\n",
       "L 28.421875 72.90625 \r\n",