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
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:osb="http://www.openswatchbook.org/uri/2009/osb"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
sodipodi:docname="coverage-legacy.svg"
inkscape:version="1.0 (4035a4fb49, 2020-05-01)"
version="1.1"
id="svg2"
height="245"
width="540">
<defs
id="defs4">
<marker
inkscape:isstock="true"
style="overflow:visible"
id="Arrow2Send"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Send">
<path
inkscape:connector-curvature="0"
transform="matrix(-0.3,0,0,-0.3,0.69,0)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4603" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="Arrow2Mend"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow2Mend">
<path
inkscape:connector-curvature="0"
transform="scale(-0.6)"
d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
id="path4597" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker5029"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Send">
<path
inkscape:connector-curvature="0"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path5027" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="Arrow1Send"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Send">
<path
inkscape:connector-curvature="0"
transform="matrix(-0.2,0,0,-0.2,-1.2,0)"
style="fill:#333e48;fill-opacity:1;fill-rule:evenodd;stroke:#333e48;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path4585" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="marker5005"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend">
<path
inkscape:connector-curvature="0"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#333e48;fill-opacity:1;fill-rule:evenodd;stroke:#333e48;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path5003" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="Arrow1Mend"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Mend">
<path
inkscape:connector-curvature="0"
transform="matrix(-0.4,0,0,-0.4,-4,0)"
style="fill:#333e48;fill-opacity:1;fill-rule:evenodd;stroke:#333e48;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path4579" />
</marker>
<marker
inkscape:isstock="true"
style="overflow:visible"
id="Arrow1Lend"
refX="0"
refY="0"
orient="auto"
inkscape:stockid="Arrow1Lend">
<path
inkscape:connector-curvature="0"
transform="matrix(-0.8,0,0,-0.8,-10,0)"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1pt;stroke-opacity:1"
d="M 0,0 5,-5 -12.5,0 5,5 Z"
id="path4573" />
</marker>
<linearGradient
gradientTransform="translate(154.74648,1.9461456)"
osb:paint="solid"
id="Black">
<stop
id="stop861"
offset="0"
style="stop-color:#000000;stop-opacity:1;" />
</linearGradient>
<linearGradient
osb:paint="solid"
id="Arm_Mid_Blue">
<stop
id="stop3912"
offset="0"
style="stop-color:#11809f;stop-opacity:1;" />
</linearGradient>
<linearGradient
gradientTransform="matrix(1.1456495,0,0,1.6326548,159.9516,-60.914977)"
osb:paint="solid"
id="Arm_Dark_Blue">
<stop
id="stop3906"
offset="0"
style="stop-color:#002b49;stop-opacity:1;" />
</linearGradient>
<linearGradient
gradientTransform="translate(9.999997,10.00002)"
gradientUnits="userSpaceOnUse"
y2="39.862183"
x2="100"
y1="39.862183"
x1="25.000002"
id="linearGradient3914"
xlink:href="#Arm_Mid_Blue"
inkscape:collect="always" />
<linearGradient
osb:paint="solid"
id="Arm_Light_Blue"
gradientTransform="translate(89.999999,2.2228535e-5)">
<stop
id="stop3912-6"
offset="0"
style="stop-color:#00c1de;stop-opacity:1;" />
</linearGradient>
<linearGradient
gradientUnits="userSpaceOnUse"
y2="39.862183"
x2="100"
y1="39.862183"
x1="25.000002"
id="linearGradient3914-7"
xlink:href="#Arm_Light_Blue"
inkscape:collect="always" />
<linearGradient
gradientTransform="matrix(1.1456495,0,0,1.6326548,-3.9712482,-47.150821)"
osb:paint="solid"
id="Arm_Black">
<stop
id="stop3933"
offset="0"
style="stop-color:#000000;stop-opacity:1;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#Arm_Light_Blue"
id="linearGradient3936"
gradientUnits="userSpaceOnUse"
x1="25.000002"
y1="39.862183"
x2="100"
y2="39.862183"
gradientTransform="translate(89.999999,2.2228535e-5)" />
<linearGradient
osb:paint="solid"
id="Arm_Dark_Grey"
gradientTransform="matrix(0.39999995,0,0,0.33333334,23252.087,-3252.135)">
<stop
id="stop3933-5"
offset="0"
style="stop-color:#333e48;stop-opacity:1;" />
</linearGradient>
<linearGradient
gradientUnits="userSpaceOnUse"
y2="39.862183"
x2="100"
y1="39.862183"
x1="25.000002"
id="linearGradient3914-6"
xlink:href="#Arm_Mid_Grey"
inkscape:collect="always" />
<linearGradient
gradientTransform="matrix(1.6902288,0,0,1.9116124,5062.5906,-1509.8597)"
osb:paint="solid"
id="Arm_Mid_Grey">
<stop
id="stop3912-9"
offset="0"
style="stop-color:#7d868c;stop-opacity:1;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#Arm_Mid_Grey"
id="linearGradient3973"
gradientUnits="userSpaceOnUse"
x1="25.000002"
y1="39.862183"
x2="100"
y2="39.862183"
gradientTransform="translate(-5.0000001)" />
<linearGradient
osb:paint="solid"
id="Arm_Light_Grey"
gradientTransform="matrix(1.6902288,0,0,1.9116124,4838.2965,-1509.8597)">
<stop
id="stop3906-7"
offset="0"
style="stop-color:#e5eceb;stop-opacity:1;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#Arm_White"
id="linearGradient3936-0"
gradientUnits="userSpaceOnUse"
x1="25.000002"
y1="39.862183"
x2="100"
y2="39.862183"
gradientTransform="translate(89.999999,2.2228535e-5)" />
<linearGradient
osb:paint="solid"
id="Arm_White"
gradientTransform="translate(89.999999,2.2228535e-5)">
<stop
id="stop3912-6-3"
offset="0"
style="stop-color:#ffffff;stop-opacity:1;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#Arm_White"
id="linearGradient4010"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(190,2.4655048e-5)"
x1="25.000002"
y1="39.862183"
x2="100"
y2="39.862183" />
<linearGradient
gradientTransform="matrix(0.35294116,0,0,0.25000001,9254.4922,-1036.1718)"
osb:paint="solid"
id="Arm_Orange">
<stop
id="stop3933-6"
offset="0"
style="stop-color:#ff6b00;stop-opacity:1;" />
</linearGradient>
<linearGradient
gradientTransform="translate(9.999997,10.00002)"
gradientUnits="userSpaceOnUse"
y2="39.862183"
x2="100"
y1="39.862183"
x1="25.000002"
id="linearGradient3914-2"
xlink:href="#Arm_Yellow"
inkscape:collect="always" />
<linearGradient
osb:paint="solid"
id="Arm_Yellow">
<stop
id="stop3912-1"
offset="0"
style="stop-color:#ffc700;stop-opacity:1;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#Arm_Yellow"
id="linearGradient4047"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(120,-4.9999812)"
x1="25.000002"
y1="39.862183"
x2="100"
y2="39.862183" />
<linearGradient
gradientTransform="matrix(1.1333332,0,0,1.3333333,369.41657,-180.81382)"
osb:paint="solid"
id="Arm_Green">
<stop
id="stop3933-9"
offset="0"
style="stop-color:#95d600;stop-opacity:1;" />
</linearGradient>
<linearGradient
gradientTransform="translate(9.999997,10.00002)"
gradientUnits="userSpaceOnUse"
y2="39.862183"
x2="100"
y1="39.862183"
x1="25.000002"
id="linearGradient3914-20"
xlink:href="#linearGradient3910-23"
inkscape:collect="always" />
<linearGradient
id="linearGradient3910-23">
<stop
id="stop3912-7"
offset="0"
style="stop-color:#11809f;stop-opacity:1;" />
</linearGradient>
<linearGradient
inkscape:collect="always"
xlink:href="#linearGradient3910-23"
id="linearGradient4084"
gradientUnits="userSpaceOnUse"
gradientTransform="translate(155,-24.99998)"
x1="25.000002"
y1="39.862183"
x2="100"
y2="39.862183" />
</defs>
<sodipodi:namedview
inkscape:document-rotation="0"
inkscape:snap-grids="true"
inkscape:lockguides="true"
guideopacity="0.49803922"
guidecolor="#ec00ff"
inkscape:guide-bbox="true"
showguides="true"
showborder="false"
fit-margin-bottom="0"
fit-margin-right="0"
fit-margin-left="0"
fit-margin-top="0"
inkscape:snap-bbox="true"
objecttolerance="1"
inkscape:window-maximized="0"
inkscape:window-y="753"
inkscape:window-x="351"
inkscape:window-height="1054"
inkscape:window-width="2254"
inkscape:snap-global="true"
showgrid="true"
inkscape:current-layer="layer1"
inkscape:document-units="px"
inkscape:cy="165.37518"
inkscape:cx="225.23291"
inkscape:zoom="2"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base">
<inkscape:grid
originy="-25.000006"
originx="-2.815918e-07"
spacingy="5"
spacingx="5"
snapvisiblegridlinesonly="true"
enabled="true"
visible="true"
empspacing="5"
id="grid2985"
type="xygrid" />
<sodipodi:guide
inkscape:locked="true"
id="guide4981"
orientation="1.2246468e-16,-1"
position="25.614637,0.61463802" />
<sodipodi:guide
inkscape:locked="true"
id="guide1775"
orientation="1,0"
position="0.6146371,45.614638" />
<sodipodi:guide
inkscape:locked="true"
id="guide1777"
orientation="1,0"
position="530.61464,130.61464" />
</sodipodi:namedview>
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
style="display:inline"
transform="translate(-25.131847,232.22803)"
id="layer1"
inkscape:groupmode="layer"
inkscape:label="Graphics">
<rect
y="-232.22803"
x="25.131847"
height="245"
width="540"
id="rect331"
style="display:inline;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke-width:0.985401" />
<text
id="text3132"
y="-213.06291"
x="68.292206"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-213.06291"
x="68.292206"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1"
id="tspan859"
sodipodi:role="line">HDR RGB+A</tspan></text>
<text
id="text3132-6"
y="-198.08374"
x="71.831268"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-198.08374"
x="71.831268"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1"
id="tspan859-75"
sodipodi:role="line">HDR RGBA</tspan></text>
<text
id="text3132-56"
y="-183.10458"
x="73.437958"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-183.10458"
x="73.437958"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1"
id="tspan859-2"
sodipodi:role="line">HDR XY+Z</tspan></text>
<text
id="text3132-6-9"
y="-168.12541"
x="76.435516"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-168.12541"
x="76.435516"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1"
id="tspan859-75-1"
sodipodi:role="line">HDR RGB</tspan></text>
<text
id="text3132-56-7"
y="-153.14624"
x="76.679176"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-153.14624"
x="76.679176"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1"
id="tspan859-2-0"
sodipodi:role="line">HDR X+Y</tspan></text>
<text
id="text3132-3"
y="-138.16708"
x="82.741425"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-138.16708"
x="82.741425"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1"
id="tspan859-6"
sodipodi:role="line">RGB+A</tspan></text>
<text
id="text3132-6-0"
y="-123.18791"
x="86.280487"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-123.18791"
x="86.280487"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1"
id="tspan859-75-6"
sodipodi:role="line">RGBA</tspan></text>
<text
id="text3132-56-2"
y="-108.20875"
x="87.887177"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-108.20875"
x="87.887177"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1"
id="tspan859-2-6"
sodipodi:role="line">XY+Z</tspan></text>
<text
id="text3132-6-9-1"
y="-93.229576"
x="90.884735"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-93.229576"
x="90.884735"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1"
id="tspan859-75-1-8"
sodipodi:role="line">RGB</tspan></text>
<text
id="text3132-56-7-7"
y="-78.250412"
x="84.972015"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-78.250412"
x="84.972015"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1"
id="tspan859-2-0-9"
sodipodi:role="line">HDR L</tspan></text>
<text
id="text3132-56-2-0"
y="-63.271244"
x="91.128395"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-63.271244"
x="91.128395"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1"
id="tspan859-2-6-2"
sodipodi:role="line">X+Y</tspan></text>
<text
id="text3132-6-9-1-3"
y="-48.29208"
x="95.151581"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none;stroke-opacity:1"
xml:space="preserve"><tspan
y="-48.29208"
x="95.151581"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none;stroke-opacity:1"
id="tspan859-75-1-8-7"
sodipodi:role="line">LA</tspan></text>
<text
id="text3132-56-7-7-5"
y="-33.312912"
x="99.421227"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none;stroke-opacity:1"
xml:space="preserve"><tspan
y="-33.312912"
x="99.421227"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none;stroke-opacity:1"
id="tspan859-2-0-9-9"
sodipodi:role="line">L</tspan></text>
<g
transform="translate(9.9999969,-1.0626953e-5)"
style="stroke:#dde2e5;stroke-opacity:1"
id="g1201">
<path
style="fill:none;fill-rule:evenodd;stroke:#dde2e5;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 150.13185,-216.81963 V -21.819633"
id="path1231"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#dde2e5;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 200.13185,-216.81963 V -21.819633"
id="path1231-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#dde2e5;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 250.13185,-216.81963 V -21.819633"
id="path1231-28"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#dde2e5;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 300.13185,-216.81963 V -21.819633"
id="path1231-2-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#dde2e5;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 350.13185,-216.81963 V -21.819633"
id="path1231-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#dde2e5;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 400.13185,-216.81963 V -21.819633"
id="path1231-2-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#dde2e5;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 450.13185,-216.81963 V -21.819633"
id="path1231-28-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#dde2e5;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="M 500.13185,-216.81963 V -21.819633"
id="path1231-2-9-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#dde2e5;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 520.13185,-36.819639 -420,6e-6"
id="path1231-29"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#dde2e5;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 520.13185,-51.819636 -420,6e-6"
id="path1231-29-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#dde2e5;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 520.13185,-66.819639 -420,6e-6"
id="path1231-29-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#dde2e5;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 520.13185,-81.819639 -420,6e-6"
id="path1231-29-3-9"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#dde2e5;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 520.13184,-96.81964 -419.99999,7e-6"
id="path1231-29-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#dde2e5;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 520.13185,-111.81963 h -420"
id="path1231-29-3-7"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#dde2e5;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 520.13185,-126.81963 h -420"
id="path1231-29-1-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#dde2e5;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 520.13185,-141.81963 h -420"
id="path1231-29-3-9-4"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#dde2e5;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 520.13185,-156.81964 h -420"
id="path1231-29-4-5"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#dde2e5;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 520.13185,-171.81964 h -420"
id="path1231-29-3-7-0"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#dde2e5;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 520.13185,-186.81963 h -420"
id="path1231-29-1-8-3"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#dde2e5;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 520.13185,-201.81963 h -420"
id="path1231-29-3-9-4-6"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
style="display:inline;fill:none;fill-rule:evenodd;stroke:#dde2e5;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 520.13185,-216.81963 h -420"
id="path1231-29-3-9-4-6-1"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
<text
id="text3132-67"
y="-213.62308"
x="538.98309"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Mid_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-213.62308"
x="538.98309"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Mid_Grey);fill-opacity:1"
id="tspan859-5"
sodipodi:role="line">64</tspan></text>
<text
id="text3132-6-3"
y="-198.64389"
x="538.98309"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Mid_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-198.64389"
x="538.98309"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Mid_Grey);fill-opacity:1"
id="tspan859-75-5"
sodipodi:role="line">64</tspan></text>
<text
id="text3132-56-6"
y="-183.66473"
x="539.37042"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Mid_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-183.66473"
x="539.37042"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Mid_Grey);fill-opacity:1"
id="tspan859-2-2"
sodipodi:role="line">48</tspan></text>
<text
id="text3132-6-9-9"
y="-168.68556"
x="539.37042"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Mid_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-168.68556"
x="539.37042"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Mid_Grey);fill-opacity:1"
id="tspan859-75-1-1"
sodipodi:role="line">48</tspan></text>
<text
id="text3132-6-0-3"
y="-123.74806"
x="539.08112"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Mid_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-123.74806"
x="539.08112"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Mid_Grey);fill-opacity:1"
id="tspan859-75-6-6"
sodipodi:role="line">32</tspan></text>
<text
id="text3132-56-2-06"
y="-108.76889"
x="539.03912"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Mid_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-108.76889"
x="539.03912"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Mid_Grey);fill-opacity:1"
id="tspan859-2-6-26"
sodipodi:role="line">24</tspan></text>
<text
id="text3132-6-9-1-1"
y="-93.789711"
x="539.03912"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Mid_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-93.789711"
x="539.03912"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Mid_Grey);fill-opacity:1"
id="tspan859-75-1-8-8"
sodipodi:role="line">24</tspan></text>
<text
id="text3132-56-7-7-7"
y="-78.810555"
x="538.73108"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Mid_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-78.810555"
x="538.73108"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Mid_Grey);fill-opacity:1"
id="tspan859-2-0-9-92"
sodipodi:role="line">16</tspan></text>
<text
id="text3132-56-2-0-0"
y="-63.831387"
x="538.73108"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Mid_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-63.831387"
x="538.73108"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Mid_Grey);fill-opacity:1"
id="tspan859-2-6-2-2"
sodipodi:role="line">16</tspan></text>
<text
id="text3132-6-9-1-3-3"
y="-48.852234"
x="538.73108"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Mid_Grey);fill-opacity:1;stroke:none;stroke-opacity:1"
xml:space="preserve"><tspan
y="-48.852234"
x="538.73108"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Mid_Grey);fill-opacity:1;stroke:none;stroke-opacity:1"
id="tspan859-75-1-8-7-7"
sodipodi:role="line">16</tspan></text>
<text
id="text3132-56-7-7-5-5"
y="-33.873062"
x="536.32275"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Mid_Grey);fill-opacity:1;stroke:none;stroke-opacity:1"
xml:space="preserve"><tspan
y="-33.873062"
x="536.32275"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Mid_Grey);fill-opacity:1;stroke:none;stroke-opacity:1"
id="tspan859-2-0-9-9-9"
sodipodi:role="line">8</tspan></text>
<text
id="text1270"
y="-121.81963"
x="530.13184"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:12px;line-height:125%;font-family:Lato;-inkscape-font-specification:'Lato, Light';font-variant-ligatures:none;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve" />
<text
id="text3132-6-9-1-3-2"
y="-7.6187315"
x="160.33366"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none;stroke-opacity:1"
xml:space="preserve"><tspan
y="-7.6187315"
x="160.33366"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none;stroke-opacity:1"
id="tspan859-75-1-8-7-8"
sodipodi:role="line">1</tspan></text>
<text
id="text3132-6-9-1-3-2-7"
y="-7.6187315"
x="210.33366"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none;stroke-opacity:1"
xml:space="preserve"><tspan
y="-7.6187315"
x="210.33366"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none;stroke-opacity:1"
id="tspan859-75-1-8-7-8-3"
sodipodi:role="line">2</tspan></text>
<text
id="text3132-6-9-1-3-2-1"
y="-7.6187315"
x="260.39841"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none;stroke-opacity:1"
xml:space="preserve"><tspan
y="-7.6187315"
x="260.39841"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none;stroke-opacity:1"
id="tspan859-75-1-8-7-8-2"
sodipodi:role="line">3</tspan></text>
<text
id="text3132-6-9-1-3-2-9"
y="-7.6187315"
x="360.4411"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none;stroke-opacity:1"
xml:space="preserve"><tspan
y="-7.6187315"
x="360.4411"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none;stroke-opacity:1"
id="tspan859-75-1-8-7-8-4"
sodipodi:role="line">5</tspan></text>
<text
id="text3132-6-9-1-3-2-7-7"
y="-7.6187315"
x="410.4411"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none;stroke-opacity:1"
xml:space="preserve"><tspan
y="-7.6187315"
x="410.4411"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none;stroke-opacity:1"
id="tspan859-75-1-8-7-8-3-8"
sodipodi:role="line">6</tspan></text>
<text
id="text3132-6-9-1-3-2-1-4"
y="-7.6187315"
x="460.50586"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none;stroke-opacity:1"
xml:space="preserve"><tspan
y="-7.6187315"
x="460.50586"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none;stroke-opacity:1"
id="tspan859-75-1-8-7-8-2-5"
sodipodi:role="line">7</tspan></text>
<text
id="text3132-6-9-1-3-2-7-9-0"
y="-7.6187315"
x="510.50586"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none;stroke-opacity:1"
xml:space="preserve"><tspan
y="-7.6187315"
x="510.50586"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none;stroke-opacity:1"
id="tspan859-75-1-8-7-8-3-3-3"
sodipodi:role="line">8</tspan></text>
<text
id="text3132-1"
y="5.725966"
x="335.03436"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="5.725966"
x="335.03436"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1"
id="tspan859-0"
sodipodi:role="line">Compressed bits/texel</tspan></text>
<text
transform="rotate(-90)"
id="text3132-1-3"
y="40.247677"
x="119.30682"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="40.247677"
x="119.30682"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1"
id="tspan859-0-2"
sodipodi:role="line">Input color format</tspan></text>
<text
transform="rotate(-90)"
id="text3132-1-3-6"
y="559.54047"
x="119.46977"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:9.33333px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="559.54047"
x="119.46977"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:9.33333px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Mid_Grey);fill-opacity:1"
id="tspan859-0-2-1"
sodipodi:role="line">Uncompressed bits/texel</tspan></text>
<path
sodipodi:nodetypes="ccc"
inkscape:connector-curvature="0"
id="path1071"
d="m 530.13183,-21.81965 -419.99999,6e-6 1e-5,-204.999996"
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#333e48;stroke-width:2.80624;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
y="-131.81964"
x="205.13185"
height="10"
width="9.9999895"
id="rect2987-6-6"
style="display:inline;fill:url(#Arm_Orange);fill-opacity:1;fill-rule:evenodd;stroke:url(#Arm_Dark_Grey);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
y="-131.81964"
x="305.13187"
height="10"
width="9.9999895"
id="rect2987-6-6-9"
style="display:inline;fill:url(#Arm_Orange);fill-opacity:1;fill-rule:evenodd;stroke:url(#Arm_Dark_Grey);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
y="-101.81964"
x="305.13184"
height="10"
width="9.9999895"
id="rect2987-6-6-4"
style="display:inline;fill:url(#Arm_Orange);fill-opacity:1;fill-rule:evenodd;stroke:url(#Arm_Dark_Grey);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
y="-206.81964"
x="505.13184"
height="10"
width="9.9999895"
id="rect2987-6-6-5"
style="display:inline;fill:url(#Arm_Orange);fill-opacity:1;fill-rule:evenodd;stroke:url(#Arm_Dark_Grey);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
y="-131.81964"
x="505.13184"
height="10"
width="9.9999895"
id="rect2987-6-6-5-4"
style="display:inline;fill:url(#Arm_Orange);fill-opacity:1;fill-rule:evenodd;stroke:url(#Arm_Dark_Grey);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
y="-101.81964"
x="505.13184"
height="10"
width="9.9999895"
id="rect2987-6-6-5-4-0"
style="display:inline;fill:url(#Arm_Orange);fill-opacity:1;fill-rule:evenodd;stroke:url(#Arm_Dark_Grey);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
y="-71.819641"
x="505.13184"
height="10"
width="9.9999895"
id="rect2987-6-6-5-4-0-6"
style="display:inline;fill:url(#Arm_Orange);fill-opacity:1;fill-rule:evenodd;stroke:url(#Arm_Dark_Grey);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<text
id="text1719"
y="-136.81964"
x="205.13185"
style="font-style:normal;font-variant:normal;font-weight:300;font-stretch:normal;font-size:12px;line-height:125%;font-family:Lato;-inkscape-font-specification:'Lato, Light';font-variant-ligatures:none;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
xml:space="preserve" />
<rect
y="-144.56964"
x="195.13187"
height="10"
width="29.999994"
id="rect2987-6-6-6"
style="display:inline;fill:url(#Arm_Light_Grey);fill-opacity:1;fill-rule:evenodd;stroke:url(#Arm_Mid_Grey);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<text
id="text3132-3-8"
y="-136.69765"
x="209.85193"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-136.69765"
x="209.85193"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1"
id="tspan859-6-4"
sodipodi:role="line">PVRTC</tspan></text>
<rect
y="-144.56964"
x="295.13184"
height="10"
width="29.999994"
id="rect2987-6-6-6-9"
style="display:inline;fill:url(#Arm_Light_Grey);fill-opacity:1;fill-rule:evenodd;stroke:url(#Arm_Mid_Grey);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<text
id="text3132-3-8-1"
y="-136.69765"
x="309.8519"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-136.69765"
x="309.8519"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1"
id="tspan859-6-4-4"
sodipodi:role="line">PVRTC</tspan></text>
<rect
y="-114.56964"
x="290.13184"
height="10"
width="39.999992"
id="rect2987-6-6-6-9-0"
style="display:inline;fill:url(#Arm_Light_Grey);fill-opacity:1;fill-rule:evenodd;stroke:url(#Arm_Mid_Grey);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<text
id="text3132-6-9-1-3-2-7-9"
y="-7.6187315"
x="309.89841"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none;stroke-opacity:1"
xml:space="preserve"><tspan
y="-7.6187315"
x="309.89841"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:12px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none;stroke-opacity:1"
id="tspan859-75-1-8-7-8-3-3"
sodipodi:role="line">4</tspan></text>
<text
id="text3132-3-8-2"
y="-106.46364"
x="310.05414"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-106.46364"
x="310.05414"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1"
id="tspan859-6-4-0"
sodipodi:role="line">ETC, BC1</tspan></text>
<rect
y="-54.569645"
x="240.13185"
height="10"
width="39.999992"
id="rect2987-6-6-6-9-0-7"
style="display:inline;fill:url(#Arm_Light_Grey);fill-opacity:1;fill-rule:evenodd;stroke:url(#Arm_Mid_Grey);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<rect
y="-41.819645"
x="255.13185"
height="10"
width="9.9999895"
id="rect2987-6"
style="display:inline;fill:url(#Arm_Orange);fill-opacity:1;fill-rule:evenodd;stroke:url(#Arm_Dark_Grey);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<text
id="text3132-3-8-2-8"
y="-46.713646"
x="259.88815"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-46.713646"
x="259.88815"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1"
id="tspan859-6-4-0-9"
sodipodi:role="line">ETC, BC4</tspan></text>
<rect
y="-219.56964"
x="497.57373"
height="10"
width="24.999981"
id="rect2987-6-6-6-9-0-1"
style="display:inline;fill:url(#Arm_Light_Grey);fill-opacity:1;fill-rule:evenodd;stroke:url(#Arm_Mid_Grey);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<text
id="text3132-3-8-2-6"
y="-211.69765"
x="510.07623"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-211.69765"
x="510.07623"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1"
id="tspan859-6-4-0-6"
sodipodi:role="line">BC6H</tspan></text>
<rect
y="-153.68578"
x="490.13184"
height="19.116123"
width="40.000031"
id="rect2987-6-6-6-9-0-1-7"
style="display:inline;fill:url(#Arm_Light_Grey);fill-opacity:1;fill-rule:evenodd;stroke:url(#Arm_Mid_Grey);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<text
id="text3132-56-7-2"
y="-153.70639"
x="539.08112"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Mid_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-153.70639"
x="539.08112"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Mid_Grey);fill-opacity:1"
id="tspan859-2-0-7"
sodipodi:role="line">32</tspan></text>
<text
id="text3132-3-0"
y="-138.72723"
x="539.08112"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Mid_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-138.72723"
x="539.08112"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Mid_Grey);fill-opacity:1"
id="tspan859-6-9"
sodipodi:role="line">32</tspan></text>
<text
id="text3132-3-8-2-6-9"
y="-145.35124"
x="510.33148"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-145.35124"
x="510.33148"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1"
id="tspan859-6-4-0-6-5"
sodipodi:role="line">ETC, BC2,</tspan><tspan
id="tspan1845"
y="-145.35124"
x="510.33148"
sodipodi:role="line" /></text>
<text
id="text3132-3-8-2-6-9-4"
y="-136.95479"
x="509.5766"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-136.95479"
x="509.5766"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1"
id="tspan859-6-4-0-6-5-8"
sodipodi:role="line">BC3, BC7</tspan><tspan
id="tspan1845-7"
y="-136.95479"
x="509.5766"
sodipodi:role="line" /></text>
<rect
y="-114.68338"
x="498.26279"
height="10"
width="23.564753"
id="rect2987-6-6-6-9-5"
style="display:inline;fill:url(#Arm_Light_Grey);fill-opacity:1;fill-rule:evenodd;stroke:url(#Arm_Mid_Grey);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<text
id="text3132-3-8-2-7"
y="-106.81138"
x="509.84348"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-106.81138"
x="509.84348"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1"
id="tspan859-6-4-0-2"
sodipodi:role="line">BC7</tspan></text>
<rect
y="-84.454575"
x="490.80786"
height="10"
width="38.030109"
id="rect2987-6-6-6-9-5-9"
style="display:inline;fill:url(#Arm_Light_Grey);fill-opacity:1;fill-rule:evenodd;stroke:url(#Arm_Mid_Grey);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<text
id="text3132-3-8-2-2"
y="-76.391479"
x="509.97525"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;line-height:0%;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:middle;display:inline;fill:url(#Arm_Dark_Grey);fill-opacity:1;stroke:none"
xml:space="preserve"><tspan
y="-76.391479"
x="509.97525"
style="font-style:normal;font-variant:normal;font-weight:500;font-stretch:normal;font-size:8px;font-family:Lato;-inkscape-font-specification:'Lato, Medium';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:center;writing-mode:lr-tb;text-anchor:middle;fill:url(#Arm_Dark_Grey);fill-opacity:1"
id="tspan859-6-4-0-26"
sodipodi:role="line">ETC, BC5</tspan></text>
</g>
</svg>
|