1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<svg
width="600" height="480"
viewBox="0 0 600 480"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
>
<title>Gnuplot</title>
<desc>Produced by GNUPLOT 5.2 patchlevel 8 </desc>
<g id="gnuplot_canvas">
<rect x="0" y="0" width="600" height="480" fill="none"/>
<defs>
<circle id='gpDot' r='0.5' stroke-width='0.5' stroke='currentColor'/>
<path id='gpPt0' stroke-width='0.222' stroke='currentColor' d='M-1,0 h2 M0,-1 v2'/>
<path id='gpPt1' stroke-width='0.222' stroke='currentColor' d='M-1,-1 L1,1 M1,-1 L-1,1'/>
<path id='gpPt2' stroke-width='0.222' stroke='currentColor' d='M-1,0 L1,0 M0,-1 L0,1 M-1,-1 L1,1 M-1,1 L1,-1'/>
<rect id='gpPt3' stroke-width='0.222' stroke='currentColor' x='-1' y='-1' width='2' height='2'/>
<rect id='gpPt4' stroke-width='0.222' stroke='currentColor' fill='currentColor' x='-1' y='-1' width='2' height='2'/>
<circle id='gpPt5' stroke-width='0.222' stroke='currentColor' cx='0' cy='0' r='1'/>
<use xlink:href='#gpPt5' id='gpPt6' fill='currentColor' stroke='none'/>
<path id='gpPt7' stroke-width='0.222' stroke='currentColor' d='M0,-1.33 L-1.33,0.67 L1.33,0.67 z'/>
<use xlink:href='#gpPt7' id='gpPt8' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt7' id='gpPt9' stroke='currentColor' transform='rotate(180)'/>
<use xlink:href='#gpPt9' id='gpPt10' fill='currentColor' stroke='none'/>
<use xlink:href='#gpPt3' id='gpPt11' stroke='currentColor' transform='rotate(45)'/>
<use xlink:href='#gpPt11' id='gpPt12' fill='currentColor' stroke='none'/>
<path id='gpPt13' stroke-width='0.222' stroke='currentColor' d='M0,1.330 L1.265,0.411 L0.782,-1.067 L-0.782,-1.076 L-1.265,0.411 z'/>
<use xlink:href='#gpPt13' id='gpPt14' fill='currentColor' stroke='none'/>
<filter id='textbox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='white' flood-opacity='1' result='bgnd'/>
<feComposite in='SourceGraphic' in2='bgnd' operator='atop'/>
</filter>
<filter id='greybox' filterUnits='objectBoundingBox' x='0' y='0' height='1' width='1'>
<feFlood flood-color='lightgrey' flood-opacity='1' result='grey'/>
<feComposite in='SourceGraphic' in2='grey' operator='atop'/>
</filter>
</defs>
<g fill="none" color="white" stroke="black" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M140.9,353.2 L257.4,252.3 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M459.1,310.5 L257.4,252.3 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M140.9,353.2 L140.9,151.5 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M257.4,252.3 L257.4,118.4 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M459.1,310.5 L459.1,175.6 '/></g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M140.9,353.2 L257.4,252.3 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M140.9,353.2 L145.4,349.3 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M257.4,252.3 L252.9,256.2 '/> <g transform="translate(136.8,364.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 0</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M174.5,362.9 L291.0,262.0 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M174.5,362.9 L179.0,359.0 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M291.0,262.0 L286.5,265.9 '/> <g transform="translate(170.4,374.6)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 10</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M208.2,372.6 L324.6,271.7 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M208.2,372.6 L212.7,368.7 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M324.6,271.7 L320.1,275.6 '/> <g transform="translate(204.0,384.3)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 20</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M241.8,382.3 L358.2,281.4 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M241.8,382.3 L246.3,378.4 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M358.2,281.4 L353.7,285.3 '/> <g transform="translate(237.7,394.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 30</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M275.4,392.0 L391.8,291.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M275.4,392.0 L279.9,388.1 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M391.8,291.1 L387.3,295.0 '/> <g transform="translate(271.3,403.7)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 40</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M309.0,401.7 L425.5,300.8 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M309.0,401.7 L313.5,397.8 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M425.5,300.8 L421.0,304.7 '/> <g transform="translate(304.8,413.4)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 50</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M342.6,411.4 L459.1,310.5 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M342.6,411.4 L347.1,407.5 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M459.1,310.5 L454.6,314.4 '/> <g transform="translate(338.4,423.1)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 60</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M342.6,411.4 L140.9,353.2 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M342.6,411.4 L334.8,409.2 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M140.9,353.2 L148.7,355.4 '/> <g transform="translate(349.8,419.8)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 0</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M362.0,394.6 L160.3,336.3 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M362.0,394.6 L354.2,392.3 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M160.3,336.3 L168.1,338.6 '/> <g transform="translate(369.2,403.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 10</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M381.4,377.8 L179.7,319.5 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M381.4,377.8 L373.6,375.5 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M179.7,319.5 L187.5,321.8 '/> <g transform="translate(388.6,386.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 20</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M400.8,361.0 L199.2,302.7 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M400.8,361.0 L393.0,358.7 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M199.2,302.7 L207.0,305.0 '/> <g transform="translate(408.0,369.4)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 30</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M420.3,344.2 L218.6,285.9 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M420.3,344.2 L412.5,341.9 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M218.6,285.9 L226.4,288.2 '/> <g transform="translate(427.4,352.6)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 40</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M439.7,327.3 L238.0,269.1 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M439.7,327.3 L431.9,325.1 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M238.0,269.1 L245.8,271.3 '/> <g transform="translate(446.9,335.7)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 50</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="black" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="gray" stroke="currentColor" stroke-width="0.50" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='gray' stroke-dasharray='2,4' class="gridline" d='M459.1,310.5 L257.4,252.3 '/></g>
<g fill="none" color="gray" stroke="gray" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M459.1,310.5 L451.3,308.3 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M257.4,252.3 L265.2,254.5 '/> <g transform="translate(466.3,318.9)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="middle">
<text> 60</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M140.9,285.9 L149.9,285.9 '/> <g transform="translate(122.9,289.8)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text>-0.6</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M140.9,263.5 L149.9,263.5 '/> <g transform="translate(122.9,267.4)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text>-0.4</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M140.9,241.1 L149.9,241.1 '/> <g transform="translate(122.9,245.0)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text>-0.2</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M140.9,218.7 L149.9,218.7 '/> <g transform="translate(122.9,222.6)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text> 0</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M140.9,196.3 L149.9,196.3 '/> <g transform="translate(122.9,200.2)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text> 0.2</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M140.9,173.9 L149.9,173.9 '/> <g transform="translate(122.9,177.8)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text> 0.4</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M140.9,151.5 L149.9,151.5 '/> <g transform="translate(122.9,155.4)" stroke="none" fill="black" font-family="Arial" font-size="12.00" text-anchor="end">
<text> 0.6</text>
</g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g id="gnuplot_plot_1" ><title>gnuplot_plot_1</title>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(148, 0, 211)' d='M257.4,118.4 L260.8,119.7 L264.1,121.1 L267.5,122.4 L270.9,123.7 L274.2,124.9 L277.6,126.1 L280.9,127.1
L284.3,128.1 L287.7,129.0 L291.0,129.7 L294.4,130.3 L297.8,130.8 L301.0,131.3 L304.4,131.6 L307.8,131.9
L311.1,132.2 L314.5,132.5 L317.8,132.9 L321.2,133.3 L324.6,133.8 L327.9,134.5 L331.3,135.3 L334.7,136.2
L338.0,137.4 L341.4,138.6 L344.7,140.1 L348.1,141.7 L351.5,143.4 L354.8,145.2 L358.2,147.0 L361.6,148.8
L364.9,150.6 L368.3,152.3 L371.7,153.8 L375.0,155.3 L378.4,156.6 L381.7,157.7 L385.1,158.7 L388.5,159.5
L391.8,160.1 L395.2,160.7 L398.6,161.1 L401.9,161.4 L405.3,161.7 L408.6,162.0 L412.0,162.3 L415.4,162.7
L418.7,163.1 L422.1,163.6 L425.5,164.2 L428.8,165.0 L432.2,165.8 L435.6,166.8 L438.9,167.9 L442.3,169.0
L445.6,170.3 L449.0,171.5 L452.4,172.9 L455.7,174.2 L459.1,175.6 M255.5,120.4 L258.8,122.1 L262.2,123.7
L265.6,125.3 L268.9,126.8 L272.3,128.3 L275.6,129.6 L279.0,130.7 L282.4,131.7 L285.7,132.4 L289.1,133.0
L292.5,133.4 L295.8,133.5 L299.2,133.6 L302.4,133.5 L305.8,133.3 L309.2,133.0 L312.5,132.8 L315.9,132.7
L319.3,132.7 L322.6,132.8 L326.0,133.2 L329.4,133.9 L332.7,134.8 L336.1,136.1 L339.4,137.6 L342.8,139.5
L346.2,141.5 L349.5,143.8 L352.9,146.2 L356.3,148.7 L359.6,151.1 L363.0,153.5 L366.3,155.8 L369.7,157.8
L373.1,159.7 L376.4,161.2 L379.8,162.5 L383.2,163.4 L386.5,164.1 L389.9,164.5 L393.3,164.7 L396.6,164.6
L400.0,164.5 L403.3,164.3 L406.7,164.1 L410.1,163.9 L413.4,163.7 L416.8,163.8 L420.2,163.9 L423.5,164.3
L426.9,164.9 L430.2,165.6 L433.6,166.6 L437.0,167.7 L440.3,169.0 L443.7,170.5 L447.1,172.0 L450.4,173.6
L453.8,175.2 L457.2,176.9 M253.5,122.5 L256.9,124.4 L260.3,126.3 L263.6,128.2 L267.0,130.0 L270.3,131.6
L273.7,133.1 L277.1,134.3 L280.4,135.2 L283.8,135.9 L287.2,136.3 L290.5,136.4 L293.9,136.3 L297.2,135.9
L300.5,135.3 L303.9,134.6 L307.2,133.8 L310.6,133.1 L314.0,132.4 L317.3,132.0 L320.7,131.8 L324.0,131.9
L327.4,132.4 L330.8,133.4 L334.1,134.7 L337.5,136.5 L340.9,138.8 L344.2,141.3 L347.6,144.2 L351.0,147.2
L354.3,150.3 L357.7,153.5 L361.0,156.5 L364.4,159.4 L367.8,161.9 L371.1,164.1 L374.5,165.9 L377.9,167.3
L381.2,168.3 L384.6,168.8 L387.9,168.9 L391.3,168.7 L394.7,168.3 L398.0,167.6 L401.4,166.9 L404.8,166.1
L408.1,165.4 L411.5,164.8 L414.9,164.4 L418.2,164.2 L421.6,164.4 L424.9,164.7 L428.3,165.4 L431.7,166.4
L435.0,167.6 L438.4,169.1 L441.8,170.7 L445.1,172.5 L448.5,174.3 L451.8,176.3 L455.2,178.2 M251.6,124.5
L254.9,126.7 L258.3,128.9 L261.7,131.1 L265.0,133.1 L268.4,134.9 L271.8,136.5 L275.1,137.8 L278.5,138.7
L281.9,139.4 L285.2,139.6 L288.6,139.4 L291.9,138.9 L295.3,138.2 L298.7,137.1 L301.9,135.9 L305.3,134.6
L308.7,133.3 L312.0,132.2 L315.4,131.3 L318.7,130.8 L322.1,130.6 L325.5,131.0 L328.8,131.9 L332.2,133.4
L335.6,135.5 L338.9,138.1 L342.3,141.1 L345.6,144.5 L349.0,148.2 L352.4,152.0 L355.7,155.8 L359.1,159.5
L362.5,162.9 L365.8,166.0 L369.2,168.6 L372.6,170.6 L375.9,172.1 L379.3,173.0 L382.6,173.4 L386.0,173.3
L389.4,172.7 L392.7,171.8 L396.1,170.7 L399.5,169.4 L402.8,168.1 L406.2,166.9 L409.5,165.9 L412.9,165.1
L416.3,164.6 L419.6,164.5 L423.0,164.7 L426.4,165.3 L429.7,166.3 L433.1,167.6 L436.5,169.1 L439.8,171.0
L443.2,173.0 L446.5,175.1 L449.9,177.3 L453.3,179.5 M249.6,126.5 L253.0,129.0 L256.4,131.4 L259.7,133.8
L263.1,136.0 L266.5,138.0 L269.8,139.7 L273.2,141.1 L276.5,142.1 L279.9,142.6 L283.3,142.7 L286.6,142.3
L290.0,141.5 L293.4,140.4 L296.7,138.9 L300.0,137.2 L303.4,135.5 L306.7,133.7 L310.1,132.1 L313.4,130.8
L316.8,129.9 L320.2,129.6 L323.5,129.8 L326.9,130.7 L330.3,132.3 L333.6,134.6 L337.0,137.5 L340.3,141.0
L343.7,145.0 L347.1,149.3 L350.4,153.7 L353.8,158.1 L357.2,162.4 L360.5,166.4 L363.9,169.9 L367.2,172.8
L370.6,175.1 L374.0,176.7 L377.3,177.6 L380.7,177.8 L384.1,177.5 L387.4,176.6 L390.8,175.3 L394.2,173.7
L397.5,171.9 L400.9,170.2 L404.2,168.5 L407.6,167.0 L411.0,165.9 L414.3,165.1 L417.7,164.7 L421.1,164.8
L424.4,165.3 L427.8,166.3 L431.1,167.7 L434.5,169.4 L437.9,171.4 L441.2,173.6 L444.6,176.0 L448.0,178.4
L451.3,180.9 M247.7,128.5 L251.1,131.1 L254.4,133.8 L257.8,136.3 L261.2,138.7 L264.5,140.9 L267.9,142.7
L271.2,144.1 L274.6,145.1 L278.0,145.6 L281.3,145.6 L284.7,145.0 L288.1,144.0 L291.4,142.5 L294.8,140.7
L298.1,138.6 L301.4,136.5 L304.8,134.3 L308.1,132.3 L311.5,130.6 L314.9,129.4 L318.2,128.8 L321.6,128.9
L325.0,129.8 L328.3,131.5 L331.7,134.0 L335.0,137.2 L338.4,141.1 L341.8,145.6 L345.1,150.4 L348.5,155.4
L351.9,160.4 L355.2,165.2 L358.6,169.6 L361.9,173.5 L365.3,176.8 L368.7,179.3 L372.0,180.9 L375.4,181.8
L378.8,181.9 L382.1,181.3 L385.5,180.1 L388.8,178.5 L392.2,176.5 L395.6,174.3 L398.9,172.1 L402.3,170.0
L405.7,168.2 L409.0,166.8 L412.4,165.7 L415.8,165.2 L419.1,165.1 L422.5,165.6 L425.8,166.6 L429.2,168.1
L432.6,169.9 L435.9,172.0 L439.3,174.4 L442.7,177.0 L446.0,179.6 L449.4,182.3 M245.8,130.3 L249.1,133.1
L252.5,135.9 L255.8,138.6 L259.2,141.1 L262.6,143.4 L265.9,145.3 L269.3,146.8 L272.7,147.8 L276.0,148.3
L279.4,148.2 L282.8,147.5 L286.1,146.3 L289.5,144.6 L292.8,142.5 L296.2,140.1 L299.6,137.6 L302.8,135.1
L306.2,132.8 L309.6,130.9 L312.9,129.4 L316.3,128.6 L319.6,128.6 L323.0,129.5 L326.4,131.2 L329.7,133.9
L333.1,137.4 L336.5,141.6 L339.8,146.4 L343.2,151.6 L346.5,157.1 L349.9,162.5 L353.3,167.7 L356.6,172.5
L360.0,176.8 L363.4,180.2 L366.7,182.9 L370.1,184.6 L373.5,185.5 L376.8,185.5 L380.2,184.7 L383.5,183.3
L386.9,181.3 L390.3,179.0 L393.6,176.5 L397.0,174.0 L400.4,171.6 L403.7,169.5 L407.1,167.8 L410.4,166.6
L413.8,165.9 L417.2,165.8 L420.5,166.3 L423.9,167.3 L427.3,168.8 L430.6,170.7 L434.0,173.0 L437.4,175.5
L440.7,178.2 L444.1,181.0 L447.4,183.8 M243.8,132.1 L247.2,135.0 L250.5,137.8 L253.9,140.6 L257.3,143.2
L260.6,145.6 L264.0,147.5 L267.4,149.1 L270.7,150.1 L274.1,150.5 L277.4,150.4 L280.8,149.6 L284.2,148.3
L287.5,146.5 L290.9,144.2 L294.3,141.7 L297.6,139.0 L300.9,136.3 L304.3,133.7 L307.6,131.6 L311.0,130.0
L314.3,129.1 L317.7,129.0 L321.1,129.8 L324.4,131.6 L327.8,134.4 L331.2,138.0 L334.5,142.4 L337.9,147.5
L341.2,153.0 L344.6,158.7 L348.0,164.5 L351.3,170.0 L354.7,175.1 L358.1,179.5 L361.4,183.1 L364.8,185.9
L368.1,187.6 L371.5,188.5 L374.9,188.4 L378.2,187.5 L381.6,185.9 L385.0,183.7 L388.3,181.2 L391.7,178.5
L395.1,175.8 L398.4,173.3 L401.8,171.0 L405.1,169.2 L408.5,167.9 L411.9,167.1 L415.2,167.0 L418.6,167.4
L422.0,168.4 L425.3,169.9 L428.7,171.9 L432.0,174.3 L435.4,176.9 L438.8,179.6 L442.1,182.5 L445.5,185.4
M241.9,133.8 L245.2,136.6 L248.6,139.5 L252.0,142.3 L255.3,144.9 L258.7,147.3 L262.1,149.3 L265.4,150.8
L268.8,151.8 L272.1,152.3 L275.5,152.1 L278.9,151.4 L282.2,150.0 L285.6,148.2 L289.0,145.9 L292.3,143.3
L295.7,140.6 L299.0,137.8 L302.3,135.2 L305.7,133.0 L309.0,131.3 L312.4,130.4 L315.8,130.3 L319.1,131.1
L322.5,132.9 L325.9,135.6 L329.2,139.3 L332.6,143.8 L335.9,149.0 L339.3,154.6 L342.7,160.4 L346.0,166.3
L349.4,171.9 L352.8,177.0 L356.1,181.5 L359.5,185.2 L362.8,188.0 L366.2,189.8 L369.6,190.6 L372.9,190.5
L376.3,189.5 L379.7,187.8 L383.0,185.6 L386.4,183.1 L389.7,180.3 L393.1,177.5 L396.5,174.9 L399.8,172.7
L403.2,170.8 L406.6,169.5 L409.9,168.7 L413.3,168.6 L416.7,169.0 L420.0,170.1 L423.4,171.6 L426.7,173.6
L430.1,175.9 L433.5,178.6 L436.8,181.3 L440.2,184.2 L443.6,187.1 '/> <path stroke='rgb(148, 0, 211)' d='M239.9,135.4 L243.3,138.1 L246.7,140.9 L250.0,143.6 L253.4,146.2 L256.7,148.5 L260.1,150.4 L263.5,152.0
L266.8,153.0 L270.2,153.5 L273.6,153.4 L276.9,152.7 L280.3,151.5 L283.7,149.7 L287.0,147.6 L290.4,145.1
L293.7,142.4 L297.1,139.8 L300.4,137.3 L303.7,135.2 L307.1,133.6 L310.5,132.6 L313.8,132.5 L317.2,133.3
L320.5,135.0 L323.9,137.8 L327.3,141.4 L330.6,145.8 L334.0,150.8 L337.4,156.4 L340.7,162.1 L344.1,167.9
L347.5,173.4 L350.8,178.4 L354.2,182.8 L357.5,186.5 L360.9,189.2 L364.3,190.9 L367.6,191.7 L371.0,191.6
L374.4,190.7 L377.7,189.1 L381.1,186.9 L384.4,184.4 L387.8,181.8 L391.2,179.1 L394.5,176.7 L397.9,174.5
L401.3,172.7 L404.6,171.5 L408.0,170.8 L411.3,170.7 L414.7,171.2 L418.1,172.3 L421.4,173.8 L424.8,175.8
L428.2,178.0 L431.5,180.6 L434.9,183.3 L438.3,186.1 L441.6,188.9 M238.0,136.8 L241.4,139.4 L244.7,142.0
L248.1,144.6 L251.4,147.0 L254.8,149.1 L258.2,151.0 L261.5,152.5 L264.9,153.6 L268.3,154.1 L271.6,154.1
L275.0,153.6 L278.3,152.6 L281.7,151.1 L285.1,149.2 L288.4,147.0 L291.8,144.6 L295.2,142.3 L298.5,140.0
L301.8,138.1 L305.2,136.7 L308.5,135.9 L311.9,135.9 L315.2,136.6 L318.6,138.3 L322.0,140.9 L325.3,144.3
L328.7,148.4 L332.1,153.2 L335.4,158.4 L338.8,163.8 L342.1,169.2 L345.5,174.4 L348.9,179.1 L352.2,183.3
L355.6,186.7 L359.0,189.3 L362.3,190.9 L365.7,191.7 L369.1,191.7 L372.4,190.9 L375.8,189.4 L379.1,187.5
L382.5,185.3 L385.9,183.0 L389.2,180.6 L392.6,178.4 L396.0,176.5 L399.3,175.0 L402.7,174.0 L406.0,173.5
L409.4,173.5 L412.8,174.0 L416.1,175.1 L419.5,176.6 L422.9,178.4 L426.2,180.6 L429.6,183.0 L432.9,185.6
L436.3,188.2 L439.7,190.8 M236.0,138.1 L239.4,140.5 L242.8,142.8 L246.1,145.1 L249.5,147.3 L252.9,149.3
L256.2,151.0 L259.6,152.5 L263.0,153.5 L266.3,154.1 L269.7,154.3 L273.0,154.0 L276.4,153.3 L279.8,152.2
L283.1,150.7 L286.5,149.0 L289.9,147.1 L293.2,145.2 L296.6,143.5 L299.9,142.0 L303.2,140.9 L306.6,140.3
L309.9,140.4 L313.3,141.1 L316.7,142.7 L320.0,145.0 L323.4,148.1 L326.8,151.8 L330.1,156.1 L333.5,160.7
L336.8,165.5 L340.2,170.3 L343.6,174.9 L346.9,179.1 L350.3,182.8 L353.7,185.9 L357.0,188.2 L360.4,189.8
L363.7,190.6 L367.1,190.7 L370.5,190.1 L373.8,189.0 L377.2,187.5 L380.6,185.7 L383.9,183.8 L387.3,182.0
L390.7,180.2 L394.0,178.8 L397.4,177.6 L400.7,176.9 L404.1,176.6 L407.5,176.8 L410.8,177.4 L414.2,178.5
L417.6,179.9 L420.9,181.6 L424.3,183.6 L427.6,185.8 L431.0,188.1 L434.4,190.5 L437.7,192.8 M234.1,139.4
L237.5,141.4 L240.8,143.4 L244.2,145.3 L247.6,147.2 L250.9,149.0 L254.3,150.5 L257.6,151.9 L261.0,152.9
L264.4,153.6 L267.7,154.0 L271.1,154.0 L274.5,153.7 L277.8,153.1 L281.2,152.2 L284.6,151.1 L287.9,149.9
L291.3,148.7 L294.6,147.6 L298.0,146.6 L301.3,146.0 L304.6,145.8 L308.0,146.0 L311.4,146.9 L314.7,148.3
L318.1,150.3 L321.4,152.9 L324.8,155.9 L328.2,159.4 L331.5,163.2 L334.9,167.2 L338.3,171.1 L341.6,174.9
L345.0,178.4 L348.4,181.4 L351.7,184.0 L355.1,186.0 L358.4,187.4 L361.8,188.3 L365.2,188.5 L368.5,188.3
L371.9,187.7 L375.3,186.7 L378.6,185.6 L382.0,184.4 L385.3,183.2 L388.7,182.1 L392.1,181.2 L395.4,180.6
L398.8,180.3 L402.2,180.3 L405.5,180.7 L408.9,181.4 L412.3,182.4 L415.6,183.8 L419.0,185.3 L422.3,187.1
L425.7,189.0 L429.1,190.9 L432.4,192.9 L435.8,194.9 M232.2,140.5 L235.5,142.1 L238.9,143.7 L242.3,145.3
L245.6,146.8 L249.0,148.2 L252.3,149.6 L255.7,150.7 L259.1,151.7 L262.4,152.6 L265.8,153.2 L269.2,153.6
L272.5,153.8 L275.9,153.8 L279.2,153.7 L282.6,153.4 L286.0,153.0 L289.3,152.7 L292.7,152.4 L296.1,152.1
L299.4,152.1 L302.7,152.4 L306.1,152.9 L309.4,153.8 L312.8,155.0 L316.1,156.6 L319.5,158.5 L322.9,160.8
L326.2,163.3 L329.6,166.0 L333.0,168.8 L336.3,171.6 L339.7,174.3 L343.0,176.9 L346.4,179.1 L349.8,181.1
L353.1,182.7 L356.5,183.9 L359.9,184.8 L363.2,185.3 L366.6,185.5 L370.0,185.5 L373.3,185.3 L376.7,185.0
L380.0,184.6 L383.4,184.3 L386.8,184.0 L390.1,183.9 L393.5,183.9 L396.9,184.1 L400.2,184.5 L403.6,185.1
L406.9,185.9 L410.3,186.9 L413.7,188.1 L417.0,189.4 L420.4,190.9 L423.8,192.4 L427.1,194.0 L430.5,195.6
L433.9,197.2 M230.2,141.6 L233.6,142.7 L237.0,143.8 L240.3,144.9 L243.7,146.0 L247.0,147.1 L250.4,148.2
L253.8,149.2 L257.1,150.2 L260.5,151.1 L263.9,152.0 L267.2,152.8 L270.6,153.6 L273.9,154.4 L277.3,155.1
L280.7,155.7 L284.0,156.4 L287.4,157.0 L290.8,157.7 L294.1,158.4 L297.5,159.1 L300.7,159.9 L304.1,160.8
L307.5,161.7 L310.8,162.7 L314.2,163.9 L317.6,165.1 L320.9,166.4 L324.3,167.7 L327.7,169.1 L331.0,170.5
L334.4,171.9 L337.7,173.3 L341.1,174.7 L344.5,176.0 L347.8,177.2 L351.2,178.3 L354.6,179.3 L357.9,180.3
L361.3,181.1 L364.6,181.9 L368.0,182.6 L371.4,183.3 L374.7,184.0 L378.1,184.6 L381.5,185.3 L384.8,186.0
L388.2,186.7 L391.6,187.4 L394.9,188.2 L398.3,189.0 L401.6,189.9 L405.0,190.9 L408.4,191.8 L411.7,192.9
L415.1,193.9 L418.5,195.0 L421.8,196.1 L425.2,197.2 L428.5,198.3 L431.9,199.5 M228.3,142.6 L231.6,143.2
L235.0,143.8 L238.4,144.4 L241.7,145.1 L245.1,145.8 L248.5,146.5 L251.8,147.3 L255.2,148.3 L258.6,149.3
L261.9,150.5 L265.3,151.8 L268.6,153.3 L272.0,154.8 L275.4,156.4 L278.7,158.2 L282.1,160.0 L285.5,161.7
L288.8,163.5 L292.2,165.2 L295.5,166.8 L298.9,168.3 L302.2,169.5 L305.5,170.6 L308.9,171.4 L312.3,172.0
L315.6,172.3 L319.0,172.5 L322.3,172.5 L325.7,172.4 L329.1,172.2 L332.4,172.0 L335.8,171.9 L339.2,171.9
L342.5,172.0 L345.9,172.4 L349.3,173.0 L352.6,173.8 L356.0,174.9 L359.3,176.1 L362.7,177.6 L366.1,179.2
L369.4,180.9 L372.8,182.6 L376.2,184.4 L379.5,186.2 L382.9,187.9 L386.2,189.6 L389.6,191.1 L393.0,192.6
L396.3,193.9 L399.7,195.1 L403.1,196.1 L406.4,197.0 L409.8,197.9 L413.2,198.6 L416.5,199.3 L419.9,200.0
L423.2,200.6 L426.6,201.2 L430.0,201.8 M226.3,143.6 L229.7,143.7 L233.1,143.8 L236.4,143.8 L239.8,144.0
L243.2,144.3 L246.5,144.7 L249.9,145.3 L253.2,146.2 L256.6,147.4 L260.0,148.9 L263.3,150.7 L266.7,152.8
L270.1,155.2 L273.4,157.8 L276.8,160.7 L280.2,163.6 L283.5,166.7 L286.9,169.6 L290.2,172.5 L293.6,175.0
L297.0,177.2 L300.2,178.9 L303.6,180.1 L307.0,180.7 L310.3,180.8 L313.7,180.2 L317.0,179.1 L320.4,177.6
L323.8,175.8 L327.1,173.9 L330.5,171.9 L333.9,170.1 L337.2,168.6 L340.6,167.6 L343.9,167.0 L347.3,167.0
L350.7,167.6 L354.0,168.8 L357.4,170.6 L360.8,172.7 L364.1,175.3 L367.5,178.1 L370.9,181.1 L374.2,184.1
L377.6,187.1 L380.9,189.9 L384.3,192.6 L387.7,195.0 L391.0,197.1 L394.4,198.9 L397.8,200.3 L401.1,201.5
L404.5,202.4 L407.8,203.0 L411.2,203.5 L414.6,203.8 L417.9,203.9 L421.3,204.0 L424.7,204.1 L428.0,204.2
M224.4,144.6 L227.8,144.2 L231.1,143.7 L234.5,143.3 L237.9,143.0 L241.2,142.8 L244.6,142.9 L247.9,143.4
L251.3,144.2 L254.7,145.5 L258.0,147.2 L261.4,149.5 L264.8,152.3 L268.1,155.5 L271.5,159.2 L274.8,163.2
L278.2,167.4 L281.6,171.7 L284.9,175.9 L288.3,179.9 L291.7,183.5 L295.0,186.4 L298.4,188.7 L301.7,190.0
L305.0,190.5 L308.4,189.9 L311.7,188.4 L315.1,186.1 L318.5,183.0 L321.8,179.4 L325.2,175.6 L328.6,171.7
L331.9,168.1 L335.3,165.1 L338.6,162.7 L342.0,161.2 L345.4,160.6 L348.7,161.1 L352.1,162.4 L355.5,164.7
L358.8,167.7 L362.2,171.2 L365.5,175.2 L368.9,179.4 L372.3,183.7 L375.6,188.0 L379.0,191.9 L382.4,195.6
L385.7,198.9 L389.1,201.6 L392.5,203.9 L395.8,205.7 L399.2,206.9 L402.5,207.8 L405.9,208.2 L409.3,208.3
L412.6,208.2 L416.0,207.8 L419.4,207.4 L422.7,206.9 L426.1,206.5 '/> <path stroke='rgb(148, 0, 211)' d='M222.5,145.7 L225.8,144.7 L229.2,143.8 L232.5,142.9 L235.9,142.1 L239.3,141.5 L242.6,141.3 L246.0,141.6
L249.4,142.3 L252.7,143.7 L256.1,145.7 L259.5,148.4 L262.8,151.8 L266.2,155.9 L269.5,160.5 L272.9,165.6
L276.3,171.1 L279.6,176.6 L283.0,182.1 L286.4,187.2 L289.7,191.8 L293.1,195.6 L296.4,198.4 L299.8,200.0
L303.1,200.3 L306.4,199.2 L309.8,196.7 L313.2,193.1 L316.5,188.4 L319.9,183.0 L323.2,177.2 L326.6,171.5
L330.0,166.1 L333.3,161.4 L336.7,157.8 L340.1,155.3 L343.4,154.2 L346.8,154.5 L350.2,156.1 L353.5,158.9
L356.9,162.6 L360.2,167.2 L363.6,172.4 L367.0,177.9 L370.3,183.4 L373.7,188.8 L377.1,193.9 L380.4,198.6
L383.8,202.6 L387.1,206.0 L390.5,208.8 L393.9,210.8 L397.2,212.2 L400.6,212.9 L404.0,213.1 L407.3,212.9
L410.7,212.4 L414.1,211.6 L417.4,210.7 L420.8,209.7 L424.1,208.8 M220.5,146.8 L223.9,145.4 L227.2,144.0
L230.6,142.7 L234.0,141.5 L237.3,140.6 L240.7,140.1 L244.1,140.1 L247.4,140.8 L250.8,142.3 L254.1,144.5
L257.5,147.6 L260.9,151.6 L264.2,156.4 L267.6,161.9 L271.0,168.1 L274.3,174.6 L277.7,181.3 L281.1,188.0
L284.4,194.2 L287.8,199.8 L291.1,204.4 L294.5,207.7 L297.9,209.6 L301.1,209.7 L304.5,208.1 L307.9,204.8
L311.2,199.9 L314.6,193.7 L317.9,186.6 L321.3,178.9 L324.7,171.3 L328.0,164.1 L331.4,157.9 L334.8,153.0
L338.1,149.7 L341.5,148.1 L344.8,148.3 L348.2,150.1 L351.6,153.4 L354.9,158.0 L358.3,163.6 L361.7,169.9
L365.0,176.5 L368.4,183.2 L371.8,189.8 L375.1,195.9 L378.5,201.4 L381.8,206.2 L385.2,210.2 L388.6,213.3
L391.9,215.6 L395.3,217.0 L398.7,217.7 L402.0,217.8 L405.4,217.3 L408.7,216.4 L412.1,215.2 L415.5,213.8
L418.8,212.4 L422.2,211.1 M218.6,148.0 L221.9,146.3 L225.3,144.6 L228.7,142.8 L232.0,141.3 L235.4,140.1
L238.8,139.4 L242.1,139.2 L245.5,139.9 L248.8,141.4 L252.2,143.8 L255.6,147.3 L258.9,151.7 L262.3,157.1
L265.7,163.4 L269.0,170.4 L272.4,177.9 L275.7,185.6 L279.1,193.3 L282.5,200.5 L285.8,207.0 L289.2,212.4
L292.6,216.2 L295.9,218.3 L299.3,218.4 L302.6,216.5 L305.9,212.4 L309.3,206.4 L312.6,198.8 L316.0,190.0
L319.4,180.6 L322.7,171.2 L326.1,162.4 L329.5,154.8 L332.8,148.8 L336.2,144.8 L339.5,142.8 L342.9,142.9
L346.3,145.0 L349.6,148.9 L353.0,154.2 L356.4,160.7 L359.7,168.0 L363.1,175.6 L366.4,183.4 L369.8,190.8
L373.2,197.8 L376.5,204.1 L379.9,209.5 L383.3,214.0 L386.6,217.4 L390.0,219.8 L393.4,221.3 L396.7,222.0
L400.1,221.8 L403.4,221.1 L406.8,219.9 L410.2,218.4 L413.5,216.7 L416.9,214.9 L420.3,213.2 M216.6,149.4
L220.0,147.4 L223.4,145.4 L226.7,143.4 L230.1,141.6 L233.4,140.2 L236.8,139.3 L240.2,139.1 L243.5,139.6
L246.9,141.2 L250.3,143.7 L253.6,147.4 L257.0,152.2 L260.4,158.0 L263.7,164.9 L267.1,172.5 L270.4,180.8
L273.8,189.3 L277.2,197.8 L280.5,205.8 L283.9,213.1 L287.3,219.1 L290.6,223.4 L294.0,225.8 L297.3,225.9
L300.6,223.7 L304.0,219.0 L307.3,212.1 L310.7,203.3 L314.1,193.2 L317.4,182.3 L320.8,171.4 L324.2,161.2
L327.5,152.4 L330.9,145.6 L334.2,140.9 L337.6,138.6 L341.0,138.8 L344.3,141.2 L347.7,145.5 L351.1,151.5
L354.4,158.7 L357.8,166.8 L361.1,175.3 L364.5,183.8 L367.9,192.0 L371.2,199.7 L374.6,206.5 L378.0,212.4
L381.3,217.2 L384.7,220.8 L388.0,223.4 L391.4,224.9 L394.8,225.5 L398.1,225.3 L401.5,224.4 L404.9,222.9
L408.2,221.1 L411.6,219.2 L415.0,217.1 L418.3,215.2 M214.7,150.9 L218.1,148.8 L221.4,146.6 L224.8,144.5
L228.1,142.6 L231.5,141.0 L234.9,140.0 L238.2,139.7 L241.6,140.2 L245.0,141.7 L248.3,144.4 L251.7,148.2
L255.0,153.2 L258.4,159.3 L261.8,166.4 L265.1,174.5 L268.5,183.2 L271.9,192.2 L275.2,201.3 L278.6,209.9
L282.0,217.6 L285.3,224.1 L288.7,228.9 L292.0,231.4 L295.4,231.7 L298.8,229.4 L302.0,224.4 L305.4,216.9
L308.8,207.2 L312.1,196.0 L315.5,184.0 L318.8,171.9 L322.2,160.7 L325.6,151.1 L328.9,143.6 L332.3,138.5
L335.7,136.2 L339.0,136.4 L342.4,139.0 L345.8,143.8 L349.1,150.3 L352.5,158.1 L355.8,166.7 L359.2,175.7
L362.6,184.7 L365.9,193.4 L369.3,201.5 L372.7,208.7 L376.0,214.8 L379.4,219.8 L382.7,223.6 L386.1,226.2
L389.5,227.7 L392.8,228.3 L396.2,227.9 L399.6,226.9 L402.9,225.4 L406.3,223.4 L409.6,221.3 L413.0,219.1
L416.4,217.0 M212.7,152.6 L216.1,150.5 L219.5,148.3 L222.8,146.1 L226.2,144.2 L229.6,142.6 L232.9,141.6
L236.3,141.2 L239.7,141.7 L243.0,143.2 L246.4,145.9 L249.7,149.7 L253.1,154.7 L256.5,160.9 L259.8,168.1
L263.2,176.3 L266.6,185.1 L269.9,194.3 L273.3,203.6 L276.6,212.4 L280.0,220.5 L283.4,227.2 L286.7,232.1
L290.1,235.0 L293.5,235.4 L296.8,233.1 L300.1,228.1 L303.5,220.3 L306.8,210.2 L310.2,198.4 L313.5,185.6
L316.9,172.9 L320.3,161.1 L323.6,151.0 L327.0,143.2 L330.4,138.1 L333.7,135.8 L337.1,136.2 L340.4,139.1
L343.8,144.1 L347.2,150.8 L350.5,158.9 L353.9,167.7 L357.3,177.0 L360.6,186.2 L364.0,195.0 L367.4,203.2
L370.7,210.4 L374.1,216.6 L377.4,221.6 L380.8,225.4 L384.2,228.0 L387.5,229.6 L390.9,230.1 L394.3,229.7
L397.6,228.7 L401.0,227.1 L404.3,225.2 L407.7,223.0 L411.1,220.8 L414.4,218.7 M210.8,154.4 L214.2,152.4
L217.5,150.4 L220.9,148.3 L224.3,146.5 L227.6,145.0 L231.0,144.0 L234.3,143.7 L237.7,144.2 L241.1,145.7
L244.4,148.3 L247.8,151.9 L251.2,156.8 L254.5,162.8 L257.9,169.8 L261.3,177.8 L264.6,186.4 L268.0,195.4
L271.3,204.5 L274.7,213.3 L278.1,221.3 L281.4,228.1 L284.8,233.1 L288.2,236.1 L291.5,236.7 L294.9,234.6
L298.2,229.8 L301.5,222.1 L304.9,212.1 L308.2,200.2 L311.6,187.3 L315.0,174.5 L318.3,162.6 L321.7,152.5
L325.1,144.9 L328.4,139.9 L331.8,137.8 L335.1,138.4 L338.5,141.5 L341.9,146.6 L345.2,153.4 L348.6,161.4
L352.0,170.1 L355.3,179.2 L358.7,188.2 L362.0,196.9 L365.4,204.8 L368.8,211.9 L372.1,217.9 L375.5,222.7
L378.9,226.4 L382.2,229.0 L385.6,230.4 L389.0,230.9 L392.3,230.6 L395.7,229.7 L399.0,228.2 L402.4,226.3
L405.8,224.3 L409.1,222.2 L412.5,220.3 M208.9,156.4 L212.2,154.7 L215.6,152.9 L219.0,151.1 L222.3,149.5
L225.7,148.2 L229.0,147.4 L232.4,147.2 L235.8,147.7 L239.1,149.1 L242.5,151.5 L245.9,155.0 L249.2,159.5
L252.6,165.1 L255.9,171.7 L259.3,179.1 L262.7,187.1 L266.0,195.6 L269.4,204.1 L272.8,212.4 L276.1,220.0
L279.5,226.5 L282.9,231.4 L286.2,234.5 L289.6,235.3 L292.9,233.6 L296.3,229.3 L299.7,222.2 L302.9,212.7
L306.3,201.4 L309.7,189.0 L313.0,176.6 L316.4,165.3 L319.7,155.8 L323.1,148.7 L326.5,144.3 L329.8,142.6
L333.2,143.4 L336.6,146.5 L339.9,151.5 L343.3,158.0 L346.7,165.6 L350.0,173.9 L353.4,182.4 L356.7,190.9
L360.1,198.9 L363.5,206.3 L366.8,212.9 L370.2,218.5 L373.6,223.0 L376.9,226.5 L380.3,228.9 L383.6,230.3
L387.0,230.9 L390.4,230.6 L393.7,229.8 L397.1,228.5 L400.5,226.9 L403.8,225.1 L407.2,223.3 L410.6,221.6
M206.9,158.6 L210.3,157.2 L213.7,155.8 L217.0,154.4 L220.4,153.2 L223.7,152.2 L227.1,151.6 L230.5,151.5
L233.8,152.1 L237.2,153.5 L240.6,155.7 L243.9,158.8 L247.3,162.8 L250.6,167.8 L254.0,173.6 L257.4,180.2
L260.7,187.3 L264.1,194.8 L267.5,202.4 L270.8,209.8 L274.2,216.6 L277.5,222.6 L280.9,227.2 L284.3,230.2
L287.6,231.1 L291.0,230.0 L294.4,226.4 L297.7,220.3 L301.0,212.0 L304.4,201.9 L307.7,190.7 L311.1,179.5
L314.4,169.4 L317.8,161.1 L321.2,155.0 L324.5,151.4 L327.9,150.2 L331.3,151.2 L334.6,154.2 L338.0,158.8
L341.3,164.7 L344.7,171.6 L348.1,179.0 L351.4,186.6 L354.8,194.1 L358.2,201.2 L361.5,207.8 L364.9,213.6
L368.3,218.6 L371.6,222.6 L375.0,225.7 L378.3,227.9 L381.7,229.3 L385.1,229.9 L388.4,229.8 L391.8,229.2
L395.2,228.2 L398.5,227.0 L401.9,225.6 L405.2,224.2 L408.6,222.8 '/> <path stroke='rgb(148, 0, 211)' d='M205.0,160.9 L208.3,160.0 L211.7,159.1 L215.1,158.2 L218.4,157.4 L221.8,156.8 L225.2,156.5 L228.5,156.6
L231.9,157.3 L235.3,158.6 L238.6,160.5 L242.0,163.2 L245.3,166.6 L248.7,170.8 L252.1,175.6 L255.4,181.0
L258.8,186.9 L262.2,193.2 L265.5,199.5 L268.9,205.6 L272.2,211.4 L275.6,216.4 L279.0,220.4 L282.3,223.1
L285.7,224.3 L289.1,223.6 L292.4,221.0 L295.8,216.4 L299.1,209.8 L302.4,201.6 L305.8,192.4 L309.1,183.2
L312.5,174.9 L315.9,168.4 L319.2,163.7 L322.6,161.1 L326.0,160.5 L329.3,161.6 L332.7,164.3 L336.0,168.4
L339.4,173.4 L342.8,179.1 L346.1,185.3 L349.5,191.6 L352.9,197.8 L356.2,203.7 L359.6,209.2 L362.9,214.0
L366.3,218.1 L369.7,221.6 L373.0,224.2 L376.4,226.2 L379.8,227.4 L383.1,228.1 L386.5,228.2 L389.9,228.0
L393.2,227.4 L396.6,226.6 L399.9,225.7 L403.3,224.7 L406.7,223.9 M203.0,163.3 L206.4,163.0 L209.8,162.6
L213.1,162.3 L216.5,162.0 L219.9,161.9 L223.2,162.0 L226.6,162.4 L229.9,163.2 L233.3,164.3 L236.7,166.0
L240.0,168.1 L243.4,170.8 L246.8,174.0 L250.1,177.7 L253.5,181.7 L256.9,186.2 L260.2,190.8 L263.6,195.5
L266.9,200.1 L270.3,204.5 L273.7,208.3 L277.0,211.5 L280.4,213.7 L283.8,214.9 L287.1,214.9 L290.5,213.4
L293.8,210.5 L297.2,206.2 L300.5,200.6 L303.8,194.1 L307.2,187.6 L310.6,181.9 L313.9,177.6 L317.3,174.7
L320.6,173.3 L324.0,173.2 L327.4,174.4 L330.7,176.6 L334.1,179.8 L337.5,183.7 L340.8,188.0 L344.2,192.6
L347.6,197.3 L350.9,202.0 L354.3,206.4 L357.6,210.5 L361.0,214.1 L364.4,217.3 L367.7,220.0 L371.1,222.1
L374.5,223.8 L377.8,224.9 L381.2,225.7 L384.5,226.1 L387.9,226.2 L391.3,226.1 L394.6,225.8 L398.0,225.5
L401.4,225.1 L404.7,224.8 M201.1,165.8 L204.5,166.1 L207.8,166.4 L211.2,166.7 L214.6,167.0 L217.9,167.4
L221.3,168.0 L224.6,168.6 L228.0,169.5 L231.4,170.6 L234.7,171.9 L238.1,173.5 L241.5,175.3 L244.8,177.4
L248.2,179.8 L251.5,182.3 L254.9,185.1 L258.3,187.9 L261.6,190.8 L265.0,193.7 L268.4,196.4 L271.7,198.9
L275.1,201.0 L278.5,202.6 L281.8,203.8 L285.2,204.2 L288.5,204.0 L291.9,203.0 L295.3,201.3 L298.6,198.8
L301.9,195.7 L305.3,192.7 L308.6,190.2 L312.0,188.5 L315.3,187.5 L318.7,187.3 L322.1,187.7 L325.4,188.8
L328.8,190.5 L332.2,192.6 L335.5,195.1 L338.9,197.8 L342.2,200.6 L345.6,203.5 L349.0,206.4 L352.3,209.1
L355.7,211.7 L359.1,214.1 L362.4,216.2 L365.8,218.0 L369.2,219.6 L372.5,220.9 L375.9,222.0 L379.2,222.8
L382.6,223.5 L386.0,224.0 L389.3,224.5 L392.7,224.8 L396.1,225.1 L399.4,225.4 L402.8,225.7 M199.2,168.3
L202.5,169.3 L205.9,170.2 L209.2,171.2 L212.6,172.2 L216.0,173.1 L219.3,174.1 L222.7,175.1 L226.1,176.1
L229.4,177.0 L232.8,178.0 L236.2,179.0 L239.5,179.9 L242.9,180.9 L246.2,181.9 L249.6,182.9 L253.0,183.8
L256.3,184.8 L259.7,185.8 L263.1,186.7 L266.4,187.7 L269.8,188.7 L273.1,189.7 L276.5,190.6 L279.9,191.6
L283.2,192.6 L286.6,193.5 L290.0,194.5 L293.3,195.5 L296.7,196.4 L300.0,197.4 L303.3,198.4 L306.7,199.4
L310.0,200.3 L313.4,201.3 L316.8,202.3 L320.1,203.2 L323.5,204.2 L326.9,205.2 L330.2,206.2 L333.6,207.1
L336.9,208.1 L340.3,209.1 L343.7,210.0 L347.0,211.0 L350.4,212.0 L353.8,213.0 L357.1,213.9 L360.5,214.9
L363.8,215.9 L367.2,216.8 L370.6,217.8 L373.9,218.8 L377.3,219.7 L380.7,220.7 L384.0,221.7 L387.4,222.7
L390.8,223.6 L394.1,224.6 L397.5,225.6 L400.8,226.5 M197.2,170.8 L200.6,172.4 L203.9,174.1 L207.3,175.7
L210.7,177.3 L214.0,178.9 L217.4,180.3 L220.8,181.5 L224.1,182.6 L227.5,183.5 L230.8,184.1 L234.2,184.5
L237.6,184.6 L240.9,184.4 L244.3,184.0 L247.7,183.4 L251.0,182.6 L254.4,181.7 L257.8,180.7 L261.1,179.8
L264.5,179.0 L267.8,178.5 L271.2,178.3 L274.6,178.6 L277.9,179.4 L281.3,180.9 L284.7,183.1 L288.0,186.0
L291.4,189.7 L294.7,194.1 L298.1,199.1 L301.4,204.1 L304.7,208.5 L308.1,212.2 L311.5,215.1 L314.8,217.3
L318.2,218.8 L321.5,219.6 L324.9,219.9 L328.3,219.7 L331.6,219.2 L335.0,218.4 L338.4,217.5 L341.7,216.5
L345.1,215.6 L348.5,214.8 L351.8,214.2 L355.2,213.8 L358.5,213.6 L361.9,213.7 L365.3,214.1 L368.6,214.7
L372.0,215.6 L375.4,216.7 L378.7,217.9 L382.1,219.3 L385.4,220.9 L388.8,222.5 L392.2,224.1 L395.5,225.8
L398.9,227.4 M195.3,173.3 L198.6,175.5 L202.0,177.8 L205.4,180.1 L208.7,182.3 L212.1,184.4 L215.5,186.2
L218.8,187.8 L222.2,188.9 L225.5,189.7 L228.9,190.0 L232.3,189.8 L235.6,189.1 L239.0,187.8 L242.4,186.1
L245.7,184.0 L249.1,181.5 L252.4,178.8 L255.8,176.0 L259.2,173.4 L262.5,171.0 L265.9,169.1 L269.3,167.8
L272.6,167.5 L276.0,168.3 L279.4,170.3 L282.7,173.7 L286.1,178.5 L289.4,184.8 L292.8,192.3 L296.2,200.8
L299.5,209.2 L302.8,216.8 L306.2,223.1 L309.5,227.9 L312.9,231.2 L316.2,233.2 L319.6,234.0 L323.0,233.6
L326.3,232.4 L329.7,230.6 L333.1,228.2 L336.4,225.5 L339.8,222.8 L343.1,220.1 L346.5,217.6 L349.9,215.4
L353.2,213.7 L356.6,212.5 L360.0,211.8 L363.3,211.5 L366.7,211.8 L370.1,212.6 L373.4,213.8 L376.8,215.4
L380.1,217.2 L383.5,219.2 L386.9,221.4 L390.2,223.7 L393.6,226.0 L397.0,228.3 M193.3,175.7 L196.7,178.5
L200.1,181.4 L203.4,184.2 L206.8,187.0 L210.1,189.5 L213.5,191.7 L216.9,193.5 L220.2,194.8 L223.6,195.5
L227.0,195.5 L230.3,194.8 L233.7,193.3 L237.1,191.1 L240.4,188.2 L243.8,184.7 L247.1,180.7 L250.5,176.4
L253.9,172.1 L257.2,167.9 L260.6,164.1 L264.0,161.0 L267.3,158.9 L270.7,158.1 L274.0,158.9 L277.4,161.5
L280.8,166.0 L284.1,172.6 L287.5,181.1 L290.9,191.3 L294.2,202.5 L297.6,213.6 L300.9,223.8 L304.2,232.2
L307.6,238.8 L310.9,243.3 L314.3,245.9 L317.7,246.7 L321.0,245.9 L324.4,243.9 L327.8,240.8 L331.1,237.0
L334.5,232.8 L337.8,228.5 L341.2,224.2 L344.6,220.2 L347.9,216.7 L351.3,213.9 L354.7,211.6 L358.0,210.2
L361.4,209.4 L364.7,209.4 L368.1,210.1 L371.5,211.4 L374.8,213.2 L378.2,215.4 L381.6,217.9 L384.9,220.7
L388.3,223.5 L391.7,226.4 L395.0,229.2 M191.4,178.0 L194.8,181.3 L198.1,184.7 L201.5,188.0 L204.8,191.2
L208.2,194.1 L211.6,196.7 L214.9,198.7 L218.3,200.0 L221.7,200.6 L225.0,200.4 L228.4,199.2 L231.7,197.1
L235.1,194.1 L238.5,190.2 L241.8,185.6 L245.2,180.3 L248.6,174.8 L251.9,169.1 L255.3,163.7 L258.7,158.8
L262.0,154.8 L265.4,152.1 L268.7,151.1 L272.1,152.0 L275.5,155.1 L278.8,160.7 L282.2,168.7 L285.6,179.0
L288.9,191.0 L292.3,204.1 L295.6,217.3 L299.0,229.3 L302.3,239.5 L305.6,247.5 L309.0,253.1 L312.4,256.2
L315.7,257.1 L319.1,256.1 L322.5,253.4 L325.8,249.4 L329.2,244.5 L332.5,239.1 L335.9,233.4 L339.3,227.9
L342.6,222.7 L346.0,218.1 L349.4,214.2 L352.7,211.2 L356.1,209.1 L359.4,207.9 L362.8,207.7 L366.2,208.3
L369.5,209.6 L372.9,211.6 L376.3,214.2 L379.6,217.1 L383.0,220.3 L386.3,223.6 L389.7,227.0 L393.1,230.3
M189.4,180.2 L192.8,183.8 L196.2,187.6 L199.5,191.3 L202.9,194.9 L206.3,198.1 L209.6,200.9 L213.0,203.0
L216.4,204.4 L219.7,204.9 L223.1,204.5 L226.4,203.0 L229.8,200.4 L233.2,196.7 L236.5,192.1 L239.9,186.6
L243.3,180.5 L246.6,174.0 L250.0,167.4 L253.3,161.1 L256.7,155.4 L260.1,150.8 L263.4,147.8 L266.8,146.6
L270.2,147.8 L273.5,151.4 L276.9,157.8 L280.3,166.8 L283.6,178.2 L287.0,191.5 L290.3,205.8 L293.7,220.1
L297.1,233.3 L300.3,244.7 L303.7,253.8 L307.1,260.1 L310.4,263.8 L313.8,264.9 L317.1,263.8 L320.5,260.7
L323.9,256.1 L327.2,250.5 L330.6,244.2 L334.0,237.6 L337.3,231.0 L340.7,225.0 L344.1,219.6 L347.4,214.9
L350.8,211.3 L354.1,208.7 L357.5,207.2 L360.9,206.7 L364.2,207.2 L367.6,208.6 L371.0,210.8 L374.3,213.6
L377.7,216.8 L381.0,220.4 L384.4,224.1 L387.8,227.8 L391.1,231.4 '/> <path stroke='rgb(148, 0, 211)' d='M187.5,182.2 L190.9,186.1 L194.2,190.1 L197.6,194.1 L201.0,197.9 L204.3,201.3 L207.7,204.2 L211.0,206.5
L214.4,207.9 L217.8,208.4 L221.1,207.7 L224.5,206.0 L227.9,203.1 L231.2,199.0 L234.6,193.9 L238.0,187.9
L241.3,181.2 L244.7,174.2 L248.0,167.0 L251.4,160.2 L254.8,154.1 L258.1,149.3 L261.5,146.1 L264.9,145.0
L268.2,146.4 L271.6,150.4 L274.9,157.3 L278.3,166.9 L281.7,178.9 L285.0,192.7 L288.4,207.5 L291.8,222.3
L295.1,236.0 L298.5,248.0 L301.8,257.6 L305.1,264.5 L308.5,268.5 L311.8,269.9 L315.2,268.8 L318.6,265.6
L321.9,260.8 L325.3,254.7 L328.7,247.9 L332.0,240.8 L335.4,233.7 L338.7,227.1 L342.1,221.1 L345.5,216.0
L348.8,211.9 L352.2,209.0 L355.6,207.3 L358.9,206.7 L362.3,207.1 L365.7,208.6 L369.0,210.8 L372.4,213.7
L375.7,217.2 L379.1,220.9 L382.5,224.9 L385.8,228.9 L389.2,232.7 M185.6,184.0 L188.9,188.1 L192.3,192.2
L195.7,196.3 L199.0,200.2 L202.4,203.7 L205.7,206.7 L209.1,209.0 L212.5,210.4 L215.8,210.8 L219.2,210.1
L222.6,208.3 L225.9,205.2 L229.3,201.0 L232.6,195.7 L236.0,189.5 L239.4,182.6 L242.7,175.3 L246.1,168.0
L249.5,161.1 L252.8,155.0 L256.2,150.1 L259.6,147.1 L262.9,146.1 L266.3,147.7 L269.6,151.9 L273.0,159.0
L276.4,168.7 L279.7,180.8 L283.1,194.5 L286.5,209.2 L289.8,223.9 L293.2,237.5 L296.5,249.5 L299.9,259.3
L303.2,266.3 L306.5,270.6 L309.9,272.2 L313.3,271.2 L316.6,268.1 L320.0,263.3 L323.4,257.2 L326.7,250.3
L330.1,243.0 L333.4,235.7 L336.8,228.9 L340.2,222.7 L343.5,217.4 L346.9,213.2 L350.3,210.1 L353.6,208.2
L357.0,207.6 L360.3,208.0 L363.7,209.4 L367.1,211.7 L370.4,214.7 L373.8,218.2 L377.2,222.1 L380.5,226.2
L383.9,230.3 L387.3,234.3 M183.6,185.7 L187.0,189.7 L190.4,193.8 L193.7,197.9 L197.1,201.8 L200.4,205.3
L203.8,208.2 L207.2,210.5 L210.5,211.9 L213.9,212.3 L217.3,211.6 L220.6,209.8 L224.0,206.7 L227.3,202.6
L230.7,197.3 L234.1,191.2 L237.4,184.5 L240.8,177.4 L244.2,170.3 L247.5,163.6 L250.9,157.8 L254.2,153.2
L257.6,150.4 L261.0,149.7 L264.3,151.4 L267.7,155.7 L271.1,162.7 L274.4,172.2 L277.8,183.7 L281.2,196.9
L284.5,210.9 L287.9,224.8 L291.2,237.9 L294.6,249.5 L298.0,258.9 L301.2,265.9 L304.6,270.2 L308.0,271.9
L311.3,271.2 L314.7,268.4 L318.0,263.9 L321.4,258.0 L324.8,251.4 L328.1,244.3 L331.5,237.2 L334.9,230.5
L338.2,224.4 L341.6,219.2 L345.0,215.0 L348.3,212.0 L351.7,210.1 L355.0,209.4 L358.4,209.8 L361.8,211.2
L365.1,213.5 L368.5,216.5 L371.9,220.0 L375.2,223.8 L378.6,227.9 L381.9,231.9 L385.3,235.9 M181.7,187.2
L185.0,191.1 L188.4,195.1 L191.8,199.0 L195.1,202.7 L198.5,206.1 L201.9,208.9 L205.2,211.1 L208.6,212.5
L212.0,212.9 L215.3,212.3 L218.7,210.6 L222.0,207.7 L225.4,203.8 L228.8,198.9 L232.1,193.2 L235.5,186.9
L238.9,180.3 L242.2,173.8 L245.6,167.7 L248.9,162.4 L252.3,158.3 L255.7,155.9 L259.0,155.5 L262.4,157.3
L265.8,161.5 L269.1,168.1 L272.5,176.9 L275.8,187.6 L279.2,199.7 L282.6,212.6 L285.9,225.4 L289.3,237.4
L292.7,248.1 L296.0,257.0 L299.4,263.6 L302.7,267.8 L306.0,269.6 L309.4,269.1 L312.7,266.7 L316.1,262.6
L319.5,257.4 L322.8,251.2 L326.2,244.7 L329.6,238.1 L332.9,231.8 L336.3,226.2 L339.6,221.3 L343.0,217.4
L346.4,214.6 L349.7,212.8 L353.1,212.2 L356.5,212.6 L359.8,214.0 L363.2,216.2 L366.6,219.0 L369.9,222.4
L373.3,226.1 L376.6,230.0 L380.0,233.9 L383.4,237.8 M179.7,188.6 L183.1,192.2 L186.5,195.9 L189.8,199.6
L193.2,203.1 L196.6,206.2 L199.9,208.9 L203.3,210.9 L206.6,212.2 L210.0,212.7 L213.4,212.2 L216.7,210.7
L220.1,208.2 L223.5,204.7 L226.8,200.4 L230.2,195.3 L233.6,189.8 L236.9,184.0 L240.3,178.3 L243.6,173.0
L247.0,168.4 L250.4,165.0 L253.7,163.1 L257.1,162.9 L260.5,164.7 L263.8,168.7 L267.2,174.7 L270.5,182.6
L273.9,192.2 L277.3,202.9 L280.6,214.2 L284.0,225.6 L287.4,236.2 L290.7,245.7 L294.1,253.7 L297.4,259.7
L300.7,263.6 L304.1,265.4 L307.4,265.3 L310.8,263.4 L314.2,259.9 L317.5,255.4 L320.9,250.1 L324.3,244.4
L327.6,238.6 L331.0,233.0 L334.3,228.1 L337.7,223.7 L341.1,220.3 L344.4,217.8 L347.8,216.3 L351.2,215.8
L354.5,216.2 L357.9,217.5 L361.2,219.6 L364.6,222.3 L368.0,225.4 L371.3,228.9 L374.7,232.5 L378.1,236.2
L381.4,239.8 M177.8,189.8 L181.2,193.1 L184.5,196.4 L187.9,199.7 L191.3,202.9 L194.6,205.7 L198.0,208.1
L201.3,210.0 L204.7,211.3 L208.1,211.8 L211.4,211.5 L214.8,210.3 L218.2,208.3 L221.5,205.4 L224.9,201.8
L228.2,197.7 L231.6,193.1 L235.0,188.3 L238.3,183.6 L241.7,179.3 L245.1,175.6 L248.4,173.0 L251.8,171.6
L255.2,171.7 L258.5,173.5 L261.9,177.0 L265.2,182.2 L268.6,189.1 L272.0,197.2 L275.3,206.3 L278.7,215.9
L282.1,225.5 L285.4,234.5 L288.8,242.7 L292.1,249.5 L295.5,254.7 L298.9,258.3 L302.1,260.1 L305.5,260.2
L308.9,258.8 L312.2,256.1 L315.6,252.5 L318.9,248.1 L322.3,243.5 L325.7,238.7 L329.0,234.1 L332.4,230.0
L335.8,226.4 L339.1,223.6 L342.5,221.5 L345.9,220.4 L349.2,220.0 L352.6,220.5 L355.9,221.8 L359.3,223.7
L362.7,226.1 L366.0,229.0 L369.4,232.0 L372.8,235.3 L376.1,238.6 L379.5,241.9 M175.9,190.9 L179.2,193.8
L182.6,196.7 L185.9,199.5 L189.3,202.3 L192.7,204.8 L196.0,206.9 L199.4,208.6 L202.8,209.8 L206.1,210.4
L209.5,210.3 L212.9,209.5 L216.2,208.0 L219.6,205.9 L222.9,203.2 L226.3,200.1 L229.7,196.6 L233.0,193.0
L236.4,189.4 L239.8,186.2 L243.1,183.6 L246.5,181.7 L249.8,180.9 L253.2,181.2 L256.6,182.9 L259.9,186.0
L263.3,190.3 L266.7,195.9 L270.0,202.6 L273.4,209.9 L276.8,217.6 L280.1,225.3 L283.5,232.5 L286.8,239.2
L290.2,244.8 L293.6,249.1 L296.9,252.2 L300.2,253.8 L303.6,254.2 L306.9,253.4 L310.3,251.5 L313.6,248.9
L317.0,245.6 L320.4,242.1 L323.7,238.5 L327.1,235.0 L330.5,231.9 L333.8,229.3 L337.2,227.2 L340.5,225.7
L343.9,224.9 L347.3,224.8 L350.6,225.4 L354.0,226.6 L357.4,228.3 L360.7,230.4 L364.1,232.8 L367.5,235.5
L370.8,238.4 L374.2,241.3 L377.5,244.2 M173.9,192.0 L177.3,194.4 L180.6,196.8 L184.0,199.1 L187.4,201.4
L190.7,203.5 L194.1,205.3 L197.5,206.8 L200.8,207.9 L204.2,208.6 L207.5,208.8 L210.9,208.5 L214.3,207.6
L217.6,206.3 L221.0,204.6 L224.4,202.5 L227.7,200.3 L231.1,197.9 L234.5,195.6 L237.8,193.6 L241.2,192.0
L244.5,190.9 L247.9,190.6 L251.3,191.2 L254.6,192.7 L258.0,195.2 L261.4,198.7 L264.7,203.0 L268.1,208.0
L271.4,213.5 L274.8,219.3 L278.2,225.1 L281.5,230.6 L284.9,235.5 L288.3,239.8 L291.6,243.2 L295.0,245.7
L298.3,247.3 L301.6,247.8 L305.0,247.5 L308.3,246.5 L311.7,244.9 L315.1,242.8 L318.4,240.5 L321.8,238.2
L325.2,235.9 L328.5,233.9 L331.9,232.1 L335.2,230.9 L338.6,230.1 L342.0,229.8 L345.3,230.0 L348.7,230.6
L352.1,231.6 L355.4,233.1 L358.8,235.0 L362.1,237.1 L365.5,239.3 L368.9,241.7 L372.2,244.1 L375.6,246.5
M172.0,193.0 L175.3,194.8 L178.7,196.7 L182.1,198.6 L185.4,200.4 L188.8,202.0 L192.2,203.5 L195.5,204.8
L198.9,205.9 L202.2,206.7 L205.6,207.1 L209.0,207.3 L212.3,207.1 L215.7,206.7 L219.1,206.0 L222.4,205.0
L225.8,204.0 L229.1,202.9 L232.5,201.9 L235.9,201.0 L239.2,200.4 L242.6,200.2 L246.0,200.4 L249.3,201.1
L252.7,202.5 L256.1,204.4 L259.4,206.9 L262.8,209.9 L266.1,213.3 L269.5,217.1 L272.9,221.0 L276.2,224.9
L279.6,228.6 L283.0,231.9 L286.3,234.9 L289.7,237.4 L293.0,239.4 L296.4,240.7 L299.8,241.4 L303.0,241.7
L306.4,241.4 L309.8,240.8 L313.1,239.9 L316.5,238.9 L319.8,237.8 L323.2,236.8 L326.6,235.9 L329.9,235.2
L333.3,234.7 L336.7,234.5 L340.0,234.7 L343.4,235.2 L346.8,235.9 L350.1,237.0 L353.5,238.3 L356.8,239.8
L360.2,241.5 L363.6,243.3 L366.9,245.1 L370.3,247.0 L373.7,248.8 '/> <path stroke='rgb(148, 0, 211)' d='M170.0,194.0 L173.4,195.3 L176.8,196.7 L180.1,198.0 L183.5,199.3 L186.8,200.5 L190.2,201.7 L193.6,202.8
L196.9,203.8 L200.3,204.7 L203.7,205.5 L207.0,206.1 L210.4,206.6 L213.8,207.0 L217.1,207.3 L220.5,207.5
L223.8,207.7 L227.2,207.9 L230.6,208.0 L233.9,208.3 L237.3,208.6 L240.7,209.1 L244.0,209.8 L247.4,210.7
L250.7,211.8 L254.1,213.1 L257.5,214.7 L260.8,216.5 L264.2,218.5 L267.6,220.5 L270.9,222.6 L274.3,224.8
L277.7,226.8 L281.0,228.8 L284.4,230.6 L287.7,232.0 L291.1,233.4 L294.5,234.5 L297.8,235.4 L301.1,236.1
L304.5,236.6 L307.8,236.9 L311.2,237.2 L314.5,237.3 L317.9,237.5 L321.3,237.6 L324.6,237.9 L328.0,238.2
L331.4,238.5 L334.7,239.1 L338.1,239.7 L341.4,240.5 L344.8,241.3 L348.2,242.4 L351.5,243.5 L354.9,244.6
L358.3,245.9 L361.6,247.2 L365.0,248.5 L368.4,249.9 L371.7,251.2 M168.1,195.0 L171.5,195.8 L174.8,196.7
L178.2,197.5 L181.5,198.3 L184.9,199.2 L188.3,200.1 L191.6,201.0 L195.0,202.0 L198.4,203.0 L201.7,204.0
L205.1,205.1 L208.4,206.3 L211.8,207.5 L215.2,208.7 L218.5,210.0 L221.9,211.3 L225.3,212.6 L228.6,213.8
L232.0,215.1 L235.4,216.3 L238.7,217.5 L242.1,218.5 L245.4,219.5 L248.8,220.5 L252.2,221.3 L255.5,222.0
L258.9,222.7 L262.3,223.3 L265.6,223.8 L269.0,224.3 L272.3,224.8 L275.7,225.4 L279.1,226.0 L282.4,226.6
L285.8,227.4 L289.2,228.2 L292.5,229.1 L295.9,230.1 L299.3,231.1 L302.5,232.2 L305.9,233.5 L309.2,234.7
L312.6,236.0 L316.0,237.3 L319.3,238.6 L322.7,239.8 L326.1,241.1 L329.4,242.3 L332.8,243.4 L336.1,244.5
L339.5,245.6 L342.9,246.6 L346.2,247.6 L349.6,248.5 L353.0,249.4 L356.3,250.2 L359.7,251.1 L363.0,251.9
L366.4,252.7 L369.8,253.5 M166.1,196.1 L169.5,196.4 L172.9,196.8 L176.2,197.2 L179.6,197.6 L183.0,198.1
L186.3,198.7 L189.7,199.4 L193.1,200.4 L196.4,201.5 L199.8,202.8 L203.1,204.4 L206.5,206.1 L209.9,208.0
L213.2,210.1 L216.6,212.3 L220.0,214.6 L223.3,216.9 L226.7,219.2 L230.0,221.3 L233.4,223.3 L236.8,225.0
L240.1,226.4 L243.5,227.5 L246.9,228.2 L250.2,228.5 L253.6,228.5 L257.0,228.2 L260.3,227.6 L263.7,226.9
L267.0,226.0 L270.4,225.1 L273.8,224.4 L277.1,223.8 L280.5,223.5 L283.9,223.5 L287.2,223.8 L290.6,224.5
L293.9,225.6 L297.3,227.0 L300.6,228.7 L303.9,230.7 L307.3,232.7 L310.7,235.0 L314.0,237.3 L317.4,239.6
L320.8,241.8 L324.1,243.9 L327.5,245.8 L330.8,247.6 L334.2,249.1 L337.6,250.4 L340.9,251.5 L344.3,252.5
L347.7,253.2 L351.0,253.8 L354.4,254.3 L357.7,254.8 L361.1,255.1 L364.5,255.5 L367.8,255.8 M164.2,197.2
L167.6,197.2 L170.9,197.1 L174.3,197.1 L177.7,197.1 L181.0,197.3 L184.4,197.7 L187.7,198.3 L191.1,199.2
L194.5,200.5 L197.8,202.0 L201.2,203.9 L204.6,206.2 L207.9,208.7 L211.3,211.6 L214.7,214.6 L218.0,217.7
L221.4,220.9 L224.7,224.0 L228.1,226.8 L231.5,229.4 L234.8,231.5 L238.2,233.2 L241.6,234.3 L244.9,234.8
L248.3,234.7 L251.6,234.1 L255.0,233.0 L258.4,231.4 L261.7,229.7 L265.1,227.7 L268.5,225.7 L271.8,223.9
L275.2,222.3 L278.6,221.2 L281.9,220.5 L285.3,220.5 L288.6,221.0 L292.0,222.1 L295.4,223.8 L298.7,226.0
L302.0,228.5 L305.4,231.3 L308.7,234.4 L312.1,237.5 L315.4,240.7 L318.8,243.7 L322.2,246.5 L325.5,249.1
L328.9,251.3 L332.3,253.2 L335.6,254.8 L339.0,256.0 L342.4,256.9 L345.7,257.6 L349.1,258.0 L352.4,258.2
L355.8,258.2 L359.2,258.2 L362.5,258.1 L365.9,258.1 M162.3,198.4 L165.6,198.1 L169.0,197.6 L172.4,197.3
L175.7,197.0 L179.1,197.0 L182.4,197.2 L185.8,197.7 L189.2,198.6 L192.5,199.9 L195.9,201.7 L199.3,203.9
L202.6,206.6 L206.0,209.7 L209.3,213.1 L212.7,216.7 L216.1,220.5 L219.4,224.4 L222.8,228.1 L226.2,231.4
L229.5,234.5 L232.9,237.0 L236.3,238.8 L239.6,240.0 L243.0,240.4 L246.3,240.0 L249.7,238.9 L253.1,237.1
L256.4,234.8 L259.8,232.1 L263.2,229.4 L266.5,226.5 L269.9,223.8 L273.2,221.5 L276.6,219.8 L280.0,218.6
L283.3,218.3 L286.7,218.6 L290.1,219.8 L293.4,221.7 L296.8,224.2 L300.1,227.2 L303.4,230.7 L306.8,234.3
L310.1,238.1 L313.5,241.9 L316.9,245.6 L320.2,249.0 L323.6,252.0 L327.0,254.7 L330.3,256.9 L333.7,258.7
L337.0,260.0 L340.4,260.9 L343.8,261.4 L347.1,261.6 L350.5,261.6 L353.9,261.3 L357.2,261.0 L360.6,260.6
L364.0,260.2 M160.3,199.8 L163.7,199.1 L167.1,198.5 L170.4,197.9 L173.8,197.4 L177.1,197.2 L180.5,197.2
L183.9,197.7 L187.2,198.6 L190.6,200.0 L194.0,201.9 L197.3,204.4 L200.7,207.3 L204.0,210.8 L207.4,214.6
L210.8,218.7 L214.1,223.0 L217.5,227.3 L220.9,231.4 L224.2,235.2 L227.6,238.6 L230.9,241.4 L234.3,243.4
L237.7,244.5 L241.0,244.8 L244.4,244.2 L247.8,242.7 L251.1,240.5 L254.5,237.7 L257.9,234.4 L261.2,231.0
L264.6,227.6 L267.9,224.3 L271.3,221.5 L274.7,219.3 L278.0,217.8 L281.4,217.2 L284.8,217.5 L288.1,218.6
L291.5,220.6 L294.8,223.4 L298.2,226.8 L301.5,230.6 L304.8,234.7 L308.2,239.0 L311.6,243.3 L314.9,247.4
L318.3,251.2 L321.7,254.7 L325.0,257.6 L328.4,260.1 L331.7,262.0 L335.1,263.4 L338.5,264.3 L341.8,264.8
L345.2,264.8 L348.6,264.6 L351.9,264.1 L355.3,263.5 L358.6,262.9 L362.0,262.2 M158.4,201.2 L161.7,200.4
L165.1,199.6 L168.5,198.8 L171.8,198.2 L175.2,197.8 L178.6,197.8 L181.9,198.2 L185.3,199.1 L188.7,200.6
L192.0,202.6 L195.4,205.2 L198.7,208.4 L202.1,212.1 L205.5,216.2 L208.8,220.6 L212.2,225.2 L215.6,229.8
L218.9,234.1 L222.3,238.2 L225.6,241.8 L229.0,244.6 L232.4,246.7 L235.7,247.8 L239.1,248.0 L242.5,247.3
L245.8,245.6 L249.2,243.1 L252.5,240.0 L255.9,236.4 L259.3,232.6 L262.6,228.9 L266.0,225.3 L269.4,222.2
L272.7,219.8 L276.1,218.1 L279.5,217.3 L282.8,217.5 L286.2,218.7 L289.5,220.7 L292.9,223.6 L296.3,227.1
L299.6,231.1 L302.9,235.5 L306.3,240.1 L309.6,244.7 L313.0,249.1 L316.3,253.3 L319.7,256.9 L323.1,260.1
L326.4,262.7 L329.8,264.8 L333.2,266.2 L336.5,267.1 L339.9,267.5 L343.3,267.5 L346.6,267.2 L350.0,266.6
L353.3,265.8 L356.7,265.0 L360.1,264.1 M156.4,202.8 L159.8,201.9 L163.2,201.0 L166.5,200.1 L169.9,199.4
L173.3,199.0 L176.6,199.0 L180.0,199.4 L183.3,200.3 L186.7,201.8 L190.1,203.9 L193.4,206.6 L196.8,209.8
L200.2,213.6 L203.5,217.9 L206.9,222.4 L210.3,227.1 L213.6,231.7 L217.0,236.2 L220.3,240.4 L223.7,244.0
L227.1,246.9 L230.4,248.9 L233.8,250.1 L237.2,250.2 L240.5,249.4 L243.9,247.7 L247.2,245.1 L250.6,241.9
L254.0,238.2 L257.3,234.3 L260.7,230.5 L264.1,226.8 L267.4,223.6 L270.8,221.1 L274.1,219.3 L277.5,218.5
L280.9,218.7 L284.2,219.8 L287.6,221.9 L291.0,224.8 L294.3,228.4 L297.7,232.4 L301.0,236.9 L304.3,241.6
L307.7,246.3 L311.0,250.9 L314.4,255.1 L317.8,258.9 L321.1,262.2 L324.5,264.9 L327.9,266.9 L331.2,268.4
L334.6,269.3 L337.9,269.7 L341.3,269.7 L344.7,269.3 L348.0,268.6 L351.4,267.8 L354.8,266.8 L358.1,265.9
M154.5,204.5 L157.9,203.6 L161.2,202.6 L164.6,201.8 L168.0,201.1 L171.3,200.7 L174.7,200.7 L178.0,201.1
L181.4,202.0 L184.8,203.5 L188.1,205.6 L191.5,208.3 L194.9,211.6 L198.2,215.4 L201.6,219.6 L204.9,224.1
L208.3,228.7 L211.7,233.2 L215.0,237.7 L218.4,241.8 L221.8,245.3 L225.1,248.2 L228.5,250.2 L231.9,251.3
L235.2,251.5 L238.6,250.7 L241.9,249.0 L245.3,246.5 L248.7,243.4 L252.0,239.8 L255.4,236.0 L258.8,232.2
L262.1,228.7 L265.5,225.6 L268.8,223.1 L272.2,221.4 L275.6,220.6 L278.9,220.8 L282.3,221.9 L285.7,223.9
L289.0,226.8 L292.4,230.3 L295.7,234.3 L299.1,238.7 L302.4,243.4 L305.7,248.0 L309.1,252.5 L312.5,256.7
L315.8,260.5 L319.2,263.8 L322.6,266.5 L325.9,268.6 L329.3,270.1 L332.6,271.0 L336.0,271.4 L339.4,271.4
L342.7,271.0 L346.1,270.3 L349.5,269.5 L352.8,268.5 L356.2,267.6 '/> <path stroke='rgb(148, 0, 211)' d='M152.6,206.2 L155.9,205.4 L159.3,204.6 L162.6,203.8 L166.0,203.2 L169.4,202.9 L172.7,202.9 L176.1,203.3
L179.5,204.3 L182.8,205.8 L186.2,207.8 L189.6,210.5 L192.9,213.6 L196.3,217.3 L199.6,221.3 L203.0,225.6
L206.4,230.1 L209.7,234.4 L213.1,238.6 L216.5,242.5 L219.8,245.9 L223.2,248.6 L226.5,250.6 L229.9,251.7
L233.3,251.9 L236.6,251.2 L240.0,249.6 L243.4,247.3 L246.7,244.5 L250.1,241.2 L253.5,237.7 L256.8,234.2
L260.2,231.0 L263.5,228.1 L266.9,225.8 L270.3,224.3 L273.6,223.6 L277.0,223.8 L280.4,224.9 L283.7,226.8
L287.1,229.5 L290.4,232.8 L293.8,236.7 L297.2,241.0 L300.4,245.4 L303.8,249.9 L307.2,254.2 L310.5,258.2
L313.9,261.8 L317.2,265.0 L320.6,267.6 L324.0,269.7 L327.3,271.2 L330.7,272.1 L334.1,272.6 L337.4,272.6
L340.8,272.2 L344.2,271.7 L347.5,270.9 L350.9,270.0 L354.2,269.2 M150.6,208.1 L154.0,207.4 L157.3,206.7
L160.7,206.1 L164.1,205.6 L167.4,205.4 L170.8,205.5 L174.2,206.0 L177.5,207.0 L180.9,208.4 L184.2,210.4
L187.6,212.9 L191.0,215.9 L194.3,219.3 L197.7,223.1 L201.1,227.1 L204.4,231.1 L207.8,235.2 L211.2,239.1
L214.5,242.7 L217.9,245.9 L221.2,248.4 L224.6,250.3 L228.0,251.3 L231.3,251.6 L234.7,251.0 L238.1,249.7
L241.4,247.8 L244.8,245.3 L248.1,242.4 L251.5,239.4 L254.9,236.3 L258.2,233.4 L261.6,231.0 L265.0,229.1
L268.3,227.8 L271.7,227.2 L275.0,227.5 L278.4,228.6 L281.8,230.4 L285.1,232.8 L288.5,236.0 L291.9,239.6
L295.2,243.5 L298.6,247.6 L301.9,251.7 L305.2,255.8 L308.6,259.5 L311.9,262.9 L315.3,265.9 L318.7,268.4
L322.0,270.4 L325.4,271.8 L328.8,272.8 L332.1,273.3 L335.5,273.4 L338.8,273.2 L342.2,272.7 L345.6,272.1
L348.9,271.4 L352.3,270.7 M148.7,210.1 L152.0,209.6 L155.4,209.1 L158.8,208.6 L162.1,208.4 L165.5,208.3
L168.9,208.5 L172.2,209.1 L175.6,210.1 L178.9,211.5 L182.3,213.3 L185.7,215.6 L189.0,218.3 L192.4,221.4
L195.8,224.9 L199.1,228.5 L202.5,232.1 L205.8,235.8 L209.2,239.3 L212.6,242.6 L215.9,245.4 L219.3,247.7
L222.7,249.4 L226.0,250.5 L229.4,250.8 L232.8,250.4 L236.1,249.5 L239.5,247.9 L242.8,245.9 L246.2,243.5
L249.6,241.0 L252.9,238.5 L256.3,236.2 L259.7,234.2 L263.0,232.6 L266.4,231.6 L269.7,231.3 L273.1,231.6
L276.5,232.7 L279.8,234.4 L283.2,236.7 L286.6,239.5 L289.9,242.8 L293.3,246.3 L296.6,250.0 L300.0,253.7
L303.3,257.3 L306.6,260.7 L310.0,263.8 L313.4,266.6 L316.7,268.9 L320.1,270.7 L323.5,272.1 L326.8,273.1
L330.2,273.7 L333.5,273.9 L336.9,273.8 L340.3,273.5 L343.6,273.1 L347.0,272.6 L350.4,272.1 M146.7,212.1
L150.1,211.8 L153.5,211.5 L156.8,211.4 L160.2,211.3 L163.5,211.4 L166.9,211.8 L170.3,212.4 L173.6,213.4
L177.0,214.7 L180.4,216.4 L183.7,218.5 L187.1,220.9 L190.5,223.7 L193.8,226.7 L197.2,229.8 L200.5,232.9
L203.9,236.2 L207.3,239.2 L210.6,242.1 L214.0,244.6 L217.4,246.6 L220.7,248.2 L224.1,249.2 L227.4,249.7
L230.8,249.6 L234.2,248.9 L237.5,247.8 L240.9,246.3 L244.3,244.6 L247.6,242.7 L251.0,240.9 L254.4,239.1
L257.7,237.6 L261.1,236.5 L264.4,235.9 L267.8,235.8 L271.2,236.2 L274.5,237.2 L277.9,238.8 L281.3,240.9
L284.6,243.4 L288.0,246.2 L291.3,249.3 L294.7,252.5 L298.1,255.7 L301.3,258.9 L304.7,261.9 L308.1,264.6
L311.4,267.0 L314.8,269.1 L318.1,270.8 L321.5,272.2 L324.9,273.1 L328.2,273.8 L331.6,274.1 L335.0,274.3
L338.3,274.2 L341.7,274.0 L345.1,273.7 L348.4,273.5 M144.8,214.1 L148.2,214.1 L151.5,214.1 L154.9,214.2
L158.2,214.4 L161.6,214.7 L165.0,215.2 L168.3,215.9 L171.7,216.9 L175.1,218.1 L178.4,219.7 L181.8,221.5
L185.1,223.6 L188.5,226.0 L191.9,228.5 L195.2,231.0 L198.6,233.8 L202.0,236.4 L205.3,239.0 L208.7,241.4
L212.1,243.6 L215.4,245.4 L218.8,246.8 L222.1,247.8 L225.5,248.4 L228.9,248.5 L232.2,248.2 L235.6,247.6
L239.0,246.7 L242.3,245.6 L245.7,244.4 L249.0,243.2 L252.4,242.1 L255.8,241.2 L259.1,240.6 L262.5,240.3
L265.9,240.5 L269.2,241.0 L272.6,242.0 L276.0,243.4 L279.3,245.2 L282.7,247.4 L286.0,249.8 L289.4,252.4
L292.8,255.1 L296.1,257.8 L299.5,260.4 L302.8,262.9 L306.1,265.3 L309.5,267.4 L312.8,269.2 L316.2,270.8
L319.6,272.0 L322.9,273.0 L326.3,273.7 L329.7,274.2 L333.0,274.5 L336.4,274.7 L339.7,274.8 L343.1,274.8
L346.5,274.8 M142.8,216.2 L146.2,216.5 L149.6,216.8 L152.9,217.1 L156.3,217.5 L159.7,218.0 L163.0,218.7
L166.4,219.5 L169.8,220.4 L173.1,221.6 L176.5,223.0 L179.8,224.6 L183.2,226.3 L186.6,228.3 L189.9,230.3
L193.3,232.4 L196.7,234.5 L200.0,236.7 L203.4,238.8 L206.7,240.7 L210.1,242.5 L213.5,244.0 L216.8,245.3
L220.2,246.3 L223.6,247.0 L226.9,247.4 L230.3,247.5 L233.7,247.4 L237.0,247.1 L240.4,246.6 L243.7,246.1
L247.1,245.6 L250.5,245.1 L253.8,244.8 L257.2,244.7 L260.6,244.8 L263.9,245.2 L267.3,245.9 L270.6,246.8
L274.0,248.1 L277.4,249.7 L280.7,251.4 L284.1,253.4 L287.5,255.5 L290.8,257.6 L294.2,259.8 L297.6,262.0
L300.8,264.0 L304.2,265.9 L307.5,267.7 L310.9,269.3 L314.3,270.6 L317.6,271.8 L321.0,272.8 L324.4,273.6
L327.7,274.2 L331.1,274.8 L334.4,275.2 L337.8,275.5 L341.2,275.8 L344.5,276.1 M140.9,218.2 L144.3,218.8
L147.6,219.4 L151.0,220.0 L154.4,220.7 L157.7,221.4 L161.1,222.2 L164.4,223.0 L167.8,224.0 L171.2,225.1
L174.5,226.3 L177.9,227.6 L181.3,229.0 L184.6,230.6 L188.0,232.0 L191.4,233.7 L194.7,235.3 L198.1,237.0
L201.4,238.6 L204.8,240.1 L208.2,241.5 L211.5,242.8 L214.9,243.9 L218.3,244.9 L221.6,245.7 L225.0,246.4
L228.3,246.9 L231.7,247.2 L235.1,247.5 L238.4,247.6 L241.8,247.8 L245.2,247.9 L248.5,248.1 L251.9,248.3
L255.3,248.7 L258.6,249.1 L262.0,249.8 L265.3,250.6 L268.7,251.6 L272.1,252.7 L275.4,254.0 L278.8,255.4
L282.2,257.0 L285.5,258.6 L288.9,260.2 L292.2,261.9 L295.6,263.5 L299.0,265.1 L302.2,266.6 L305.6,268.0
L309.0,269.3 L312.3,270.5 L315.7,271.6 L319.1,272.6 L322.4,273.5 L325.8,274.3 L329.1,275.0 L332.5,275.6
L335.9,276.2 L339.2,276.8 L342.6,277.4 M459.1,175.6 L457.2,176.9 L455.2,178.2 L453.3,179.5 L451.3,180.9
L449.4,182.3 L447.4,183.8 L445.5,185.4 L443.6,187.1 L441.6,188.9 L439.7,190.8 L437.7,192.8 L435.8,194.9
L433.9,197.2 L431.9,199.5 L430.0,201.8 L428.0,204.2 L426.1,206.5 L424.1,208.8 L422.2,211.1 L420.3,213.2
L418.3,215.2 L416.4,217.0 L414.4,218.7 L412.5,220.3 L410.6,221.6 L408.6,222.8 L406.7,223.9 L404.7,224.8
L402.8,225.7 L400.8,226.5 L398.9,227.4 L397.0,228.3 L395.0,229.2 L393.1,230.3 L391.1,231.4 L389.2,232.7
L387.3,234.3 L385.3,235.9 L383.4,237.8 L381.4,239.8 L379.5,241.9 L377.5,244.2 L375.6,246.5 L373.7,248.8
L371.7,251.2 L369.8,253.5 L367.8,255.8 L365.9,258.1 L364.0,260.2 L362.0,262.2 L360.1,264.1 L358.1,265.9
L356.2,267.6 L354.2,269.2 L352.3,270.7 L350.4,272.1 L348.4,273.5 L346.5,274.8 L344.5,276.1 L342.6,277.4
M455.7,174.2 L453.8,175.2 L451.8,176.3 L449.9,177.3 L448.0,178.4 L446.0,179.6 L444.1,181.0 L442.1,182.5
L440.2,184.2 L438.3,186.1 L436.3,188.2 L434.4,190.5 L432.4,192.9 L430.5,195.6 L428.5,198.3 L426.6,201.2
L424.7,204.1 L422.7,206.9 L420.8,209.7 L418.8,212.4 L416.9,214.9 L415.0,217.1 L413.0,219.1 L411.1,220.8
L409.1,222.2 L407.2,223.3 L405.2,224.2 L403.3,224.7 L401.4,225.1 L399.4,225.4 L397.5,225.6 L395.5,225.8
L393.6,226.0 L391.7,226.4 L389.7,227.0 L387.8,227.8 L385.8,228.9 L383.9,230.3 L381.9,231.9 L380.0,233.9
L378.1,236.2 L376.1,238.6 L374.2,241.3 L372.2,244.1 L370.3,247.0 L368.4,249.9 L366.4,252.7 L364.5,255.5
L362.5,258.1 L360.6,260.6 L358.6,262.9 L356.7,265.0 L354.8,266.8 L352.8,268.5 L350.9,270.0 L348.9,271.4
L347.0,272.6 L345.1,273.7 L343.1,274.8 L341.2,275.8 L339.2,276.8 '/> <path stroke='rgb(148, 0, 211)' d='M452.4,172.9 L450.4,173.6 L448.5,174.3 L446.5,175.1 L444.6,176.0 L442.7,177.0 L440.7,178.2 L438.8,179.6
L436.8,181.3 L434.9,183.3 L432.9,185.6 L431.0,188.1 L429.1,190.9 L427.1,194.0 L425.2,197.2 L423.2,200.6
L421.3,204.0 L419.4,207.4 L417.4,210.7 L415.5,213.8 L413.5,216.7 L411.6,219.2 L409.6,221.3 L407.7,223.0
L405.8,224.3 L403.8,225.1 L401.9,225.6 L399.9,225.7 L398.0,225.5 L396.1,225.1 L394.1,224.6 L392.2,224.1
L390.2,223.7 L388.3,223.5 L386.3,223.6 L384.4,224.1 L382.5,224.9 L380.5,226.2 L378.6,227.9 L376.6,230.0
L374.7,232.5 L372.8,235.3 L370.8,238.4 L368.9,241.7 L366.9,245.1 L365.0,248.5 L363.0,251.9 L361.1,255.1
L359.2,258.2 L357.2,261.0 L355.3,263.5 L353.3,265.8 L351.4,267.8 L349.5,269.5 L347.5,270.9 L345.6,272.1
L343.6,273.1 L341.7,274.0 L339.7,274.8 L337.8,275.5 L335.9,276.2 M449.0,171.5 L447.1,172.0 L445.1,172.5
L443.2,173.0 L441.2,173.6 L439.3,174.4 L437.4,175.5 L435.4,176.9 L433.5,178.6 L431.5,180.6 L429.6,183.0
L427.6,185.8 L425.7,189.0 L423.8,192.4 L421.8,196.1 L419.9,200.0 L417.9,203.9 L416.0,207.8 L414.1,211.6
L412.1,215.2 L410.2,218.4 L408.2,221.1 L406.3,223.4 L404.3,225.2 L402.4,226.3 L400.5,226.9 L398.5,227.0
L396.6,226.6 L394.6,225.8 L392.7,224.8 L390.8,223.6 L388.8,222.5 L386.9,221.4 L384.9,220.7 L383.0,220.3
L381.0,220.4 L379.1,220.9 L377.2,222.1 L375.2,223.8 L373.3,226.1 L371.3,228.9 L369.4,232.0 L367.5,235.5
L365.5,239.3 L363.6,243.3 L361.6,247.2 L359.7,251.1 L357.7,254.8 L355.8,258.2 L353.9,261.3 L351.9,264.1
L350.0,266.6 L348.0,268.6 L346.1,270.3 L344.2,271.7 L342.2,272.7 L340.3,273.5 L338.3,274.2 L336.4,274.7
L334.4,275.2 L332.5,275.6 M445.6,170.3 L443.7,170.5 L441.8,170.7 L439.8,171.0 L437.9,171.4 L435.9,172.0
L434.0,173.0 L432.0,174.3 L430.1,175.9 L428.2,178.0 L426.2,180.6 L424.3,183.6 L422.3,187.1 L420.4,190.9
L418.5,195.0 L416.5,199.3 L414.6,203.8 L412.6,208.2 L410.7,212.4 L408.7,216.4 L406.8,219.9 L404.9,222.9
L402.9,225.4 L401.0,227.1 L399.0,228.2 L397.1,228.5 L395.2,228.2 L393.2,227.4 L391.3,226.1 L389.3,224.5
L387.4,222.7 L385.4,220.9 L383.5,219.2 L381.6,217.9 L379.6,217.1 L377.7,216.8 L375.7,217.2 L373.8,218.2
L371.9,220.0 L369.9,222.4 L368.0,225.4 L366.0,229.0 L364.1,232.8 L362.1,237.1 L360.2,241.5 L358.3,245.9
L356.3,250.2 L354.4,254.3 L352.4,258.2 L350.5,261.6 L348.6,264.6 L346.6,267.2 L344.7,269.3 L342.7,271.0
L340.8,272.2 L338.8,273.2 L336.9,273.8 L335.0,274.3 L333.0,274.5 L331.1,274.8 L329.1,275.0 M442.3,169.0
L440.3,169.0 L438.4,169.1 L436.5,169.1 L434.5,169.4 L432.6,169.9 L430.6,170.7 L428.7,171.9 L426.7,173.6
L424.8,175.8 L422.9,178.4 L420.9,181.6 L419.0,185.3 L417.0,189.4 L415.1,193.9 L413.2,198.6 L411.2,203.5
L409.3,208.3 L407.3,212.9 L405.4,217.3 L403.4,221.1 L401.5,224.4 L399.6,226.9 L397.6,228.7 L395.7,229.7
L393.7,229.8 L391.8,229.2 L389.9,228.0 L387.9,226.2 L386.0,224.0 L384.0,221.7 L382.1,219.3 L380.1,217.2
L378.2,215.4 L376.3,214.2 L374.3,213.6 L372.4,213.7 L370.4,214.7 L368.5,216.5 L366.6,219.0 L364.6,222.3
L362.7,226.1 L360.7,230.4 L358.8,235.0 L356.8,239.8 L354.9,244.6 L353.0,249.4 L351.0,253.8 L349.1,258.0
L347.1,261.6 L345.2,264.8 L343.3,267.5 L341.3,269.7 L339.4,271.4 L337.4,272.6 L335.5,273.4 L333.5,273.9
L331.6,274.1 L329.7,274.2 L327.7,274.2 L325.8,274.3 M438.9,167.9 L437.0,167.7 L435.0,167.6 L433.1,167.6
L431.1,167.7 L429.2,168.1 L427.3,168.8 L425.3,169.9 L423.4,171.6 L421.4,173.8 L419.5,176.6 L417.6,179.9
L415.6,183.8 L413.7,188.1 L411.7,192.9 L409.8,197.9 L407.8,203.0 L405.9,208.2 L404.0,213.1 L402.0,217.8
L400.1,221.8 L398.1,225.3 L396.2,227.9 L394.3,229.7 L392.3,230.6 L390.4,230.6 L388.4,229.8 L386.5,228.2
L384.5,226.1 L382.6,223.5 L380.7,220.7 L378.7,217.9 L376.8,215.4 L374.8,213.2 L372.9,211.6 L371.0,210.8
L369.0,210.8 L367.1,211.7 L365.1,213.5 L363.2,216.2 L361.2,219.6 L359.3,223.7 L357.4,228.3 L355.4,233.1
L353.5,238.3 L351.5,243.5 L349.6,248.5 L347.7,253.2 L345.7,257.6 L343.8,261.4 L341.8,264.8 L339.9,267.5
L337.9,269.7 L336.0,271.4 L334.1,272.6 L332.1,273.3 L330.2,273.7 L328.2,273.8 L326.3,273.7 L324.4,273.6
L322.4,273.5 M435.6,166.8 L433.6,166.6 L431.7,166.4 L429.7,166.3 L427.8,166.3 L425.8,166.6 L423.9,167.3
L422.0,168.4 L420.0,170.1 L418.1,172.3 L416.1,175.1 L414.2,178.5 L412.3,182.4 L410.3,186.9 L408.4,191.8
L406.4,197.0 L404.5,202.4 L402.5,207.8 L400.6,212.9 L398.7,217.7 L396.7,222.0 L394.8,225.5 L392.8,228.3
L390.9,230.1 L389.0,230.9 L387.0,230.9 L385.1,229.9 L383.1,228.1 L381.2,225.7 L379.2,222.8 L377.3,219.7
L375.4,216.7 L373.4,213.8 L371.5,211.4 L369.5,209.6 L367.6,208.6 L365.7,208.6 L363.7,209.4 L361.8,211.2
L359.8,214.0 L357.9,217.5 L355.9,221.8 L354.0,226.6 L352.1,231.6 L350.1,237.0 L348.2,242.4 L346.2,247.6
L344.3,252.5 L342.4,256.9 L340.4,260.9 L338.5,264.3 L336.5,267.1 L334.6,269.3 L332.6,271.0 L330.7,272.1
L328.8,272.8 L326.8,273.1 L324.9,273.1 L322.9,273.0 L321.0,272.8 L319.1,272.6 M432.2,165.8 L430.2,165.6
L428.3,165.4 L426.4,165.3 L424.4,165.3 L422.5,165.6 L420.5,166.3 L418.6,167.4 L416.7,169.0 L414.7,171.2
L412.8,174.0 L410.8,177.4 L408.9,181.4 L406.9,185.9 L405.0,190.9 L403.1,196.1 L401.1,201.5 L399.2,206.9
L397.2,212.2 L395.3,217.0 L393.4,221.3 L391.4,224.9 L389.5,227.7 L387.5,229.6 L385.6,230.4 L383.6,230.3
L381.7,229.3 L379.8,227.4 L377.8,224.9 L375.9,222.0 L373.9,218.8 L372.0,215.6 L370.1,212.6 L368.1,210.1
L366.2,208.3 L364.2,207.2 L362.3,207.1 L360.3,208.0 L358.4,209.8 L356.5,212.6 L354.5,216.2 L352.6,220.5
L350.6,225.4 L348.7,230.6 L346.8,235.9 L344.8,241.3 L342.9,246.6 L340.9,251.5 L339.0,256.0 L337.0,260.0
L335.1,263.4 L333.2,266.2 L331.2,268.4 L329.3,270.1 L327.3,271.2 L325.4,271.8 L323.5,272.1 L321.5,272.2
L319.6,272.0 L317.6,271.8 L315.7,271.6 M428.8,165.0 L426.9,164.9 L424.9,164.7 L423.0,164.7 L421.1,164.8
L419.1,165.1 L417.2,165.8 L415.2,167.0 L413.3,168.6 L411.3,170.7 L409.4,173.5 L407.5,176.8 L405.5,180.7
L403.6,185.1 L401.6,189.9 L399.7,195.1 L397.8,200.3 L395.8,205.7 L393.9,210.8 L391.9,215.6 L390.0,219.8
L388.0,223.4 L386.1,226.2 L384.2,228.0 L382.2,229.0 L380.3,228.9 L378.3,227.9 L376.4,226.2 L374.5,223.8
L372.5,220.9 L370.6,217.8 L368.6,214.7 L366.7,211.8 L364.7,209.4 L362.8,207.7 L360.9,206.7 L358.9,206.7
L357.0,207.6 L355.0,209.4 L353.1,212.2 L351.2,215.8 L349.2,220.0 L347.3,224.8 L345.3,230.0 L343.4,235.2
L341.4,240.5 L339.5,245.6 L337.6,250.4 L335.6,254.8 L333.7,258.7 L331.7,262.0 L329.8,264.8 L327.9,266.9
L325.9,268.6 L324.0,269.7 L322.0,270.4 L320.1,270.7 L318.1,270.8 L316.2,270.8 L314.3,270.6 L312.3,270.5
M425.5,164.2 L423.5,164.3 L421.6,164.4 L419.6,164.5 L417.7,164.7 L415.8,165.2 L413.8,165.9 L411.9,167.1
L409.9,168.7 L408.0,170.8 L406.0,173.5 L404.1,176.6 L402.2,180.3 L400.2,184.5 L398.3,189.0 L396.3,193.9
L394.4,198.9 L392.5,203.9 L390.5,208.8 L388.6,213.3 L386.6,217.4 L384.7,220.8 L382.7,223.6 L380.8,225.4
L378.9,226.4 L376.9,226.5 L375.0,225.7 L373.0,224.2 L371.1,222.1 L369.2,219.6 L367.2,216.8 L365.3,214.1
L363.3,211.5 L361.4,209.4 L359.4,207.9 L357.5,207.2 L355.6,207.3 L353.6,208.2 L351.7,210.1 L349.7,212.8
L347.8,216.3 L345.9,220.4 L343.9,224.9 L342.0,229.8 L340.0,234.7 L338.1,239.7 L336.1,244.5 L334.2,249.1
L332.3,253.2 L330.3,256.9 L328.4,260.1 L326.4,262.7 L324.5,264.9 L322.6,266.5 L320.6,267.6 L318.7,268.4
L316.7,268.9 L314.8,269.1 L312.8,269.2 L310.9,269.3 L309.0,269.3 '/> <path stroke='rgb(148, 0, 211)' d='M422.1,163.6 L420.2,163.9 L418.2,164.2 L416.3,164.6 L414.3,165.1 L412.4,165.7 L410.4,166.6 L408.5,167.9
L406.6,169.5 L404.6,171.5 L402.7,174.0 L400.7,176.9 L398.8,180.3 L396.9,184.1 L394.9,188.2 L393.0,192.6
L391.0,197.1 L389.1,201.6 L387.1,206.0 L385.2,210.2 L383.3,214.0 L381.3,217.2 L379.4,219.8 L377.4,221.6
L375.5,222.7 L373.6,223.0 L371.6,222.6 L369.7,221.6 L367.7,220.0 L365.8,218.0 L363.8,215.9 L361.9,213.7
L360.0,211.8 L358.0,210.2 L356.1,209.1 L354.1,208.7 L352.2,209.0 L350.3,210.1 L348.3,212.0 L346.4,214.6
L344.4,217.8 L342.5,221.5 L340.5,225.7 L338.6,230.1 L336.7,234.5 L334.7,239.1 L332.8,243.4 L330.8,247.6
L328.9,251.3 L327.0,254.7 L325.0,257.6 L323.1,260.1 L321.1,262.2 L319.2,263.8 L317.2,265.0 L315.3,265.9
L313.4,266.6 L311.4,267.0 L309.5,267.4 L307.5,267.7 L305.6,268.0 M418.7,163.1 L416.8,163.8 L414.9,164.4
L412.9,165.1 L411.0,165.9 L409.0,166.8 L407.1,167.8 L405.1,169.2 L403.2,170.8 L401.3,172.7 L399.3,175.0
L397.4,177.6 L395.4,180.6 L393.5,183.9 L391.6,187.4 L389.6,191.1 L387.7,195.0 L385.7,198.9 L383.8,202.6
L381.8,206.2 L379.9,209.5 L378.0,212.4 L376.0,214.8 L374.1,216.6 L372.1,217.9 L370.2,218.5 L368.3,218.6
L366.3,218.1 L364.4,217.3 L362.4,216.2 L360.5,214.9 L358.5,213.6 L356.6,212.5 L354.7,211.6 L352.7,211.2
L350.8,211.3 L348.8,211.9 L346.9,213.2 L345.0,215.0 L343.0,217.4 L341.1,220.3 L339.1,223.6 L337.2,227.2
L335.2,230.9 L333.3,234.7 L331.4,238.5 L329.4,242.3 L327.5,245.8 L325.5,249.1 L323.6,252.0 L321.7,254.7
L319.7,256.9 L317.8,258.9 L315.8,260.5 L313.9,261.8 L311.9,262.9 L310.0,263.8 L308.1,264.6 L306.1,265.3
L304.2,265.9 L302.2,266.6 M415.4,162.7 L413.4,163.7 L411.5,164.8 L409.5,165.9 L407.6,167.0 L405.7,168.2
L403.7,169.5 L401.8,171.0 L399.8,172.7 L397.9,174.5 L396.0,176.5 L394.0,178.8 L392.1,181.2 L390.1,183.9
L388.2,186.7 L386.2,189.6 L384.3,192.6 L382.4,195.6 L380.4,198.6 L378.5,201.4 L376.5,204.1 L374.6,206.5
L372.7,208.7 L370.7,210.4 L368.8,211.9 L366.8,212.9 L364.9,213.6 L362.9,214.0 L361.0,214.1 L359.1,214.1
L357.1,213.9 L355.2,213.8 L353.2,213.7 L351.3,213.9 L349.4,214.2 L347.4,214.9 L345.5,216.0 L343.5,217.4
L341.6,219.2 L339.6,221.3 L337.7,223.7 L335.8,226.4 L333.8,229.3 L331.9,232.1 L329.9,235.2 L328.0,238.2
L326.1,241.1 L324.1,243.9 L322.2,246.5 L320.2,249.0 L318.3,251.2 L316.3,253.3 L314.4,255.1 L312.5,256.7
L310.5,258.2 L308.6,259.5 L306.6,260.7 L304.7,261.9 L302.8,262.9 L300.8,264.0 L299.0,265.1 M412.0,162.3
L410.1,163.9 L408.1,165.4 L406.2,166.9 L404.2,168.5 L402.3,170.0 L400.4,171.6 L398.4,173.3 L396.5,174.9
L394.5,176.7 L392.6,178.4 L390.7,180.2 L388.7,182.1 L386.8,184.0 L384.8,186.0 L382.9,187.9 L380.9,189.9
L379.0,191.9 L377.1,193.9 L375.1,195.9 L373.2,197.8 L371.2,199.7 L369.3,201.5 L367.4,203.2 L365.4,204.8
L363.5,206.3 L361.5,207.8 L359.6,209.2 L357.6,210.5 L355.7,211.7 L353.8,213.0 L351.8,214.2 L349.9,215.4
L347.9,216.7 L346.0,218.1 L344.1,219.6 L342.1,221.1 L340.2,222.7 L338.2,224.4 L336.3,226.2 L334.3,228.1
L332.4,230.0 L330.5,231.9 L328.5,233.9 L326.6,235.9 L324.6,237.9 L322.7,239.8 L320.8,241.8 L318.8,243.7
L316.9,245.6 L314.9,247.4 L313.0,249.1 L311.0,250.9 L309.1,252.5 L307.2,254.2 L305.2,255.8 L303.3,257.3
L301.3,258.9 L299.5,260.4 L297.6,262.0 L295.6,263.5 M408.6,162.0 L406.7,164.1 L404.8,166.1 L402.8,168.1
L400.9,170.2 L398.9,172.1 L397.0,174.0 L395.1,175.8 L393.1,177.5 L391.2,179.1 L389.2,180.6 L387.3,182.0
L385.3,183.2 L383.4,184.3 L381.5,185.3 L379.5,186.2 L377.6,187.1 L375.6,188.0 L373.7,188.8 L371.8,189.8
L369.8,190.8 L367.9,192.0 L365.9,193.4 L364.0,195.0 L362.0,196.9 L360.1,198.9 L358.2,201.2 L356.2,203.7
L354.3,206.4 L352.3,209.1 L350.4,212.0 L348.5,214.8 L346.5,217.6 L344.6,220.2 L342.6,222.7 L340.7,225.0
L338.7,227.1 L336.8,228.9 L334.9,230.5 L332.9,231.8 L331.0,233.0 L329.0,234.1 L327.1,235.0 L325.2,235.9
L323.2,236.8 L321.3,237.6 L319.3,238.6 L317.4,239.6 L315.4,240.7 L313.5,241.9 L311.6,243.3 L309.6,244.7
L307.7,246.3 L305.7,248.0 L303.8,249.9 L301.9,251.7 L300.0,253.7 L298.1,255.7 L296.1,257.8 L294.2,259.8
L292.2,261.9 M405.3,161.7 L403.3,164.3 L401.4,166.9 L399.5,169.4 L397.5,171.9 L395.6,174.3 L393.6,176.5
L391.7,178.5 L389.7,180.3 L387.8,181.8 L385.9,183.0 L383.9,183.8 L382.0,184.4 L380.0,184.6 L378.1,184.6
L376.2,184.4 L374.2,184.1 L372.3,183.7 L370.3,183.4 L368.4,183.2 L366.4,183.4 L364.5,183.8 L362.6,184.7
L360.6,186.2 L358.7,188.2 L356.7,190.9 L354.8,194.1 L352.9,197.8 L350.9,202.0 L349.0,206.4 L347.0,211.0
L345.1,215.6 L343.1,220.1 L341.2,224.2 L339.3,227.9 L337.3,231.0 L335.4,233.7 L333.4,235.7 L331.5,237.2
L329.6,238.1 L327.6,238.6 L325.7,238.7 L323.7,238.5 L321.8,238.2 L319.8,237.8 L317.9,237.5 L316.0,237.3
L314.0,237.3 L312.1,237.5 L310.1,238.1 L308.2,239.0 L306.3,240.1 L304.3,241.6 L302.4,243.4 L300.4,245.4
L298.6,247.6 L296.6,250.0 L294.7,252.5 L292.8,255.1 L290.8,257.6 L288.9,260.2 M401.9,161.4 L400.0,164.5
L398.0,167.6 L396.1,170.7 L394.2,173.7 L392.2,176.5 L390.3,179.0 L388.3,181.2 L386.4,183.1 L384.4,184.4
L382.5,185.3 L380.6,185.7 L378.6,185.6 L376.7,185.0 L374.7,184.0 L372.8,182.6 L370.9,181.1 L368.9,179.4
L367.0,177.9 L365.0,176.5 L363.1,175.6 L361.1,175.3 L359.2,175.7 L357.3,177.0 L355.3,179.2 L353.4,182.4
L351.4,186.6 L349.5,191.6 L347.6,197.3 L345.6,203.5 L343.7,210.0 L341.7,216.5 L339.8,222.8 L337.8,228.5
L335.9,233.4 L334.0,237.6 L332.0,240.8 L330.1,243.0 L328.1,244.3 L326.2,244.7 L324.3,244.4 L322.3,243.5
L320.4,242.1 L318.4,240.5 L316.5,238.9 L314.5,237.3 L312.6,236.0 L310.7,235.0 L308.7,234.4 L306.8,234.3
L304.8,234.7 L302.9,235.5 L301.0,236.9 L299.1,238.7 L297.2,241.0 L295.2,243.5 L293.3,246.3 L291.3,249.3
L289.4,252.4 L287.5,255.5 L285.5,258.6 M398.6,161.1 L396.6,164.6 L394.7,168.3 L392.7,171.8 L390.8,175.3
L388.8,178.5 L386.9,181.3 L385.0,183.7 L383.0,185.6 L381.1,186.9 L379.1,187.5 L377.2,187.5 L375.3,186.7
L373.3,185.3 L371.4,183.3 L369.4,180.9 L367.5,178.1 L365.5,175.2 L363.6,172.4 L361.7,169.9 L359.7,168.0
L357.8,166.8 L355.8,166.7 L353.9,167.7 L352.0,170.1 L350.0,173.9 L348.1,179.0 L346.1,185.3 L344.2,192.6
L342.2,200.6 L340.3,209.1 L338.4,217.5 L336.4,225.5 L334.5,232.8 L332.5,239.1 L330.6,244.2 L328.7,247.9
L326.7,250.3 L324.8,251.4 L322.8,251.2 L320.9,250.1 L318.9,248.1 L317.0,245.6 L315.1,242.8 L313.1,239.9
L311.2,237.2 L309.2,234.7 L307.3,232.7 L305.4,231.3 L303.4,230.7 L301.5,230.6 L299.6,231.1 L297.7,232.4
L295.7,234.3 L293.8,236.7 L291.9,239.6 L289.9,242.8 L288.0,246.2 L286.0,249.8 L284.1,253.4 L282.2,257.0
M395.2,160.7 L393.3,164.7 L391.3,168.7 L389.4,172.7 L387.4,176.6 L385.5,180.1 L383.5,183.3 L381.6,185.9
L379.7,187.8 L377.7,189.1 L375.8,189.4 L373.8,189.0 L371.9,187.7 L370.0,185.5 L368.0,182.6 L366.1,179.2
L364.1,175.3 L362.2,171.2 L360.2,167.2 L358.3,163.6 L356.4,160.7 L354.4,158.7 L352.5,158.1 L350.5,158.9
L348.6,161.4 L346.7,165.6 L344.7,171.6 L342.8,179.1 L340.8,188.0 L338.9,197.8 L336.9,208.1 L335.0,218.4
L333.1,228.2 L331.1,237.0 L329.2,244.5 L327.2,250.5 L325.3,254.7 L323.4,257.2 L321.4,258.0 L319.5,257.4
L317.5,255.4 L315.6,252.5 L313.6,248.9 L311.7,244.9 L309.8,240.8 L307.8,236.9 L305.9,233.5 L303.9,230.7
L302.0,228.5 L300.1,227.2 L298.2,226.8 L296.3,227.1 L294.3,228.4 L292.4,230.3 L290.4,232.8 L288.5,236.0
L286.6,239.5 L284.6,243.4 L282.7,247.4 L280.7,251.4 L278.8,255.4 '/> <path stroke='rgb(148, 0, 211)' d='M391.8,160.1 L389.9,164.5 L387.9,168.9 L386.0,173.3 L384.1,177.5 L382.1,181.3 L380.2,184.7 L378.2,187.5
L376.3,189.5 L374.4,190.7 L372.4,190.9 L370.5,190.1 L368.5,188.3 L366.6,185.5 L364.6,181.9 L362.7,177.6
L360.8,172.7 L358.8,167.7 L356.9,162.6 L354.9,158.0 L353.0,154.2 L351.1,151.5 L349.1,150.3 L347.2,150.8
L345.2,153.4 L343.3,158.0 L341.3,164.7 L339.4,173.4 L337.5,183.7 L335.5,195.1 L333.6,207.1 L331.6,219.2
L329.7,230.6 L327.8,240.8 L325.8,249.4 L323.9,256.1 L321.9,260.8 L320.0,263.3 L318.0,263.9 L316.1,262.6
L314.2,259.9 L312.2,256.1 L310.3,251.5 L308.3,246.5 L306.4,241.4 L304.5,236.6 L302.5,232.2 L300.6,228.7
L298.7,226.0 L296.8,224.2 L294.8,223.4 L292.9,223.6 L291.0,224.8 L289.0,226.8 L287.1,229.5 L285.1,232.8
L283.2,236.7 L281.3,240.9 L279.3,245.2 L277.4,249.7 L275.4,254.0 M388.5,159.5 L386.5,164.1 L384.6,168.8
L382.6,173.4 L380.7,177.8 L378.8,181.9 L376.8,185.5 L374.9,188.4 L372.9,190.5 L371.0,191.6 L369.1,191.7
L367.1,190.7 L365.2,188.5 L363.2,185.3 L361.3,181.1 L359.3,176.1 L357.4,170.6 L355.5,164.7 L353.5,158.9
L351.6,153.4 L349.6,148.9 L347.7,145.5 L345.8,143.8 L343.8,144.1 L341.9,146.6 L339.9,151.5 L338.0,158.8
L336.0,168.4 L334.1,179.8 L332.2,192.6 L330.2,206.2 L328.3,219.7 L326.3,232.4 L324.4,243.9 L322.5,253.4
L320.5,260.7 L318.6,265.6 L316.6,268.1 L314.7,268.4 L312.7,266.7 L310.8,263.4 L308.9,258.8 L306.9,253.4
L305.0,247.5 L303.0,241.7 L301.1,236.1 L299.3,231.1 L297.3,227.0 L295.4,223.8 L293.4,221.7 L291.5,220.6
L289.5,220.7 L287.6,221.9 L285.7,223.9 L283.7,226.8 L281.8,230.4 L279.8,234.4 L277.9,238.8 L276.0,243.4
L274.0,248.1 L272.1,252.7 M385.1,158.7 L383.2,163.4 L381.2,168.3 L379.3,173.0 L377.3,177.6 L375.4,181.8
L373.5,185.5 L371.5,188.5 L369.6,190.6 L367.6,191.7 L365.7,191.7 L363.7,190.6 L361.8,188.3 L359.9,184.8
L357.9,180.3 L356.0,174.9 L354.0,168.8 L352.1,162.4 L350.2,156.1 L348.2,150.1 L346.3,145.0 L344.3,141.2
L342.4,139.0 L340.4,139.1 L338.5,141.5 L336.6,146.5 L334.6,154.2 L332.7,164.3 L330.7,176.6 L328.8,190.5
L326.9,205.2 L324.9,219.9 L323.0,233.6 L321.0,245.9 L319.1,256.1 L317.1,263.8 L315.2,268.8 L313.3,271.2
L311.3,271.2 L309.4,269.1 L307.4,265.3 L305.5,260.2 L303.6,254.2 L301.6,247.8 L299.8,241.4 L297.8,235.4
L295.9,230.1 L293.9,225.6 L292.0,222.1 L290.1,219.8 L288.1,218.6 L286.2,218.7 L284.2,219.8 L282.3,221.9
L280.4,224.9 L278.4,228.6 L276.5,232.7 L274.5,237.2 L272.6,242.0 L270.6,246.8 L268.7,251.6 M381.7,157.7
L379.8,162.5 L377.9,167.3 L375.9,172.1 L374.0,176.7 L372.0,180.9 L370.1,184.6 L368.1,187.6 L366.2,189.8
L364.3,190.9 L362.3,190.9 L360.4,189.8 L358.4,187.4 L356.5,183.9 L354.6,179.3 L352.6,173.8 L350.7,167.6
L348.7,161.1 L346.8,154.5 L344.8,148.3 L342.9,142.9 L341.0,138.8 L339.0,136.4 L337.1,136.2 L335.1,138.4
L333.2,143.4 L331.3,151.2 L329.3,161.6 L327.4,174.4 L325.4,188.8 L323.5,204.2 L321.5,219.6 L319.6,234.0
L317.7,246.7 L315.7,257.1 L313.8,264.9 L311.8,269.9 L309.9,272.2 L308.0,271.9 L306.0,269.6 L304.1,265.4
L302.1,260.1 L300.2,253.8 L298.3,247.3 L296.4,240.7 L294.5,234.5 L292.5,229.1 L290.6,224.5 L288.6,221.0
L286.7,218.6 L284.8,217.5 L282.8,217.5 L280.9,218.7 L278.9,220.8 L277.0,223.8 L275.0,227.5 L273.1,231.6
L271.2,236.2 L269.2,241.0 L267.3,245.9 L265.3,250.6 M378.4,156.6 L376.4,161.2 L374.5,165.9 L372.6,170.6
L370.6,175.1 L368.7,179.3 L366.7,182.9 L364.8,185.9 L362.8,188.0 L360.9,189.2 L359.0,189.3 L357.0,188.2
L355.1,186.0 L353.1,182.7 L351.2,178.3 L349.3,173.0 L347.3,167.0 L345.4,160.6 L343.4,154.2 L341.5,148.1
L339.5,142.8 L337.6,138.6 L335.7,136.2 L333.7,135.8 L331.8,137.8 L329.8,142.6 L327.9,150.2 L326.0,160.5
L324.0,173.2 L322.1,187.7 L320.1,203.2 L318.2,218.8 L316.2,233.2 L314.3,245.9 L312.4,256.2 L310.4,263.8
L308.5,268.5 L306.5,270.6 L304.6,270.2 L302.7,267.8 L300.7,263.6 L298.9,258.3 L296.9,252.2 L295.0,245.7
L293.0,239.4 L291.1,233.4 L289.2,228.2 L287.2,223.8 L285.3,220.5 L283.3,218.3 L281.4,217.2 L279.5,217.3
L277.5,218.5 L275.6,220.6 L273.6,223.6 L271.7,227.2 L269.7,231.3 L267.8,235.8 L265.9,240.5 L263.9,245.2
L262.0,249.8 M375.0,155.3 L373.1,159.7 L371.1,164.1 L369.2,168.6 L367.2,172.8 L365.3,176.8 L363.4,180.2
L361.4,183.1 L359.5,185.2 L357.5,186.5 L355.6,186.7 L353.7,185.9 L351.7,184.0 L349.8,181.1 L347.8,177.2
L345.9,172.4 L343.9,167.0 L342.0,161.2 L340.1,155.3 L338.1,149.7 L336.2,144.8 L334.2,140.9 L332.3,138.5
L330.4,138.1 L328.4,139.9 L326.5,144.3 L324.5,151.4 L322.6,161.1 L320.6,173.3 L318.7,187.3 L316.8,202.3
L314.8,217.3 L312.9,231.2 L310.9,243.3 L309.0,253.1 L307.1,260.1 L305.1,264.5 L303.2,266.3 L301.2,265.9
L299.4,263.6 L297.4,259.7 L295.5,254.7 L293.6,249.1 L291.6,243.2 L289.7,237.4 L287.7,232.0 L285.8,227.4
L283.9,223.5 L281.9,220.5 L280.0,218.6 L278.0,217.8 L276.1,218.1 L274.1,219.3 L272.2,221.4 L270.3,224.3
L268.3,227.8 L266.4,231.6 L264.4,235.9 L262.5,240.3 L260.6,244.8 L258.6,249.1 M371.7,153.8 L369.7,157.8
L367.8,161.9 L365.8,166.0 L363.9,169.9 L361.9,173.5 L360.0,176.8 L358.1,179.5 L356.1,181.5 L354.2,182.8
L352.2,183.3 L350.3,182.8 L348.4,181.4 L346.4,179.1 L344.5,176.0 L342.5,172.0 L340.6,167.6 L338.6,162.7
L336.7,157.8 L334.8,153.0 L332.8,148.8 L330.9,145.6 L328.9,143.6 L327.0,143.2 L325.1,144.9 L323.1,148.7
L321.2,155.0 L319.2,163.7 L317.3,174.7 L315.3,187.5 L313.4,201.3 L311.5,215.1 L309.5,227.9 L307.6,238.8
L305.6,247.5 L303.7,253.8 L301.8,257.6 L299.9,259.3 L298.0,258.9 L296.0,257.0 L294.1,253.7 L292.1,249.5
L290.2,244.8 L288.3,239.8 L286.3,234.9 L284.4,230.6 L282.4,226.6 L280.5,223.5 L278.6,221.2 L276.6,219.8
L274.7,219.3 L272.7,219.8 L270.8,221.1 L268.8,223.1 L266.9,225.8 L265.0,229.1 L263.0,232.6 L261.1,236.5
L259.1,240.6 L257.2,244.7 L255.3,248.7 M368.3,152.3 L366.3,155.8 L364.4,159.4 L362.5,162.9 L360.5,166.4
L358.6,169.6 L356.6,172.5 L354.7,175.1 L352.8,177.0 L350.8,178.4 L348.9,179.1 L346.9,179.1 L345.0,178.4
L343.0,176.9 L341.1,174.7 L339.2,171.9 L337.2,168.6 L335.3,165.1 L333.3,161.4 L331.4,157.9 L329.5,154.8
L327.5,152.4 L325.6,151.1 L323.6,151.0 L321.7,152.5 L319.7,155.8 L317.8,161.1 L315.9,168.4 L313.9,177.6
L312.0,188.5 L310.0,200.3 L308.1,212.2 L306.2,223.1 L304.2,232.2 L302.3,239.5 L300.3,244.7 L298.5,248.0
L296.5,249.5 L294.6,249.5 L292.7,248.1 L290.7,245.7 L288.8,242.7 L286.8,239.2 L284.9,235.5 L283.0,231.9
L281.0,228.8 L279.1,226.0 L277.1,223.8 L275.2,222.3 L273.2,221.5 L271.3,221.5 L269.4,222.2 L267.4,223.6
L265.5,225.6 L263.5,228.1 L261.6,231.0 L259.7,234.2 L257.7,237.6 L255.8,241.2 L253.8,244.8 L251.9,248.3
M364.9,150.6 L363.0,153.5 L361.0,156.5 L359.1,159.5 L357.2,162.4 L355.2,165.2 L353.3,167.7 L351.3,170.0
L349.4,171.9 L347.5,173.4 L345.5,174.4 L343.6,174.9 L341.6,174.9 L339.7,174.3 L337.7,173.3 L335.8,171.9
L333.9,170.1 L331.9,168.1 L330.0,166.1 L328.0,164.1 L326.1,162.4 L324.2,161.2 L322.2,160.7 L320.3,161.1
L318.3,162.6 L316.4,165.3 L314.4,169.4 L312.5,174.9 L310.6,181.9 L308.6,190.2 L306.7,199.4 L304.7,208.5
L302.8,216.8 L300.9,223.8 L299.0,229.3 L297.1,233.3 L295.1,236.0 L293.2,237.5 L291.2,237.9 L289.3,237.4
L287.4,236.2 L285.4,234.5 L283.5,232.5 L281.5,230.6 L279.6,228.6 L277.7,226.8 L275.7,225.4 L273.8,224.4
L271.8,223.9 L269.9,223.8 L267.9,224.3 L266.0,225.3 L264.1,226.8 L262.1,228.7 L260.2,231.0 L258.2,233.4
L256.3,236.2 L254.4,239.1 L252.4,242.1 L250.5,245.1 L248.5,248.1 '/> <path stroke='rgb(148, 0, 211)' d='M361.6,148.8 L359.6,151.1 L357.7,153.5 L355.7,155.8 L353.8,158.1 L351.9,160.4 L349.9,162.5 L348.0,164.5
L346.0,166.3 L344.1,167.9 L342.1,169.2 L340.2,170.3 L338.3,171.1 L336.3,171.6 L334.4,171.9 L332.4,172.0
L330.5,171.9 L328.6,171.7 L326.6,171.5 L324.7,171.3 L322.7,171.2 L320.8,171.4 L318.8,171.9 L316.9,172.9
L315.0,174.5 L313.0,176.6 L311.1,179.5 L309.1,183.2 L307.2,187.6 L305.3,192.7 L303.3,198.4 L301.4,204.1
L299.5,209.2 L297.6,213.6 L295.6,217.3 L293.7,220.1 L291.8,222.3 L289.8,223.9 L287.9,224.8 L285.9,225.4
L284.0,225.6 L282.1,225.5 L280.1,225.3 L278.2,225.1 L276.2,224.9 L274.3,224.8 L272.3,224.8 L270.4,225.1
L268.5,225.7 L266.5,226.5 L264.6,227.6 L262.6,228.9 L260.7,230.5 L258.8,232.2 L256.8,234.2 L254.9,236.3
L252.9,238.5 L251.0,240.9 L249.0,243.2 L247.1,245.6 L245.2,247.9 M358.2,147.0 L356.3,148.7 L354.3,150.3
L352.4,152.0 L350.4,153.7 L348.5,155.4 L346.5,157.1 L344.6,158.7 L342.7,160.4 L340.7,162.1 L338.8,163.8
L336.8,165.5 L334.9,167.2 L333.0,168.8 L331.0,170.5 L329.1,172.2 L327.1,173.9 L325.2,175.6 L323.2,177.2
L321.3,178.9 L319.4,180.6 L317.4,182.3 L315.5,184.0 L313.5,185.6 L311.6,187.3 L309.7,189.0 L307.7,190.7
L305.8,192.4 L303.8,194.1 L301.9,195.7 L300.0,197.4 L298.1,199.1 L296.2,200.8 L294.2,202.5 L292.3,204.1
L290.3,205.8 L288.4,207.5 L286.5,209.2 L284.5,210.9 L282.6,212.6 L280.6,214.2 L278.7,215.9 L276.8,217.6
L274.8,219.3 L272.9,221.0 L270.9,222.6 L269.0,224.3 L267.0,226.0 L265.1,227.7 L263.2,229.4 L261.2,231.0
L259.3,232.6 L257.3,234.3 L255.4,236.0 L253.5,237.7 L251.5,239.4 L249.6,241.0 L247.6,242.7 L245.7,244.4
L243.7,246.1 L241.8,247.8 M354.8,145.2 L352.9,146.2 L351.0,147.2 L349.0,148.2 L347.1,149.3 L345.1,150.4
L343.2,151.6 L341.2,153.0 L339.3,154.6 L337.4,156.4 L335.4,158.4 L333.5,160.7 L331.5,163.2 L329.6,166.0
L327.7,169.1 L325.7,172.4 L323.8,175.8 L321.8,179.4 L319.9,183.0 L317.9,186.6 L316.0,190.0 L314.1,193.2
L312.1,196.0 L310.2,198.4 L308.2,200.2 L306.3,201.4 L304.4,201.9 L302.4,201.6 L300.5,200.6 L298.6,198.8
L296.7,196.4 L294.7,194.1 L292.8,192.3 L290.9,191.3 L288.9,191.0 L287.0,191.5 L285.0,192.7 L283.1,194.5
L281.2,196.9 L279.2,199.7 L277.3,202.9 L275.3,206.3 L273.4,209.9 L271.4,213.5 L269.5,217.1 L267.6,220.5
L265.6,223.8 L263.7,226.9 L261.7,229.7 L259.8,232.1 L257.9,234.4 L255.9,236.4 L254.0,238.2 L252.0,239.8
L250.1,241.2 L248.1,242.4 L246.2,243.5 L244.3,244.6 L242.3,245.6 L240.4,246.6 L238.4,247.6 M351.5,143.4
L349.5,143.8 L347.6,144.2 L345.6,144.5 L343.7,145.0 L341.8,145.6 L339.8,146.4 L337.9,147.5 L335.9,149.0
L334.0,150.8 L332.1,153.2 L330.1,156.1 L328.2,159.4 L326.2,163.3 L324.3,167.7 L322.3,172.5 L320.4,177.6
L318.5,183.0 L316.5,188.4 L314.6,193.7 L312.6,198.8 L310.7,203.3 L308.8,207.2 L306.8,210.2 L304.9,212.1
L302.9,212.7 L301.0,212.0 L299.1,209.8 L297.2,206.2 L295.3,201.3 L293.3,195.5 L291.4,189.7 L289.4,184.8
L287.5,181.1 L285.6,179.0 L283.6,178.2 L281.7,178.9 L279.7,180.8 L277.8,183.7 L275.8,187.6 L273.9,192.2
L272.0,197.2 L270.0,202.6 L268.1,208.0 L266.1,213.3 L264.2,218.5 L262.3,223.3 L260.3,227.6 L258.4,231.4
L256.4,234.8 L254.5,237.7 L252.5,240.0 L250.6,241.9 L248.7,243.4 L246.7,244.5 L244.8,245.3 L242.8,245.9
L240.9,246.3 L239.0,246.7 L237.0,247.1 L235.1,247.5 M348.1,141.7 L346.2,141.5 L344.2,141.3 L342.3,141.1
L340.3,141.0 L338.4,141.1 L336.5,141.6 L334.5,142.4 L332.6,143.8 L330.6,145.8 L328.7,148.4 L326.8,151.8
L324.8,155.9 L322.9,160.8 L320.9,166.4 L319.0,172.5 L317.0,179.1 L315.1,186.1 L313.2,193.1 L311.2,199.9
L309.3,206.4 L307.3,212.1 L305.4,216.9 L303.5,220.3 L301.5,222.1 L299.7,222.2 L297.7,220.3 L295.8,216.4
L293.8,210.5 L291.9,203.0 L290.0,194.5 L288.0,186.0 L286.1,178.5 L284.1,172.6 L282.2,168.7 L280.3,166.8
L278.3,166.9 L276.4,168.7 L274.4,172.2 L272.5,176.9 L270.5,182.6 L268.6,189.1 L266.7,195.9 L264.7,203.0
L262.8,209.9 L260.8,216.5 L258.9,222.7 L257.0,228.2 L255.0,233.0 L253.1,237.1 L251.1,240.5 L249.2,243.1
L247.2,245.1 L245.3,246.5 L243.4,247.3 L241.4,247.8 L239.5,247.9 L237.5,247.8 L235.6,247.6 L233.7,247.4
L231.7,247.2 M344.7,140.1 L342.8,139.5 L340.9,138.8 L338.9,138.1 L337.0,137.5 L335.0,137.2 L333.1,137.4
L331.2,138.0 L329.2,139.3 L327.3,141.4 L325.3,144.3 L323.4,148.1 L321.4,152.9 L319.5,158.5 L317.6,165.1
L315.6,172.3 L313.7,180.2 L311.7,188.4 L309.8,196.7 L307.9,204.8 L305.9,212.4 L304.0,219.0 L302.0,224.4
L300.1,228.1 L298.2,229.8 L296.3,229.3 L294.4,226.4 L292.4,221.0 L290.5,213.4 L288.5,204.0 L286.6,193.5
L284.7,183.1 L282.7,173.7 L280.8,166.0 L278.8,160.7 L276.9,157.8 L274.9,157.3 L273.0,159.0 L271.1,162.7
L269.1,168.1 L267.2,174.7 L265.2,182.2 L263.3,190.3 L261.4,198.7 L259.4,206.9 L257.5,214.7 L255.5,222.0
L253.6,228.5 L251.6,234.1 L249.7,238.9 L247.8,242.7 L245.8,245.6 L243.9,247.7 L241.9,249.0 L240.0,249.6
L238.1,249.7 L236.1,249.5 L234.2,248.9 L232.2,248.2 L230.3,247.5 L228.3,246.9 M341.4,138.6 L339.4,137.6
L337.5,136.5 L335.6,135.5 L333.6,134.6 L331.7,134.0 L329.7,133.9 L327.8,134.4 L325.9,135.6 L323.9,137.8
L322.0,140.9 L320.0,145.0 L318.1,150.3 L316.1,156.6 L314.2,163.9 L312.3,172.0 L310.3,180.8 L308.4,189.9
L306.4,199.2 L304.5,208.1 L302.6,216.5 L300.6,223.7 L298.8,229.4 L296.8,233.1 L294.9,234.6 L292.9,233.6
L291.0,230.0 L289.1,223.6 L287.1,214.9 L285.2,204.2 L283.2,192.6 L281.3,180.9 L279.4,170.3 L277.4,161.5
L275.5,155.1 L273.5,151.4 L271.6,150.4 L269.6,151.9 L267.7,155.7 L265.8,161.5 L263.8,168.7 L261.9,177.0
L259.9,186.0 L258.0,195.2 L256.1,204.4 L254.1,213.1 L252.2,221.3 L250.2,228.5 L248.3,234.7 L246.3,240.0
L244.4,244.2 L242.5,247.3 L240.5,249.4 L238.6,250.7 L236.6,251.2 L234.7,251.0 L232.8,250.4 L230.8,249.6
L228.9,248.5 L226.9,247.4 L225.0,246.4 M338.0,137.4 L336.1,136.1 L334.1,134.7 L332.2,133.4 L330.3,132.3
L328.3,131.5 L326.4,131.2 L324.4,131.6 L322.5,132.9 L320.5,135.0 L318.6,138.3 L316.7,142.7 L314.7,148.3
L312.8,155.0 L310.8,162.7 L308.9,171.4 L307.0,180.7 L305.0,190.5 L303.1,200.3 L301.1,209.7 L299.3,218.4
L297.3,225.9 L295.4,231.7 L293.5,235.4 L291.5,236.7 L289.6,235.3 L287.6,231.1 L285.7,224.3 L283.8,214.9
L281.8,203.8 L279.9,191.6 L277.9,179.4 L276.0,168.3 L274.0,158.9 L272.1,152.0 L270.2,147.8 L268.2,146.4
L266.3,147.7 L264.3,151.4 L262.4,157.3 L260.5,164.7 L258.5,173.5 L256.6,182.9 L254.6,192.7 L252.7,202.5
L250.7,211.8 L248.8,220.5 L246.9,228.2 L244.9,234.8 L243.0,240.4 L241.0,244.8 L239.1,248.0 L237.2,250.2
L235.2,251.5 L233.3,251.9 L231.3,251.6 L229.4,250.8 L227.4,249.7 L225.5,248.4 L223.6,247.0 L221.6,245.7
M334.7,136.2 L332.7,134.8 L330.8,133.4 L328.8,131.9 L326.9,130.7 L325.0,129.8 L323.0,129.5 L321.1,129.8
L319.1,131.1 L317.2,133.3 L315.2,136.6 L313.3,141.1 L311.4,146.9 L309.4,153.8 L307.5,161.7 L305.5,170.6
L303.6,180.1 L301.7,190.0 L299.8,200.0 L297.9,209.6 L295.9,218.3 L294.0,225.8 L292.0,231.4 L290.1,235.0
L288.2,236.1 L286.2,234.5 L284.3,230.2 L282.3,223.1 L280.4,213.7 L278.5,202.6 L276.5,190.6 L274.6,178.6
L272.6,167.5 L270.7,158.1 L268.7,151.1 L266.8,146.6 L264.9,145.0 L262.9,146.1 L261.0,149.7 L259.0,155.5
L257.1,162.9 L255.2,171.7 L253.2,181.2 L251.3,191.2 L249.3,201.1 L247.4,210.7 L245.4,219.5 L243.5,227.5
L241.6,234.3 L239.6,240.0 L237.7,244.5 L235.7,247.8 L233.8,250.1 L231.9,251.3 L229.9,251.7 L228.0,251.3
L226.0,250.5 L224.1,249.2 L222.1,247.8 L220.2,246.3 L218.3,244.9 '/> <path stroke='rgb(148, 0, 211)' d='M331.3,135.3 L329.4,133.9 L327.4,132.4 L325.5,131.0 L323.5,129.8 L321.6,128.9 L319.6,128.6 L317.7,129.0
L315.8,130.3 L313.8,132.5 L311.9,135.9 L309.9,140.4 L308.0,146.0 L306.1,152.9 L304.1,160.8 L302.2,169.5
L300.2,178.9 L298.4,188.7 L296.4,198.4 L294.5,207.7 L292.6,216.2 L290.6,223.4 L288.7,228.9 L286.7,232.1
L284.8,233.1 L282.9,231.4 L280.9,227.2 L279.0,220.4 L277.0,211.5 L275.1,201.0 L273.1,189.7 L271.2,178.3
L269.3,167.8 L267.3,158.9 L265.4,152.1 L263.4,147.8 L261.5,146.1 L259.6,147.1 L257.6,150.4 L255.7,155.9
L253.7,163.1 L251.8,171.6 L249.8,180.9 L247.9,190.6 L246.0,200.4 L244.0,209.8 L242.1,218.5 L240.1,226.4
L238.2,233.2 L236.3,238.8 L234.3,243.4 L232.4,246.7 L230.4,248.9 L228.5,250.2 L226.5,250.6 L224.6,250.3
L222.7,249.4 L220.7,248.2 L218.8,246.8 L216.8,245.3 L214.9,243.9 M327.9,134.5 L326.0,133.2 L324.0,131.9
L322.1,130.6 L320.2,129.6 L318.2,128.8 L316.3,128.6 L314.3,129.1 L312.4,130.4 L310.5,132.6 L308.5,135.9
L306.6,140.3 L304.6,145.8 L302.7,152.4 L300.7,159.9 L298.9,168.3 L297.0,177.2 L295.0,186.4 L293.1,195.6
L291.1,204.4 L289.2,212.4 L287.3,219.1 L285.3,224.1 L283.4,227.2 L281.4,228.1 L279.5,226.5 L277.5,222.6
L275.6,216.4 L273.7,208.3 L271.7,198.9 L269.8,188.7 L267.8,178.5 L265.9,169.1 L264.0,161.0 L262.0,154.8
L260.1,150.8 L258.1,149.3 L256.2,150.1 L254.2,153.2 L252.3,158.3 L250.4,165.0 L248.4,173.0 L246.5,181.7
L244.5,190.9 L242.6,200.2 L240.7,209.1 L238.7,217.5 L236.8,225.0 L234.8,231.5 L232.9,237.0 L230.9,241.4
L229.0,244.6 L227.1,246.9 L225.1,248.2 L223.2,248.6 L221.2,248.4 L219.3,247.7 L217.4,246.6 L215.4,245.4
L213.5,244.0 L211.5,242.8 M324.6,133.8 L322.6,132.8 L320.7,131.8 L318.7,130.8 L316.8,129.9 L314.9,129.4
L312.9,129.4 L311.0,130.0 L309.0,131.3 L307.1,133.6 L305.2,136.7 L303.2,140.9 L301.3,146.0 L299.4,152.1
L297.5,159.1 L295.5,166.8 L293.6,175.0 L291.7,183.5 L289.7,191.8 L287.8,199.8 L285.8,207.0 L283.9,213.1
L282.0,217.6 L280.0,220.5 L278.1,221.3 L276.1,220.0 L274.2,216.6 L272.2,211.4 L270.3,204.5 L268.4,196.4
L266.4,187.7 L264.5,179.0 L262.5,171.0 L260.6,164.1 L258.7,158.8 L256.7,155.4 L254.8,154.1 L252.8,155.0
L250.9,157.8 L248.9,162.4 L247.0,168.4 L245.1,175.6 L243.1,183.6 L241.2,192.0 L239.2,200.4 L237.3,208.6
L235.4,216.3 L233.4,223.3 L231.5,229.4 L229.5,234.5 L227.6,238.6 L225.6,241.8 L223.7,244.0 L221.8,245.3
L219.8,245.9 L217.9,245.9 L215.9,245.4 L214.0,244.6 L212.1,243.6 L210.1,242.5 L208.2,241.5 M321.2,133.3
L319.3,132.7 L317.3,132.0 L315.4,131.3 L313.4,130.8 L311.5,130.6 L309.6,130.9 L307.6,131.6 L305.7,133.0
L303.7,135.2 L301.8,138.1 L299.9,142.0 L298.0,146.6 L296.1,152.1 L294.1,158.4 L292.2,165.2 L290.2,172.5
L288.3,179.9 L286.4,187.2 L284.4,194.2 L282.5,200.5 L280.5,205.8 L278.6,209.9 L276.6,212.4 L274.7,213.3
L272.8,212.4 L270.8,209.8 L268.9,205.6 L266.9,200.1 L265.0,193.7 L263.1,186.7 L261.1,179.8 L259.2,173.4
L257.2,167.9 L255.3,163.7 L253.3,161.1 L251.4,160.2 L249.5,161.1 L247.5,163.6 L245.6,167.7 L243.6,173.0
L241.7,179.3 L239.8,186.2 L237.8,193.6 L235.9,201.0 L233.9,208.3 L232.0,215.1 L230.0,221.3 L228.1,226.8
L226.2,231.4 L224.2,235.2 L222.3,238.2 L220.3,240.4 L218.4,241.8 L216.5,242.5 L214.5,242.7 L212.6,242.6
L210.6,242.1 L208.7,241.4 L206.7,240.7 L204.8,240.1 M317.8,132.9 L315.9,132.7 L314.0,132.4 L312.0,132.2
L310.1,132.1 L308.1,132.3 L306.2,132.8 L304.3,133.7 L302.3,135.2 L300.4,137.3 L298.5,140.0 L296.6,143.5
L294.6,147.6 L292.7,152.4 L290.8,157.7 L288.8,163.5 L286.9,169.6 L284.9,175.9 L283.0,182.1 L281.1,188.0
L279.1,193.3 L277.2,197.8 L275.2,201.3 L273.3,203.6 L271.3,204.5 L269.4,204.1 L267.5,202.4 L265.5,199.5
L263.6,195.5 L261.6,190.8 L259.7,185.8 L257.8,180.7 L255.8,176.0 L253.9,172.1 L251.9,169.1 L250.0,167.4
L248.0,167.0 L246.1,168.0 L244.2,170.3 L242.2,173.8 L240.3,178.3 L238.3,183.6 L236.4,189.4 L234.5,195.6
L232.5,201.9 L230.6,208.0 L228.6,213.8 L226.7,219.2 L224.7,224.0 L222.8,228.1 L220.9,231.4 L218.9,234.1
L217.0,236.2 L215.0,237.7 L213.1,238.6 L211.2,239.1 L209.2,239.3 L207.3,239.2 L205.3,239.0 L203.4,238.8
L201.4,238.6 M314.5,132.5 L312.5,132.8 L310.6,133.1 L308.7,133.3 L306.7,133.7 L304.8,134.3 L302.8,135.1
L300.9,136.3 L299.0,137.8 L297.1,139.8 L295.2,142.3 L293.2,145.2 L291.3,148.7 L289.3,152.7 L287.4,157.0
L285.5,161.7 L283.5,166.7 L281.6,171.7 L279.6,176.6 L277.7,181.3 L275.7,185.6 L273.8,189.3 L271.9,192.2
L269.9,194.3 L268.0,195.4 L266.0,195.6 L264.1,194.8 L262.2,193.2 L260.2,190.8 L258.3,187.9 L256.3,184.8
L254.4,181.7 L252.4,178.8 L250.5,176.4 L248.6,174.8 L246.6,174.0 L244.7,174.2 L242.7,175.3 L240.8,177.4
L238.9,180.3 L236.9,184.0 L235.0,188.3 L233.0,193.0 L231.1,197.9 L229.1,202.9 L227.2,207.9 L225.3,212.6
L223.3,216.9 L221.4,220.9 L219.4,224.4 L217.5,227.3 L215.6,229.8 L213.6,231.7 L211.7,233.2 L209.7,234.4
L207.8,235.2 L205.8,235.8 L203.9,236.2 L202.0,236.4 L200.0,236.7 L198.1,237.0 M311.1,132.2 L309.2,133.0
L307.2,133.8 L305.3,134.6 L303.4,135.5 L301.4,136.5 L299.6,137.6 L297.6,139.0 L295.7,140.6 L293.7,142.4
L291.8,144.6 L289.9,147.1 L287.9,149.9 L286.0,153.0 L284.0,156.4 L282.1,160.0 L280.2,163.6 L278.2,167.4
L276.3,171.1 L274.3,174.6 L272.4,177.9 L270.4,180.8 L268.5,183.2 L266.6,185.1 L264.6,186.4 L262.7,187.1
L260.7,187.3 L258.8,186.9 L256.9,186.2 L254.9,185.1 L253.0,183.8 L251.0,182.6 L249.1,181.5 L247.1,180.7
L245.2,180.3 L243.3,180.5 L241.3,181.2 L239.4,182.6 L237.4,184.5 L235.5,186.9 L233.6,189.8 L231.6,193.1
L229.7,196.6 L227.7,200.3 L225.8,204.0 L223.8,207.7 L221.9,211.3 L220.0,214.6 L218.0,217.7 L216.1,220.5
L214.1,223.0 L212.2,225.2 L210.3,227.1 L208.3,228.7 L206.4,230.1 L204.4,231.1 L202.5,232.1 L200.5,232.9
L198.6,233.8 L196.7,234.5 L194.7,235.3 M307.8,131.9 L305.8,133.3 L303.9,134.6 L301.9,135.9 L300.0,137.2
L298.1,138.6 L296.2,140.1 L294.3,141.7 L292.3,143.3 L290.4,145.1 L288.4,147.0 L286.5,149.0 L284.6,151.1
L282.6,153.4 L280.7,155.7 L278.7,158.2 L276.8,160.7 L274.8,163.2 L272.9,165.6 L271.0,168.1 L269.0,170.4
L267.1,172.5 L265.1,174.5 L263.2,176.3 L261.3,177.8 L259.3,179.1 L257.4,180.2 L255.4,181.0 L253.5,181.7
L251.5,182.3 L249.6,182.9 L247.7,183.4 L245.7,184.0 L243.8,184.7 L241.8,185.6 L239.9,186.6 L238.0,187.9
L236.0,189.5 L234.1,191.2 L232.1,193.2 L230.2,195.3 L228.2,197.7 L226.3,200.1 L224.4,202.5 L222.4,205.0
L220.5,207.5 L218.5,210.0 L216.6,212.3 L214.7,214.6 L212.7,216.7 L210.8,218.7 L208.8,220.6 L206.9,222.4
L204.9,224.1 L203.0,225.6 L201.1,227.1 L199.1,228.5 L197.2,229.8 L195.2,231.0 L193.3,232.4 L191.4,233.7
M304.4,131.6 L302.4,133.5 L300.5,135.3 L298.7,137.1 L296.7,138.9 L294.8,140.7 L292.8,142.5 L290.9,144.2
L289.0,145.9 L287.0,147.6 L285.1,149.2 L283.1,150.7 L281.2,152.2 L279.2,153.7 L277.3,155.1 L275.4,156.4
L273.4,157.8 L271.5,159.2 L269.5,160.5 L267.6,161.9 L265.7,163.4 L263.7,164.9 L261.8,166.4 L259.8,168.1
L257.9,169.8 L255.9,171.7 L254.0,173.6 L252.1,175.6 L250.1,177.7 L248.2,179.8 L246.2,181.9 L244.3,184.0
L242.4,186.1 L240.4,188.2 L238.5,190.2 L236.5,192.1 L234.6,193.9 L232.6,195.7 L230.7,197.3 L228.8,198.9
L226.8,200.4 L224.9,201.8 L222.9,203.2 L221.0,204.6 L219.1,206.0 L217.1,207.3 L215.2,208.7 L213.2,210.1
L211.3,211.6 L209.3,213.1 L207.4,214.6 L205.5,216.2 L203.5,217.9 L201.6,219.6 L199.6,221.3 L197.7,223.1
L195.8,224.9 L193.8,226.7 L191.9,228.5 L189.9,230.3 L188.0,232.0 '/> <path stroke='rgb(148, 0, 211)' d='M301.0,131.3 L299.2,133.6 L297.2,135.9 L295.3,138.2 L293.4,140.4 L291.4,142.5 L289.5,144.6 L287.5,146.5
L285.6,148.2 L283.7,149.7 L281.7,151.1 L279.8,152.2 L277.8,153.1 L275.9,153.8 L273.9,154.4 L272.0,154.8
L270.1,155.2 L268.1,155.5 L266.2,155.9 L264.2,156.4 L262.3,157.1 L260.4,158.0 L258.4,159.3 L256.5,160.9
L254.5,162.8 L252.6,165.1 L250.6,167.8 L248.7,170.8 L246.8,174.0 L244.8,177.4 L242.9,180.9 L240.9,184.4
L239.0,187.8 L237.1,191.1 L235.1,194.1 L233.2,196.7 L231.2,199.0 L229.3,201.0 L227.3,202.6 L225.4,203.8
L223.5,204.7 L221.5,205.4 L219.6,205.9 L217.6,206.3 L215.7,206.7 L213.8,207.0 L211.8,207.5 L209.9,208.0
L207.9,208.7 L206.0,209.7 L204.0,210.8 L202.1,212.1 L200.2,213.6 L198.2,215.4 L196.3,217.3 L194.3,219.3
L192.4,221.4 L190.5,223.7 L188.5,226.0 L186.6,228.3 L184.6,230.6 M297.8,130.8 L295.8,133.5 L293.9,136.3
L291.9,138.9 L290.0,141.5 L288.1,144.0 L286.1,146.3 L284.2,148.3 L282.2,150.0 L280.3,151.5 L278.3,152.6
L276.4,153.3 L274.5,153.7 L272.5,153.8 L270.6,153.6 L268.6,153.3 L266.7,152.8 L264.8,152.3 L262.8,151.8
L260.9,151.6 L258.9,151.7 L257.0,152.2 L255.0,153.2 L253.1,154.7 L251.2,156.8 L249.2,159.5 L247.3,162.8
L245.3,166.6 L243.4,170.8 L241.5,175.3 L239.5,179.9 L237.6,184.6 L235.6,189.1 L233.7,193.3 L231.7,197.1
L229.8,200.4 L227.9,203.1 L225.9,205.2 L224.0,206.7 L222.0,207.7 L220.1,208.2 L218.2,208.3 L216.2,208.0
L214.3,207.6 L212.3,207.1 L210.4,206.6 L208.4,206.3 L206.5,206.1 L204.6,206.2 L202.6,206.6 L200.7,207.3
L198.7,208.4 L196.8,209.8 L194.9,211.6 L192.9,213.6 L191.0,215.9 L189.0,218.3 L187.1,220.9 L185.1,223.6
L183.2,226.3 L181.3,229.0 M294.4,130.3 L292.5,133.4 L290.5,136.4 L288.6,139.4 L286.6,142.3 L284.7,145.0
L282.8,147.5 L280.8,149.6 L278.9,151.4 L276.9,152.7 L275.0,153.6 L273.0,154.0 L271.1,154.0 L269.2,153.6
L267.2,152.8 L265.3,151.8 L263.3,150.7 L261.4,149.5 L259.5,148.4 L257.5,147.6 L255.6,147.3 L253.6,147.4
L251.7,148.2 L249.7,149.7 L247.8,151.9 L245.9,155.0 L243.9,158.8 L242.0,163.2 L240.0,168.1 L238.1,173.5
L236.2,179.0 L234.2,184.5 L232.3,189.8 L230.3,194.8 L228.4,199.2 L226.4,203.0 L224.5,206.0 L222.6,208.3
L220.6,209.8 L218.7,210.6 L216.7,210.7 L214.8,210.3 L212.9,209.5 L210.9,208.5 L209.0,207.3 L207.0,206.1
L205.1,205.1 L203.1,204.4 L201.2,203.9 L199.3,203.9 L197.3,204.4 L195.4,205.2 L193.4,206.6 L191.5,208.3
L189.6,210.5 L187.6,212.9 L185.7,215.6 L183.7,218.5 L181.8,221.5 L179.8,224.6 L177.9,227.6 M291.0,129.7
L289.1,133.0 L287.2,136.3 L285.2,139.6 L283.3,142.7 L281.3,145.6 L279.4,148.2 L277.4,150.4 L275.5,152.1
L273.6,153.4 L271.6,154.1 L269.7,154.3 L267.7,154.0 L265.8,153.2 L263.9,152.0 L261.9,150.5 L260.0,148.9
L258.0,147.2 L256.1,145.7 L254.1,144.5 L252.2,143.8 L250.3,143.7 L248.3,144.4 L246.4,145.9 L244.4,148.3
L242.5,151.5 L240.6,155.7 L238.6,160.5 L236.7,166.0 L234.7,171.9 L232.8,178.0 L230.8,184.1 L228.9,190.0
L227.0,195.5 L225.0,200.4 L223.1,204.5 L221.1,207.7 L219.2,210.1 L217.3,211.6 L215.3,212.3 L213.4,212.2
L211.4,211.5 L209.5,210.3 L207.5,208.8 L205.6,207.1 L203.7,205.5 L201.7,204.0 L199.8,202.8 L197.8,202.0
L195.9,201.7 L194.0,201.9 L192.0,202.6 L190.1,203.9 L188.1,205.6 L186.2,207.8 L184.2,210.4 L182.3,213.3
L180.4,216.4 L178.4,219.7 L176.5,223.0 L174.5,226.3 M287.7,129.0 L285.7,132.4 L283.8,135.9 L281.9,139.4
L279.9,142.6 L278.0,145.6 L276.0,148.3 L274.1,150.5 L272.1,152.3 L270.2,153.5 L268.3,154.1 L266.3,154.1
L264.4,153.6 L262.4,152.6 L260.5,151.1 L258.6,149.3 L256.6,147.4 L254.7,145.5 L252.7,143.7 L250.8,142.3
L248.8,141.4 L246.9,141.2 L245.0,141.7 L243.0,143.2 L241.1,145.7 L239.1,149.1 L237.2,153.5 L235.3,158.6
L233.3,164.3 L231.4,170.6 L229.4,177.0 L227.5,183.5 L225.5,189.7 L223.6,195.5 L221.7,200.6 L219.7,204.9
L217.8,208.4 L215.8,210.8 L213.9,212.3 L212.0,212.9 L210.0,212.7 L208.1,211.8 L206.1,210.4 L204.2,208.6
L202.2,206.7 L200.3,204.7 L198.4,203.0 L196.4,201.5 L194.5,200.5 L192.5,199.9 L190.6,200.0 L188.7,200.6
L186.7,201.8 L184.8,203.5 L182.8,205.8 L180.9,208.4 L178.9,211.5 L177.0,214.7 L175.1,218.1 L173.1,221.6
L171.2,225.1 M284.3,128.1 L282.4,131.7 L280.4,135.2 L278.5,138.7 L276.5,142.1 L274.6,145.1 L272.7,147.8
L270.7,150.1 L268.8,151.8 L266.8,153.0 L264.9,153.6 L263.0,153.5 L261.0,152.9 L259.1,151.7 L257.1,150.2
L255.2,148.3 L253.2,146.2 L251.3,144.2 L249.4,142.3 L247.4,140.8 L245.5,139.9 L243.5,139.6 L241.6,140.2
L239.7,141.7 L237.7,144.2 L235.8,147.7 L233.8,152.1 L231.9,157.3 L229.9,163.2 L228.0,169.5 L226.1,176.1
L224.1,182.6 L222.2,188.9 L220.2,194.8 L218.3,200.0 L216.4,204.4 L214.4,207.9 L212.5,210.4 L210.5,211.9
L208.6,212.5 L206.6,212.2 L204.7,211.3 L202.8,209.8 L200.8,207.9 L198.9,205.9 L196.9,203.8 L195.0,202.0
L193.1,200.4 L191.1,199.2 L189.2,198.6 L187.2,198.6 L185.3,199.1 L183.3,200.3 L181.4,202.0 L179.5,204.3
L177.5,207.0 L175.6,210.1 L173.6,213.4 L171.7,216.9 L169.8,220.4 L167.8,224.0 M280.9,127.1 L279.0,130.7
L277.1,134.3 L275.1,137.8 L273.2,141.1 L271.2,144.1 L269.3,146.8 L267.4,149.1 L265.4,150.8 L263.5,152.0
L261.5,152.5 L259.6,152.5 L257.6,151.9 L255.7,150.7 L253.8,149.2 L251.8,147.3 L249.9,145.3 L247.9,143.4
L246.0,141.6 L244.1,140.1 L242.1,139.2 L240.2,139.1 L238.2,139.7 L236.3,141.2 L234.3,143.7 L232.4,147.2
L230.5,151.5 L228.5,156.6 L226.6,162.4 L224.6,168.6 L222.7,175.1 L220.8,181.5 L218.8,187.8 L216.9,193.5
L214.9,198.7 L213.0,203.0 L211.0,206.5 L209.1,209.0 L207.2,210.5 L205.2,211.1 L203.3,210.9 L201.3,210.0
L199.4,208.6 L197.5,206.8 L195.5,204.8 L193.6,202.8 L191.6,201.0 L189.7,199.4 L187.7,198.3 L185.8,197.7
L183.9,197.7 L181.9,198.2 L180.0,199.4 L178.0,201.1 L176.1,203.3 L174.2,206.0 L172.2,209.1 L170.3,212.4
L168.3,215.9 L166.4,219.5 L164.4,223.0 M277.6,126.1 L275.6,129.6 L273.7,133.1 L271.8,136.5 L269.8,139.7
L267.9,142.7 L265.9,145.3 L264.0,147.5 L262.1,149.3 L260.1,150.4 L258.2,151.0 L256.2,151.0 L254.3,150.5
L252.3,149.6 L250.4,148.2 L248.5,146.5 L246.5,144.7 L244.6,142.9 L242.6,141.3 L240.7,140.1 L238.8,139.4
L236.8,139.3 L234.9,140.0 L232.9,141.6 L231.0,144.0 L229.0,147.4 L227.1,151.6 L225.2,156.5 L223.2,162.0
L221.3,168.0 L219.3,174.1 L217.4,180.3 L215.5,186.2 L213.5,191.7 L211.6,196.7 L209.6,200.9 L207.7,204.2
L205.7,206.7 L203.8,208.2 L201.9,208.9 L199.9,208.9 L198.0,208.1 L196.0,206.9 L194.1,205.3 L192.2,203.5
L190.2,201.7 L188.3,200.1 L186.3,198.7 L184.4,197.7 L182.4,197.2 L180.5,197.2 L178.6,197.8 L176.6,199.0
L174.7,200.7 L172.7,202.9 L170.8,205.5 L168.9,208.5 L166.9,211.8 L165.0,215.2 L163.0,218.7 L161.1,222.2
M274.2,124.9 L272.3,128.3 L270.3,131.6 L268.4,134.9 L266.5,138.0 L264.5,140.9 L262.6,143.4 L260.6,145.6
L258.7,147.3 L256.7,148.5 L254.8,149.1 L252.9,149.3 L250.9,149.0 L249.0,148.2 L247.0,147.1 L245.1,145.8
L243.2,144.3 L241.2,142.8 L239.3,141.5 L237.3,140.6 L235.4,140.1 L233.4,140.2 L231.5,141.0 L229.6,142.6
L227.6,145.0 L225.7,148.2 L223.7,152.2 L221.8,156.8 L219.9,161.9 L217.9,167.4 L216.0,173.1 L214.0,178.9
L212.1,184.4 L210.1,189.5 L208.2,194.1 L206.3,198.1 L204.3,201.3 L202.4,203.7 L200.4,205.3 L198.5,206.1
L196.6,206.2 L194.6,205.7 L192.7,204.8 L190.7,203.5 L188.8,202.0 L186.8,200.5 L184.9,199.2 L183.0,198.1
L181.0,197.3 L179.1,197.0 L177.1,197.2 L175.2,197.8 L173.3,199.0 L171.3,200.7 L169.4,202.9 L167.4,205.4
L165.5,208.3 L163.5,211.4 L161.6,214.7 L159.7,218.0 L157.7,221.4 '/> <path stroke='rgb(148, 0, 211)' d='M270.9,123.7 L268.9,126.8 L267.0,130.0 L265.0,133.1 L263.1,136.0 L261.2,138.7 L259.2,141.1 L257.3,143.2
L255.3,144.9 L253.4,146.2 L251.4,147.0 L249.5,147.3 L247.6,147.2 L245.6,146.8 L243.7,146.0 L241.7,145.1
L239.8,144.0 L237.9,143.0 L235.9,142.1 L234.0,141.5 L232.0,141.3 L230.1,141.6 L228.1,142.6 L226.2,144.2
L224.3,146.5 L222.3,149.5 L220.4,153.2 L218.4,157.4 L216.5,162.0 L214.6,167.0 L212.6,172.2 L210.7,177.3
L208.7,182.3 L206.8,187.0 L204.8,191.2 L202.9,194.9 L201.0,197.9 L199.0,200.2 L197.1,201.8 L195.1,202.7
L193.2,203.1 L191.3,202.9 L189.3,202.3 L187.4,201.4 L185.4,200.4 L183.5,199.3 L181.5,198.3 L179.6,197.6
L177.7,197.1 L175.7,197.0 L173.8,197.4 L171.8,198.2 L169.9,199.4 L168.0,201.1 L166.0,203.2 L164.1,205.6
L162.1,208.4 L160.2,211.3 L158.2,214.4 L156.3,217.5 L154.4,220.7 M267.5,122.4 L265.6,125.3 L263.6,128.2
L261.7,131.1 L259.7,133.8 L257.8,136.3 L255.8,138.6 L253.9,140.6 L252.0,142.3 L250.0,143.6 L248.1,144.6
L246.1,145.1 L244.2,145.3 L242.3,145.3 L240.3,144.9 L238.4,144.4 L236.4,143.8 L234.5,143.3 L232.5,142.9
L230.6,142.7 L228.7,142.8 L226.7,143.4 L224.8,144.5 L222.8,146.1 L220.9,148.3 L219.0,151.1 L217.0,154.4
L215.1,158.2 L213.1,162.3 L211.2,166.7 L209.2,171.2 L207.3,175.7 L205.4,180.1 L203.4,184.2 L201.5,188.0
L199.5,191.3 L197.6,194.1 L195.7,196.3 L193.7,197.9 L191.8,199.0 L189.8,199.6 L187.9,199.7 L185.9,199.5
L184.0,199.1 L182.1,198.6 L180.1,198.0 L178.2,197.5 L176.2,197.2 L174.3,197.1 L172.4,197.3 L170.4,197.9
L168.5,198.8 L166.5,200.1 L164.6,201.8 L162.6,203.8 L160.7,206.1 L158.8,208.6 L156.8,211.4 L154.9,214.2
L152.9,217.1 L151.0,220.0 M264.1,121.1 L262.2,123.7 L260.3,126.3 L258.3,128.9 L256.4,131.4 L254.4,133.8
L252.5,135.9 L250.5,137.8 L248.6,139.5 L246.7,140.9 L244.7,142.0 L242.8,142.8 L240.8,143.4 L238.9,143.7
L237.0,143.8 L235.0,143.8 L233.1,143.8 L231.1,143.7 L229.2,143.8 L227.2,144.0 L225.3,144.6 L223.4,145.4
L221.4,146.6 L219.5,148.3 L217.5,150.4 L215.6,152.9 L213.7,155.8 L211.7,159.1 L209.8,162.6 L207.8,166.4
L205.9,170.2 L203.9,174.1 L202.0,177.8 L200.1,181.4 L198.1,184.7 L196.2,187.6 L194.2,190.1 L192.3,192.2
L190.4,193.8 L188.4,195.1 L186.5,195.9 L184.5,196.4 L182.6,196.7 L180.6,196.8 L178.7,196.7 L176.8,196.7
L174.8,196.7 L172.9,196.8 L170.9,197.1 L169.0,197.6 L167.1,198.5 L165.1,199.6 L163.2,201.0 L161.2,202.6
L159.3,204.6 L157.3,206.7 L155.4,209.1 L153.5,211.5 L151.5,214.1 L149.6,216.8 L147.6,219.4 M260.8,119.7
L258.8,122.1 L256.9,124.4 L254.9,126.7 L253.0,129.0 L251.1,131.1 L249.1,133.1 L247.2,135.0 L245.2,136.6
L243.3,138.1 L241.4,139.4 L239.4,140.5 L237.5,141.4 L235.5,142.1 L233.6,142.7 L231.6,143.2 L229.7,143.7
L227.8,144.2 L225.8,144.7 L223.9,145.4 L221.9,146.3 L220.0,147.4 L218.1,148.8 L216.1,150.5 L214.2,152.4
L212.2,154.7 L210.3,157.2 L208.3,160.0 L206.4,163.0 L204.5,166.1 L202.5,169.3 L200.6,172.4 L198.6,175.5
L196.7,178.5 L194.8,181.3 L192.8,183.8 L190.9,186.1 L188.9,188.1 L187.0,189.7 L185.0,191.1 L183.1,192.2
L181.2,193.1 L179.2,193.8 L177.3,194.4 L175.3,194.8 L173.4,195.3 L171.5,195.8 L169.5,196.4 L167.6,197.2
L165.6,198.1 L163.7,199.1 L161.7,200.4 L159.8,201.9 L157.9,203.6 L155.9,205.4 L154.0,207.4 L152.0,209.6
L150.1,211.8 L148.2,214.1 L146.2,216.5 L144.3,218.8 M257.4,118.4 L255.5,120.4 L253.5,122.5 L251.6,124.5
L249.6,126.5 L247.7,128.5 L245.8,130.3 L243.8,132.1 L241.9,133.8 L239.9,135.4 L238.0,136.8 L236.0,138.1
L234.1,139.4 L232.2,140.5 L230.2,141.6 L228.3,142.6 L226.3,143.6 L224.4,144.6 L222.5,145.7 L220.5,146.8
L218.6,148.0 L216.6,149.4 L214.7,150.9 L212.7,152.6 L210.8,154.4 L208.9,156.4 L206.9,158.6 L205.0,160.9
L203.0,163.3 L201.1,165.8 L199.2,168.3 L197.2,170.8 L195.3,173.3 L193.3,175.7 L191.4,178.0 L189.4,180.2
L187.5,182.2 L185.6,184.0 L183.6,185.7 L181.7,187.2 L179.7,188.6 L177.8,189.8 L175.9,190.9 L173.9,192.0
L172.0,193.0 L170.0,194.0 L168.1,195.0 L166.1,196.1 L164.2,197.2 L162.3,198.4 L160.3,199.8 L158.4,201.2
L156.4,202.8 L154.5,204.5 L152.6,206.2 L150.6,208.1 L148.7,210.1 L146.7,212.1 L144.8,214.1 L142.8,216.2
L140.9,218.2 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb( 0, 158, 115)' d='M269.1,331.5 L266.3,331.1 L265.2,331.0 L260.6,331.1 L259.2,331.3 L255.5,332.4 L253.0,334.0 L251.8,335.8
L251.9,338.1 L252.0,338.5 L254.2,340.4 L257.2,341.8 L260.8,342.5 L265.3,342.5 L266.6,342.4 L270.7,341.3
L271.6,340.9 L273.6,339.9 L275.5,338.2 L276.3,336.9 L276.5,336.2 L275.2,333.9 L274.4,333.4 L272.4,332.4
L269.1,331.5 M334.7,321.1 L333.4,321.3 L329.3,322.4 L328.4,322.7 L326.4,323.8 L324.5,325.5 L323.7,326.8
L323.5,327.4 L324.8,329.8 L325.6,330.3 L327.6,331.2 L330.9,332.2 L333.7,332.6 L334.8,332.7 L339.4,332.6
L340.8,332.4 L344.5,331.3 L347.0,329.7 L348.2,327.8 L348.1,325.6 L348.0,325.2 L345.8,323.2 L342.8,321.9
L339.2,321.2 L334.7,321.1 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb( 86, 180, 233)' d='M281.4,375.2 L280.3,375.5 L280.3,376.1 L283.7,376.4 L281.4,375.2 M360.7,364.7 L359.5,364.7 L358.7,366.4
L361.4,365.3 L360.7,364.7 M266.0,326.4 L265.2,326.3 L262.0,325.9 L257.6,325.9 L256.3,325.9 L252.3,326.6
L251.4,326.8 L248.0,328.0 L245.4,329.5 L243.2,331.1 L241.4,332.9 L240.1,334.7 L239.3,336.7 L239.3,337.9
L239.4,339.0 L240.4,340.8 L241.4,341.8 L242.6,342.8 L245.3,344.3 L248.3,345.6 L251.5,346.7 L255.0,347.5
L258.8,348.1 L263.0,348.4 L264.0,348.3 L268.0,347.9 L269.3,347.6 L273.0,346.5 L275.5,345.4 L276.0,345.1
L278.6,343.6 L280.8,342.0 L282.8,340.3 L284.5,338.6 L285.8,336.7 L286.0,336.3 L286.1,334.6 L285.3,333.0
L283.4,331.5 L282.9,331.2 L279.9,329.9 L276.6,328.8 L273.2,327.9 L269.7,327.1 L266.0,326.4 M241.3,297.3
L238.6,298.4 L239.3,299.0 L240.5,299.0 L241.3,297.3 M337.0,315.3 L336.0,315.3 L332.0,315.8 L330.7,316.1
L327.0,317.2 L324.5,318.3 L324.0,318.6 L321.4,320.1 L319.2,321.7 L317.2,323.4 L315.5,325.1 L314.2,327.0
L314.0,327.4 L313.9,329.1 L314.7,330.7 L316.6,332.2 L317.1,332.5 L320.1,333.8 L323.4,334.9 L326.8,335.8
L330.3,336.6 L334.0,337.3 L334.8,337.4 L338.0,337.7 L342.4,337.8 L343.7,337.8 L347.7,337.1 L348.6,336.9
L352.0,335.6 L354.6,334.2 L356.8,332.6 L358.6,330.8 L359.9,329.0 L360.7,326.9 L360.7,325.8 L360.6,324.7
L359.6,322.9 L358.6,321.9 L357.4,320.9 L354.7,319.3 L351.7,318.1 L348.5,317.0 L345.0,316.2 L341.2,315.5
L337.0,315.3 M319.7,287.5 L316.3,287.2 L318.6,288.5 L319.7,288.2 L319.7,287.5 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(230, 159, 0)' d='M303.3,332.8 L298.1,333.5 L296.2,335.2 L294.2,336.9 L292.3,338.6 L290.3,340.2 L288.4,341.9 L286.5,343.6
L284.5,345.3 L282.6,347.0 L280.6,348.7 L278.7,350.3 L276.8,352.0 L274.8,353.7 L272.9,355.4 L270.9,357.1
L272.9,359.2 L276.3,360.2 L279.6,361.2 L283.0,362.2 L286.3,363.1 L289.7,364.1 L293.1,365.1 L296.4,366.0
L299.8,367.0 L303.1,368.0 L306.4,369.0 L309.8,369.9 L313.2,370.9 L316.5,371.9 L319.9,372.8 L323.7,372.3
L325.6,370.6 L327.6,369.0 L329.5,367.3 L331.5,365.6 L333.4,363.9 L335.3,362.2 L337.3,360.6 L339.2,358.9
L341.2,357.2 L343.1,355.5 L345.1,353.8 L347.0,352.1 L348.9,350.5 L350.9,348.8 L350.4,346.4 L347.0,345.4
L343.7,344.5 L340.3,343.5 L336.9,342.5 L333.6,341.6 L330.2,340.6 L326.9,339.6 L323.5,338.6 L320.1,337.7
L316.8,336.7 L313.4,335.7 L310.0,334.8 L306.7,333.8 L303.3,332.8 M280.1,290.9 L276.3,291.4 L274.4,293.0
L272.4,294.7 L270.5,296.4 L268.5,298.1 L266.6,299.8 L264.7,301.4 L262.7,303.1 L260.8,304.8 L258.8,306.5
L256.9,308.2 L254.9,309.9 L253.0,311.5 L251.1,313.2 L249.1,314.9 L249.6,317.3 L253.0,318.3 L256.3,319.2
L259.7,320.2 L263.1,321.2 L266.4,322.1 L269.8,323.1 L273.1,324.1 L276.5,325.0 L279.9,326.0 L283.2,327.0
L286.6,328.0 L290.0,328.9 L293.3,329.9 L296.7,330.9 L301.9,330.2 L303.8,328.5 L305.8,326.8 L307.7,325.1
L309.7,323.4 L311.6,321.8 L313.5,320.1 L315.5,318.4 L317.4,316.7 L319.4,315.0 L321.3,313.3 L323.2,311.7
L325.2,310.0 L327.1,308.3 L329.1,306.6 L327.1,304.4 L323.7,303.5 L320.4,302.5 L317.0,301.5 L313.7,300.6
L310.3,299.6 L306.9,298.6 L303.6,297.6 L300.2,296.7 L296.9,295.7 L293.6,294.7 L290.2,293.8 L286.8,292.8
L283.5,291.8 L280.1,290.9 M189.0,367.0 L190.9,365.4 L192.8,363.7 L194.8,362.0 L196.7,360.3 L198.7,358.6
L200.6,356.9 L202.5,355.3 L204.5,353.6 L206.4,351.9 L208.4,350.2 L210.3,348.5 L212.2,346.9 L214.2,345.2
L216.1,343.5 L219.1,343.7 L222.4,344.7 L225.8,345.7 L229.2,346.6 L232.5,347.6 L235.9,348.6 L239.3,349.5
L242.6,350.5 L246.0,351.5 L249.3,352.5 L252.7,353.4 L256.1,354.4 L259.4,355.4 L262.8,356.3 L266.2,357.3
L269.0,358.7 L267.0,360.4 L265.1,362.1 L263.2,363.8 L261.2,365.5 L259.3,367.2 L257.3,368.8 L255.4,370.5
L253.5,372.2 L251.5,373.9 L249.6,375.6 L247.6,377.2 L245.7,378.9 L243.7,380.6 L241.8,382.3 M370.3,387.4
L367.0,386.4 L363.6,385.4 L360.2,384.5 L356.9,383.5 L353.5,382.5 L350.2,381.6 L346.8,380.6 L343.4,379.6
L340.1,378.7 L336.7,377.7 L333.3,376.7 L330.0,375.7 L326.6,374.8 L323.2,373.8 L321.7,374.0 L319.8,375.7
L317.9,377.4 L315.9,379.0 L314.0,380.7 L312.0,382.4 L310.1,384.1 L308.1,385.8 L306.2,387.5 L304.3,389.1
L302.3,390.8 L300.4,392.5 L298.5,394.2 L296.6,395.9 L294.6,397.5 M199.2,302.7 L202.5,303.7 L205.9,304.7
L209.2,305.6 L212.6,306.6 L216.0,307.6 L219.3,308.5 L222.7,309.5 L226.1,310.5 L229.4,311.5 L232.8,312.4
L236.2,313.4 L239.5,314.4 L242.9,315.3 L246.2,316.3 L245.2,318.3 L243.3,319.9 L241.4,321.6 L239.4,323.3
L237.5,325.0 L235.5,326.7 L233.6,328.4 L231.7,330.0 L229.7,331.7 L227.8,333.4 L225.8,335.1 L223.9,336.8
L221.9,338.4 L220.0,340.1 L218.1,341.8 L215.7,342.7 L212.4,341.8 L209.0,340.8 L205.6,339.8 L202.3,338.9
L198.9,337.9 L195.5,336.9 L192.2,335.9 L188.8,335.0 L185.5,334.0 L182.1,333.0 L178.7,332.1 L175.4,331.1
L172.0,330.1 L168.6,329.1 M431.4,334.5 L428.0,333.6 L424.6,332.6 L421.3,331.6 L417.9,330.7 L414.5,329.7
L411.2,328.7 L407.8,327.7 L404.5,326.8 L401.1,325.8 L397.7,324.8 L394.4,323.9 L391.0,322.9 L387.6,321.9
L384.3,320.9 L381.9,321.9 L380.0,323.6 L378.1,325.2 L376.1,326.9 L374.2,328.6 L372.2,330.3 L370.3,332.0
L368.3,333.7 L366.4,335.3 L364.5,337.0 L362.5,338.7 L360.6,340.4 L358.6,342.1 L356.7,343.7 L354.8,345.4
L353.8,347.4 L357.1,348.3 L360.5,349.3 L363.8,350.3 L367.2,351.3 L370.6,352.2 L373.9,353.2 L377.3,354.2
L380.7,355.1 L384.0,356.1 L387.4,357.1 L390.8,358.1 L394.1,359.0 L397.5,360.0 L400.8,361.0 M358.2,281.4
L356.3,283.1 L354.3,284.8 L352.4,286.4 L350.4,288.1 L348.5,289.8 L346.5,291.5 L344.6,293.2 L342.7,294.8
L340.7,296.5 L338.8,298.2 L336.8,299.9 L334.9,301.6 L333.0,303.3 L331.0,304.9 L333.8,306.4 L337.2,307.3
L340.6,308.3 L343.9,309.3 L347.3,310.3 L350.7,311.2 L354.0,312.2 L357.4,313.2 L360.7,314.1 L364.1,315.1
L367.5,316.1 L370.8,317.1 L374.2,318.0 L377.6,319.0 L380.9,320.0 L383.9,320.2 L385.8,318.5 L387.8,316.8
L389.7,315.2 L391.6,313.5 L393.6,311.8 L395.5,310.1 L397.5,308.4 L399.4,306.7 L401.3,305.1 L403.3,303.4
L405.2,301.7 L407.2,300.0 L409.1,298.3 L411.0,296.7 M305.4,266.1 L303.4,267.8 L301.5,269.5 L299.6,271.2
L297.7,272.9 L295.7,274.5 L293.8,276.2 L291.9,277.9 L289.9,279.6 L288.0,281.3 L286.0,283.0 L284.1,284.6
L282.1,286.3 L280.2,288.0 L278.3,289.7 L276.8,289.9 L273.4,288.9 L270.0,287.9 L266.7,287.0 L263.3,286.0
L259.9,285.0 L256.6,284.1 L253.2,283.1 L249.8,282.1 L246.5,281.1 L243.1,280.2 L239.8,279.2 L236.4,278.2
L233.0,277.3 L229.7,276.3 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb(240, 228, 66)' d='M234.3,361.6 L231.0,361.2 L233.2,362.5 L234.4,362.2 L234.3,361.6 M212.8,322.0 L211.5,322.0 L210.9,323.7
L213.3,322.5 L212.8,322.0 M309.7,339.0 L308.8,338.9 L305.4,338.8 L302.2,339.2 L299.4,340.2 L298.8,340.4
L296.2,341.9 L294.0,343.6 L292.1,345.2 L290.5,347.0 L289.1,348.9 L288.9,349.3 L288.3,350.9 L288.1,353.0
L288.2,353.7 L289.5,355.7 L289.9,356.1 L292.4,357.8 L295.4,359.2 L298.6,360.3 L302.0,361.1 L305.7,361.8
L309.7,362.2 L312.0,362.2 L314.3,362.1 L317.8,361.7 L319.9,361.2 L321.8,360.6 L324.9,359.2 L327.5,357.7
L329.6,356.1 L331.3,354.4 L332.5,352.5 L333.0,350.4 L332.9,349.9 L332.1,347.8 L331.5,347.2 L329.2,345.4
L327.0,344.1 L326.4,343.9 L323.4,342.6 L320.2,341.5 L316.9,340.5 L313.4,339.6 L309.7,339.0 M389.1,340.0
L386.7,341.2 L387.2,341.7 L388.5,341.7 L389.1,340.0 M290.3,301.5 L288.0,301.5 L285.7,301.5 L282.2,302.0
L280.1,302.5 L278.2,303.1 L275.1,304.5 L272.5,306.0 L270.4,307.6 L268.7,309.3 L267.5,311.2 L267.0,313.3
L267.1,313.8 L267.9,315.8 L268.5,316.5 L270.8,318.3 L273.0,319.5 L273.6,319.8 L276.6,321.1 L279.8,322.2
L283.1,323.2 L286.6,324.1 L290.3,324.7 L291.2,324.8 L294.6,324.9 L297.8,324.5 L300.6,323.5 L301.2,323.2
L303.8,321.7 L306.0,320.1 L307.9,318.4 L309.5,316.7 L310.9,314.8 L311.1,314.4 L311.7,312.8 L311.9,310.6
L311.8,309.9 L310.5,308.0 L310.1,307.5 L307.6,305.8 L304.6,304.5 L301.4,303.4 L298.0,302.5 L294.3,301.9
L290.3,301.5 M366.8,301.1 L365.6,301.5 L365.7,302.1 L369.0,302.5 L366.8,301.1 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='rgb( 0, 114, 178)' d='M312.7,344.1 L310.1,343.7 L308.8,343.6 L304.1,344.3 L303.1,344.7 L301.2,345.6 L299.4,347.3 L298.5,348.7
L298.3,349.3 L298.6,351.6 L298.9,352.3 L301.1,354.1 L304.2,355.4 L308.0,356.0 L312.5,355.9 L313.2,355.8
L317.2,354.7 L319.8,353.3 L321.2,351.4 L321.4,349.2 L321.0,348.6 L318.9,346.5 L318.2,346.1 L316.0,345.1
L312.7,344.1 M287.5,307.7 L286.8,307.8 L282.8,308.9 L280.2,310.4 L278.8,312.2 L278.6,314.5 L279.0,315.1
L281.1,317.2 L281.8,317.6 L284.0,318.6 L287.3,319.6 L289.9,320.0 L291.2,320.0 L295.9,319.4 L296.9,319.0
L298.8,318.0 L300.6,316.3 L301.5,315.0 L301.7,314.4 L301.4,312.1 L301.1,311.4 L298.9,309.5 L295.8,308.3
L292.0,307.7 L287.5,307.7 '/></g>
</g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M459.1,310.5 L342.6,411.4 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M140.9,353.2 L342.6,411.4 '/></g>
<g fill="none" color="black" stroke="currentColor" stroke-width="1.00" stroke-linecap="butt" stroke-linejoin="miter">
<path stroke='black' d='M342.6,411.4 L342.6,277.4 '/></g>
</g>
</svg>
|