Newer
Older
9001
9002
9003
9004
9005
9006
9007
9008
9009
9010
9011
9012
9013
9014
9015
9016
9017
9018
9019
9020
9021
9022
9023
9024
9025
9026
9027
9028
9029
9030
9031
9032
9033
9034
9035
9036
9037
9038
9039
9040
9041
9042
9043
9044
9045
9046
9047
9048
9049
9050
9051
9052
9053
9054
9055
9056
9057
9058
9059
9060
9061
9062
9063
9064
9065
9066
9067
9068
9069
9070
9071
9072
9073
9074
9075
9076
9077
9078
9079
9080
9081
9082
9083
9084
9085
9086
9087
9088
9089
9090
9091
9092
9093
9094
9095
9096
9097
9098
9099
9100
9101
9102
9103
9104
9105
9106
9107
9108
9109
9110
9111
9112
9113
9114
9115
9116
9117
9118
9119
9120
9121
9122
9123
9124
9125
9126
9127
9128
9129
9130
9131
9132
9133
9134
9135
9136
9137
9138
9139
9140
9141
9142
9143
9144
9145
9146
9147
9148
9149
9150
9151
9152
9153
9154
9155
9156
9157
9158
9159
9160
9161
9162
9163
9164
9165
9166
9167
9168
9169
9170
9171
9172
9173
9174
9175
9176
9177
9178
9179
9180
9181
9182
9183
9184
9185
9186
9187
9188
9189
9190
9191
9192
9193
9194
9195
9196
9197
9198
9199
9200
9201
9202
9203
9204
9205
9206
9207
9208
9209
9210
9211
9212
9213
9214
9215
9216
9217
9218
9219
9220
9221
9222
9223
9224
9225
9226
9227
9228
9229
9230
9231
9232
9233
9234
9235
9236
9237
9238
9239
9240
9241
9242
9243
9244
9245
9246
9247
9248
9249
9250
9251
9252
9253
9254
9255
9256
9257
9258
9259
9260
9261
9262
9263
9264
9265
9266
9267
9268
9269
9270
9271
9272
9273
9274
9275
9276
9277
9278
9279
9280
9281
9282
9283
9284
9285
9286
9287
9288
9289
9290
9291
9292
9293
9294
9295
9296
9297
9298
9299
9300
9301
9302
9303
9304
9305
9306
9307
9308
9309
9310
9311
9312
9313
9314
9315
9316
9317
9318
9319
9320
9321
9322
9323
9324
9325
9326
9327
9328
9329
9330
9331
9332
9333
9334
9335
9336
9337
9338
9339
9340
9341
9342
9343
9344
9345
9346
9347
9348
9349
9350
9351
9352
9353
9354
9355
9356
9357
9358
9359
9360
9361
9362
9363
9364
9365
9366
9367
9368
9369
9370
9371
9372
9373
9374
9375
9376
9377
9378
9379
9380
9381
9382
9383
9384
9385
9386
9387
9388
9389
9390
9391
9392
9393
9394
9395
9396
9397
9398
9399
9400
9401
9402
9403
9404
9405
9406
9407
9408
9409
9410
9411
9412
9413
9414
9415
9416
9417
9418
9419
9420
9421
9422
9423
9424
9425
9426
9427
9428
9429
9430
9431
9432
9433
9434
9435
9436
9437
9438
9439
9440
9441
9442
9443
9444
9445
9446
9447
9448
9449
9450
9451
9452
9453
9454
9455
9456
9457
9458
9459
9460
9461
9462
9463
9464
9465
9466
9467
9468
9469
9470
9471
9472
9473
9474
9475
9476
9477
9478
9479
9480
9481
9482
9483
9484
9485
9486
9487
9488
9489
9490
9491
9492
9493
9494
9495
9496
9497
9498
9499
9500
9501
9502
9503
9504
9505
9506
9507
9508
9509
9510
9511
9512
9513
9514
9515
9516
9517
9518
9519
9520
9521
9522
9523
9524
9525
9526
9527
9528
9529
9530
9531
9532
9533
9534
9535
9536
9537
9538
9539
9540
9541
9542
9543
9544
9545
9546
9547
9548
9549
9550
9551
9552
9553
9554
9555
9556
9557
9558
9559
9560
9561
9562
9563
9564
9565
9566
9567
9568
9569
9570
9571
9572
9573
9574
9575
9576
9577
9578
9579
9580
9581
9582
9583
9584
9585
9586
9587
9588
9589
9590
9591
9592
9593
9594
9595
9596
9597
9598
9599
9600
9601
9602
9603
9604
9605
9606
9607
9608
9609
9610
9611
9612
9613
9614
9615
9616
9617
9618
9619
9620
9621
9622
9623
9624
9625
9626
9627
9628
9629
9630
9631
9632
9633
9634
9635
9636
9637
9638
9639
9640
9641
9642
9643
9644
9645
9646
9647
9648
9649
9650
9651
9652
9653
9654
9655
9656
9657
9658
9659
9660
9661
9662
9663
9664
9665
9666
9667
9668
9669
9670
9671
9672
9673
9674
9675
9676
9677
9678
9679
9680
9681
9682
9683
9684
9685
9686
9687
9688
9689
9690
9691
9692
9693
9694
9695
9696
9697
9698
9699
9700
9701
9702
9703
9704
9705
9706
9707
9708
9709
9710
9711
9712
9713
9714
9715
9716
9717
9718
9719
9720
9721
9722
9723
9724
9725
9726
9727
9728
9729
9730
9731
9732
9733
9734
9735
9736
9737
9738
9739
9740
9741
9742
9743
9744
9745
9746
9747
9748
9749
9750
9751
9752
9753
9754
9755
9756
9757
9758
9759
9760
9761
9762
9763
9764
9765
9766
9767
9768
9769
9770
9771
9772
9773
9774
9775
9776
9777
9778
9779
9780
9781
9782
9783
9784
9785
9786
9787
9788
9789
9790
9791
9792
9793
9794
9795
9796
9797
9798
9799
9800
9801
9802
9803
9804
9805
9806
9807
9808
9809
9810
9811
9812
9813
9814
9815
9816
9817
9818
9819
9820
9821
9822
9823
9824
9825
9826
9827
9828
9829
9830
9831
9832
9833
9834
9835
9836
9837
9838
9839
9840
9841
9842
9843
9844
9845
9846
9847
9848
9849
9850
9851
9852
9853
9854
9855
9856
9857
9858
9859
9860
9861
9862
9863
9864
9865
9866
9867
9868
9869
9870
9871
9872
9873
9874
9875
9876
9877
9878
9879
9880
9881
9882
9883
9884
9885
9886
9887
9888
9889
9890
9891
9892
9893
9894
9895
9896
9897
9898
9899
9900
9901
9902
9903
9904
9905
9906
9907
9908
9909
9910
9911
9912
9913
9914
9915
9916
9917
9918
9919
9920
9921
9922
9923
9924
9925
9926
9927
9928
9929
9930
9931
9932
9933
9934
9935
9936
9937
9938
9939
9940
9941
9942
9943
9944
9945
9946
9947
9948
9949
9950
9951
9952
9953
9954
9955
9956
9957
9958
9959
9960
9961
9962
9963
9964
9965
9966
9967
9968
9969
9970
9971
9972
9973
9974
9975
9976
9977
9978
9979
9980
9981
9982
9983
9984
9985
9986
9987
9988
9989
9990
9991
9992
9993
9994
9995
9996
9997
9998
9999
10000
"Q 381.510278 279 569.410715 279 \r\n",
"\" style=\"fill:none;stroke:#472d7b;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p6d7f8a416e)\" d=\"M 566.210715 277.4 \r\n",
"L 569.410715 279 \r\n",
"L 566.210715 280.6 \r\n",
"L 566.210715 277.4 \r\n",
"z\r\n",
"\" style=\"fill:#472d7b;fill-opacity:0.75;stroke:#472d7b;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_5\">\r\n",
" <path clip-path=\"url(#p6d7f8a416e)\" d=\"M 256.941131 403.793388 \r\n",
"Q 414.026278 342.960515 570.06884 282.531394 \r\n",
"\" style=\"fill:none;stroke:#472d7b;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p6d7f8a416e)\" d=\"M 566.506983 282.194973 \r\n",
"L 570.06884 282.531394 \r\n",
"L 567.662589 285.179027 \r\n",
"L 566.506983 282.194973 \r\n",
"z\r\n",
"\" style=\"fill:#472d7b;fill-opacity:0.75;stroke:#472d7b;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_6\">\r\n",
" <path clip-path=\"url(#p6d7f8a416e)\" d=\"M 289.165793 453.710744 \r\n",
"Q 430.467193 368.590041 570.810906 284.046255 \r\n",
"\" style=\"fill:none;stroke:#472d7b;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p6d7f8a416e)\" d=\"M 567.244226 284.326954 \r\n",
"L 570.810906 284.046255 \r\n",
"L 568.895457 287.068019 \r\n",
"L 567.244226 284.326954 \r\n",
"z\r\n",
"\" style=\"fill:#472d7b;fill-opacity:0.75;stroke:#472d7b;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_7\">\r\n",
" <path clip-path=\"url(#p6d7f8a416e)\" d=\"M 321.390455 403.793388 \r\n",
"Q 446.392798 343.2828 570.388813 283.259351 \r\n",
"\" style=\"fill:none;stroke:#472d7b;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p6d7f8a416e)\" d=\"M 566.811399 283.213484 \r\n",
"L 570.388813 283.259351 \r\n",
"L 568.205671 286.093763 \r\n",
"L 566.811399 283.213484 \r\n",
"z\r\n",
"\" style=\"fill:#472d7b;fill-opacity:0.75;stroke:#472d7b;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_8\">\r\n",
" <path clip-path=\"url(#p6d7f8a416e)\" d=\"M 546.963089 279 \r\n",
"Q 558.746411 279 569.411699 279 \r\n",
"\" style=\"fill:none;stroke:#472d7b;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p6d7f8a416e)\" d=\"M 566.211699 277.4 \r\n",
"L 569.411699 279 \r\n",
"L 566.211699 280.6 \r\n",
"L 566.211699 277.4 \r\n",
"z\r\n",
"\" style=\"fill:#472d7b;fill-opacity:0.75;stroke:#472d7b;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" </g>\r\n",
" <g id=\"patch_9\">\r\n",
" <path clip-path=\"url(#p6d7f8a416e)\" d=\"M 192.491807 279 \r\n",
"Q 365.396349 279 537.182857 279 \r\n",
"\" style=\"fill:none;stroke:#424086;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p6d7f8a416e)\" d=\"M 533.982857 277.4 \r\n",
"L 537.182857 279 \r\n",
"L 533.982857 280.6 \r\n",
"L 533.982857 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_10\">\r\n",
" <path clip-path=\"url(#p6d7f8a416e)\" d=\"M 482.513765 279 \r\n",
"Q 510.409418 279 537.187037 279 \r\n",
"\" style=\"fill:none;stroke:#424086;stroke-linecap:round;stroke-opacity:0.75;\"/>\r\n",
" <path clip-path=\"url(#p6d7f8a416e)\" 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_11\">\r\n",
" <path clip-path=\"url(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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(#p6d7f8a416e)\" 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=\"mecba5f1817\" style=\"stroke:#add8e6;\"/>\r\n",
" </defs>\r\n",
" <g clip-path=\"url(#p6d7f8a416e)\">\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"128.042483\" xlink:href=\"#mecba5f1817\" y=\"503.628099\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"160.267145\" xlink:href=\"#mecba5f1817\" y=\"279\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"418.064441\" xlink:href=\"#mecba5f1817\" y=\"279\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"611.412413\" xlink:href=\"#mecba5f1817\" y=\"279\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"128.042483\" xlink:href=\"#mecba5f1817\" y=\"279\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"450.289103\" xlink:href=\"#mecba5f1817\" y=\"279\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"482.513765\" xlink:href=\"#mecba5f1817\" y=\"279\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"128.042483\" xlink:href=\"#mecba5f1817\" y=\"54.371901\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"192.491807\" xlink:href=\"#mecba5f1817\" y=\"279\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"579.187751\" xlink:href=\"#mecba5f1817\" y=\"279\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"224.716469\" xlink:href=\"#mecba5f1817\" y=\"453.710744\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"224.716469\" xlink:href=\"#mecba5f1817\" y=\"104.289256\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"256.941131\" xlink:href=\"#mecba5f1817\" y=\"403.793388\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"546.963089\" xlink:href=\"#mecba5f1817\" y=\"279\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"256.941131\" xlink:href=\"#mecba5f1817\" y=\"154.206612\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"289.165793\" xlink:href=\"#mecba5f1817\" y=\"453.710744\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"289.165793\" xlink:href=\"#mecba5f1817\" y=\"104.289256\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"321.390455\" xlink:href=\"#mecba5f1817\" y=\"154.206612\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"321.390455\" xlink:href=\"#mecba5f1817\" y=\"403.793388\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"514.738427\" xlink:href=\"#mecba5f1817\" y=\"279\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"353.615117\" xlink:href=\"#mecba5f1817\" y=\"279\"/>\r\n",
" <use style=\"fill:#add8e6;stroke:#add8e6;\" x=\"385.839779\" xlink:href=\"#mecba5f1817\" 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(#p6d7f8a416e)\">\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(#p6d7f8a416e)\">\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(#p6d7f8a416e)\">\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(#p6d7f8a416e)\">\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(#p6d7f8a416e)\">\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(#p6d7f8a416e)\">\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(#p6d7f8a416e)\">\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(#p6d7f8a416e)\">\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(#p6d7f8a416e)\">\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(#p6d7f8a416e)\">\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(#p6d7f8a416e)\">\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(#p6d7f8a416e)\">\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(#p6d7f8a416e)\">\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(#p6d7f8a416e)\">\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",