Newer
Older
18001
18002
18003
18004
18005
18006
18007
18008
18009
18010
18011
18012
18013
18014
18015
18016
18017
18018
18019
18020
18021
18022
18023
18024
18025
18026
18027
18028
18029
18030
18031
18032
18033
18034
18035
18036
18037
18038
18039
18040
18041
18042
18043
18044
18045
18046
18047
18048
18049
18050
18051
18052
18053
18054
18055
18056
18057
18058
18059
18060
18061
18062
18063
18064
18065
18066
18067
18068
18069
18070
18071
18072
18073
18074
18075
18076
18077
18078
18079
18080
18081
18082
18083
18084
18085
18086
18087
18088
18089
18090
18091
18092
18093
18094
18095
18096
18097
18098
18099
18100
18101
18102
18103
18104
18105
18106
18107
18108
18109
18110
18111
18112
18113
18114
18115
18116
18117
18118
18119
18120
18121
18122
18123
18124
18125
18126
18127
18128
18129
18130
18131
18132
18133
18134
18135
18136
18137
18138
18139
18140
18141
18142
18143
18144
18145
18146
18147
18148
18149
18150
18151
18152
18153
18154
18155
18156
18157
18158
18159
18160
18161
18162
18163
18164
18165
18166
18167
18168
18169
18170
18171
18172
18173
18174
18175
18176
18177
18178
18179
18180
18181
18182
18183
18184
18185
18186
18187
18188
18189
18190
18191
18192
18193
18194
18195
18196
18197
18198
18199
18200
18201
18202
18203
18204
18205
18206
18207
18208
18209
18210
18211
18212
18213
18214
18215
18216
18217
18218
18219
18220
18221
18222
18223
18224
18225
18226
18227
18228
18229
18230
18231
18232
18233
18234
18235
18236
18237
18238
18239
18240
18241
18242
18243
18244
18245
18246
18247
18248
18249
18250
18251
18252
18253
18254
18255
18256
18257
18258
18259
18260
18261
18262
18263
18264
18265
18266
18267
18268
18269
18270
18271
18272
18273
18274
18275
18276
18277
18278
18279
18280
18281
18282
18283
18284
18285
18286
18287
18288
18289
18290
18291
18292
18293
18294
18295
18296
18297
18298
18299
18300
18301
18302
18303
18304
18305
18306
18307
18308
18309
18310
18311
18312
18313
18314
18315
18316
18317
18318
18319
18320
18321
18322
18323
18324
18325
18326
18327
18328
18329
18330
18331
18332
18333
18334
18335
18336
18337
18338
18339
18340
18341
18342
18343
18344
18345
18346
18347
18348
18349
18350
18351
18352
18353
18354
18355
18356
18357
18358
18359
18360
18361
18362
18363
18364
18365
18366
18367
18368
18369
18370
18371
18372
18373
18374
18375
18376
18377
18378
18379
18380
18381
18382
18383
18384
18385
18386
18387
18388
18389
18390
18391
18392
18393
18394
18395
18396
18397
18398
18399
18400
18401
18402
18403
18404
18405
18406
18407
18408
18409
18410
18411
18412
18413
18414
18415
18416
18417
18418
18419
18420
18421
18422
18423
18424
18425
18426
18427
18428
18429
18430
18431
18432
18433
18434
18435
18436
18437
18438
18439
18440
18441
18442
18443
18444
18445
18446
18447
18448
18449
18450
18451
18452
18453
18454
18455
18456
18457
18458
18459
18460
18461
18462
18463
18464
18465
18466
18467
18468
18469
18470
18471
18472
18473
18474
18475
18476
18477
18478
18479
18480
18481
18482
18483
18484
18485
18486
18487
18488
18489
18490
18491
18492
18493
18494
18495
18496
18497
18498
18499
18500
18501
18502
18503
18504
18505
18506
18507
18508
18509
18510
18511
18512
18513
18514
18515
18516
18517
18518
18519
18520
18521
18522
18523
18524
18525
18526
18527
18528
18529
18530
18531
18532
18533
18534
18535
18536
18537
18538
18539
18540
18541
18542
18543
18544
18545
18546
18547
18548
18549
18550
18551
18552
18553
18554
18555
18556
18557
18558
18559
18560
18561
18562
18563
18564
18565
18566
18567
18568
18569
18570
18571
18572
18573
18574
18575
18576
18577
18578
18579
18580
18581
18582
18583
18584
18585
18586
18587
18588
18589
18590
18591
18592
18593
18594
18595
18596
18597
18598
18599
18600
18601
18602
18603
18604
18605
18606
18607
18608
18609
18610
18611
18612
18613
18614
18615
18616
18617
18618
18619
18620
18621
18622
18623
18624
18625
18626
18627
18628
18629
18630
18631
18632
18633
18634
18635
18636
18637
18638
18639
18640
18641
18642
18643
18644
18645
18646
18647
18648
18649
18650
18651
18652
18653
18654
18655
18656
18657
18658
18659
18660
18661
18662
18663
18664
18665
18666
18667
18668
18669
18670
18671
18672
18673
18674
18675
18676
18677
18678
18679
18680
18681
18682
18683
18684
18685
18686
18687
18688
18689
18690
18691
18692
18693
18694
18695
18696
18697
18698
18699
18700
18701
18702
18703
18704
18705
18706
18707
18708
18709
18710
18711
18712
18713
18714
18715
18716
18717
18718
18719
18720
18721
18722
18723
18724
18725
18726
18727
18728
18729
18730
18731
18732
18733
18734
18735
18736
18737
18738
18739
18740
18741
18742
18743
18744
18745
18746
18747
18748
18749
18750
18751
18752
18753
18754
18755
18756
18757
18758
18759
18760
18761
18762
18763
18764
18765
18766
18767
18768
18769
18770
18771
18772
18773
18774
18775
18776
18777
18778
18779
18780
18781
18782
18783
18784
18785
18786
18787
18788
18789
18790
18791
18792
18793
18794
18795
18796
18797
18798
18799
18800
18801
18802
18803
18804
18805
18806
18807
18808
18809
18810
18811
18812
18813
18814
18815
18816
18817
18818
18819
18820
18821
18822
18823
18824
18825
18826
18827
18828
18829
18830
18831
18832
18833
18834
18835
18836
18837
18838
18839
18840
18841
18842
18843
18844
18845
18846
18847
18848
18849
18850
18851
18852
18853
18854
18855
18856
18857
18858
18859
18860
18861
18862
18863
18864
18865
18866
18867
18868
18869
18870
18871
18872
18873
18874
18875
18876
18877
18878
18879
18880
18881
18882
18883
18884
18885
18886
18887
18888
18889
18890
18891
18892
18893
18894
18895
18896
18897
18898
18899
18900
18901
18902
18903
18904
18905
18906
18907
18908
18909
18910
18911
18912
18913
18914
18915
18916
18917
18918
18919
18920
18921
18922
18923
18924
18925
18926
18927
18928
18929
18930
18931
18932
18933
18934
18935
18936
18937
18938
18939
18940
18941
18942
18943
18944
18945
18946
18947
18948
18949
18950
18951
18952
18953
18954
18955
18956
18957
18958
18959
18960
18961
18962
18963
18964
18965
18966
18967
18968
18969
18970
18971
18972
18973
18974
18975
18976
18977
18978
18979
18980
18981
18982
18983
18984
18985
18986
18987
18988
18989
18990
18991
18992
18993
18994
18995
18996
18997
18998
18999
19000
" <g id=\"patch_39\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 344.773578 416.404105 \r\n",
"Q 379.146378 355.231467 412.971495 295.033531 \r\n",
"\" style=\"fill:none;stroke:#277f8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 410.009055 297.039509 \r\n",
"L 412.971495 295.033531 \r\n",
"L 412.798814 298.60707 \r\n",
"L 410.009055 297.039509 \r\n",
"z\r\n",
"\" style=\"fill:#277f8e;fill-opacity:0.75;stroke:#277f8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_40\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 344.773578 243.208153 \r\n",
"Q 377.544846 262.64896 409.354547 281.519339 \r\n",
"\" style=\"fill:none;stroke:#277f8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 407.41871 278.510595 \r\n",
"L 409.354547 281.519339 \r\n",
"L 405.78605 281.262762 \r\n",
"L 407.41871 278.510595 \r\n",
"z\r\n",
"\" style=\"fill:#277f8e;fill-opacity:0.75;stroke:#277f8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_41\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 344.773578 156.610177 \r\n",
"Q 379.146378 217.782815 412.971495 277.980751 \r\n",
"\" style=\"fill:none;stroke:#277f8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 412.798814 274.407212 \r\n",
"L 412.971495 277.980751 \r\n",
"L 410.009055 275.974773 \r\n",
"L 412.798814 274.407212 \r\n",
"z\r\n",
"\" style=\"fill:#277f8e;fill-opacity:0.75;stroke:#277f8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_42\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 381.268018 104.651391 \r\n",
"Q 398.66352 191.335059 415.839042 276.922547 \r\n",
"\" style=\"fill:none;stroke:#277f8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 416.77815 273.47029 \r\n",
"L 415.839042 276.922547 \r\n",
"L 413.640701 274.099907 \r\n",
"L 416.77815 273.47029 \r\n",
"z\r\n",
"\" style=\"fill:#277f8e;fill-opacity:0.75;stroke:#277f8e;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_43\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 125.806933 286.507141 \r\n",
"Q 250.01171 198.089162 373.305668 110.31957 \r\n",
"\" style=\"fill:none;stroke:#21918c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 369.770851 110.871905 \r\n",
"L 373.305668 110.31957 \r\n",
"L 371.626646 113.478824 \r\n",
"L 369.770851 110.871905 \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_44\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 162.301373 104.651391 \r\n",
"Q 267.456216 104.651391 371.493024 104.651391 \r\n",
"\" style=\"fill:none;stroke:#21918c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 368.293024 103.051391 \r\n",
"L 371.493024 104.651391 \r\n",
"L 368.293024 106.251391 \r\n",
"L 368.293024 103.051391 \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_45\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 235.290255 104.651391 \r\n",
"Q 303.951213 104.651391 371.494137 104.651391 \r\n",
"\" style=\"fill:none;stroke:#21918c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 368.294137 103.051391 \r\n",
"L 371.494137 104.651391 \r\n",
"L 368.294137 106.251391 \r\n",
"L 368.294137 103.051391 \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_46\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 308.279137 468.362891 \r\n",
"Q 343.921859 290.751348 379.344602 114.235985 \r\n",
"\" style=\"fill:none;stroke:#21918c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 377.146261 117.058625 \r\n",
"L 379.344602 114.235985 \r\n",
"L 380.283709 117.688242 \r\n",
"L 377.146261 117.058625 \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_47\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 344.773578 416.404105 \r\n",
"Q 360.531629 438.839556 375.647075 460.360099 \r\n",
"\" style=\"fill:none;stroke:#21918c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 375.117137 456.821856 \r\n",
"L 375.647075 460.360099 \r\n",
"L 372.498517 458.661103 \r\n",
"L 375.117137 456.821856 \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_48\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 344.773578 329.806129 \r\n",
"Q 362.327784 221.50435 379.703108 114.306202 \r\n",
"\" style=\"fill:none;stroke:#21918c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 377.611727 117.208981 \r\n",
"L 379.703108 114.306202 \r\n",
"L 380.770503 117.720974 \r\n",
"L 377.611727 117.208981 \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_49\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 162.301373 468.362891 \r\n",
"Q 250.810249 359.150681 338.615184 250.807072 \r\n",
"\" style=\"fill:none;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 335.357348 252.285756 \r\n",
"L 338.615184 250.807072 \r\n",
"L 337.843429 254.300551 \r\n",
"L 335.357348 252.285756 \r\n",
"z\r\n",
"\" style=\"fill:#1fa187;fill-opacity:0.75;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_50\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 198.795814 416.404105 \r\n",
"Q 267.456772 416.404105 334.999697 416.404105 \r\n",
"\" style=\"fill:none;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 331.799697 414.804105 \r\n",
"L 334.999697 416.404105 \r\n",
"L 331.799697 418.004105 \r\n",
"L 331.799697 414.804105 \r\n",
"z\r\n",
"\" style=\"fill:#1fa187;fill-opacity:0.75;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_51\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 235.290255 104.651391 \r\n",
"Q 288.597303 256.442701 341.533894 407.179136 \r\n",
"\" style=\"fill:none;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 341.983196 403.629752 \r\n",
"L 341.533894 407.179136 \r\n",
"L 338.963968 404.690064 \r\n",
"L 341.983196 403.629752 \r\n",
"z\r\n",
"\" style=\"fill:#1fa187;fill-opacity:0.75;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_52\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 271.784696 351.455623 \r\n",
"Q 305.043774 381.050907 337.467619 409.902965 \r\n",
"\" style=\"fill:none;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 336.140657 406.580441 \r\n",
"L 337.467619 409.902965 \r\n",
"L 334.013422 408.97102 \r\n",
"L 336.140657 406.580441 \r\n",
"z\r\n",
"\" style=\"fill:#1fa187;fill-opacity:0.75;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_53\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 308.279137 468.362891 \r\n",
"Q 324.037189 445.92744 339.152634 424.406897 \r\n",
"\" style=\"fill:none;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 336.004077 426.105893 \r\n",
"L 339.152634 424.406897 \r\n",
"L 338.622696 427.94514 \r\n",
"L 336.004077 426.105893 \r\n",
"z\r\n",
"\" style=\"fill:#1fa187;fill-opacity:0.75;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_54\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 308.279137 468.362891 \r\n",
"Q 325.423216 403.272757 342.282528 339.263783 \r\n",
"\" style=\"fill:none;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 339.920247 341.95072 \r\n",
"L 342.282528 339.263783 \r\n",
"L 343.014709 342.76577 \r\n",
"L 339.920247 341.95072 \r\n",
"z\r\n",
"\" style=\"fill:#1fa187;fill-opacity:0.75;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_55\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 308.279137 468.362891 \r\n",
"Q 325.833344 360.061112 343.208667 252.862964 \r\n",
"\" style=\"fill:none;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 341.117286 255.765743 \r\n",
"L 343.208667 252.862964 \r\n",
"L 344.276062 256.277736 \r\n",
"L 341.117286 255.765743 \r\n",
"z\r\n",
"\" style=\"fill:#1fa187;fill-opacity:0.75;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_56\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 308.279137 468.362891 \r\n",
"Q 326.022676 316.789212 343.636224 166.325985 \r\n",
"\" style=\"fill:none;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 341.675017 169.318253 \r\n",
"L 343.636224 166.325985 \r\n",
"L 344.853314 169.690311 \r\n",
"L 341.675017 169.318253 \r\n",
"z\r\n",
"\" style=\"fill:#1fa187;fill-opacity:0.75;stroke:#1fa187;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_57\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 198.795814 416.404105 \r\n",
"Q 249.626641 440.527487 299.447409 464.171514 \r\n",
"\" style=\"fill:none;stroke:#2db27d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 297.24245 461.354041 \r\n",
"L 299.447409 464.171514 \r\n",
"L 295.870455 464.244997 \r\n",
"L 297.24245 461.354041 \r\n",
"z\r\n",
"\" style=\"fill:#2db27d;fill-opacity:0.75;stroke:#2db27d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_58\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 235.290255 104.651391 \r\n",
"Q 270.932977 282.262934 306.35572 458.778297 \r\n",
"\" style=\"fill:none;stroke:#2db27d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 307.294827 455.32604 \r\n",
"L 306.35572 458.778297 \r\n",
"L 304.157379 455.955657 \r\n",
"L 307.294827 455.32604 \r\n",
"z\r\n",
"\" style=\"fill:#2db27d;fill-opacity:0.75;stroke:#2db27d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_59\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 235.290255 104.651391 \r\n",
"Q 267.456772 104.651391 298.505256 104.651391 \r\n",
"\" style=\"fill:none;stroke:#2db27d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 295.305256 103.051391 \r\n",
"L 298.505256 104.651391 \r\n",
"L 295.305256 106.251391 \r\n",
"L 295.305256 103.051391 \r\n",
"z\r\n",
"\" style=\"fill:#2db27d;fill-opacity:0.75;stroke:#2db27d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_60\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 271.784696 286.507141 \r\n",
"Q 289.180197 373.190809 306.35572 458.778297 \r\n",
"\" style=\"fill:none;stroke:#2db27d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 307.294827 455.32604 \r\n",
"L 306.35572 458.778297 \r\n",
"L 304.157379 455.955657 \r\n",
"L 307.294827 455.32604 \r\n",
"z\r\n",
"\" style=\"fill:#2db27d;fill-opacity:0.75;stroke:#2db27d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_61\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 271.784696 221.558659 \r\n",
"Q 288.741669 167.238236 305.365486 113.985056 \r\n",
"\" style=\"fill:none;stroke:#2db27d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 302.884623 116.562908 \r\n",
"L 305.365486 113.985056 \r\n",
"L 305.93925 117.516458 \r\n",
"L 302.884623 116.562908 \r\n",
"z\r\n",
"\" style=\"fill:#2db27d;fill-opacity:0.75;stroke:#2db27d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_62\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 125.806933 286.507141 \r\n",
"Q 194.467891 286.507141 262.010815 286.507141 \r\n",
"\" style=\"fill:none;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 258.810815 284.907141 \r\n",
"L 262.010815 286.507141 \r\n",
"L 258.810815 288.107141 \r\n",
"L 258.810815 284.907141 \r\n",
"z\r\n",
"\" style=\"fill:#4ac16d;fill-opacity:0.75;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_63\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 198.795814 416.404105 \r\n",
"Q 232.054893 386.808821 264.478737 357.956763 \r\n",
"\" style=\"fill:none;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 261.02454 358.888708 \r\n",
"L 264.478737 357.956763 \r\n",
"L 263.151775 361.279288 \r\n",
"L 261.02454 358.888708 \r\n",
"z\r\n",
"\" style=\"fill:#4ac16d;fill-opacity:0.75;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_64\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 235.290255 468.362891 \r\n",
"Q 251.048307 445.92744 266.163752 424.406897 \r\n",
"\" style=\"fill:none;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 263.015195 426.105893 \r\n",
"L 266.163752 424.406897 \r\n",
"L 265.633815 427.94514 \r\n",
"L 263.015195 426.105893 \r\n",
"z\r\n",
"\" style=\"fill:#4ac16d;fill-opacity:0.75;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_65\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 235.290255 104.651391 \r\n",
"Q 252.904046 223.769757 270.354294 341.782116 \r\n",
"\" style=\"fill:none;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 271.468996 338.382492 \r\n",
"L 270.354294 341.782116 \r\n",
"L 268.303416 338.85058 \r\n",
"L 271.468996 338.382492 \r\n",
"z\r\n",
"\" style=\"fill:#4ac16d;fill-opacity:0.75;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_66\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 235.290255 104.651391 \r\n",
"Q 252.685757 191.335059 269.861279 276.922547 \r\n",
"\" style=\"fill:none;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 270.800387 273.47029 \r\n",
"L 269.861279 276.922547 \r\n",
"L 267.662938 274.099907 \r\n",
"L 270.800387 273.47029 \r\n",
"z\r\n",
"\" style=\"fill:#4ac16d;fill-opacity:0.75;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_67\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 235.290255 104.651391 \r\n",
"Q 252.247229 158.971814 268.871046 212.224994 \r\n",
"\" style=\"fill:none;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 269.444809 208.693592 \r\n",
"L 268.871046 212.224994 \r\n",
"L 266.390183 209.647142 \r\n",
"L 269.444809 208.693592 \r\n",
"z\r\n",
"\" style=\"fill:#4ac16d;fill-opacity:0.75;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_68\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 235.290255 104.651391 \r\n",
"Q 251.048307 127.086842 266.163752 148.607385 \r\n",
"\" style=\"fill:none;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 265.633815 145.069142 \r\n",
"L 266.163752 148.607385 \r\n",
"L 263.015195 146.908389 \r\n",
"L 265.633815 145.069142 \r\n",
"z\r\n",
"\" style=\"fill:#4ac16d;fill-opacity:0.75;stroke:#4ac16d;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_69\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 125.806933 286.507141 \r\n",
"Q 178.31586 373.726364 230.248131 459.987742 \r\n",
"\" style=\"fill:none;stroke:#73d056;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 229.968404 456.420985 \r\n",
"L 230.248131 459.987742 \r\n",
"L 227.22689 458.071469 \r\n",
"L 229.968404 456.420985 \r\n",
"z\r\n",
"\" style=\"fill:#73d056;fill-opacity:0.75;stroke:#73d056;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_70\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 125.806933 286.507141 \r\n",
"Q 178.31586 199.287918 230.248131 113.02654 \r\n",
"\" style=\"fill:none;stroke:#73d056;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 227.22689 114.942812 \r\n",
"L 230.248131 113.02654 \r\n",
"L 229.968404 116.593297 \r\n",
"L 227.22689 114.942812 \r\n",
"z\r\n",
"\" style=\"fill:#73d056;fill-opacity:0.75;stroke:#73d056;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_71\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 198.795814 416.404105 \r\n",
"Q 214.553866 438.839556 229.669311 460.360099 \r\n",
"\" style=\"fill:none;stroke:#73d056;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 229.139374 456.821856 \r\n",
"L 229.669311 460.360099 \r\n",
"L 226.520754 458.661103 \r\n",
"L 229.139374 456.821856 \r\n",
"z\r\n",
"\" style=\"fill:#73d056;fill-opacity:0.75;stroke:#73d056;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_72\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 198.795814 156.610177 \r\n",
"Q 214.553866 134.174726 229.669311 112.654183 \r\n",
"\" style=\"fill:none;stroke:#73d056;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 226.520754 114.353179 \r\n",
"L 229.669311 112.654183 \r\n",
"L 229.139374 116.192426 \r\n",
"L 226.520754 114.353179 \r\n",
"z\r\n",
"\" style=\"fill:#73d056;fill-opacity:0.75;stroke:#73d056;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_73\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 125.806933 286.507141 \r\n",
"Q 160.179733 347.679779 194.00485 407.877716 \r\n",
"\" style=\"fill:none;stroke:#a0da39;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 193.832169 404.304177 \r\n",
"L 194.00485 407.877716 \r\n",
"L 191.04241 405.871737 \r\n",
"L 193.832169 404.304177 \r\n",
"z\r\n",
"\" style=\"fill:#a0da39;fill-opacity:0.75;stroke:#a0da39;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_74\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 162.301373 468.362891 \r\n",
"Q 178.059425 445.92744 193.174871 424.406897 \r\n",
"\" style=\"fill:none;stroke:#a0da39;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 190.026313 426.105893 \r\n",
"L 193.174871 424.406897 \r\n",
"L 192.644933 427.94514 \r\n",
"L 190.026313 426.105893 \r\n",
"z\r\n",
"\" style=\"fill:#a0da39;fill-opacity:0.75;stroke:#a0da39;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_75\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 162.301373 104.651391 \r\n",
"Q 178.059425 127.086842 193.174871 148.607385 \r\n",
"\" style=\"fill:none;stroke:#a0da39;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 192.644933 145.069142 \r\n",
"L 193.174871 148.607385 \r\n",
"L 190.026313 146.908389 \r\n",
"L 192.644933 145.069142 \r\n",
"z\r\n",
"\" style=\"fill:#a0da39;fill-opacity:0.75;stroke:#a0da39;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_76\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 125.806933 52.692605 \r\n",
"Q 143.675348 256.213177 161.445981 458.62 \r\n",
"\" style=\"fill:none;stroke:#d0e11c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 162.759977 455.292326 \r\n",
"L 161.445981 458.62 \r\n",
"L 159.572239 455.572198 \r\n",
"L 162.759977 455.292326 \r\n",
"z\r\n",
"\" style=\"fill:#d0e11c;fill-opacity:0.75;stroke:#d0e11c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_77\">\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 125.806933 52.692605 \r\n",
"Q 141.564984 75.128056 156.68043 96.648599 \r\n",
"\" style=\"fill:none;stroke:#d0e11c;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#pd5a8186eae)\" d=\"M 156.150492 93.110356 \r\n",
"L 156.68043 96.648599 \r\n",
"L 153.531873 94.949603 \r\n",
"L 156.150492 93.110356 \r\n",
"z\r\n",
"\" style=\"fill:#d0e11c;fill-opacity:0.75;stroke:#d0e11c;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=\"m15369f7d70\" style=\"stroke:#add8e6;\"/>\r\n",
" </defs>\r\n",
" <g clip-path=\"url(#pd5a8186eae)\">\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"125.806933\" xlink:href=\"#m15369f7d70\" y=\"520.321677\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"600.234663\" xlink:href=\"#m15369f7d70\" y=\"286.507141\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"125.806933\" xlink:href=\"#m15369f7d70\" y=\"286.507141\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"198.795814\" xlink:href=\"#m15369f7d70\" y=\"416.404105\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"235.290255\" xlink:href=\"#m15369f7d70\" y=\"468.362891\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"235.290255\" xlink:href=\"#m15369f7d70\" y=\"104.651391\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"271.784696\" xlink:href=\"#m15369f7d70\" y=\"286.507141\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"381.268018\" xlink:href=\"#m15369f7d70\" y=\"104.651391\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"527.245782\" xlink:href=\"#m15369f7d70\" y=\"468.362891\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"125.806933\" xlink:href=\"#m15369f7d70\" y=\"52.692605\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"162.301373\" xlink:href=\"#m15369f7d70\" y=\"468.362891\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"162.301373\" xlink:href=\"#m15369f7d70\" y=\"104.651391\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"198.795814\" xlink:href=\"#m15369f7d70\" y=\"156.610177\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"454.2569\" xlink:href=\"#m15369f7d70\" y=\"286.507141\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"344.773578\" xlink:href=\"#m15369f7d70\" y=\"243.208153\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"417.762459\" xlink:href=\"#m15369f7d70\" y=\"286.507141\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"271.784696\" xlink:href=\"#m15369f7d70\" y=\"351.455623\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"308.279137\" xlink:href=\"#m15369f7d70\" y=\"104.651391\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"344.773578\" xlink:href=\"#m15369f7d70\" y=\"416.404105\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"490.751341\" xlink:href=\"#m15369f7d70\" y=\"286.507141\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"527.245782\" xlink:href=\"#m15369f7d70\" y=\"104.651391\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"271.784696\" xlink:href=\"#m15369f7d70\" y=\"416.404105\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"271.784696\" xlink:href=\"#m15369f7d70\" y=\"221.558659\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"271.784696\" xlink:href=\"#m15369f7d70\" y=\"156.610177\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"308.279137\" xlink:href=\"#m15369f7d70\" y=\"468.362891\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"344.773578\" xlink:href=\"#m15369f7d70\" y=\"329.806129\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"344.773578\" xlink:href=\"#m15369f7d70\" y=\"156.610177\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"381.268018\" xlink:href=\"#m15369f7d70\" y=\"468.362891\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"563.740222\" xlink:href=\"#m15369f7d70\" y=\"286.507141\"/>\r\n",
" </g>\r\n",
" </g>\r\n",
" <g id=\"patch_78\">\r\n",
" <path d=\"M 80.371354 550.8 \r\n",
"L 80.371354 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_79\">\r\n",
" <path d=\"M 638.371354 550.8 \r\n",
"L 638.371354 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_80\">\r\n",
" <path d=\"M 80.371354 550.8 \r\n",
"L 638.371354 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_81\">\r\n",
" <path d=\"M 80.371354 7.2 \r\n",
"L 638.371354 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(#pd5a8186eae)\">\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(112.283495 523.632927)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(#pd5a8186eae)\">\r\n",
" <!-- ( + ) -->\r\n",
" <g transform=\"translate(112.283495 289.818391)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(#pd5a8186eae)\">\r\n",
" <!-- ( + ) -->\r\n",
" <g transform=\"translate(112.283495 56.003855)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(#pd5a8186eae)\">\r\n",
" <!-- (abs) -->\r\n",
" <defs>\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 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(147.007936 471.674141)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_5\">\r\n",
" <g clip-path=\"url(#pd5a8186eae)\">\r\n",
" <!-- (abs) -->\r\n",
" <g transform=\"translate(147.007936 107.962641)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(#pd5a8186eae)\">\r\n",
" <!-- (abs) -->\r\n",
" <g transform=\"translate(183.502377 419.715355)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_7\">\r\n",
" <g clip-path=\"url(#pd5a8186eae)\">\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(188.135502 159.921427)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(#pd5a8186eae)\">\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 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(216.974318 471.674141)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_9\">\r\n",
" <g clip-path=\"url(#pd5a8186eae)\">\r\n",
" <!-- (abs) -->\r\n",
" <g transform=\"translate(219.996818 107.962641)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_10\">\r\n",
" <g clip-path=\"url(#pd5a8186eae)\">\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(255.476883 419.715355)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_11\">\r\n",
" <g clip-path=\"url(#pd5a8186eae)\">\r\n",
" <!-- (relu) -->\r\n",
" <g transform=\"translate(255.476883 354.766873)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_12\">\r\n",
" <g clip-path=\"url(#pd5a8186eae)\">\r\n",
" <!-- (tanh) -->\r\n",
" <g transform=\"translate(253.468758 289.818391)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_13\">\r\n",
" <g clip-path=\"url(#pd5a8186eae)\">\r\n",
" <!-- ( - ) -->\r\n",
" <g transform=\"translate(261.124383 224.869909)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_14\">\r\n",
" <g clip-path=\"url(#pd5a8186eae)\">\r\n",
" <!-- (tanh) -->\r\n",
" <g transform=\"translate(253.468758 159.921427)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_15\">\r\n",
" <g clip-path=\"url(#pd5a8186eae)\">\r\n",
" <!-- ( - ) -->\r\n",
" <g transform=\"translate(297.618824 471.674141)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_16\">\r\n",
" <g clip-path=\"url(#pd5a8186eae)\">\r\n",
" <!-- ( + ) -->\r\n",
" <g transform=\"translate(294.755699 107.962641)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_17\">\r\n",
" <g clip-path=\"url(#pd5a8186eae)\">\r\n",
" <!-- ( - ) -->\r\n",
" <g transform=\"translate(334.113265 419.715355)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_18\">\r\n",
" <g clip-path=\"url(#pd5a8186eae)\">\r\n",
" <!-- (cos) -->\r\n",
" <defs>\r\n",
" <path d=\"M 48.78125 52.59375 \r\n",
"L 48.78125 44.1875 \r\n",
"Q 44.96875 46.296875 41.140625 47.34375 \r\n",
"Q 37.3125 48.390625 33.40625 48.390625 \r\n",
"Q 24.65625 48.390625 19.8125 42.84375 \r\n",
"Q 14.984375 37.3125 14.984375 27.296875 \r\n",
"Q 14.984375 17.28125 19.8125 11.734375 \r\n",
"Q 24.65625 6.203125 33.40625 6.203125 \r\n",