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 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496
|
<?xml version="1.0" encoding="utf-8" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN"
"http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
<!-- Created with matplotlib (http://matplotlib.org/) -->
<svg height="497pt" version="1.1" viewBox="0 0 532 497" width="532pt" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
<defs>
<style type="text/css">
*{stroke-linecap:butt;stroke-linejoin:round;}
</style>
</defs>
<g id="figure_1">
<g id="patch_1">
<path d="M 0 497.52
L 532.8 497.52
L 532.8 0
L 0 0
z
" style="fill:#ffffff;stroke:#ffffff;stroke-linejoin:miter;stroke-width:2;"/>
</g>
<g id="axes_1">
<g id="patch_2">
<path d="M 106.56 398.016
L 479.52 398.016
L 479.52 59.7024
L 106.56 59.7024
z
" style="fill:#ffffff;"/>
</g>
<g id="matplotlib.axis_1">
<g id="xtick_1">
<g id="line2d_1">
<defs>
<path d="M 0 0
L 0 3.5
" id="mc180ea63ed" style="stroke:#000000;stroke-width:0.8;"/>
</defs>
<g>
<use style="stroke:#000000;stroke-width:0.8;" x="106.56" xlink:href="#mc180ea63ed" y="398.016"/>
</g>
</g>
<g id="text_1">
<!-- $\mathdefault{10^{-1}}$ -->
<defs>
<path d="M 12.40625 8.296875
L 28.515625 8.296875
L 28.515625 63.921875
L 10.984375 60.40625
L 10.984375 69.390625
L 28.421875 72.90625
L 38.28125 72.90625
L 38.28125 8.296875
L 54.390625 8.296875
L 54.390625 0
L 12.40625 0
z
" id="DejaVuSans-31"/>
<path d="M 31.78125 66.40625
Q 24.171875 66.40625 20.328125 58.90625
Q 16.5 51.421875 16.5 36.375
Q 16.5 21.390625 20.328125 13.890625
Q 24.171875 6.390625 31.78125 6.390625
Q 39.453125 6.390625 43.28125 13.890625
Q 47.125 21.390625 47.125 36.375
Q 47.125 51.421875 43.28125 58.90625
Q 39.453125 66.40625 31.78125 66.40625
z
M 31.78125 74.21875
Q 44.046875 74.21875 50.515625 64.515625
Q 56.984375 54.828125 56.984375 36.375
Q 56.984375 17.96875 50.515625 8.265625
Q 44.046875 -1.421875 31.78125 -1.421875
Q 19.53125 -1.421875 13.0625 8.265625
Q 6.59375 17.96875 6.59375 36.375
Q 6.59375 54.828125 13.0625 64.515625
Q 19.53125 74.21875 31.78125 74.21875
z
" id="DejaVuSans-30"/>
<path d="M 10.59375 35.5
L 73.1875 35.5
L 73.1875 27.203125
L 10.59375 27.203125
z
" id="DejaVuSans-2212"/>
</defs>
<g transform="translate(94.81 412.614437)scale(0.1 -0.1)">
<use transform="translate(0 0.684375)" xlink:href="#DejaVuSans-31"/>
<use transform="translate(63.623047 0.684375)" xlink:href="#DejaVuSans-30"/>
<use transform="translate(128.203125 38.965625)scale(0.7)" xlink:href="#DejaVuSans-2212"/>
<use transform="translate(186.855469 38.965625)scale(0.7)" xlink:href="#DejaVuSans-31"/>
</g>
</g>
</g>
<g id="xtick_2">
<g id="line2d_2">
<g>
<use style="stroke:#000000;stroke-width:0.8;" x="293.04" xlink:href="#mc180ea63ed" y="398.016"/>
</g>
</g>
<g id="text_2">
<!-- $\mathdefault{10^{0}}$ -->
<g transform="translate(284.24 412.614437)scale(0.1 -0.1)">
<use transform="translate(0 0.765625)" xlink:href="#DejaVuSans-31"/>
<use transform="translate(63.623047 0.765625)" xlink:href="#DejaVuSans-30"/>
<use transform="translate(128.203125 39.046875)scale(0.7)" xlink:href="#DejaVuSans-30"/>
</g>
</g>
</g>
<g id="xtick_3">
<g id="line2d_3">
<g>
<use style="stroke:#000000;stroke-width:0.8;" x="479.52" xlink:href="#mc180ea63ed" y="398.016"/>
</g>
</g>
<g id="text_3">
<!-- $\mathdefault{10^{1}}$ -->
<g transform="translate(470.72 412.614437)scale(0.1 -0.1)">
<use transform="translate(0 0.684375)" xlink:href="#DejaVuSans-31"/>
<use transform="translate(63.623047 0.684375)" xlink:href="#DejaVuSans-30"/>
<use transform="translate(128.203125 38.965625)scale(0.7)" xlink:href="#DejaVuSans-31"/>
</g>
</g>
</g>
<g id="xtick_4">
<g id="line2d_4">
<defs>
<path d="M 0 0
L 0 2
" id="m157384e65c" style="stroke:#000000;stroke-width:0.6;"/>
</defs>
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="162.696074" xlink:href="#m157384e65c" y="398.016"/>
</g>
</g>
</g>
<g id="xtick_5">
<g id="line2d_5">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="195.533572" xlink:href="#m157384e65c" y="398.016"/>
</g>
</g>
</g>
<g id="xtick_6">
<g id="line2d_6">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="218.832147" xlink:href="#m157384e65c" y="398.016"/>
</g>
</g>
</g>
<g id="xtick_7">
<g id="line2d_7">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="236.903926" xlink:href="#m157384e65c" y="398.016"/>
</g>
</g>
</g>
<g id="xtick_8">
<g id="line2d_8">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="251.669645" xlink:href="#m157384e65c" y="398.016"/>
</g>
</g>
</g>
<g id="xtick_9">
<g id="line2d_9">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="264.153883" xlink:href="#m157384e65c" y="398.016"/>
</g>
</g>
</g>
<g id="xtick_10">
<g id="line2d_10">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="274.968221" xlink:href="#m157384e65c" y="398.016"/>
</g>
</g>
</g>
<g id="xtick_11">
<g id="line2d_11">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="284.507143" xlink:href="#m157384e65c" y="398.016"/>
</g>
</g>
</g>
<g id="xtick_12">
<g id="line2d_12">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="349.176074" xlink:href="#m157384e65c" y="398.016"/>
</g>
</g>
</g>
<g id="xtick_13">
<g id="line2d_13">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="382.013572" xlink:href="#m157384e65c" y="398.016"/>
</g>
</g>
</g>
<g id="xtick_14">
<g id="line2d_14">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="405.312147" xlink:href="#m157384e65c" y="398.016"/>
</g>
</g>
</g>
<g id="xtick_15">
<g id="line2d_15">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="423.383926" xlink:href="#m157384e65c" y="398.016"/>
</g>
</g>
</g>
<g id="xtick_16">
<g id="line2d_16">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="438.149645" xlink:href="#m157384e65c" y="398.016"/>
</g>
</g>
</g>
<g id="xtick_17">
<g id="line2d_17">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="450.633883" xlink:href="#m157384e65c" y="398.016"/>
</g>
</g>
</g>
<g id="xtick_18">
<g id="line2d_18">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="461.448221" xlink:href="#m157384e65c" y="398.016"/>
</g>
</g>
</g>
<g id="xtick_19">
<g id="line2d_19">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="470.987143" xlink:href="#m157384e65c" y="398.016"/>
</g>
</g>
</g>
<g id="text_4">
<!-- $\rm{Q} (A^{-1})$ -->
<defs>
<path d="M 39.40625 66.21875
Q 28.65625 66.21875 22.328125 58.203125
Q 16.015625 50.203125 16.015625 36.375
Q 16.015625 22.609375 22.328125 14.59375
Q 28.65625 6.59375 39.40625 6.59375
Q 50.140625 6.59375 56.421875 14.59375
Q 62.703125 22.609375 62.703125 36.375
Q 62.703125 50.203125 56.421875 58.203125
Q 50.140625 66.21875 39.40625 66.21875
z
M 53.21875 1.3125
L 66.21875 -12.890625
L 54.296875 -12.890625
L 43.5 -1.21875
Q 41.890625 -1.3125 41.03125 -1.359375
Q 40.1875 -1.421875 39.40625 -1.421875
Q 24.03125 -1.421875 14.8125 8.859375
Q 5.609375 19.140625 5.609375 36.375
Q 5.609375 53.65625 14.8125 63.9375
Q 24.03125 74.21875 39.40625 74.21875
Q 54.734375 74.21875 63.90625 63.9375
Q 73.09375 53.65625 73.09375 36.375
Q 73.09375 23.6875 67.984375 14.640625
Q 62.890625 5.609375 53.21875 1.3125
z
" id="DejaVuSans-51"/>
<path d="M 31 75.875
Q 24.46875 64.65625 21.28125 53.65625
Q 18.109375 42.671875 18.109375 31.390625
Q 18.109375 20.125 21.3125 9.0625
Q 24.515625 -2 31 -13.1875
L 23.1875 -13.1875
Q 15.875 -1.703125 12.234375 9.375
Q 8.59375 20.453125 8.59375 31.390625
Q 8.59375 42.28125 12.203125 53.3125
Q 15.828125 64.359375 23.1875 75.875
z
" id="DejaVuSans-28"/>
<path d="M 34.1875 63.1875
L 20.796875 26.90625
L 47.609375 26.90625
z
M 28.609375 72.90625
L 39.796875 72.90625
L 67.578125 0
L 57.328125 0
L 50.6875 18.703125
L 17.828125 18.703125
L 11.1875 0
L 0.78125 0
z
" id="DejaVuSans-41"/>
<path d="M 8.015625 75.875
L 15.828125 75.875
Q 23.140625 64.359375 26.78125 53.3125
Q 30.421875 42.28125 30.421875 31.390625
Q 30.421875 20.453125 26.78125 9.375
Q 23.140625 -1.703125 15.828125 -13.1875
L 8.015625 -13.1875
Q 14.5 -2 17.703125 9.0625
Q 20.90625 20.125 20.90625 31.390625
Q 20.90625 42.671875 17.703125 53.65625
Q 14.5 64.65625 8.015625 75.875
z
" id="DejaVuSans-29"/>
</defs>
<g transform="translate(276.39 427.014437)scale(0.1 -0.1)">
<use transform="translate(0 0.684375)" xlink:href="#DejaVuSans-51"/>
<use transform="translate(78.710938 0.684375)" xlink:href="#DejaVuSans-28"/>
<use transform="translate(117.724609 0.684375)" xlink:href="#DejaVuSans-41"/>
<use transform="translate(187.089844 38.965625)scale(0.7)" xlink:href="#DejaVuSans-2212"/>
<use transform="translate(245.742188 38.965625)scale(0.7)" xlink:href="#DejaVuSans-31"/>
<use transform="translate(293.012695 0.684375)" xlink:href="#DejaVuSans-29"/>
</g>
</g>
</g>
<g id="matplotlib.axis_2">
<g id="ytick_1">
<g id="line2d_20">
<defs>
<path d="M 0 0
L -3.5 0
" id="m7d462a9d25" style="stroke:#000000;stroke-width:0.8;"/>
</defs>
<g>
<use style="stroke:#000000;stroke-width:0.8;" x="106.56" xlink:href="#m7d462a9d25" y="380.924329"/>
</g>
</g>
<g id="text_5">
<!-- $\mathdefault{10^{-3}}$ -->
<defs>
<path d="M 40.578125 39.3125
Q 47.65625 37.796875 51.625 33
Q 55.609375 28.21875 55.609375 21.1875
Q 55.609375 10.40625 48.1875 4.484375
Q 40.765625 -1.421875 27.09375 -1.421875
Q 22.515625 -1.421875 17.65625 -0.515625
Q 12.796875 0.390625 7.625 2.203125
L 7.625 11.71875
Q 11.71875 9.328125 16.59375 8.109375
Q 21.484375 6.890625 26.8125 6.890625
Q 36.078125 6.890625 40.9375 10.546875
Q 45.796875 14.203125 45.796875 21.1875
Q 45.796875 27.640625 41.28125 31.265625
Q 36.765625 34.90625 28.71875 34.90625
L 20.21875 34.90625
L 20.21875 43.015625
L 29.109375 43.015625
Q 36.375 43.015625 40.234375 45.921875
Q 44.09375 48.828125 44.09375 54.296875
Q 44.09375 59.90625 40.109375 62.90625
Q 36.140625 65.921875 28.71875 65.921875
Q 24.65625 65.921875 20.015625 65.03125
Q 15.375 64.15625 9.8125 62.3125
L 9.8125 71.09375
Q 15.4375 72.65625 20.34375 73.4375
Q 25.25 74.21875 29.59375 74.21875
Q 40.828125 74.21875 47.359375 69.109375
Q 53.90625 64.015625 53.90625 55.328125
Q 53.90625 49.265625 50.4375 45.09375
Q 46.96875 40.921875 40.578125 39.3125
z
" id="DejaVuSans-33"/>
</defs>
<g transform="translate(76.06 384.723548)scale(0.1 -0.1)">
<use transform="translate(0 0.765625)" xlink:href="#DejaVuSans-31"/>
<use transform="translate(63.623047 0.765625)" xlink:href="#DejaVuSans-30"/>
<use transform="translate(128.203125 39.046875)scale(0.7)" xlink:href="#DejaVuSans-2212"/>
<use transform="translate(186.855469 39.046875)scale(0.7)" xlink:href="#DejaVuSans-33"/>
</g>
</g>
</g>
<g id="ytick_2">
<g id="line2d_21">
<g>
<use style="stroke:#000000;stroke-width:0.8;" x="106.56" xlink:href="#m7d462a9d25" y="316.679943"/>
</g>
</g>
<g id="text_6">
<!-- $\mathdefault{10^{-2}}$ -->
<defs>
<path d="M 19.1875 8.296875
L 53.609375 8.296875
L 53.609375 0
L 7.328125 0
L 7.328125 8.296875
Q 12.9375 14.109375 22.625 23.890625
Q 32.328125 33.6875 34.8125 36.53125
Q 39.546875 41.84375 41.421875 45.53125
Q 43.3125 49.21875 43.3125 52.78125
Q 43.3125 58.59375 39.234375 62.25
Q 35.15625 65.921875 28.609375 65.921875
Q 23.96875 65.921875 18.8125 64.3125
Q 13.671875 62.703125 7.8125 59.421875
L 7.8125 69.390625
Q 13.765625 71.78125 18.9375 73
Q 24.125 74.21875 28.421875 74.21875
Q 39.75 74.21875 46.484375 68.546875
Q 53.21875 62.890625 53.21875 53.421875
Q 53.21875 48.921875 51.53125 44.890625
Q 49.859375 40.875 45.40625 35.40625
Q 44.1875 33.984375 37.640625 27.21875
Q 31.109375 20.453125 19.1875 8.296875
z
" id="DejaVuSans-32"/>
</defs>
<g transform="translate(76.06 320.479162)scale(0.1 -0.1)">
<use transform="translate(0 0.765625)" xlink:href="#DejaVuSans-31"/>
<use transform="translate(63.623047 0.765625)" xlink:href="#DejaVuSans-30"/>
<use transform="translate(128.203125 39.046875)scale(0.7)" xlink:href="#DejaVuSans-2212"/>
<use transform="translate(186.855469 39.046875)scale(0.7)" xlink:href="#DejaVuSans-32"/>
</g>
</g>
</g>
<g id="ytick_3">
<g id="line2d_22">
<g>
<use style="stroke:#000000;stroke-width:0.8;" x="106.56" xlink:href="#m7d462a9d25" y="252.435557"/>
</g>
</g>
<g id="text_7">
<!-- $\mathdefault{10^{-1}}$ -->
<g transform="translate(76.06 256.234776)scale(0.1 -0.1)">
<use transform="translate(0 0.684375)" xlink:href="#DejaVuSans-31"/>
<use transform="translate(63.623047 0.684375)" xlink:href="#DejaVuSans-30"/>
<use transform="translate(128.203125 38.965625)scale(0.7)" xlink:href="#DejaVuSans-2212"/>
<use transform="translate(186.855469 38.965625)scale(0.7)" xlink:href="#DejaVuSans-31"/>
</g>
</g>
</g>
<g id="ytick_4">
<g id="line2d_23">
<g>
<use style="stroke:#000000;stroke-width:0.8;" x="106.56" xlink:href="#m7d462a9d25" y="188.191172"/>
</g>
</g>
<g id="text_8">
<!-- $\mathdefault{10^{0}}$ -->
<g transform="translate(81.96 191.99039)scale(0.1 -0.1)">
<use transform="translate(0 0.765625)" xlink:href="#DejaVuSans-31"/>
<use transform="translate(63.623047 0.765625)" xlink:href="#DejaVuSans-30"/>
<use transform="translate(128.203125 39.046875)scale(0.7)" xlink:href="#DejaVuSans-30"/>
</g>
</g>
</g>
<g id="ytick_5">
<g id="line2d_24">
<g>
<use style="stroke:#000000;stroke-width:0.8;" x="106.56" xlink:href="#m7d462a9d25" y="123.946786"/>
</g>
</g>
<g id="text_9">
<!-- $\mathdefault{10^{1}}$ -->
<g transform="translate(81.96 127.746005)scale(0.1 -0.1)">
<use transform="translate(0 0.684375)" xlink:href="#DejaVuSans-31"/>
<use transform="translate(63.623047 0.684375)" xlink:href="#DejaVuSans-30"/>
<use transform="translate(128.203125 38.965625)scale(0.7)" xlink:href="#DejaVuSans-31"/>
</g>
</g>
</g>
<g id="ytick_6">
<g id="line2d_25">
<g>
<use style="stroke:#000000;stroke-width:0.8;" x="106.56" xlink:href="#m7d462a9d25" y="59.7024"/>
</g>
</g>
<g id="text_10">
<!-- $\mathdefault{10^{2}}$ -->
<g transform="translate(81.96 63.501619)scale(0.1 -0.1)">
<use transform="translate(0 0.765625)" xlink:href="#DejaVuSans-31"/>
<use transform="translate(63.623047 0.765625)" xlink:href="#DejaVuSans-30"/>
<use transform="translate(128.203125 39.046875)scale(0.7)" xlink:href="#DejaVuSans-32"/>
</g>
</g>
</g>
<g id="ytick_7">
<g id="line2d_26">
<defs>
<path d="M 0 0
L -2 0
" id="mcc6af3f2fb" style="stroke:#000000;stroke-width:0.6;"/>
</defs>
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="395.176865"/>
</g>
</g>
</g>
<g id="ytick_8">
<g id="line2d_27">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="390.87591"/>
</g>
</g>
</g>
<g id="ytick_9">
<g id="line2d_28">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="387.150253"/>
</g>
</g>
</g>
<g id="ytick_10">
<g id="line2d_29">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="383.863991"/>
</g>
</g>
</g>
<g id="ytick_11">
<g id="line2d_30">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="361.584842"/>
</g>
</g>
</g>
<g id="ytick_12">
<g id="line2d_31">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="350.271967"/>
</g>
</g>
</g>
<g id="ytick_13">
<g id="line2d_32">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="342.245354"/>
</g>
</g>
</g>
<g id="ytick_14">
<g id="line2d_33">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="336.01943"/>
</g>
</g>
</g>
<g id="ytick_15">
<g id="line2d_34">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="330.93248"/>
</g>
</g>
</g>
<g id="ytick_16">
<g id="line2d_35">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="326.631524"/>
</g>
</g>
</g>
<g id="ytick_17">
<g id="line2d_36">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="322.905867"/>
</g>
</g>
</g>
<g id="ytick_18">
<g id="line2d_37">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="319.619605"/>
</g>
</g>
</g>
<g id="ytick_19">
<g id="line2d_38">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="297.340456"/>
</g>
</g>
</g>
<g id="ytick_20">
<g id="line2d_39">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="286.027581"/>
</g>
</g>
</g>
<g id="ytick_21">
<g id="line2d_40">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="278.000969"/>
</g>
</g>
</g>
<g id="ytick_22">
<g id="line2d_41">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="271.775044"/>
</g>
</g>
</g>
<g id="ytick_23">
<g id="line2d_42">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="266.688094"/>
</g>
</g>
</g>
<g id="ytick_24">
<g id="line2d_43">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="262.387139"/>
</g>
</g>
</g>
<g id="ytick_25">
<g id="line2d_44">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="258.661482"/>
</g>
</g>
</g>
<g id="ytick_26">
<g id="line2d_45">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="255.375219"/>
</g>
</g>
</g>
<g id="ytick_27">
<g id="line2d_46">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="233.09607"/>
</g>
</g>
</g>
<g id="ytick_28">
<g id="line2d_47">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="221.783195"/>
</g>
</g>
</g>
<g id="ytick_29">
<g id="line2d_48">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="213.756583"/>
</g>
</g>
</g>
<g id="ytick_30">
<g id="line2d_49">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="207.530659"/>
</g>
</g>
</g>
<g id="ytick_31">
<g id="line2d_50">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="202.443708"/>
</g>
</g>
</g>
<g id="ytick_32">
<g id="line2d_51">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="198.142753"/>
</g>
</g>
</g>
<g id="ytick_33">
<g id="line2d_52">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="194.417096"/>
</g>
</g>
</g>
<g id="ytick_34">
<g id="line2d_53">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="191.130833"/>
</g>
</g>
</g>
<g id="ytick_35">
<g id="line2d_54">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="168.851684"/>
</g>
</g>
</g>
<g id="ytick_36">
<g id="line2d_55">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="157.53881"/>
</g>
</g>
</g>
<g id="ytick_37">
<g id="line2d_56">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="149.512197"/>
</g>
</g>
</g>
<g id="ytick_38">
<g id="line2d_57">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="143.286273"/>
</g>
</g>
</g>
<g id="ytick_39">
<g id="line2d_58">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="138.199322"/>
</g>
</g>
</g>
<g id="ytick_40">
<g id="line2d_59">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="133.898367"/>
</g>
</g>
</g>
<g id="ytick_41">
<g id="line2d_60">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="130.17271"/>
</g>
</g>
</g>
<g id="ytick_42">
<g id="line2d_61">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="126.886448"/>
</g>
</g>
</g>
<g id="ytick_43">
<g id="line2d_62">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="104.607299"/>
</g>
</g>
</g>
<g id="ytick_44">
<g id="line2d_63">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="93.294424"/>
</g>
</g>
</g>
<g id="ytick_45">
<g id="line2d_64">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="85.267811"/>
</g>
</g>
</g>
<g id="ytick_46">
<g id="line2d_65">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="79.041887"/>
</g>
</g>
</g>
<g id="ytick_47">
<g id="line2d_66">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="73.954937"/>
</g>
</g>
</g>
<g id="ytick_48">
<g id="line2d_67">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="69.653981"/>
</g>
</g>
</g>
<g id="ytick_49">
<g id="line2d_68">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="65.928324"/>
</g>
</g>
</g>
<g id="ytick_50">
<g id="line2d_69">
<g>
<use style="stroke:#000000;stroke-width:0.6;" x="106.56" xlink:href="#mcc6af3f2fb" y="62.642062"/>
</g>
</g>
</g>
<g id="text_11">
<!-- $\rm{Intensity} (cm^{-1})$ -->
<defs>
<path d="M 9.8125 72.90625
L 19.671875 72.90625
L 19.671875 0
L 9.8125 0
z
" id="DejaVuSans-49"/>
<path d="M 54.890625 33.015625
L 54.890625 0
L 45.90625 0
L 45.90625 32.71875
Q 45.90625 40.484375 42.875 44.328125
Q 39.84375 48.1875 33.796875 48.1875
Q 26.515625 48.1875 22.3125 43.546875
Q 18.109375 38.921875 18.109375 30.90625
L 18.109375 0
L 9.078125 0
L 9.078125 54.6875
L 18.109375 54.6875
L 18.109375 46.1875
Q 21.34375 51.125 25.703125 53.5625
Q 30.078125 56 35.796875 56
Q 45.21875 56 50.046875 50.171875
Q 54.890625 44.34375 54.890625 33.015625
z
" id="DejaVuSans-6e"/>
<path d="M 18.3125 70.21875
L 18.3125 54.6875
L 36.8125 54.6875
L 36.8125 47.703125
L 18.3125 47.703125
L 18.3125 18.015625
Q 18.3125 11.328125 20.140625 9.421875
Q 21.96875 7.515625 27.59375 7.515625
L 36.8125 7.515625
L 36.8125 0
L 27.59375 0
Q 17.1875 0 13.234375 3.875
Q 9.28125 7.765625 9.28125 18.015625
L 9.28125 47.703125
L 2.6875 47.703125
L 2.6875 54.6875
L 9.28125 54.6875
L 9.28125 70.21875
z
" id="DejaVuSans-74"/>
<path d="M 56.203125 29.59375
L 56.203125 25.203125
L 14.890625 25.203125
Q 15.484375 15.921875 20.484375 11.0625
Q 25.484375 6.203125 34.421875 6.203125
Q 39.59375 6.203125 44.453125 7.46875
Q 49.3125 8.734375 54.109375 11.28125
L 54.109375 2.78125
Q 49.265625 0.734375 44.1875 -0.34375
Q 39.109375 -1.421875 33.890625 -1.421875
Q 20.796875 -1.421875 13.15625 6.1875
Q 5.515625 13.8125 5.515625 26.8125
Q 5.515625 40.234375 12.765625 48.109375
Q 20.015625 56 32.328125 56
Q 43.359375 56 49.78125 48.890625
Q 56.203125 41.796875 56.203125 29.59375
z
M 47.21875 32.234375
Q 47.125 39.59375 43.09375 43.984375
Q 39.0625 48.390625 32.421875 48.390625
Q 24.90625 48.390625 20.390625 44.140625
Q 15.875 39.890625 15.1875 32.171875
z
" id="DejaVuSans-65"/>
<path d="M 44.28125 53.078125
L 44.28125 44.578125
Q 40.484375 46.53125 36.375 47.5
Q 32.28125 48.484375 27.875 48.484375
Q 21.1875 48.484375 17.84375 46.4375
Q 14.5 44.390625 14.5 40.28125
Q 14.5 37.15625 16.890625 35.375
Q 19.28125 33.59375 26.515625 31.984375
L 29.59375 31.296875
Q 39.15625 29.25 43.1875 25.515625
Q 47.21875 21.78125 47.21875 15.09375
Q 47.21875 7.46875 41.1875 3.015625
Q 35.15625 -1.421875 24.609375 -1.421875
Q 20.21875 -1.421875 15.453125 -0.5625
Q 10.6875 0.296875 5.421875 2
L 5.421875 11.28125
Q 10.40625 8.6875 15.234375 7.390625
Q 20.0625 6.109375 24.8125 6.109375
Q 31.15625 6.109375 34.5625 8.28125
Q 37.984375 10.453125 37.984375 14.40625
Q 37.984375 18.0625 35.515625 20.015625
Q 33.0625 21.96875 24.703125 23.78125
L 21.578125 24.515625
Q 13.234375 26.265625 9.515625 29.90625
Q 5.8125 33.546875 5.8125 39.890625
Q 5.8125 47.609375 11.28125 51.796875
Q 16.75 56 26.8125 56
Q 31.78125 56 36.171875 55.265625
Q 40.578125 54.546875 44.28125 53.078125
z
" id="DejaVuSans-73"/>
<path d="M 9.421875 54.6875
L 18.40625 54.6875
L 18.40625 0
L 9.421875 0
z
M 9.421875 75.984375
L 18.40625 75.984375
L 18.40625 64.59375
L 9.421875 64.59375
z
" id="DejaVuSans-69"/>
<path d="M 32.171875 -5.078125
Q 28.375 -14.84375 24.75 -17.8125
Q 21.140625 -20.796875 15.09375 -20.796875
L 7.90625 -20.796875
L 7.90625 -13.28125
L 13.1875 -13.28125
Q 16.890625 -13.28125 18.9375 -11.515625
Q 21 -9.765625 23.484375 -3.21875
L 25.09375 0.875
L 2.984375 54.6875
L 12.5 54.6875
L 29.59375 11.921875
L 46.6875 54.6875
L 56.203125 54.6875
z
" id="DejaVuSans-79"/>
<path d="M 48.78125 52.59375
L 48.78125 44.1875
Q 44.96875 46.296875 41.140625 47.34375
Q 37.3125 48.390625 33.40625 48.390625
Q 24.65625 48.390625 19.8125 42.84375
Q 14.984375 37.3125 14.984375 27.296875
Q 14.984375 17.28125 19.8125 11.734375
Q 24.65625 6.203125 33.40625 6.203125
Q 37.3125 6.203125 41.140625 7.25
Q 44.96875 8.296875 48.78125 10.40625
L 48.78125 2.09375
Q 45.015625 0.34375 40.984375 -0.53125
Q 36.96875 -1.421875 32.421875 -1.421875
Q 20.0625 -1.421875 12.78125 6.34375
Q 5.515625 14.109375 5.515625 27.296875
Q 5.515625 40.671875 12.859375 48.328125
Q 20.21875 56 33.015625 56
Q 37.15625 56 41.109375 55.140625
Q 45.0625 54.296875 48.78125 52.59375
z
" id="DejaVuSans-63"/>
<path d="M 52 44.1875
Q 55.375 50.25 60.0625 53.125
Q 64.75 56 71.09375 56
Q 79.640625 56 84.28125 50.015625
Q 88.921875 44.046875 88.921875 33.015625
L 88.921875 0
L 79.890625 0
L 79.890625 32.71875
Q 79.890625 40.578125 77.09375 44.375
Q 74.3125 48.1875 68.609375 48.1875
Q 61.625 48.1875 57.5625 43.546875
Q 53.515625 38.921875 53.515625 30.90625
L 53.515625 0
L 44.484375 0
L 44.484375 32.71875
Q 44.484375 40.625 41.703125 44.40625
Q 38.921875 48.1875 33.109375 48.1875
Q 26.21875 48.1875 22.15625 43.53125
Q 18.109375 38.875 18.109375 30.90625
L 18.109375 0
L 9.078125 0
L 9.078125 54.6875
L 18.109375 54.6875
L 18.109375 46.1875
Q 21.1875 51.21875 25.484375 53.609375
Q 29.78125 56 35.6875 56
Q 41.65625 56 45.828125 52.96875
Q 50 49.953125 52 44.1875
z
" id="DejaVuSans-6d"/>
</defs>
<g transform="translate(69.96 267.5092)rotate(-90)scale(0.1 -0.1)">
<use transform="translate(0 0.684375)" xlink:href="#DejaVuSans-49"/>
<use transform="translate(29.492188 0.684375)" xlink:href="#DejaVuSans-6e"/>
<use transform="translate(92.871094 0.684375)" xlink:href="#DejaVuSans-74"/>
<use transform="translate(132.080078 0.684375)" xlink:href="#DejaVuSans-65"/>
<use transform="translate(193.603516 0.684375)" xlink:href="#DejaVuSans-6e"/>
<use transform="translate(256.982422 0.684375)" xlink:href="#DejaVuSans-73"/>
<use transform="translate(309.082031 0.684375)" xlink:href="#DejaVuSans-69"/>
<use transform="translate(336.865234 0.684375)" xlink:href="#DejaVuSans-74"/>
<use transform="translate(376.074219 0.684375)" xlink:href="#DejaVuSans-79"/>
<use transform="translate(435.253906 0.684375)" xlink:href="#DejaVuSans-28"/>
<use transform="translate(474.267578 0.684375)" xlink:href="#DejaVuSans-63"/>
<use transform="translate(529.248047 0.684375)" xlink:href="#DejaVuSans-6d"/>
<use transform="translate(627.617188 38.965625)scale(0.7)" xlink:href="#DejaVuSans-2212"/>
<use transform="translate(686.269531 38.965625)scale(0.7)" xlink:href="#DejaVuSans-31"/>
<use transform="translate(733.540039 0.684375)" xlink:href="#DejaVuSans-29"/>
</g>
</g>
</g>
<g id="patch_3">
<path d="M 106.56 398.016
L 106.56 59.7024
" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/>
</g>
<g id="patch_4">
<path d="M 479.52 398.016
L 479.52 59.7024
" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/>
</g>
<g id="patch_5">
<path d="M 106.56 398.016
L 479.52 398.016
" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/>
</g>
<g id="patch_6">
<path d="M 106.56 59.7024
L 479.52 59.7024
" style="fill:none;stroke:#000000;stroke-linecap:square;stroke-linejoin:miter;stroke-width:0.8;"/>
</g>
<g id="legend_1">
<g id="patch_7">
<path d="M 380.23875 82.380525
L 472.52 82.380525
Q 474.52 82.380525 474.52 80.380525
L 474.52 66.7024
Q 474.52 64.7024 472.52 64.7024
L 380.23875 64.7024
Q 378.23875 64.7024 378.23875 66.7024
L 378.23875 80.380525
Q 378.23875 82.380525 380.23875 82.380525
z
" style="fill:#ffffff;opacity:0.8;stroke:#cccccc;stroke-linejoin:miter;"/>
</g>
<g id="line2d_70">
<path d="M 382.23875 72.800838
L 402.23875 72.800838
" style="fill:none;stroke:#0000ff;stroke-linecap:square;stroke-width:4;"/>
</g>
<g id="line2d_71"/>
<g id="text_12">
<!-- M1 [sphere] -->
<defs>
<path d="M 9.8125 72.90625
L 24.515625 72.90625
L 43.109375 23.296875
L 61.8125 72.90625
L 76.515625 72.90625
L 76.515625 0
L 66.890625 0
L 66.890625 64.015625
L 48.09375 14.015625
L 38.1875 14.015625
L 19.390625 64.015625
L 19.390625 0
L 9.8125 0
z
" id="DejaVuSans-4d"/>
<path id="DejaVuSans-20"/>
<path d="M 8.59375 75.984375
L 29.296875 75.984375
L 29.296875 69
L 17.578125 69
L 17.578125 -6.203125
L 29.296875 -6.203125
L 29.296875 -13.1875
L 8.59375 -13.1875
z
" id="DejaVuSans-5b"/>
<path d="M 18.109375 8.203125
L 18.109375 -20.796875
L 9.078125 -20.796875
L 9.078125 54.6875
L 18.109375 54.6875
L 18.109375 46.390625
Q 20.953125 51.265625 25.265625 53.625
Q 29.59375 56 35.59375 56
Q 45.5625 56 51.78125 48.09375
Q 58.015625 40.1875 58.015625 27.296875
Q 58.015625 14.40625 51.78125 6.484375
Q 45.5625 -1.421875 35.59375 -1.421875
Q 29.59375 -1.421875 25.265625 0.953125
Q 20.953125 3.328125 18.109375 8.203125
z
M 48.6875 27.296875
Q 48.6875 37.203125 44.609375 42.84375
Q 40.53125 48.484375 33.40625 48.484375
Q 26.265625 48.484375 22.1875 42.84375
Q 18.109375 37.203125 18.109375 27.296875
Q 18.109375 17.390625 22.1875 11.75
Q 26.265625 6.109375 33.40625 6.109375
Q 40.53125 6.109375 44.609375 11.75
Q 48.6875 17.390625 48.6875 27.296875
z
" id="DejaVuSans-70"/>
<path d="M 54.890625 33.015625
L 54.890625 0
L 45.90625 0
L 45.90625 32.71875
Q 45.90625 40.484375 42.875 44.328125
Q 39.84375 48.1875 33.796875 48.1875
Q 26.515625 48.1875 22.3125 43.546875
Q 18.109375 38.921875 18.109375 30.90625
L 18.109375 0
L 9.078125 0
L 9.078125 75.984375
L 18.109375 75.984375
L 18.109375 46.1875
Q 21.34375 51.125 25.703125 53.5625
Q 30.078125 56 35.796875 56
Q 45.21875 56 50.046875 50.171875
Q 54.890625 44.34375 54.890625 33.015625
z
" id="DejaVuSans-68"/>
<path d="M 41.109375 46.296875
Q 39.59375 47.171875 37.8125 47.578125
Q 36.03125 48 33.890625 48
Q 26.265625 48 22.1875 43.046875
Q 18.109375 38.09375 18.109375 28.8125
L 18.109375 0
L 9.078125 0
L 9.078125 54.6875
L 18.109375 54.6875
L 18.109375 46.1875
Q 20.953125 51.171875 25.484375 53.578125
Q 30.03125 56 36.53125 56
Q 37.453125 56 38.578125 55.875
Q 39.703125 55.765625 41.0625 55.515625
z
" id="DejaVuSans-72"/>
<path d="M 30.421875 75.984375
L 30.421875 -13.1875
L 9.71875 -13.1875
L 9.71875 -6.203125
L 21.390625 -6.203125
L 21.390625 69
L 9.71875 69
L 9.71875 75.984375
z
" id="DejaVuSans-5d"/>
</defs>
<g transform="translate(410.23875 76.300838)scale(0.1 -0.1)">
<use xlink:href="#DejaVuSans-4d"/>
<use x="86.279297" xlink:href="#DejaVuSans-31"/>
<use x="149.902344" xlink:href="#DejaVuSans-20"/>
<use x="181.689453" xlink:href="#DejaVuSans-5b"/>
<use x="220.703125" xlink:href="#DejaVuSans-73"/>
<use x="272.802734" xlink:href="#DejaVuSans-70"/>
<use x="336.279297" xlink:href="#DejaVuSans-68"/>
<use x="399.658203" xlink:href="#DejaVuSans-65"/>
<use x="461.181641" xlink:href="#DejaVuSans-72"/>
<use x="502.263672" xlink:href="#DejaVuSans-65"/>
<use x="563.787109" xlink:href="#DejaVuSans-5d"/>
</g>
</g>
</g>
<g id="line2d_72">
<path clip-path="url(#p73b0a8e625)" d="M 106.501657 92.93746
L 118.520888 93.639154
L 128.984711 94.447966
L 138.249958 95.36526
L 146.563207 96.392614
L 154.101991 97.531834
L 160.998392 98.78497
L 167.353342 100.154336
L 173.245706 101.642538
L 178.738284 103.252496
L 183.881896 104.987485
L 188.718247 106.851166
L 193.281986 108.847638
L 197.602215 110.981492
L 201.703606 113.25787
L 205.607267 115.682551
L 209.331389 118.262036
L 212.891762 121.003669
L 216.302183 123.915763
L 219.574774 127.007779
L 222.720243 130.290523
L 225.748099 133.776414
L 228.666821 137.479803
L 231.484004 141.417393
L 234.206474 145.608775
L 236.840395 150.077133
L 239.391345 154.850178
L 241.864392 159.961413
L 244.264153 165.451885
L 246.594849 171.372648
L 248.860342 177.788341
L 251.064182 184.782525
L 252.944542 191.463145
L 254.782233 198.769733
L 256.579148 206.835732
L 258.337058 215.847504
L 259.814051 224.527131
L 261.264591 234.35141
L 262.689606 245.70451
L 263.85826 256.772776
L 265.010289 269.931393
L 265.920257 282.648702
L 266.820115 298.329547
L 267.710084 318.770019
L 268.3712 339.176258
L 269.461208 379.417098
L 269.67746 380.748457
L 269.893137 376.949682
L 271.808804 315.910844
L 272.64588 300.075491
L 273.474393 288.133672
L 274.498255 276.637173
L 275.509335 267.664182
L 276.7062 259.157515
L 277.885635 252.406277
L 279.04814 246.951462
L 280.194194 242.49993
L 281.511077 238.313898
L 282.806888 235.009572
L 283.901317 232.763899
L 284.981153 230.985882
L 286.046781 229.62269
L 287.098569 228.6334
L 288.136872 227.986072
L 288.992071 227.689665
L 289.838333 227.60183
L 290.675844 227.713352
L 291.669556 228.100192
L 292.651224 228.754302
L 293.621135 229.669381
L 294.738209 231.062313
L 295.840085 232.804864
L 297.081283 235.229665
L 298.303746 238.130196
L 299.50803 241.529749
L 300.841784 245.99405
L 302.153927 251.203883
L 303.44515 257.259066
L 304.716109 264.301766
L 305.96743 272.537726
L 307.199711 282.273423
L 308.27955 292.564924
L 309.34518 304.936868
L 310.266241 318.112342
L 311.176945 334.342796
L 312.077521 354.425886
L 313.094636 377.556818
L 313.346931 380.389646
L 313.472785 380.898306
L 313.598443 380.75795
L 313.849176 378.655468
L 314.223827 372.187636
L 316.193206 332.283974
L 317.160224 318.828606
L 318.115831 308.56999
L 319.060293 300.57365
L 320.109813 293.559781
L 321.145905 288.145087
L 322.168909 283.994111
L 323.067524 281.183467
L 323.956276 279.08551
L 324.726014 277.771823
L 325.488505 276.903924
L 326.136403 276.492313
L 326.672386 276.372753
L 327.204846 276.449703
L 327.83921 276.795068
L 328.468645 277.411581
L 329.196855 278.470233
L 330.021155 280.128462
L 330.83715 282.27291
L 331.745423 285.287632
L 332.742811 289.430945
L 333.728064 294.486606
L 334.798176 301.239716
L 335.854333 309.456837
L 336.896893 319.454887
L 337.926203 331.666854
L 338.942594 346.552642
L 341.02743 379.338677
L 341.295451 380.761588
L 341.47364 380.894693
L 341.651438 380.377304
L 341.917405 378.505446
L 342.358751 373.256416
L 345.042689 336.294389
L 345.974069 327.692732
L 346.894861 321.10825
L 347.8053 316.156061
L 348.624184 312.838216
L 349.354166 310.690516
L 349.997561 309.383381
L 350.556369 308.671699
L 351.032297 308.366865
L 351.505445 308.334006
L 351.975845 308.566558
L 352.443528 309.060263
L 352.985767 309.963611
L 353.601055 311.428185
L 354.287713 313.634575
L 355.043899 316.801862
L 355.867629 321.202721
L 356.75679 327.185226
L 357.709157 335.19632
L 358.722412 345.764667
L 359.93599 361.094969
L 361.201437 376.70478
L 361.688264 380.137792
L 361.965143 380.886786
L 362.103228 380.901069
L 362.241078 380.678929
L 362.516076 379.573863
L 362.926831 376.560361
L 363.606826 369.466697
L 365.348549 350.800471
L 366.271112 343.336731
L 367.118468 338.14302
L 367.892851 334.685742
L 368.596256 332.536603
L 369.16726 331.450017
L 369.608607 331.00133
L 369.984999 330.883595
L 370.359651 331.006673
L 370.732577 331.366778
L 371.227155 332.21142
L 371.77997 333.656651
L 372.450547 336.136032
L 373.175809 339.744457
L 374.013819 345.1611
L 374.961046 352.9157
L 376.187703 365.087558
L 377.396057 376.675654
L 377.908455 379.78981
L 378.248261 380.78597
L 378.474009 380.915969
L 378.642908 380.73498
L 378.923625 379.937668
L 379.315003 377.937809
L 379.926228 373.421668
L 382.164637 355.772162
L 382.968352 351.492418
L 383.658511 348.932132
L 384.237933 347.574623
L 384.708941 346.997276
L 385.073396 346.871331
L 385.384487 346.983966
L 385.745921 347.368547
L 386.208265 348.257033
L 386.718904 349.754174
L 387.32745 352.240407
L 388.081759 356.352902
L 388.977753 362.565404
L 391.223469 378.975713
L 391.655657 380.487644
L 391.942506 380.897876
L 392.133176 380.89617
L 392.370884 380.594467
L 392.702507 379.663328
L 393.173912 377.512751
L 394.015586 372.338347
L 395.399225 363.992516
L 396.17292 360.66096
L 396.759622 358.985599
L 397.252764 358.176023
L 397.609536 357.936042
L 397.920427 357.963916
L 398.230129 358.210154
L 398.626585 358.84032
L 399.108522 360.072499
L 399.717778 362.327521
L 400.494431 366.197358
L 401.899235 374.711714
L 402.697144 378.830166
L 403.197066 380.409751
L 403.52864 380.876395
L 403.776434 380.900804
L 404.023471 380.654678
L 404.351687 379.944427
L 404.84153 378.226146
L 405.691689 374.224002
L 406.890927 368.801016
L 407.562695 366.708639
L 408.072666 365.743576
L 408.462778 365.396072
L 408.77352 365.366671
L 409.083075 365.555224
L 409.468361 366.088281
L 409.928299 367.139453
L 410.537513 369.158086
L 411.405308 372.944054
L 412.818991 379.139774
L 413.333663 380.467865
L 413.699294 380.887847
L 413.954257 380.902755
L 414.208419 380.695225
L 414.570131 380.051878
L 415.073828 378.618734
L 416.213507 374.436748
L 417.057863 371.824157
L 417.615916 370.736475
L 418.031947 370.332626
L 418.377014 370.276517
L 418.720617 370.472986
L 419.096904 370.968453
L 419.5733 371.983582
L 420.249041 374.025942
L 422.177396 380.24833
L 422.603387 380.821115
L 422.929553 380.919957
L 423.221985 380.757469
L 423.577972 380.268155
L 424.092995 379.119032
L 426.152235 374.00357
L 426.588992 373.584172
L 426.96149 373.514373
L 427.301448 373.685135
L 427.701385 374.160047
L 428.221418 375.165908
L 429.040549 377.33343
L 430.090202 380.006986
L 430.595166 380.73926
L 430.949726 380.92189
L 431.27338 380.837075
L 431.624989 380.492417
L 432.120503 379.653768
L 434.101148 375.903067
L 434.525388 375.669442
L 434.891273 375.716774
L 435.283463 376.018514
L 435.757155 376.689801
L 436.50384 378.205395
L 437.570375 380.317096
L 438.057924 380.827187
L 438.435111 380.920952
L 438.783789 380.769214
L 439.210881 380.312341
L 439.900137 379.183744
L 440.923146 377.574902
L 441.416892 377.178017
L 441.804577 377.117239
L 442.190414 377.283383
L 442.651006 377.750542
L 443.337019 378.823773
L 444.442662 380.539214
L 444.915472 380.88397
L 445.286803 380.906518
L 445.681022 380.696226
L 446.195539 380.137624
L 447.767684 378.245067
L 448.221529 378.107381
L 448.625455 378.216973
L 449.098098 378.599261
L 449.825287 379.534157
L 450.754049 380.657722
L 451.237418 380.91045
L 451.649451 380.874138
L 452.10482 380.586141
L 452.850625 379.785535
L 453.678745 378.991045
L 454.167156 378.808317
L 454.608624 378.884071
L 455.091476 379.208858
L 455.918771 380.096431
L 456.673348 380.776109
L 457.144081 380.923868
L 457.590878 380.822144
L 458.140663 380.435027
L 459.519734 379.358761
L 459.994855 379.314062
L 460.467204 379.498725
L 461.119836 380.024306
L 462.129161 380.819155
L 462.629145 380.922938
L 463.106243 380.784994
L 463.797011 380.308091
L 464.696009 379.734994
L 465.199759 379.669882
L 465.700394 379.833821
L 466.445592 380.355188
L 467.278178 380.862009
L 467.784877 380.915307
L 468.307016 380.73763
L 470.072072 379.932662
L 470.597788 380.071135
L 471.460509 380.587565
L 472.172489 380.900241
L 472.702396 380.89068
L 473.333741 380.629559
L 474.461352 380.144265
L 475.010769 380.180864
L 475.69234 380.479762
L 476.70406 380.907531
L 477.255166 380.883371
L 477.984188 380.595041
L 478.870019 380.293034
L 479.439037 380.339012
L 479.52 380.36208
L 479.52 380.36208
" style="fill:none;stroke:#0000ff;stroke-linecap:square;stroke-width:4;"/>
</g>
</g>
</g>
<defs>
<clipPath id="p73b0a8e625">
<rect height="338.3136" width="372.96" x="106.56" y="59.7024"/>
</clipPath>
</defs>
</svg>
|