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 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735
|
/* $TOG: XmStrDefs.ct /main/2 1997/06/18 17:49:37 samborn $ */
#ifndef _XmConst
#if defined(__STDC__) || !defined( NO_CONST )
#define _XmConst const
#else
#define _XmConst
#endif /* __STDC__ */
#endif /* _XmConst */
#include <Xm/Xm.h>
/* $TOG: makestrs.c /main/11 1998/02/06 11:24:15 kaleb $ */
/* This file is automatically generated. */
/* Default ABI version -- Do not edit */
/* TOG: xmstring.list /main/5 1997/06/20 08:37:02 samborn */
externaldef(_xmstrings) _XmConst char _XmStrings[] = {
'\0',
'A','c','c','e','l','e','r','a','t','o','r','\0',
'A','c','c','e','l','e','r','a','t','o','r','T','e','x','t','\0',
'A','d','j','u','s','t','L','a','s','t','\0',
'A','d','j','u','s','t','M','a','r','g','i','n','\0',
'A','l','i','g','n','m','e','n','t','\0',
'A','l','l','o','w','O','v','e','r','l','a','p','\0',
'A','l','l','o','w','U','n','u','s','e','d','S','p','a','c','e','\0',
'A','n','i','m','a','t','i','o','n','M','a','s','k','\0',
'A','n','i','m','a','t','i','o','n','P','i','x','m','a','p','\0',
'A','n','i','m','a','t','i','o','n','P','i','x','m','a','p','D','e','p','t','h','\0',
'A','n','i','m','a','t','i','o','n','S','t','y','l','e','\0',
'A','p','p','l','y','L','a','b','e','l','S','t','r','i','n','g','\0',
'A','r','m','C','a','l','l','b','a','c','k','\0',
'A','r','m','C','o','l','o','r','\0',
'A','r','m','P','i','x','m','a','p','\0',
'A','r','r','o','w','D','i','r','e','c','t','i','o','n','\0',
'A','t','t','a','c','h','m','e','n','t','\0',
'A','u','d','i','b','l','e','W','a','r','n','i','n','g','\0',
'A','u','t','o','S','h','o','w','C','u','r','s','o','r','P','o','s','i','t','i','o','n','\0',
'A','u','t','o','U','n','m','a','n','a','g','e','\0',
'A','u','t','o','m','a','t','i','c','S','e','l','e','c','t','i','o','n','\0',
'A','v','a','i','l','a','b','i','l','i','t','y','\0',
'B','a','c','k','g','r','o','u','n','d','P','i','x','m','a','p','\0',
'B','l','e','n','d','M','o','d','e','l','\0',
'B','l','i','n','k','R','a','t','e','\0',
'B','o','t','t','o','m','S','h','a','d','o','w','C','o','l','o','r','\0',
'B','o','t','t','o','m','S','h','a','d','o','w','P','i','x','m','a','p','\0',
'B','u','t','t','o','n','A','c','c','e','l','e','r','a','t','o','r','T','e','x','t','\0',
'B','u','t','t','o','n','A','c','c','e','l','e','r','a','t','o','r','s','\0',
'B','u','t','t','o','n','C','o','u','n','t','\0',
'B','u','t','t','o','n','F','o','n','t','L','i','s','t','\0',
'B','u','t','t','o','n','M','n','e','m','o','n','i','c','C','h','a','r','S','e','t','s','\0',
'B','u','t','t','o','n','M','n','e','m','o','n','i','c','s','\0',
'B','u','t','t','o','n','S','e','t','\0',
'B','u','t','t','o','n','T','y','p','e','\0',
'B','u','t','t','o','n','s','\0',
'C','a','n','c','e','l','L','a','b','e','l','S','t','r','i','n','g','\0',
'C','h','i','l','d','H','o','r','i','z','o','n','t','a','l','A','l','i','g','n','m','e','n','t','\0',
'C','h','i','l','d','H','o','r','i','z','o','n','t','a','l','S','p','a','c','i','n','g','\0',
'C','h','i','l','d','P','l','a','c','e','m','e','n','t','\0',
'C','h','i','l','d','T','y','p','e','\0',
'C','h','i','l','d','V','e','r','t','i','c','a','l','A','l','i','g','n','m','e','n','t','\0',
'C','h','i','l','d','r','e','n','\0',
'C','l','i','e','n','t','D','a','t','a','\0',
'C','l','i','p','W','i','n','d','o','w','\0',
'C','o','l','u','m','n','s','\0',
'C','o','m','m','a','n','d','W','i','n','d','o','w','\0',
'C','o','m','m','a','n','d','W','i','n','d','o','w','L','o','c','a','t','i','o','n','\0',
'C','o','n','v','e','r','t','P','r','o','c','\0',
'C','u','r','s','o','r','B','a','c','k','g','r','o','u','n','d','\0',
'C','u','r','s','o','r','F','o','r','e','g','r','o','u','n','d','\0',
'C','u','r','s','o','r','P','o','s','i','t','i','o','n','\0',
'C','u','r','s','o','r','P','o','s','i','t','i','o','n','V','i','s','i','b','l','e','\0',
'D','a','r','k','T','h','r','e','s','h','o','l','d','\0',
'D','e','c','i','m','a','l','P','o','i','n','t','s','\0',
'D','e','f','a','u','l','t','B','u','t','t','o','n','S','h','a','d','o','w','T','h','i','c','k','n','e','s','s','\0',
'D','e','f','a','u','l','t','B','u','t','t','o','n','T','y','p','e','\0',
'D','e','f','a','u','l','t','C','o','p','y','C','u','r','s','o','r','I','c','o','n','\0',
'D','e','f','a','u','l','t','F','o','n','t','L','i','s','t','\0',
'D','e','f','a','u','l','t','I','n','v','a','l','i','d','C','u','r','s','o','r','I','c','o','n','\0',
'D','e','f','a','u','l','t','L','i','n','k','C','u','r','s','o','r','I','c','o','n','\0',
'D','e','f','a','u','l','t','M','o','v','e','C','u','r','s','o','r','I','c','o','n','\0',
'D','e','f','a','u','l','t','N','o','n','e','C','u','r','s','o','r','I','c','o','n','\0',
'D','e','f','a','u','l','t','P','o','s','i','t','i','o','n','\0',
'D','e','f','a','u','l','t','S','o','u','r','c','e','C','u','r','s','o','r','I','c','o','n','\0',
'D','e','f','a','u','l','t','V','a','l','i','d','C','u','r','s','o','r','I','c','o','n','\0',
'D','e','l','e','t','e','R','e','s','p','o','n','s','e','\0',
'D','e','s','k','t','o','p','P','a','r','e','n','t','\0',
'D','i','a','l','o','g','S','t','y','l','e','\0',
'D','i','a','l','o','g','T','i','t','l','e','\0',
'D','i','a','l','o','g','T','y','p','e','\0',
'D','i','r','L','i','s','t','I','t','e','m','C','o','u','n','t','\0',
'D','i','r','L','i','s','t','I','t','e','m','s','\0',
'D','i','r','L','i','s','t','L','a','b','e','l','S','t','r','i','n','g','\0',
'D','i','r','M','a','s','k','\0',
'D','i','r','S','e','a','r','c','h','P','r','o','c','\0',
'D','i','r','S','p','e','c','\0',
'D','i','r','e','c','t','o','r','y','\0',
'D','i','r','e','c','t','o','r','y','V','a','l','i','d','\0',
'D','i','s','a','r','m','C','a','l','l','b','a','c','k','\0',
'D','o','u','b','l','e','C','l','i','c','k','I','n','t','e','r','v','a','l','\0',
'D','r','a','g','C','o','n','t','e','x','t','C','l','a','s','s','\0',
'D','r','a','g','D','r','o','p','F','i','n','i','s','h','C','a','l','l','b','a','c','k','\0',
'D','r','a','g','I','c','o','n','C','l','a','s','s','\0',
'D','r','a','g','I','n','i','t','i','a','t','o','r','P','r','o','t','o','c','o','l','S','t','y','l','e','\0',
'D','r','a','g','M','o','t','i','o','n','C','a','l','l','b','a','c','k','\0',
'D','r','a','g','O','p','e','r','a','t','i','o','n','s','\0',
'D','r','a','g','O','v','e','r','M','o','d','e','\0',
'D','r','a','g','P','r','o','c','\0',
'D','r','a','g','R','e','c','e','i','v','e','r','P','r','o','t','o','c','o','l','S','t','y','l','e','\0',
'D','r','o','p','P','r','o','c','\0',
'D','r','o','p','R','e','c','t','a','n','g','l','e','s','\0',
'D','r','o','p','S','i','t','e','A','c','t','i','v','i','t','y','\0',
'D','r','o','p','S','i','t','e','E','n','t','e','r','C','a','l','l','b','a','c','k','\0',
'D','r','o','p','S','i','t','e','L','e','a','v','e','C','a','l','l','b','a','c','k','\0',
'D','r','o','p','S','i','t','e','M','a','n','a','g','e','r','C','l','a','s','s','\0',
'D','r','o','p','S','i','t','e','O','p','e','r','a','t','i','o','n','s','\0',
'D','r','o','p','S','i','t','e','T','y','p','e','\0',
'D','r','o','p','S','t','a','r','t','C','a','l','l','b','a','c','k','\0',
'D','r','o','p','T','r','a','n','s','f','e','r','C','l','a','s','s','\0',
'D','r','o','p','T','r','a','n','s','f','e','r','s','\0',
'E','d','i','t','a','b','l','e','\0',
'E','n','t','r','y','B','o','r','d','e','r','\0',
'E','n','t','r','y','C','l','a','s','s','\0',
'E','x','p','o','r','t','T','a','r','g','e','t','s','\0',
'E','x','p','o','s','e','C','a','l','l','b','a','c','k','\0',
'E','x','t','e','n','s','i','o','n','T','y','p','e','\0',
'F','i','l','e','L','i','s','t','I','t','e','m','C','o','u','n','t','\0',
'F','i','l','e','L','i','s','t','I','t','e','m','s','\0',
'F','i','l','e','L','i','s','t','L','a','b','e','l','S','t','r','i','n','g','\0',
'F','i','l','e','S','e','a','r','c','h','P','r','o','c','\0',
'F','i','l','e','T','y','p','e','M','a','s','k','\0',
'F','i','l','l','O','n','A','r','m','\0',
'F','i','l','l','O','n','S','e','l','e','c','t','\0',
'F','i','l','t','e','r','L','a','b','e','l','S','t','r','i','n','g','\0',
'F','o','n','t','L','i','s','t','\0',
'F','o','r','e','g','r','o','u','n','d','T','h','r','e','s','h','o','l','d','\0',
'H','e','l','p','L','a','b','e','l','S','t','r','i','n','g','\0',
'H','i','g','h','l','i','g','h','t','C','o','l','o','r','\0',
'H','i','g','h','l','i','g','h','t','O','n','E','n','t','e','r','\0',
'H','i','g','h','l','i','g','h','t','P','i','x','m','a','p','\0',
'H','i','g','h','l','i','g','h','t','T','h','i','c','k','n','e','s','s','\0',
'H','o','r','i','z','o','n','t','a','l','F','o','n','t','U','n','i','t','\0',
'H','o','r','i','z','o','n','t','a','l','S','c','r','o','l','l','B','a','r','\0',
'H','o','t','\0',
'I','C','C','H','a','n','d','l','e','\0',
'I','m','p','o','r','t','T','a','r','g','e','t','s','\0',
'I','n','c','r','e','m','e','n','t','\0',
'I','n','c','r','e','m','e','n','t','a','l','\0',
'I','n','d','i','c','a','t','o','r','O','n','\0',
'I','n','d','i','c','a','t','o','r','S','i','z','e','\0',
'I','n','d','i','c','a','t','o','r','T','y','p','e','\0',
'I','n','i','t','i','a','l','D','e','l','a','y','\0',
'I','n','i','t','i','a','l','F','o','c','u','s','\0',
'I','n','p','u','t','C','r','e','a','t','e','\0',
'I','n','p','u','t','M','e','t','h','o','d','\0',
'I','n','v','a','l','i','d','C','u','r','s','o','r','F','o','r','e','g','r','o','u','n','d','\0',
'I','s','A','l','i','g','n','e','d','\0',
'I','s','H','o','m','o','g','e','n','e','o','u','s','\0',
'I','t','e','m','C','o','u','n','t','\0',
'I','t','e','m','s','\0',
'K','e','y','b','o','a','r','d','F','o','c','u','s','P','o','l','i','c','y','\0',
'L','a','b','e','l','F','o','n','t','L','i','s','t','\0',
'L','a','b','e','l','I','n','s','e','n','s','i','t','i','v','e','P','i','x','m','a','p','\0',
'L','a','b','e','l','P','i','x','m','a','p','\0',
'L','a','b','e','l','S','t','r','i','n','g','\0',
'L','a','b','e','l','T','y','p','e','\0',
'L','i','g','h','t','T','h','r','e','s','h','o','l','d','\0',
'L','i','s','t','L','a','b','e','l','S','t','r','i','n','g','\0',
'L','i','s','t','M','a','r','g','i','n','H','e','i','g','h','t','\0',
'L','i','s','t','M','a','r','g','i','n','W','i','d','t','h','\0',
'L','i','s','t','S','i','z','e','P','o','l','i','c','y','\0',
'L','i','s','t','S','p','a','c','i','n','g','\0',
'L','i','s','t','U','p','d','a','t','e','d','\0',
'L','o','g','i','c','a','l','P','a','r','e','n','t','\0',
'M','a','i','n','W','i','n','d','o','w','M','a','r','g','i','n','H','e','i','g','h','t','\0',
'M','a','i','n','W','i','n','d','o','w','M','a','r','g','i','n','W','i','d','t','h','\0',
'M','a','p','p','i','n','g','D','e','l','a','y','\0',
'M','a','r','g','i','n','B','o','t','t','o','m','\0',
'M','a','r','g','i','n','H','e','i','g','h','t','\0',
'M','a','r','g','i','n','L','e','f','t','\0',
'M','a','r','g','i','n','R','i','g','h','t','\0',
'M','a','r','g','i','n','T','o','p','\0',
'M','a','r','g','i','n','W','i','d','t','h','\0',
'M','a','s','k','\0',
'M','a','x','I','t','e','m','s','\0',
'M','a','x','L','e','n','g','t','h','\0',
'M','a','x','V','a','l','u','e','\0',
'M','a','x','i','m','u','m','\0',
'M','e','n','u','B','a','r','\0',
'M','e','n','u','P','o','s','t','\0',
'M','e','n','u','W','i','d','g','e','t','\0',
'M','e','s','s','a','g','e','P','r','o','c','\0',
'M','e','s','s','a','g','e','W','i','n','d','o','w','\0',
'M','i','n','i','m','i','z','e','B','u','t','t','o','n','s','\0',
'M','i','n','i','m','u','m','\0',
'M','n','e','m','o','n','i','c','\0',
'M','n','e','m','o','n','i','c','C','h','a','r','S','e','t','\0',
'M','o','v','e','O','p','a','q','u','e','\0',
'M','u','l','t','i','C','l','i','c','k','\0',
'M','u','s','t','M','a','t','c','h','\0',
'M','w','m','D','e','c','o','r','a','t','i','o','n','s','\0',
'M','w','m','F','u','n','c','t','i','o','n','s','\0',
'M','w','m','I','n','p','u','t','M','o','d','e','\0',
'M','w','m','M','e','n','u','\0',
'M','w','m','M','e','s','s','a','g','e','s','\0',
'N','a','v','i','g','a','t','i','o','n','T','y','p','e','\0',
'N','e','e','d','s','M','o','t','i','o','n','\0',
'N','o','M','a','t','c','h','S','t','r','i','n','g','\0',
'N','o','R','e','s','i','z','e','\0',
'N','o','n','e','C','u','r','s','o','r','F','o','r','e','g','r','o','u','n','d','\0',
'N','o','t','i','f','y','P','r','o','c','\0',
'N','u','m','C','h','i','l','d','r','e','n','\0',
'N','u','m','C','o','l','u','m','n','s','\0',
'N','u','m','D','r','o','p','R','e','c','t','a','n','g','l','e','s','\0',
'N','u','m','D','r','o','p','T','r','a','n','s','f','e','r','s','\0',
'N','u','m','E','x','p','o','r','t','T','a','r','g','e','t','s','\0',
'N','u','m','I','m','p','o','r','t','T','a','r','g','e','t','s','\0',
'O','f','f','s','e','t','\0',
'O','k','L','a','b','e','l','S','t','r','i','n','g','\0',
'O','p','e','r','a','t','i','o','n','C','h','a','n','g','e','d','C','a','l','l','b','a','c','k','\0',
'O','p','e','r','a','t','i','o','n','C','u','r','s','o','r','I','c','o','n','\0',
'O','p','t','i','o','n','L','a','b','e','l','\0',
'O','p','t','i','o','n','M','n','e','m','o','n','i','c','\0',
'O','u','t','p','u','t','C','r','e','a','t','e','\0',
'P','a','c','k','i','n','g','\0',
'P','a','g','e','I','n','c','r','e','m','e','n','t','\0',
'P','a','n','e','M','a','x','i','m','u','m','\0',
'P','a','n','e','M','i','n','i','m','u','m','\0',
'P','a','t','t','e','r','n','\0',
'P','e','n','d','i','n','g','D','e','l','e','t','e','\0',
'P','o','p','u','p','E','n','a','b','l','e','d','\0',
'P','o','s','i','t','i','o','n','I','n','d','e','x','\0',
'P','o','s','t','F','r','o','m','B','u','t','t','o','n','\0',
'P','o','s','t','F','r','o','m','C','o','u','n','t','\0',
'P','o','s','t','F','r','o','m','L','i','s','t','\0',
'P','r','e','e','d','i','t','T','y','p','e','\0',
'P','r','o','c','e','s','s','i','n','g','D','i','r','e','c','t','i','o','n','\0',
'P','r','o','m','p','t','S','t','r','i','n','g','\0',
'P','r','o','t','o','c','o','l','C','a','l','l','b','a','c','k','\0',
'P','u','s','h','B','u','t','t','o','n','E','n','a','b','l','e','d','\0',
'Q','u','a','l','i','f','y','S','e','a','r','c','h','D','a','t','a','P','r','o','c','\0',
'R','a','d','i','o','A','l','w','a','y','s','O','n','e','\0',
'R','a','d','i','o','B','e','h','a','v','i','o','r','\0',
'R','e','c','o','m','p','u','t','e','S','i','z','e','\0',
'R','e','c','t','a','n','g','l','e','s','\0',
'R','e','p','e','a','t','D','e','l','a','y','\0',
'R','e','s','i','z','e','C','a','l','l','b','a','c','k','\0',
'R','e','s','i','z','e','H','e','i','g','h','t','\0',
'R','e','s','i','z','e','P','o','l','i','c','y','\0',
'R','e','s','i','z','e','W','i','d','t','h','\0',
'R','o','w','C','o','l','u','m','n','T','y','p','e','\0',
'R','o','w','s','\0',
'R','u','b','b','e','r','P','o','s','i','t','i','o','n','i','n','g','\0',
'S','a','s','h','H','e','i','g','h','t','\0',
'S','a','s','h','I','n','d','e','n','t','\0',
'S','a','s','h','W','i','d','t','h','\0',
'S','c','a','l','e','H','e','i','g','h','t','\0',
'S','c','a','l','e','M','u','l','t','i','p','l','e','\0',
'S','c','a','l','e','W','i','d','t','h','\0',
'S','c','r','o','l','l','\0',
'S','c','r','o','l','l','B','a','r','D','i','s','p','l','a','y','P','o','l','i','c','y','\0',
'S','c','r','o','l','l','B','a','r','P','l','a','c','e','m','e','n','t','\0',
'S','c','r','o','l','l','S','i','d','e','\0',
'S','c','r','o','l','l','e','d','W','i','n','d','o','w','M','a','r','g','i','n','H','e','i','g','h','t','\0',
'S','c','r','o','l','l','e','d','W','i','n','d','o','w','M','a','r','g','i','n','W','i','d','t','h','\0',
'S','c','r','o','l','l','i','n','g','P','o','l','i','c','y','\0',
'S','e','l','e','c','t','C','o','l','o','r','\0',
'S','e','l','e','c','t','I','n','s','e','n','s','i','t','i','v','e','P','i','x','m','a','p','\0',
'S','e','l','e','c','t','P','i','x','m','a','p','\0',
'S','e','l','e','c','t','T','h','r','e','s','h','o','l','d','\0',
'S','e','l','e','c','t','e','d','I','t','e','m','C','o','u','n','t','\0',
'S','e','l','e','c','t','e','d','I','t','e','m','s','\0',
'S','e','l','e','c','t','i','o','n','A','r','r','a','y','C','o','u','n','t','\0',
'S','e','l','e','c','t','i','o','n','L','a','b','e','l','S','t','r','i','n','g','\0',
'S','e','l','e','c','t','i','o','n','P','o','l','i','c','y','\0',
'S','e','p','a','r','a','t','o','r','O','n','\0',
'S','e','p','a','r','a','t','o','r','T','y','p','e','\0',
'S','e','t','\0',
'S','h','a','d','o','w','T','h','i','c','k','n','e','s','s','\0',
'S','h','a','d','o','w','T','y','p','e','\0',
'S','h','e','l','l','U','n','i','t','T','y','p','e','\0',
'S','h','o','w','A','r','r','o','w','s','\0',
'S','h','o','w','A','s','D','e','f','a','u','l','t','\0',
'S','h','o','w','S','e','p','a','r','a','t','o','r','\0',
'S','h','o','w','V','a','l','u','e','\0',
'S','i','m','p','l','e','C','h','e','c','k','B','o','x','\0',
'S','i','m','p','l','e','M','e','n','u','B','a','r','\0',
'S','i','m','p','l','e','O','p','t','i','o','n','M','e','n','u','\0',
'S','i','m','p','l','e','P','o','p','u','p','M','e','n','u','\0',
'S','i','m','p','l','e','P','u','l','l','d','o','w','n','M','e','n','u','\0',
'S','i','m','p','l','e','R','a','d','i','o','B','o','x','\0',
'S','i','z','e','P','o','l','i','c','y','\0',
'S','l','i','d','e','r','S','i','z','e','\0',
'S','o','u','r','c','e','\0',
'S','o','u','r','c','e','C','u','r','s','o','r','I','c','o','n','\0',
'S','o','u','r','c','e','I','s','E','x','t','e','r','n','a','l','\0',
'S','o','u','r','c','e','P','i','x','m','a','p','I','c','o','n','\0',
'S','o','u','r','c','e','W','i','d','g','e','t','\0',
'S','o','u','r','c','e','W','i','n','d','o','w','\0',
'S','p','a','c','i','n','g','\0',
'S','t','a','r','t','T','i','m','e','\0',
'S','t','a','t','e','C','u','r','s','o','r','I','c','o','n','\0',
'S','t','r','i','n','g','D','i','r','e','c','t','i','o','n','\0',
'T','e','a','r','O','f','f','M','o','d','e','l','\0',
'T','e','x','t','F','o','n','t','L','i','s','t','\0',
'T','e','x','t','S','t','r','i','n','g','\0',
'T','e','x','t','V','a','l','u','e','\0',
'T','i','t','l','e','S','t','r','i','n','g','\0',
'T','o','p','C','h','a','r','a','c','t','e','r','\0',
'T','o','p','I','t','e','m','P','o','s','i','t','i','o','n','\0',
'T','o','p','L','e','v','e','l','E','n','t','e','r','C','a','l','l','b','a','c','k','\0',
'T','o','p','L','e','v','e','l','L','e','a','v','e','C','a','l','l','b','a','c','k','\0',
'T','o','p','S','h','a','d','o','w','C','o','l','o','r','\0',
'T','o','p','S','h','a','d','o','w','P','i','x','m','a','p','\0',
'T','r','a','n','s','f','e','r','P','r','o','c','\0',
'T','r','a','n','s','f','e','r','S','t','a','t','u','s','\0',
'T','r','a','v','e','r','s','a','l','O','n','\0',
'T','r','a','v','e','r','s','a','l','T','y','p','e','\0',
'T','r','e','e','U','p','d','a','t','e','P','r','o','c','\0',
'T','r','o','u','g','h','C','o','l','o','r','\0',
'U','n','i','t','T','y','p','e','\0',
'U','n','p','o','s','t','B','e','h','a','v','i','o','r','\0',
'U','n','s','e','l','e','c','t','P','i','x','m','a','p','\0',
'U','p','d','a','t','e','S','l','i','d','e','r','S','i','z','e','\0',
'U','s','e','A','s','y','n','c','G','e','o','m','e','t','r','y','\0',
'U','s','e','r','D','a','t','a','\0',
'V','a','l','i','d','C','u','r','s','o','r','F','o','r','e','g','r','o','u','n','d','\0',
'V','a','l','u','e','C','h','a','n','g','e','d','C','a','l','l','b','a','c','k','\0',
'V','a','l','u','e','W','c','s','\0',
'V','e','r','i','f','y','B','e','l','l','\0',
'V','e','r','t','i','c','a','l','A','l','i','g','n','m','e','n','t','\0',
'V','e','r','t','i','c','a','l','F','o','n','t','U','n','i','t','\0',
'V','e','r','t','i','c','a','l','S','c','r','o','l','l','B','a','r','\0',
'V','i','s','i','b','l','e','I','t','e','m','C','o','u','n','t','\0',
'V','i','s','i','b','l','e','W','h','e','n','O','f','f','\0',
'V','i','s','u','a','l','P','o','l','i','c','y','\0',
'W','h','i','c','h','B','u','t','t','o','n','\0',
'W','o','r','d','W','r','a','p','\0',
'W','o','r','k','W','i','n','d','o','w','\0',
'X','m','S','t','r','i','n','g','\0',
'a','c','c','e','l','e','r','a','t','o','r','\0',
'a','c','c','e','l','e','r','a','t','o','r','T','e','x','t','\0',
'a','c','t','i','v','a','t','e','C','a','l','l','b','a','c','k','\0',
'a','d','j','u','s','t','L','a','s','t','\0',
'a','d','j','u','s','t','M','a','r','g','i','n','\0',
'a','l','i','g','n','m','e','n','t','\0',
'a','l','l','o','w','O','v','e','r','l','a','p','\0',
'a','l','l','o','w','R','e','s','i','z','e','\0',
'a','l','l','o','w','U','n','u','s','e','d','S','p','a','c','e','\0',
'a','n','i','m','a','t','i','o','n','M','a','s','k','\0',
'a','n','i','m','a','t','i','o','n','P','i','x','m','a','p','\0',
'a','n','i','m','a','t','i','o','n','P','i','x','m','a','p','D','e','p','t','h','\0',
'a','n','i','m','a','t','i','o','n','S','t','y','l','e','\0',
'a','p','p','l','y','C','a','l','l','b','a','c','k','\0',
'a','p','p','l','y','L','a','b','e','l','S','t','r','i','n','g','\0',
'a','r','m','C','a','l','l','b','a','c','k','\0',
'a','r','m','C','o','l','o','r','\0',
'a','r','m','P','i','x','m','a','p','\0',
'a','r','r','o','w','D','i','r','e','c','t','i','o','n','\0',
'a','t','t','a','c','h','m','e','n','t','\0',
'a','u','d','i','b','l','e','W','a','r','n','i','n','g','\0',
'a','u','t','o','S','h','o','w','C','u','r','s','o','r','P','o','s','i','t','i','o','n','\0',
'a','u','t','o','U','n','m','a','n','a','g','e','\0',
'a','u','t','o','m','a','t','i','c','S','e','l','e','c','t','i','o','n','\0',
'a','v','a','i','l','a','b','i','l','i','t','y','\0',
'b','l','e','n','d','M','o','d','e','l','\0',
'b','l','i','n','k','R','a','t','e','\0',
'b','o','t','t','o','m','A','t','t','a','c','h','m','e','n','t','\0',
'b','o','t','t','o','m','O','f','f','s','e','t','\0',
'b','o','t','t','o','m','P','o','s','i','t','i','o','n','\0',
'b','o','t','t','o','m','S','h','a','d','o','w','C','o','l','o','r','\0',
'b','o','t','t','o','m','S','h','a','d','o','w','P','i','x','m','a','p','\0',
'b','o','t','t','o','m','W','i','d','g','e','t','\0',
'b','r','o','w','s','e','S','e','l','e','c','t','i','o','n','C','a','l','l','b','a','c','k','\0',
'b','u','t','t','o','n','A','c','c','e','l','e','r','a','t','o','r','T','e','x','t','\0',
'b','u','t','t','o','n','A','c','c','e','l','e','r','a','t','o','r','s','\0',
'b','u','t','t','o','n','C','o','u','n','t','\0',
'b','u','t','t','o','n','F','o','n','t','L','i','s','t','\0',
'b','u','t','t','o','n','M','n','e','m','o','n','i','c','C','h','a','r','S','e','t','s','\0',
'b','u','t','t','o','n','M','n','e','m','o','n','i','c','s','\0',
'b','u','t','t','o','n','S','e','t','\0',
'b','u','t','t','o','n','T','y','p','e','\0',
'b','u','t','t','o','n','s','\0',
'c','a','n','c','e','l','B','u','t','t','o','n','\0',
'c','a','n','c','e','l','C','a','l','l','b','a','c','k','\0',
'c','a','n','c','e','l','L','a','b','e','l','S','t','r','i','n','g','\0',
'c','a','s','c','a','d','e','P','i','x','m','a','p','\0',
'c','a','s','c','a','d','i','n','g','C','a','l','l','b','a','c','k','\0',
'c','h','i','l','d','H','o','r','i','z','o','n','t','a','l','A','l','i','g','n','m','e','n','t','\0',
'c','h','i','l','d','H','o','r','i','z','o','n','t','a','l','S','p','a','c','i','n','g','\0',
'c','h','i','l','d','P','l','a','c','e','m','e','n','t','\0',
'c','h','i','l','d','P','o','s','i','t','i','o','n','\0',
'c','h','i','l','d','T','y','p','e','\0',
'c','h','i','l','d','V','e','r','t','i','c','a','l','A','l','i','g','n','m','e','n','t','\0',
'c','l','i','e','n','t','D','a','t','a','\0',
'c','l','i','p','W','i','n','d','o','w','\0',
'c','o','l','u','m','n','s','\0',
'c','o','m','m','a','n','d','\0',
'c','o','m','m','a','n','d','C','h','a','n','g','e','d','C','a','l','l','b','a','c','k','\0',
'c','o','m','m','a','n','d','E','n','t','e','r','e','d','C','a','l','l','b','a','c','k','\0',
'c','o','m','m','a','n','d','W','i','n','d','o','w','\0',
'c','o','m','m','a','n','d','W','i','n','d','o','w','L','o','c','a','t','i','o','n','\0',
'c','o','n','v','e','r','t','P','r','o','c','\0',
'c','u','r','s','o','r','B','a','c','k','g','r','o','u','n','d','\0',
'c','u','r','s','o','r','F','o','r','e','g','r','o','u','n','d','\0',
'c','u','r','s','o','r','P','o','s','i','t','i','o','n','\0',
'c','u','r','s','o','r','P','o','s','i','t','i','o','n','V','i','s','i','b','l','e','\0',
'd','a','r','k','T','h','r','e','s','h','o','l','d','\0',
'd','e','c','i','m','a','l','P','o','i','n','t','s','\0',
'd','e','c','r','e','m','e','n','t','C','a','l','l','b','a','c','k','\0',
'd','e','f','a','u','l','t','A','c','t','i','o','n','C','a','l','l','b','a','c','k','\0',
'd','e','f','a','u','l','t','B','u','t','t','o','n','\0',
'd','e','f','a','u','l','t','B','u','t','t','o','n','S','h','a','d','o','w','T','h','i','c','k','n','e','s','s','\0',
'd','e','f','a','u','l','t','B','u','t','t','o','n','T','y','p','e','\0',
'd','e','f','a','u','l','t','C','o','p','y','C','u','r','s','o','r','I','c','o','n','\0',
'd','e','f','a','u','l','t','F','o','n','t','L','i','s','t','\0',
'd','e','f','a','u','l','t','I','n','v','a','l','i','d','C','u','r','s','o','r','I','c','o','n','\0',
'd','e','f','a','u','l','t','L','i','n','k','C','u','r','s','o','r','I','c','o','n','\0',
'd','e','f','a','u','l','t','M','o','v','e','C','u','r','s','o','r','I','c','o','n','\0',
'd','e','f','a','u','l','t','N','o','n','e','C','u','r','s','o','r','I','c','o','n','\0',
'd','e','f','a','u','l','t','P','o','s','i','t','i','o','n','\0',
'd','e','f','a','u','l','t','S','o','u','r','c','e','C','u','r','s','o','r','I','c','o','n','\0',
'd','e','f','a','u','l','t','V','a','l','i','d','C','u','r','s','o','r','I','c','o','n','\0',
'd','e','l','e','t','e','R','e','s','p','o','n','s','e','\0',
'd','e','s','k','t','o','p','P','a','r','e','n','t','\0',
'd','i','a','l','o','g','S','t','y','l','e','\0',
'd','i','a','l','o','g','T','i','t','l','e','\0',
'd','i','a','l','o','g','T','y','p','e','\0',
'd','i','r','L','i','s','t','I','t','e','m','C','o','u','n','t','\0',
'd','i','r','L','i','s','t','I','t','e','m','s','\0',
'd','i','r','L','i','s','t','L','a','b','e','l','S','t','r','i','n','g','\0',
'd','i','r','M','a','s','k','\0',
'd','i','r','S','e','a','r','c','h','P','r','o','c','\0',
'd','i','r','S','p','e','c','\0',
'd','i','r','e','c','t','o','r','y','\0',
'd','i','r','e','c','t','o','r','y','V','a','l','i','d','\0',
'd','i','s','a','r','m','C','a','l','l','b','a','c','k','\0',
'd','o','u','b','l','e','C','l','i','c','k','I','n','t','e','r','v','a','l','\0',
'd','r','a','g','C','a','l','l','b','a','c','k','\0',
'd','r','a','g','C','o','n','t','e','x','t','C','l','a','s','s','\0',
'd','r','a','g','D','r','o','p','F','i','n','i','s','h','C','a','l','l','b','a','c','k','\0',
'd','r','a','g','I','c','o','n','C','l','a','s','s','\0',
'd','r','a','g','I','n','i','t','i','a','t','o','r','P','r','o','t','o','c','o','l','S','t','y','l','e','\0',
'd','r','a','g','M','o','t','i','o','n','C','a','l','l','b','a','c','k','\0',
'd','r','a','g','O','p','e','r','a','t','i','o','n','s','\0',
'd','r','a','g','O','v','e','r','M','o','d','e','\0',
'd','r','a','g','P','r','o','c','\0',
'd','r','a','g','R','e','c','e','i','v','e','r','P','r','o','t','o','c','o','l','S','t','y','l','e','\0',
'd','r','o','p','F','i','n','i','s','h','C','a','l','l','b','a','c','k','\0',
'd','r','o','p','P','r','o','c','\0',
'd','r','o','p','R','e','c','t','a','n','g','l','e','s','\0',
'd','r','o','p','S','i','t','e','A','c','t','i','v','i','t','y','\0',
'd','r','o','p','S','i','t','e','E','n','t','e','r','C','a','l','l','b','a','c','k','\0',
'd','r','o','p','S','i','t','e','L','e','a','v','e','C','a','l','l','b','a','c','k','\0',
'd','r','o','p','S','i','t','e','M','a','n','a','g','e','r','C','l','a','s','s','\0',
'd','r','o','p','S','i','t','e','O','p','e','r','a','t','i','o','n','s','\0',
'd','r','o','p','S','i','t','e','T','y','p','e','\0',
'd','r','o','p','S','t','a','r','t','C','a','l','l','b','a','c','k','\0',
'd','r','o','p','T','r','a','n','s','f','e','r','C','l','a','s','s','\0',
'd','r','o','p','T','r','a','n','s','f','e','r','s','\0',
'e','d','i','t','M','o','d','e','\0',
'e','d','i','t','a','b','l','e','\0',
'e','n','t','r','y','A','l','i','g','n','m','e','n','t','\0',
'e','n','t','r','y','B','o','r','d','e','r','\0',
'e','n','t','r','y','C','a','l','l','b','a','c','k','\0',
'e','n','t','r','y','C','l','a','s','s','\0',
'e','n','t','r','y','V','e','r','t','i','c','a','l','A','l','i','g','n','m','e','n','t','\0',
'e','x','p','o','r','t','T','a','r','g','e','t','s','\0',
'e','x','p','o','s','e','C','a','l','l','b','a','c','k','\0',
'e','x','t','e','n','d','e','d','S','e','l','e','c','t','i','o','n','C','a','l','l','b','a','c','k','\0',
'e','x','t','e','n','s','i','o','n','T','y','p','e','\0',
'f','i','l','e','L','i','s','t','I','t','e','m','C','o','u','n','t','\0',
'f','i','l','e','L','i','s','t','I','t','e','m','s','\0',
'f','i','l','e','L','i','s','t','L','a','b','e','l','S','t','r','i','n','g','\0',
'f','i','l','e','S','e','a','r','c','h','P','r','o','c','\0',
'f','i','l','e','T','y','p','e','M','a','s','k','\0',
'f','i','l','l','O','n','A','r','m','\0',
'f','i','l','l','O','n','S','e','l','e','c','t','\0',
'f','i','l','t','e','r','L','a','b','e','l','S','t','r','i','n','g','\0',
'f','o','c','u','s','C','a','l','l','b','a','c','k','\0',
'f','o','c','u','s','M','o','v','e','d','C','a','l','l','b','a','c','k','\0',
'f','o','c','u','s','P','o','l','i','c','y','C','h','a','n','g','e','d','\0',
'f','o','n','t','L','i','s','t','\0',
'f','o','r','e','g','r','o','u','n','d','T','h','r','e','s','h','o','l','d','\0',
'f','r','a','c','t','i','o','n','B','a','s','e','\0',
'g','a','i','n','P','r','i','m','a','r','y','C','a','l','l','b','a','c','k','\0',
'h','e','l','p','C','a','l','l','b','a','c','k','\0',
'h','e','l','p','L','a','b','e','l','S','t','r','i','n','g','\0',
'h','i','g','h','l','i','g','h','t','C','o','l','o','r','\0',
'h','i','g','h','l','i','g','h','t','O','n','E','n','t','e','r','\0',
'h','i','g','h','l','i','g','h','t','P','i','x','m','a','p','\0',
'h','i','g','h','l','i','g','h','t','T','h','i','c','k','n','e','s','s','\0',
'h','i','s','t','o','r','y','I','t','e','m','C','o','u','n','t','\0',
'h','i','s','t','o','r','y','I','t','e','m','s','\0',
'h','i','s','t','o','r','y','M','a','x','I','t','e','m','s','\0',
'h','i','s','t','o','r','y','V','i','s','i','b','l','e','I','t','e','m','C','o','u','n','t','\0',
'h','o','r','i','z','o','n','t','a','l','F','o','n','t','U','n','i','t','\0',
'h','o','r','i','z','o','n','t','a','l','S','c','r','o','l','l','B','a','r','\0',
'h','o','r','i','z','o','n','t','a','l','S','p','a','c','i','n','g','\0',
'h','o','t','X','\0',
'h','o','t','Y','\0',
'i','c','c','H','a','n','d','l','e','\0',
'i','m','p','o','r','t','T','a','r','g','e','t','s','\0',
'i','n','c','r','e','m','e','n','t','\0',
'i','n','c','r','e','m','e','n','t','C','a','l','l','b','a','c','k','\0',
'i','n','c','r','e','m','e','n','t','a','l','\0',
'i','n','d','i','c','a','t','o','r','O','n','\0',
'i','n','d','i','c','a','t','o','r','S','i','z','e','\0',
'i','n','d','i','c','a','t','o','r','T','y','p','e','\0',
'i','n','i','t','i','a','l','D','e','l','a','y','\0',
'i','n','i','t','i','a','l','F','o','c','u','s','\0',
'i','n','p','u','t','C','a','l','l','b','a','c','k','\0',
'i','n','p','u','t','C','r','e','a','t','e','\0',
'i','n','p','u','t','M','e','t','h','o','d','\0',
'i','n','v','a','l','i','d','C','u','r','s','o','r','F','o','r','e','g','r','o','u','n','d','\0',
'i','s','A','l','i','g','n','e','d','\0',
'i','s','H','o','m','o','g','e','n','e','o','u','s','\0',
'i','t','e','m','C','o','u','n','t','\0',
'i','t','e','m','s','\0',
'k','e','y','b','o','a','r','d','F','o','c','u','s','P','o','l','i','c','y','\0',
'l','a','b','e','l','F','o','n','t','L','i','s','t','\0',
'l','a','b','e','l','I','n','s','e','n','s','i','t','i','v','e','P','i','x','m','a','p','\0',
'l','a','b','e','l','P','i','x','m','a','p','\0',
'l','a','b','e','l','S','t','r','i','n','g','\0',
'l','a','b','e','l','T','y','p','e','\0',
'l','e','f','t','A','t','t','a','c','h','m','e','n','t','\0',
'l','e','f','t','O','f','f','s','e','t','\0',
'l','e','f','t','P','o','s','i','t','i','o','n','\0',
'l','e','f','t','W','i','d','g','e','t','\0',
'l','i','g','h','t','T','h','r','e','s','h','o','l','d','\0',
'l','i','n','e','S','p','a','c','e','\0',
'l','i','s','t','I','t','e','m','C','o','u','n','t','\0',
'l','i','s','t','I','t','e','m','s','\0',
'l','i','s','t','L','a','b','e','l','S','t','r','i','n','g','\0',
'l','i','s','t','M','a','r','g','i','n','H','e','i','g','h','t','\0',
'l','i','s','t','M','a','r','g','i','n','W','i','d','t','h','\0',
'l','i','s','t','S','i','z','e','P','o','l','i','c','y','\0',
'l','i','s','t','S','p','a','c','i','n','g','\0',
'l','i','s','t','U','p','d','a','t','e','d','\0',
'l','i','s','t','V','i','s','i','b','l','e','I','t','e','m','C','o','u','n','t','\0',
'l','o','g','i','c','a','l','P','a','r','e','n','t','\0',
'l','o','s','e','P','r','i','m','a','r','y','C','a','l','l','b','a','c','k','\0',
'l','o','s','i','n','g','F','o','c','u','s','C','a','l','l','b','a','c','k','\0',
'm','a','i','n','W','i','n','d','o','w','M','a','r','g','i','n','H','e','i','g','h','t','\0',
'm','a','i','n','W','i','n','d','o','w','M','a','r','g','i','n','W','i','d','t','h','\0',
'm','a','p','C','a','l','l','b','a','c','k','\0',
'm','a','p','p','i','n','g','D','e','l','a','y','\0',
'm','a','r','g','i','n','\0',
'm','a','r','g','i','n','B','o','t','t','o','m','\0',
'm','a','r','g','i','n','H','e','i','g','h','t','\0',
'm','a','r','g','i','n','L','e','f','t','\0',
'm','a','r','g','i','n','R','i','g','h','t','\0',
'm','a','r','g','i','n','T','o','p','\0',
'm','a','r','g','i','n','W','i','d','t','h','\0',
'm','a','s','k','\0',
'm','a','x','L','e','n','g','t','h','\0',
'm','a','x','i','m','u','m','\0',
'm','e','n','u','A','c','c','e','l','e','r','a','t','o','r','\0',
'm','e','n','u','B','a','r','\0',
'm','e','n','u','C','u','r','s','o','r','\0',
'm','e','n','u','H','e','l','p','W','i','d','g','e','t','\0',
'm','e','n','u','H','i','s','t','o','r','y','\0',
'm','e','n','u','P','o','s','t','\0',
'm','e','s','s','a','g','e','A','l','i','g','n','m','e','n','t','\0',
'm','e','s','s','a','g','e','P','r','o','c','\0',
'm','e','s','s','a','g','e','S','t','r','i','n','g','\0',
'm','e','s','s','a','g','e','W','i','n','d','o','w','\0',
'm','i','n','i','m','i','z','e','B','u','t','t','o','n','s','\0',
'm','i','n','i','m','u','m','\0',
'm','n','e','m','o','n','i','c','\0',
'm','n','e','m','o','n','i','c','C','h','a','r','S','e','t','\0',
'm','o','d','i','f','y','V','e','r','i','f','y','C','a','l','l','b','a','c','k','\0',
'm','o','d','i','f','y','V','e','r','i','f','y','C','a','l','l','b','a','c','k','W','c','s','\0',
'm','o','t','i','o','n','V','e','r','i','f','y','C','a','l','l','b','a','c','k','\0',
'm','o','v','e','O','p','a','q','u','e','\0',
'm','u','l','t','i','C','l','i','c','k','\0',
'm','u','l','t','i','p','l','e','S','e','l','e','c','t','i','o','n','C','a','l','l','b','a','c','k','\0',
'm','u','s','t','M','a','t','c','h','\0',
'm','w','m','D','e','c','o','r','a','t','i','o','n','s','\0',
'm','w','m','F','u','n','c','t','i','o','n','s','\0',
'm','w','m','I','n','p','u','t','M','o','d','e','\0',
'm','w','m','M','e','n','u','\0',
'm','w','m','M','e','s','s','a','g','e','s','\0',
'n','a','v','i','g','a','t','i','o','n','T','y','p','e','\0',
'n','e','e','d','s','M','o','t','i','o','n','\0',
'n','o','M','a','t','c','h','C','a','l','l','b','a','c','k','\0',
'n','o','M','a','t','c','h','S','t','r','i','n','g','\0',
'n','o','R','e','s','i','z','e','\0',
'n','o','n','e','C','u','r','s','o','r','F','o','r','e','g','r','o','u','n','d','\0',
'n','o','t','i','f','y','P','r','o','c','\0',
'n','u','m','C','o','l','u','m','n','s','\0',
'n','u','m','D','r','o','p','R','e','c','t','a','n','g','l','e','s','\0',
'n','u','m','D','r','o','p','T','r','a','n','s','f','e','r','s','\0',
'n','u','m','E','x','p','o','r','t','T','a','r','g','e','t','s','\0',
'n','u','m','I','m','p','o','r','t','T','a','r','g','e','t','s','\0',
'n','u','m','R','e','c','t','a','n','g','l','e','s','\0',
'o','f','f','s','e','t','X','\0',
'o','f','f','s','e','t','Y','\0',
'o','k','C','a','l','l','b','a','c','k','\0',
'o','k','L','a','b','e','l','S','t','r','i','n','g','\0',
'o','p','e','r','a','t','i','o','n','C','h','a','n','g','e','d','C','a','l','l','b','a','c','k','\0',
'o','p','e','r','a','t','i','o','n','C','u','r','s','o','r','I','c','o','n','\0',
'o','p','t','i','o','n','L','a','b','e','l','\0',
'o','p','t','i','o','n','M','n','e','m','o','n','i','c','\0',
'o','u','t','p','u','t','C','r','e','a','t','e','\0',
'p','a','c','k','i','n','g','\0',
'p','a','g','e','D','e','c','r','e','m','e','n','t','C','a','l','l','b','a','c','k','\0',
'p','a','g','e','I','n','c','r','e','m','e','n','t','\0',
'p','a','g','e','I','n','c','r','e','m','e','n','t','C','a','l','l','b','a','c','k','\0',
'p','a','n','e','M','a','x','i','m','u','m','\0',
'p','a','n','e','M','i','n','i','m','u','m','\0',
'p','a','t','t','e','r','n','\0',
'p','e','n','d','i','n','g','D','e','l','e','t','e','\0',
'p','o','p','u','p','E','n','a','b','l','e','d','\0',
'p','o','s','i','t','i','o','n','I','n','d','e','x','\0',
'p','o','s','t','F','r','o','m','B','u','t','t','o','n','\0',
'p','o','s','t','F','r','o','m','C','o','u','n','t','\0',
'p','o','s','t','F','r','o','m','L','i','s','t','\0',
'p','r','e','e','d','i','t','T','y','p','e','\0',
'p','r','o','c','e','s','s','i','n','g','D','i','r','e','c','t','i','o','n','\0',
'p','r','o','m','p','t','S','t','r','i','n','g','\0',
'p','r','o','t','o','c','o','l','C','a','l','l','b','a','c','k','\0',
'p','u','s','h','B','u','t','t','o','n','E','n','a','b','l','e','d','\0',
'q','u','a','l','i','f','y','S','e','a','r','c','h','D','a','t','a','P','r','o','c','\0',
'r','a','d','i','o','A','l','w','a','y','s','O','n','e','\0',
'r','a','d','i','o','B','e','h','a','v','i','o','r','\0',
'r','e','a','l','i','z','e','C','a','l','l','b','a','c','k','\0',
'r','e','c','o','m','p','u','t','e','S','i','z','e','\0',
'r','e','c','t','a','n','g','l','e','s','\0',
'r','e','f','i','g','u','r','e','M','o','d','e','\0',
'r','e','p','e','a','t','D','e','l','a','y','\0',
'r','e','s','i','z','a','b','l','e','\0',
'r','e','s','i','z','e','C','a','l','l','b','a','c','k','\0',
'r','e','s','i','z','e','H','e','i','g','h','t','\0',
'r','e','s','i','z','e','P','o','l','i','c','y','\0',
'r','e','s','i','z','e','W','i','d','t','h','\0',
'r','i','g','h','t','A','t','t','a','c','h','m','e','n','t','\0',
'r','i','g','h','t','O','f','f','s','e','t','\0',
'r','i','g','h','t','P','o','s','i','t','i','o','n','\0',
'r','i','g','h','t','W','i','d','g','e','t','\0',
'r','o','w','C','o','l','u','m','n','T','y','p','e','\0',
'r','o','w','s','\0',
'r','u','b','b','e','r','P','o','s','i','t','i','o','n','i','n','g','\0',
's','a','s','h','H','e','i','g','h','t','\0',
's','a','s','h','I','n','d','e','n','t','\0',
's','a','s','h','S','h','a','d','o','w','T','h','i','c','k','n','e','s','s','\0',
's','a','s','h','W','i','d','t','h','\0',
's','c','a','l','e','H','e','i','g','h','t','\0',
's','c','a','l','e','M','u','l','t','i','p','l','e','\0',
's','c','a','l','e','W','i','d','t','h','\0',
's','c','r','o','l','l','B','a','r','D','i','s','p','l','a','y','P','o','l','i','c','y','\0',
's','c','r','o','l','l','B','a','r','P','l','a','c','e','m','e','n','t','\0',
's','c','r','o','l','l','H','o','r','i','z','o','n','t','a','l','\0',
's','c','r','o','l','l','L','e','f','t','S','i','d','e','\0',
's','c','r','o','l','l','T','o','p','S','i','d','e','\0',
's','c','r','o','l','l','V','e','r','t','i','c','a','l','\0',
's','c','r','o','l','l','e','d','W','i','n','d','o','w','M','a','r','g','i','n','H','e','i','g','h','t','\0',
's','c','r','o','l','l','e','d','W','i','n','d','o','w','M','a','r','g','i','n','W','i','d','t','h','\0',
's','c','r','o','l','l','i','n','g','P','o','l','i','c','y','\0',
's','e','l','e','c','t','C','o','l','o','r','\0',
's','e','l','e','c','t','I','n','s','e','n','s','i','t','i','v','e','P','i','x','m','a','p','\0',
's','e','l','e','c','t','P','i','x','m','a','p','\0',
's','e','l','e','c','t','T','h','r','e','s','h','o','l','d','\0',
's','e','l','e','c','t','e','d','I','t','e','m','C','o','u','n','t','\0',
's','e','l','e','c','t','e','d','I','t','e','m','s','\0',
's','e','l','e','c','t','i','o','n','A','r','r','a','y','C','o','u','n','t','\0',
's','e','l','e','c','t','i','o','n','L','a','b','e','l','S','t','r','i','n','g','\0',
's','e','l','e','c','t','i','o','n','P','o','l','i','c','y','\0',
's','e','p','a','r','a','t','o','r','O','n','\0',
's','e','p','a','r','a','t','o','r','T','y','p','e','\0',
's','e','t','\0',
's','h','a','d','o','w','\0',
's','h','a','d','o','w','T','h','i','c','k','n','e','s','s','\0',
's','h','a','d','o','w','T','y','p','e','\0',
's','h','e','l','l','U','n','i','t','T','y','p','e','\0',
's','h','o','w','A','r','r','o','w','s','\0',
's','h','o','w','A','s','D','e','f','a','u','l','t','\0',
's','h','o','w','S','e','p','a','r','a','t','o','r','\0',
's','h','o','w','V','a','l','u','e','\0',
's','i','m','p','l','e','C','a','l','l','b','a','c','k','\0',
's','i','n','g','l','e','S','e','l','e','c','t','i','o','n','C','a','l','l','b','a','c','k','\0',
's','i','z','e','P','o','l','i','c','y','\0',
's','k','i','p','A','d','j','u','s','t','\0',
's','l','i','d','e','r','S','i','z','e','\0',
's','o','u','r','c','e','\0',
's','o','u','r','c','e','C','u','r','s','o','r','I','c','o','n','\0',
's','o','u','r','c','e','I','s','E','x','t','e','r','n','a','l','\0',
's','o','u','r','c','e','P','i','x','m','a','p','I','c','o','n','\0',
's','o','u','r','c','e','W','i','d','g','e','t','\0',
's','o','u','r','c','e','W','i','n','d','o','w','\0',
's','p','a','c','i','n','g','\0',
's','p','o','t','L','o','c','a','t','i','o','n','\0',
's','t','a','r','t','T','i','m','e','\0',
's','t','a','t','e','C','u','r','s','o','r','I','c','o','n','\0',
's','t','r','i','n','g','D','i','r','e','c','t','i','o','n','\0',
's','u','b','M','e','n','u','I','d','\0',
's','y','m','b','o','l','P','i','x','m','a','p','\0',
't','e','a','r','O','f','f','M','e','n','u','A','c','t','i','v','a','t','e','C','a','l','l','b','a','c','k','\0',
't','e','a','r','O','f','f','M','e','n','u','D','e','a','c','t','i','v','a','t','e','C','a','l','l','b','a','c','k','\0',
't','e','a','r','O','f','f','M','o','d','e','l','\0',
't','e','x','t','A','c','c','e','l','e','r','a','t','o','r','s','\0',
't','e','x','t','C','o','l','u','m','n','s','\0',
't','e','x','t','F','o','n','t','L','i','s','t','\0',
't','e','x','t','S','t','r','i','n','g','\0',
't','e','x','t','T','r','a','n','s','l','a','t','i','o','n','s','\0',
't','e','x','t','V','a','l','u','e','\0',
't','i','t','l','e','S','t','r','i','n','g','\0',
't','o','B','o','t','t','o','m','C','a','l','l','b','a','c','k','\0',
't','o','P','o','s','i','t','i','o','n','C','a','l','l','b','a','c','k','\0',
't','o','T','o','p','C','a','l','l','b','a','c','k','\0',
't','o','p','A','t','t','a','c','h','m','e','n','t','\0',
't','o','p','C','h','a','r','a','c','t','e','r','\0',
't','o','p','I','t','e','m','P','o','s','i','t','i','o','n','\0',
't','o','p','L','e','v','e','l','E','n','t','e','r','C','a','l','l','b','a','c','k','\0',
't','o','p','L','e','v','e','l','L','e','a','v','e','C','a','l','l','b','a','c','k','\0',
't','o','p','O','f','f','s','e','t','\0',
't','o','p','P','o','s','i','t','i','o','n','\0',
't','o','p','S','h','a','d','o','w','C','o','l','o','r','\0',
't','o','p','S','h','a','d','o','w','P','i','x','m','a','p','\0',
't','o','p','W','i','d','g','e','t','\0',
't','r','a','n','s','f','e','r','P','r','o','c','\0',
't','r','a','n','s','f','e','r','S','t','a','t','u','s','\0',
't','r','a','v','e','r','s','a','l','C','a','l','l','b','a','c','k','\0',
't','r','a','v','e','r','s','a','l','O','n','\0',
't','r','a','v','e','r','s','a','l','T','y','p','e','\0',
't','r','a','v','e','r','s','e','O','b','s','c','u','r','e','d','C','a','l','l','b','a','c','k','\0',
't','r','e','e','U','p','d','a','t','e','P','r','o','c','\0',
't','r','o','u','g','h','C','o','l','o','r','\0',
'u','n','i','t','T','y','p','e','\0',
'u','n','m','a','p','C','a','l','l','b','a','c','k','\0',
'u','n','p','o','s','t','B','e','h','a','v','i','o','r','\0',
'u','n','s','e','l','e','c','t','P','i','x','m','a','p','\0',
'u','p','d','a','t','e','S','l','i','d','e','r','S','i','z','e','\0',
'u','s','e','A','s','y','n','c','G','e','o','m','e','t','r','y','\0',
'u','s','e','r','D','a','t','a','\0',
'v','a','l','i','d','C','u','r','s','o','r','F','o','r','e','g','r','o','u','n','d','\0',
'v','a','l','u','e','C','h','a','n','g','e','d','C','a','l','l','b','a','c','k','\0',
'v','a','l','u','e','W','c','s','\0',
'v','e','r','i','f','y','B','e','l','l','\0',
'v','e','r','t','i','c','a','l','F','o','n','t','U','n','i','t','\0',
'v','e','r','t','i','c','a','l','S','c','r','o','l','l','B','a','r','\0',
'v','e','r','t','i','c','a','l','S','p','a','c','i','n','g','\0',
'v','i','s','i','b','l','e','I','t','e','m','C','o','u','n','t','\0',
'v','i','s','i','b','l','e','W','h','e','n','O','f','f','\0',
'v','i','s','u','a','l','P','o','l','i','c','y','\0',
'w','h','i','c','h','B','u','t','t','o','n','\0',
'w','o','r','d','W','r','a','p','\0',
'w','o','r','k','W','i','n','d','o','w','\0',
'A','l','i','g','n','m','e','n','t','\0',
'A','n','i','m','a','t','i','o','n','M','a','s','k','\0',
'A','n','i','m','a','t','i','o','n','P','i','x','m','a','p','\0',
'A','n','i','m','a','t','i','o','n','S','t','y','l','e','\0',
'A','r','r','o','w','D','i','r','e','c','t','i','o','n','\0',
'A','t','o','m','L','i','s','t','\0',
'A','t','t','a','c','h','m','e','n','t','\0',
'A','u','d','i','b','l','e','W','a','r','n','i','n','g','\0',
'A','v','a','i','l','a','b','i','l','i','t','y','\0',
'B','a','c','k','g','r','o','u','n','d','P','i','x','m','a','p','\0',
'B','l','e','n','d','M','o','d','e','l','\0',
'B','o','o','l','e','a','n','D','i','m','e','n','s','i','o','n','\0',
'B','o','t','t','o','m','S','h','a','d','o','w','P','i','x','m','a','p','\0',
'B','u','t','t','o','n','T','y','p','e','\0',
'C','a','l','l','b','a','c','k','P','r','o','c','\0',
'C','h','a','r','\0',
'C','h','a','r','S','e','t','T','a','b','l','e','\0',
'C','h','i','l','d','H','o','r','i','z','o','n','t','a','l','A','l','i','g','n','m','e','n','t','\0',
'C','h','i','l','d','P','l','a','c','e','m','e','n','t','\0',
'C','h','i','l','d','T','y','p','e','\0',
'C','h','i','l','d','V','e','r','t','i','c','a','l','A','l','i','g','n','m','e','n','t','\0',
'C','o','m','m','a','n','d','W','i','n','d','o','w','L','o','c','a','t','i','o','n','\0',
'C','o','m','p','o','u','n','d','T','e','x','t','\0',
'D','e','f','a','u','l','t','B','u','t','t','o','n','T','y','p','e','\0',
'D','e','l','e','t','e','R','e','s','p','o','n','s','e','\0',
'D','i','a','l','o','g','S','t','y','l','e','\0',
'D','i','a','l','o','g','T','y','p','e','\0',
'D','o','u','b','l','e','C','l','i','c','k','I','n','t','e','r','v','a','l','\0',
'D','r','a','g','I','n','i','t','i','a','t','o','r','P','r','o','t','o','c','o','l','S','t','y','l','e','\0',
'D','r','a','g','R','e','c','e','i','v','e','r','P','r','o','t','o','c','o','l','S','t','y','l','e','\0',
'D','r','o','p','S','i','t','e','A','c','t','i','v','i','t','y','\0',
'D','r','o','p','S','i','t','e','O','p','e','r','a','t','i','o','n','s','\0',
'D','r','o','p','S','i','t','e','T','y','p','e','\0',
'D','r','o','p','T','r','a','n','s','f','e','r','s','\0',
'E','x','t','e','n','s','i','o','n','T','y','p','e','\0',
'F','i','l','e','T','y','p','e','M','a','s','k','\0',
'F','o','n','t','L','i','s','t','\0',
'G','a','d','g','e','t','P','i','x','m','a','p','\0',
'H','i','g','h','l','i','g','h','t','P','i','x','m','a','p','\0',
'H','o','r','i','z','o','n','t','a','l','D','i','m','e','n','s','i','o','n','\0',
'H','o','r','i','z','o','n','t','a','l','I','n','t','\0',
'H','o','r','i','z','o','n','t','a','l','P','o','s','i','t','i','o','n','\0',
'I','c','o','n','A','t','t','a','c','h','m','e','n','t','\0',
'I','m','p','o','r','t','T','a','r','g','e','t','s','\0',
'I','n','d','i','c','a','t','o','r','T','y','p','e','\0',
'I','t','e','m','C','o','u','n','t','\0',
'I','t','e','m','s','\0',
'K','e','y','S','y','m','\0',
'K','e','y','S','y','m','T','a','b','l','e','\0',
'K','e','y','b','o','a','r','d','F','o','c','u','s','P','o','l','i','c','y','\0',
'L','a','b','e','l','T','y','p','e','\0',
'L','i','s','t','M','a','r','g','i','n','H','e','i','g','h','t','\0',
'L','i','s','t','M','a','r','g','i','n','W','i','d','t','h','\0',
'L','i','s','t','S','i','z','e','P','o','l','i','c','y','\0',
'L','i','s','t','S','p','a','c','i','n','g','\0',
'M','a','n','B','o','t','t','o','m','S','h','a','d','o','w','P','i','x','m','a','p','\0',
'M','a','n','F','o','r','e','g','r','o','u','n','d','P','i','x','m','a','p','\0',
'M','a','n','H','i','g','h','l','i','g','h','t','P','i','x','m','a','p','\0',
'M','a','n','T','o','p','S','h','a','d','o','w','P','i','x','m','a','p','\0',
'M','e','n','u','W','i','d','g','e','t','\0',
'M','n','e','m','o','n','i','c','\0',
'M','u','l','t','i','C','l','i','c','k','\0',
'N','a','v','i','g','a','t','i','o','n','T','y','p','e','\0',
'P','a','c','k','i','n','g','\0',
'P','r','i','m','F','o','r','e','g','r','o','u','n','d','P','i','x','m','a','p','\0',
'P','r','o','c','\0',
'P','r','o','c','e','s','s','i','n','g','D','i','r','e','c','t','i','o','n','\0',
'R','e','c','t','a','n','g','l','e','L','i','s','t','\0',
'R','e','s','i','z','e','P','o','l','i','c','y','\0',
'R','o','w','C','o','l','u','m','n','T','y','p','e','\0',
'S','c','r','o','l','l','B','a','r','D','i','s','p','l','a','y','P','o','l','i','c','y','\0',
'S','c','r','o','l','l','B','a','r','P','l','a','c','e','m','e','n','t','\0',
'S','c','r','o','l','l','i','n','g','P','o','l','i','c','y','\0',
'S','e','l','e','c','t','e','d','I','t','e','m','C','o','u','n','t','\0',
'S','e','l','e','c','t','e','d','I','t','e','m','s','\0',
'S','e','l','e','c','t','i','o','n','P','o','l','i','c','y','\0',
'S','e','l','e','c','t','i','o','n','T','y','p','e','\0',
'S','e','p','a','r','a','t','o','r','T','y','p','e','\0',
'S','h','a','d','o','w','T','y','p','e','\0',
'S','h','e','l','l','H','o','r','i','z','D','i','m','\0',
'S','h','e','l','l','H','o','r','i','z','P','o','s','\0',
'S','h','e','l','l','U','n','i','t','T','y','p','e','\0',
'S','h','e','l','l','V','e','r','t','D','i','m','\0',
'S','h','e','l','l','V','e','r','t','P','o','s','\0',
'S','i','z','e','P','o','l','i','c','y','\0',
'S','t','r','i','n','g','D','i','r','e','c','t','i','o','n','\0',
'T','e','a','r','O','f','f','M','o','d','e','l','\0',
'T','o','p','S','h','a','d','o','w','P','i','x','m','a','p','\0',
'T','r','a','n','s','f','e','r','S','t','a','t','u','s','\0',
'T','r','a','v','e','r','s','a','l','T','y','p','e','\0',
'U','n','i','t','T','y','p','e','\0',
'U','n','p','o','s','t','B','e','h','a','v','i','o','r','\0',
'V','a','l','u','e','W','c','s','\0',
'V','e','r','t','i','c','a','l','A','l','i','g','n','m','e','n','t','\0',
'V','e','r','t','i','c','a','l','D','i','m','e','n','s','i','o','n','\0',
'V','e','r','t','i','c','a','l','I','n','t','\0',
'V','e','r','t','i','c','a','l','P','o','s','i','t','i','o','n','\0',
'V','i','r','t','u','a','l','B','i','n','d','i','n','g','\0',
'V','i','s','i','b','l','e','I','t','e','m','C','o','u','n','t','\0',
'V','i','s','u','a','l','P','o','l','i','c','y','\0',
'W','h','i','c','h','B','u','t','t','o','n','\0',
'X','m','B','a','c','k','g','r','o','u','n','d','P','i','x','m','a','p','\0',
'X','m','S','t','r','i','n','g','\0',
'X','m','S','t','r','i','n','g','C','h','a','r','S','e','t','\0',
'X','m','S','t','r','i','n','g','T','a','b','l','e','\0',
'o','s','f','A','c','t','i','v','a','t','e','\0',
'o','s','f','A','d','d','M','o','d','e','\0',
'o','s','f','B','a','c','k','S','p','a','c','e','\0',
'o','s','f','B','e','g','i','n','L','i','n','e','\0',
'o','s','f','C','a','n','c','e','l','\0',
'o','s','f','C','l','e','a','r','\0',
'o','s','f','C','o','p','y','\0',
'o','s','f','C','u','t','\0',
'o','s','f','D','e','l','e','t','e','\0',
'o','s','f','D','o','w','n','\0',
'o','s','f','E','n','d','L','i','n','e','\0',
'o','s','f','H','e','l','p','\0',
'o','s','f','I','n','s','e','r','t','\0',
'o','s','f','L','e','f','t','\0',
'o','s','f','M','e','n','u','\0',
'o','s','f','M','e','n','u','B','a','r','\0',
'o','s','f','P','a','g','e','D','o','w','n','\0',
'o','s','f','P','a','g','e','L','e','f','t','\0',
'o','s','f','P','a','g','e','R','i','g','h','t','\0',
'o','s','f','P','a','g','e','U','p','\0',
'o','s','f','P','a','s','t','e','\0',
'o','s','f','P','r','i','m','a','r','y','P','a','s','t','e','\0',
'o','s','f','Q','u','i','c','k','P','a','s','t','e','\0',
'o','s','f','R','i','g','h','t','\0',
'o','s','f','S','e','l','e','c','t','\0',
'o','s','f','U','n','d','o','\0',
'o','s','f','U','p','\0',
'F','O','N','T','L','I','S','T','_','D','E','F','A','U','L','T','_','T','A','G','_','S','T','R','I','N','G','\0',
'X','m','F','O','N','T','L','I','S','T','_','D','E','F','A','U','L','T','_','T','A','G','_','S','T','R','I','N','G','\0',
'T','o','p','I','t','e','m','P','o','s','i','t','i','o','n','\0',
't','e','a','r','O','f','f','T','i','t','l','e','\0',
'T','e','a','r','O','f','f','T','i','t','l','e','\0',
'p','o','p','u','p','H','a','n','d','l','e','r','C','a','l','l','b','a','c','k','\0',
'c','o','n','v','e','r','t','C','a','l','l','b','a','c','k','\0',
'd','e','s','t','i','n','a','t','i','o','n','C','a','l','l','b','a','c','k','\0',
's','e','l','e','c','t','e','d','I','t','e','m','\0',
'S','e','l','e','c','t','e','d','I','t','e','m','\0',
's','e','l','e','c','t','i','o','n','C','a','l','l','b','a','c','k','\0',
'm','a','t','c','h','B','e','h','a','v','i','o','r','\0',
'M','a','t','c','h','B','e','h','a','v','i','o','r','\0',
'n','o','F','o','n','t','C','a','l','l','b','a','c','k','\0',
't','e','x','t','P','a','t','h','\0',
'e','d','i','t','i','n','g','P','a','t','h','\0',
'E','d','i','t','i','n','g','P','a','t','h','\0',
'b','i','d','i','r','e','c','t','i','o','n','a','l','C','u','r','s','o','r','\0',
'B','i','d','i','r','e','c','t','i','o','n','a','l','C','u','r','s','o','r','\0',
'c','o','l','l','a','p','s','e','d','S','t','a','t','e','P','i','x','m','a','p','\0',
'd','e','t','a','i','l','C','o','l','u','m','n','H','e','a','d','i','n','g','\0',
'd','e','t','a','i','l','C','o','u','n','t','\0',
'd','e','t','a','i','l','T','a','b','L','i','s','t','\0',
'e','x','p','a','n','d','e','d','S','t','a','t','e','P','i','x','m','a','p','\0',
'l','a','r','g','e','C','e','l','l','H','e','i','g','h','t','\0',
'l','a','r','g','e','C','e','l','l','W','i','d','t','h','\0',
'l','a','y','o','u','t','T','y','p','e','\0',
'o','u','t','l','i','n','e','I','n','d','e','n','t','a','t','i','o','n','\0',
'o','u','t','l','i','n','e','L','i','n','e','S','t','y','l','e','\0',
'p','r','i','m','a','r','y','O','w','n','e','r','s','h','i','p','\0',
's','e','l','e','c','t','i','o','n','T','e','c','h','n','i','q','u','e','\0',
's','m','a','l','l','C','e','l','l','H','e','i','g','h','t','\0',
's','m','a','l','l','C','e','l','l','W','i','d','t','h','\0',
's','p','a','t','i','a','l','S','t','y','l','e','\0',
'e','n','t','r','y','P','a','r','e','n','t','\0',
'l','a','r','g','e','I','c','o','n','X','\0',
'l','a','r','g','e','I','c','o','n','Y','\0',
's','m','a','l','l','I','c','o','n','X','\0',
's','m','a','l','l','I','c','o','n','Y','\0',
'C','o','l','l','a','p','s','e','d','S','t','a','t','e','P','i','x','m','a','p','\0',
'D','e','t','a','i','l','C','o','l','u','m','n','H','e','a','d','i','n','g','\0',
'D','e','t','a','i','l','C','o','u','n','t','\0',
'D','e','t','a','i','l','M','a','s','k','\0',
'E','n','t','r','y','V','i','e','w','T','y','p','e','\0',
'L','i','n','e','S','t','y','l','e','\0',
'D','e','t','a','i','l','T','a','b','L','i','s','t','\0',
'E','x','p','a','n','d','e','d','S','t','a','t','e','P','i','x','m','a','p','\0',
'I','n','c','l','u','d','e','M','o','d','e','l','\0',
'C','e','l','l','H','e','i','g','h','t','\0',
'C','e','l','l','W','i','d','t','h','\0',
'L','a','y','o','u','t','T','y','p','e','\0',
'O','u','t','l','i','n','e','I','n','d','e','n','t','a','t','i','o','n','\0',
'P','l','a','c','e','M','o','d','e','l','\0',
'P','r','i','m','a','r','y','O','w','n','e','r','s','h','i','p','\0',
'S','e','l','e','c','t','i','o','n','T','e','c','h','n','i','q','u','e','\0',
'S','p','a','t','i','a','l','S','t','y','l','e','\0',
'E','n','t','r','y','D','e','t','a','i','l','\0',
'E','x','p','a','n','d','S','t','a','t','e','\0',
'l','a','r','g','e','I','c','o','n','\0',
'l','a','r','g','e','I','c','o','n','M','a','s','k','\0',
'l','a','r','g','e','I','c','o','n','P','i','x','m','a','p','\0',
's','m','a','l','l','I','c','o','n','\0',
's','m','a','l','l','I','c','o','n','M','a','s','k','\0',
's','m','a','l','l','I','c','o','n','P','i','x','m','a','p','\0',
'I','c','o','n','\0',
'V','i','e','w','T','y','p','e','\0',
'V','i','s','u','a','l','E','m','p','h','a','s','i','s','\0',
'c','u','r','r','e','n','t','P','a','g','e','N','u','m','b','e','r','\0',
'f','i','r','s','t','P','a','g','e','N','u','m','b','e','r','\0',
'l','a','s','t','P','a','g','e','N','u','m','b','e','r','\0',
'b','a','c','k','P','a','g','e','P','l','a','c','e','m','e','n','t','\0',
'b','a','c','k','P','a','g','e','N','u','m','b','e','r','\0',
'b','a','c','k','P','a','g','e','S','i','z','e','\0',
'b','a','c','k','P','a','g','e','F','o','r','e','g','r','o','u','n','d','\0',
'b','a','c','k','P','a','g','e','B','a','c','k','g','r','o','u','n','d','\0',
'f','r','a','m','e','B','a','c','k','g','r','o','u','n','d','\0',
'b','i','n','d','i','n','g','T','y','p','e','\0',
'b','i','n','d','i','n','g','P','i','x','m','a','p','\0',
'b','i','n','d','i','n','g','W','i','d','t','h','\0',
'm','a','j','o','r','T','a','b','S','p','a','c','i','n','g','\0',
'm','i','n','o','r','T','a','b','S','p','a','c','i','n','g','\0',
'i','n','n','e','r','M','a','r','g','i','n','W','i','d','t','h','\0',
'i','n','n','e','r','M','a','r','g','i','n','H','e','i','g','h','t','\0',
'f','r','a','m','e','S','h','a','d','o','w','T','h','i','c','k','n','e','s','s','\0',
'p','a','g','e','N','u','m','b','e','r','\0',
'C','u','r','r','e','n','t','P','a','g','e','N','u','m','b','e','r','\0',
'F','i','r','s','t','P','a','g','e','N','u','m','b','e','r','\0',
'L','a','s','t','P','a','g','e','N','u','m','b','e','r','\0',
'B','a','c','k','P','a','g','e','P','l','a','c','e','m','e','n','t','\0',
'B','a','c','k','P','a','g','e','N','u','m','b','e','r','\0',
'B','a','c','k','P','a','g','e','S','i','z','e','\0',
'B','a','c','k','P','a','g','e','F','o','r','e','g','r','o','u','n','d','\0',
'B','a','c','k','P','a','g','e','B','a','c','k','g','r','o','u','n','d','\0',
'F','r','a','m','e','B','a','c','k','g','r','o','u','n','d','\0',
'B','i','n','d','i','n','g','T','y','p','e','\0',
'B','i','n','d','i','n','g','P','i','x','m','a','p','\0',
'B','i','n','d','i','n','g','W','i','d','t','h','\0',
'M','a','j','o','r','T','a','b','S','p','a','c','i','n','g','\0',
'M','i','n','o','r','T','a','b','S','p','a','c','i','n','g','\0',
'I','n','n','e','r','M','a','r','g','i','n','W','i','d','t','h','\0',
'I','n','n','e','r','M','a','r','g','i','n','H','e','i','g','h','t','\0',
'P','a','g','e','C','h','a','n','g','e','C','a','l','l','b','a','c','k','\0',
'P','a','g','e','N','u','m','b','e','r','\0',
'A','r','r','o','w','L','a','y','o','u','t','\0',
'A','r','r','o','w','S','e','n','s','i','t','i','v','i','t','y','\0',
'S','p','i','n','B','o','x','C','h','i','l','d','T','y','p','e','\0',
'a','r','r','o','w','L','a','y','o','u','t','\0',
'A','r','r','o','w','L','a','y','o','u','t','\0',
'a','r','r','o','w','S','e','n','s','i','t','i','v','i','t','y','\0',
'A','r','r','o','w','S','e','n','s','i','t','i','v','i','t','y','\0',
'd','e','f','a','u','l','t','A','r','r','o','w','S','e','n','s','i','t','i','v','i','t','y','\0',
'D','e','f','a','u','l','t','A','r','r','o','w','S','e','n','s','i','t','i','v','i','t','y','\0',
'a','r','r','o','w','S','i','z','e','\0',
'A','r','r','o','w','S','i','z','e','\0',
's','p','i','n','B','o','x','C','h','i','l','d','T','y','p','e','\0',
'S','p','i','n','B','o','x','C','h','i','l','d','T','y','p','e','\0',
'p','o','s','i','t','i','o','n','\0',
'n','u','m','V','a','l','u','e','s','\0',
'N','u','m','V','a','l','u','e','s','\0',
'v','a','l','u','e','s','\0',
'V','a','l','u','e','s','\0',
'm','i','n','i','m','u','m','V','a','l','u','e','\0',
'M','i','n','i','m','u','m','V','a','l','u','e','\0',
'm','a','x','i','m','u','m','V','a','l','u','e','\0',
'M','a','x','i','m','u','m','V','a','l','u','e','\0',
'i','n','c','r','e','m','e','n','t','V','a','l','u','e','\0',
'I','n','c','r','e','m','e','n','t','V','a','l','u','e','\0',
'A','u','t','o','m','a','t','i','c','S','e','l','e','c','t','i','o','n','\0',
'L','i','n','e','S','t','y','l','e','\0',
'E','n','t','r','y','V','i','e','w','T','y','p','e','\0',
'D','i','r','e','c','t','i','o','n','\0',
'L','a','y','o','u','t','T','y','p','e','\0',
'P','r','i','m','a','r','y','O','w','n','e','r','s','h','i','p','\0',
'S','e','l','e','c','t','i','o','n','T','e','c','h','n','i','q','u','e','\0',
'S','p','a','t','i','a','l','S','t','y','l','e','\0',
'T','a','b','L','i','s','t','\0',
'V','i','e','w','T','y','p','e','\0',
'V','i','s','u','a','l','E','m','p','h','a','s','i','s','\0',
'B','i','n','d','i','n','g','T','y','p','e','\0',
'N','B','C','h','i','l','d','T','y','p','e','\0',
'e','n','t','r','y','V','i','e','w','T','y','p','e','\0',
'i','n','s','e','n','s','i','t','i','v','e','S','t','i','p','p','l','e','B','i','t','m','a','p','\0',
'l','a','y','o','u','t','D','i','r','e','c','t','i','o','n','\0',
'v','i','e','w','T','y','p','e','\0',
'v','i','s','u','a','l','E','m','p','h','a','s','i','s','\0',
'L','a','y','o','u','t','D','i','r','e','c','t','i','o','n','\0',
's','n','a','p','B','a','c','k','M','u','l','t','i','p','l','e','\0',
's','l','i','d','i','n','g','M','o','d','e','\0',
's','l','i','d','e','r','V','i','s','u','a','l','\0',
'a','u','t','o','D','r','a','g','M','o','d','e','l','\0',
'c','o','l','o','r','C','a','l','c','u','l','a','t','i','o','n','P','r','o','c','\0',
'b','i','t','m','a','p','C','o','n','v','e','r','s','i','o','n','M','o','d','e','l','\0',
'c','o','l','o','r','A','l','l','o','c','a','t','i','o','n','P','r','o','c','\0',
's','e','l','e','c','t','i','o','n','M','o','d','e','\0',
's','e','l','e','c','t','e','d','P','o','s','i','t','i','o','n','s','\0',
's','e','l','e','c','t','e','d','P','o','s','i','t','i','o','n','C','o','u','n','t','\0',
'S','n','a','p','B','a','c','k','M','u','l','t','i','p','l','e','\0',
'S','l','i','d','e','r','V','i','s','u','a','l','\0',
'S','l','i','d','i','n','g','M','o','d','e','\0',
'A','u','t','o','D','r','a','g','M','o','d','e','l','\0',
'C','o','l','o','r','C','a','l','c','u','l','a','t','i','o','n','P','r','o','c','\0',
'B','i','t','m','a','p','C','o','n','v','e','r','s','i','o','n','M','o','d','e','l','\0',
'C','o','l','o','r','A','l','l','o','c','a','t','i','o','n','P','r','o','c','\0',
'I','n','s','e','n','s','i','t','i','v','e','S','t','i','p','p','l','e','B','i','t','m','a','p','\0',
'S','e','l','e','c','t','i','o','n','M','o','d','e','\0',
'S','e','l','e','c','t','e','d','P','o','s','i','t','i','o','n','s','\0',
'S','e','l','e','c','t','e','d','P','o','s','i','t','i','o','n','C','o','u','n','t','\0',
'S','l','i','d','i','n','g','M','o','d','e','\0',
'S','h','o','w','A','r','r','o','w','s','\0',
'S','l','i','d','e','r','V','i','s','u','a','l','\0',
'S','h','o','w','V','a','l','u','e','\0',
'A','u','t','o','D','r','a','g','M','o','d','e','l','\0',
'S','W','C','h','i','l','d','T','y','p','e','\0',
'B','i','t','m','a','p','C','o','n','v','e','r','s','i','o','n','M','o','d','e','l','\0',
'S','e','l','e','c','t','i','o','n','M','o','d','e','\0',
'i','n','p','u','t','P','o','l','i','c','y','\0',
'I','n','p','u','t','P','o','l','i','c','y','\0',
'I','n','p','u','t','P','o','l','i','c','y','\0',
't','o','g','g','l','e','M','o','d','e','\0',
'T','o','g','g','l','e','M','o','d','e','\0',
'T','o','g','g','l','e','M','o','d','e','\0',
'I','n','d','i','c','a','t','o','r','O','n','\0',
'S','e','t','\0',
'i','n','d','e','t','e','r','m','i','n','a','t','e','P','i','x','m','a','p','\0',
'I','n','d','e','t','e','r','m','i','n','a','t','e','P','i','x','m','a','p','\0',
'u','n','s','e','l','e','c','t','C','o','l','o','r','\0',
'U','n','s','e','l','e','c','t','C','o','l','o','r','\0',
's','e','l','e','c','t','e','d','P','o','s','i','t','i','o','n','\0',
'a','r','r','o','w','S','p','a','c','i','n','g','\0',
'A','r','r','o','w','S','p','a','c','i','n','g','\0',
'M','a','t','c','h','B','e','h','a','v','i','o','r','\0',
'C','o','m','b','o','B','o','x','T','y','p','e','\0',
'S','e','l','e','c','t','e','d','P','o','s','i','t','i','o','n','\0',
'e','n','a','b','l','e','W','a','r','p','\0',
'E','n','a','b','l','e','W','a','r','p','\0',
'E','n','a','b','l','e','W','a','r','p','\0',
'm','o','t','i','f','V','e','r','s','i','o','n','\0',
'M','o','t','i','f','V','e','r','s','i','o','n','\0',
'd','e','f','a','u','l','t','G','l','y','p','h','P','i','x','m','a','p','\0',
'D','e','f','a','u','l','t','G','l','y','p','h','P','i','x','m','a','p','\0',
'R','e','n','d','i','t','i','o','n','\0',
't','a','g','\0',
'T','a','g','\0',
'f','o','n','t','N','a','m','e','\0',
'F','o','n','t','N','a','m','e','\0',
'f','o','n','t','T','y','p','e','\0',
'F','o','n','t','T','y','p','e','\0',
'F','o','n','t','T','y','p','e','\0',
'l','o','a','d','M','o','d','e','l','\0',
'L','o','a','d','M','o','d','e','l','\0',
'L','o','a','d','M','o','d','e','l','\0',
't','a','b','L','i','s','t','\0',
'T','a','b','L','i','s','t','\0',
'R','e','n','d','i','t','i','o','n','P','i','x','e','l','\0',
'u','n','d','e','r','l','i','n','e','T','y','p','e','\0',
'U','n','d','e','r','l','i','n','e','T','y','p','e','\0',
's','t','r','i','k','e','t','h','r','u','T','y','p','e','\0',
'S','t','r','i','k','e','t','h','r','u','T','y','p','e','\0',
'L','i','n','e','T','y','p','e','\0',
'r','e','n','d','e','r','T','a','b','l','e','\0',
'R','e','n','d','e','r','T','a','b','l','e','\0',
'R','e','n','d','e','r','T','a','b','l','e','\0',
'b','u','t','t','o','n','R','e','n','d','e','r','T','a','b','l','e','\0',
'B','u','t','t','o','n','R','e','n','d','e','r','T','a','b','l','e','\0',
'B','u','t','t','o','n','R','e','n','d','e','r','T','a','b','l','e','\0',
'l','a','b','e','l','R','e','n','d','e','r','T','a','b','l','e','\0',
'L','a','b','e','l','R','e','n','d','e','r','T','a','b','l','e','\0',
'L','a','b','e','l','R','e','n','d','e','r','T','a','b','l','e','\0',
't','e','x','t','R','e','n','d','e','r','T','a','b','l','e','\0',
'T','e','x','t','R','e','n','d','e','r','T','a','b','l','e','\0',
'T','e','x','t','R','e','n','d','e','r','T','a','b','l','e','\0',
'd','r','a','g','S','t','a','r','t','C','a','l','l','b','a','c','k','\0',
'n','o','R','e','n','d','i','t','i','o','n','C','a','l','l','b','a','c','k','\0',
'X','m','A','S','_','I','S','\0',
'I','s','W','h','i','t','e','S','p','a','c','e','M','e','t','h','o','d','\0',
'I','s','S','c','a','n','B','r','e','a','k','M','e','t','h','o','d','\0',
'C','h','a','r','D','i','r','e','c','t','i','o','n','\0',
'I','n','i','t','i','a','l','C','h','a','r','s','D','i','r','e','c','t','i','o','n','\0',
'p','a','t','t','e','r','n','T','y','p','e','\0',
's','u','b','s','t','i','t','u','t','e','\0',
'i','n','v','o','k','e','P','a','r','s','e','P','r','o','c','\0',
'i','n','c','l','u','d','e','S','t','a','t','u','s','\0',
'o','s','f','B','a','c','k','T','a','b','\0',
'o','s','f','B','e','g','i','n','D','a','t','a','\0',
'o','s','f','D','e','s','e','l','e','c','t','A','l','l','\0',
'o','s','f','E','n','d','D','a','t','a','\0',
'o','s','f','E','s','c','a','p','e','\0',
'o','s','f','E','x','t','e','n','d','\0',
'o','s','f','L','e','f','t','L','i','n','e','\0',
'o','s','f','N','e','x','t','\0',
'o','s','f','N','e','x','t','F','i','e','l','d','\0',
'o','s','f','N','e','x','t','M','e','n','u','\0',
'o','s','f','N','e','x','t','M','i','n','o','r','\0',
'o','s','f','P','r','e','v','F','i','e','l','d','\0',
'o','s','f','P','r','e','v','M','e','n','u','\0',
'o','s','f','P','r','i','o','r','\0',
'o','s','f','P','r','i','o','r','M','i','n','o','r','\0',
'o','s','f','R','e','s','e','l','e','c','t','\0',
'o','s','f','R','e','s','t','o','r','e','\0',
'o','s','f','R','i','g','h','t','L','i','n','e','\0',
'o','s','f','S','e','l','e','c','t','A','l','l','\0',
'o','s','f','S','w','i','t','c','h','D','i','r','e','c','t','i','o','n','\0',
'n','o','t','e','b','o','o','k','C','h','i','l','d','T','y','p','e','\0',
'N','o','t','e','b','o','o','k','C','h','i','l','d','T','y','p','e','\0',
'N','o','t','e','b','o','o','k','C','h','i','l','d','T','y','p','e','\0',
's','c','r','o','l','l','e','d','W','i','n','d','o','w','C','h','i','l','d','T','y','p','e','\0',
'S','c','r','o','l','l','e','d','W','i','n','d','o','w','C','h','i','l','d','T','y','p','e','\0',
'S','c','r','o','l','l','e','d','W','i','n','d','o','w','C','h','i','l','d','T','y','p','e','\0',
's','e','l','e','c','t','e','d','O','b','j','e','c','t','s','\0',
'S','e','l','e','c','t','e','d','O','b','j','e','c','t','s','\0',
's','e','l','e','c','t','e','d','O','b','j','e','c','t','C','o','u','n','t','\0',
'S','e','l','e','c','t','e','d','O','b','j','e','c','t','C','o','u','n','t','\0',
'c','o','m','b','o','B','o','x','T','y','p','e','\0',
'C','o','m','b','o','B','o','x','T','y','p','e','\0',
't','a','b','V','a','l','u','e','\0',
'o','f','f','s','e','t','M','o','d','e','l','\0',
'd','e','c','i','m','a','l','\0',
'd','e','t','a','i','l','\0',
'D','e','t','a','i','l','\0',
'd','e','t','a','i','l','C','o','u','n','t','\0',
'D','e','t','a','i','l','C','o','u','n','t','\0',
'c','o','n','t','a','i','n','e','r','I','D','\0',
'C','o','n','t','a','i','n','e','r','I','D','\0',
'C','L','I','E','N','T','_','W','I','N','D','O','W','\0',
'C','L','I','P','_','T','E','M','P','O','R','A','R','Y','\0',
'C','L','I','P','B','O','A','R','D','\0',
'C','O','M','P','O','U','N','D','_','T','E','X','T','\0',
'D','E','L','E','T','E','\0',
'F','I','L','E','\0',
'F','I','L','E','_','N','A','M','E','\0',
'I','N','C','R','\0',
'I','N','S','E','R','T','_','P','R','O','P','E','R','T','Y','\0',
'I','N','S','E','R','T','_','S','E','L','E','C','T','I','O','N','\0',
'L','E','N','G','T','H','\0',
'L','I','N','K','_','S','E','L','E','C','T','I','O','N','\0',
'_','M','O','T','I','F','_','A','T','O','M','_','0','\0',
'_','M','O','T','I','F','_','B','I','N','D','I','N','G','S','\0',
'_','M','O','T','I','F','_','D','E','F','A','U','L','T','_','B','I','N','D','I','N','G','S','\0',
'_','M','O','T','I','F','_','C','A','N','C','E','L','_','D','R','O','P','_','E','F','F','E','C','T','\0',
'_','M','O','T','I','F','_','C','L','I','P','_','H','E','A','D','E','R','\0',
'_','M','O','T','I','F','_','C','L','I','P','_','D','A','T','A','_','R','E','Q','U','E','S','T','\0',
'_','M','O','T','I','F','_','C','L','I','P','_','D','A','T','A','_','D','E','L','E','T','E','\0',
'_','M','O','T','I','F','_','C','L','I','P','_','I','T','E','M','\0',
'_','M','O','T','I','F','_','C','L','I','P','_','L','O','C','K','\0',
'_','M','O','T','I','F','_','C','L','I','P','_','L','O','C','K','_','A','C','C','E','S','S','_','V','A','L','I','D','\0',
'_','M','O','T','I','F','_','C','L','I','P','_','M','E','S','S','A','G','E','\0',
'_','M','O','T','I','F','_','C','L','I','P','_','N','E','X','T','_','I','D','\0',
'_','M','O','T','I','F','_','C','L','I','P','_','T','I','M','E','\0',
'_','M','O','T','I','F','_','C','L','I','P','B','O','A','R','D','_','T','A','R','G','E','T','S','\0',
'_','M','O','T','I','F','_','C','O','M','P','O','U','N','D','_','S','T','R','I','N','G','\0',
'_','M','O','T','I','F','_','D','E','F','E','R','R','E','D','_','C','L','I','P','B','O','A','R','D','_','T','A','R','G','E','T','S','\0',
'_','M','O','T','I','F','_','D','E','S','T','I','N','A','T','I','O','N','\0',
'_','M','O','T','I','F','_','D','R','A','G','_','O','F','F','S','E','T','\0',
'_','M','O','T','I','F','_','D','R','O','P','\0',
'_','M','O','T','I','F','_','E','N','C','O','D','I','N','G','_','R','E','G','I','S','T','R','Y','\0',
'_','M','O','T','I','F','_','E','X','P','O','R','T','_','T','A','R','G','E','T','S','\0',
'_','M','O','T','I','F','_','L','O','S','E','_','S','E','L','E','C','T','I','O','N','\0',
'_','M','O','T','I','F','_','R','E','N','D','E','R','_','T','A','B','L','E','\0',
'_','M','O','T','I','F','_','W','M','_','Q','U','E','R','Y','\0',
'_','M','O','T','I','F','_','W','M','_','A','L','L','_','C','L','I','E','N','T','S','\0',
'M','U','L','T','I','P','L','E','\0',
'N','U','L','L','\0',
'T','A','R','G','E','T','S','\0',
'T','E','X','T','\0',
'T','I','M','E','S','T','A','M','P','\0',
'W','M','_','S','T','A','T','E','\0',
'X','m','T','R','A','N','S','F','E','R','_','S','U','C','C','E','S','S','\0',
'X','m','T','R','A','N','S','F','E','R','_','F','A','I','L','U','R','E','\0',
'p','a','t','h','M','o','d','e','\0',
'P','a','t','h','M','o','d','e','\0',
'P','a','t','h','M','o','d','e','\0',
'f','i','l','e','F','i','l','t','e','r','S','t','y','l','e','\0',
'F','i','l','e','F','i','l','t','e','r','S','t','y','l','e','\0',
'F','i','l','e','F','i','l','t','e','r','S','t','y','l','e','\0',
'd','i','r','T','e','x','t','L','a','b','e','l','S','t','r','i','n','g','\0',
'D','i','r','T','e','x','t','L','a','b','e','l','S','t','r','i','n','g','\0',
'e','n','a','b','l','e','B','t','n','1','T','r','a','n','s','f','e','r','\0',
'E','n','a','b','l','e','B','t','n','1','T','r','a','n','s','f','e','r','\0',
'e','n','a','b','l','e','B','u','t','t','o','n','T','a','b','\0',
'E','n','a','b','l','e','B','u','t','t','o','n','T','a','b','\0',
'e','n','a','b','l','e','E','t','c','h','e','d','I','n','M','e','n','u','\0',
'E','n','a','b','l','e','E','t','c','h','e','d','I','n','M','e','n','u','\0',
'd','e','f','a','u','l','t','B','u','t','t','o','n','E','m','p','h','a','s','i','s','\0',
'D','e','f','a','u','l','t','B','u','t','t','o','n','E','m','p','h','a','s','i','s','\0',
'D','e','f','a','u','l','t','B','u','t','t','o','n','E','m','p','h','a','s','i','s','\0',
'e','n','a','b','l','e','T','o','g','g','l','e','C','o','l','o','r','\0',
'E','n','a','b','l','e','T','o','g','g','l','e','C','o','l','o','r','\0',
'e','n','a','b','l','e','T','o','g','g','l','e','V','i','s','u','a','l','\0',
'E','n','a','b','l','e','T','o','g','g','l','e','V','i','s','u','a','l','\0',
'e','n','a','b','l','e','D','r','a','g','I','c','o','n','\0',
'E','n','a','b','l','e','D','r','a','g','I','c','o','n','\0',
'e','n','a','b','l','e','U','n','s','e','l','e','c','t','a','b','l','e','D','r','a','g','\0',
'E','n','a','b','l','e','U','n','s','e','l','e','c','t','a','b','l','e','D','r','a','g','\0',
'd','r','a','g','O','v','e','r','A','c','t','i','v','e','M','o','d','e','\0',
'D','r','a','g','O','v','e','r','A','c','t','i','v','e','M','o','d','e','\0',
'i','n','s','t','a','l','l','C','o','l','o','r','m','a','p','\0',
'I','n','s','t','a','l','l','C','o','l','o','r','m','a','p','\0',
'O','w','n','e','r','E','v','e','n','t','s','\0',
'o','w','n','e','r','E','v','e','n','t','s','\0',
'G','r','a','b','S','t','y','l','e','\0',
'g','r','a','b','S','t','y','l','e','\0',
'f','o','r','e','g','r','o','u','n','d','S','t','a','t','e','\0',
'b','a','c','k','g','r','o','u','n','d','S','t','a','t','e','\0',
'G','r','o','u','n','d','S','t','a','t','e','\0',
'G','r','o','u','n','d','S','t','a','t','e','\0',
'S','e','l','e','c','t','C','o','l','o','r','\0',
'L','a','r','g','e','I','c','o','n','P','i','x','m','a','p','\0',
'S','m','a','l','l','I','c','o','n','P','i','x','m','a','p','\0',
'o','u','t','l','i','n','e','S','t','a','t','e','\0',
'O','u','t','l','i','n','e','S','t','a','t','e','\0',
'O','u','t','l','i','n','e','S','t','a','t','e','\0',
's','p','a','t','i','a','l','I','n','c','l','u','d','e','M','o','d','e','l','\0',
'S','p','a','t','i','a','l','I','n','c','l','u','d','e','M','o','d','e','l','\0',
'S','p','a','t','i','a','l','I','n','c','l','u','d','e','M','o','d','e','l','\0',
's','p','a','t','i','a','l','R','e','s','i','z','e','M','o','d','e','l','\0',
'S','p','a','t','i','a','l','R','e','s','i','z','e','M','o','d','e','l','\0',
'S','p','a','t','i','a','l','R','e','s','i','z','e','M','o','d','e','l','\0',
's','p','a','t','i','a','l','S','n','a','p','M','o','d','e','l','\0',
'S','p','a','t','i','a','l','S','n','a','p','M','o','d','e','l','\0',
'S','p','a','t','i','a','l','S','n','a','p','M','o','d','e','l','\0',
'd','e','t','a','i','l','C','o','l','u','m','n','H','e','a','d','i','n','g','C','o','u','n','t','\0',
'D','e','t','a','i','l','C','o','l','u','m','n','H','e','a','d','i','n','g','C','o','u','n','t','\0',
'd','e','t','a','i','l','O','r','d','e','r','\0',
'D','e','t','a','i','l','O','r','d','e','r','\0',
'C','a','r','d','i','n','a','l','L','i','s','t','\0',
'd','e','t','a','i','l','O','r','d','e','r','C','o','u','n','t','\0',
'D','e','t','a','i','l','O','r','d','e','r','C','o','u','n','t','\0',
'o','u','t','l','i','n','e','C','o','l','u','m','n','W','i','d','t','h','\0',
'O','u','t','l','i','n','e','C','o','l','u','m','n','W','i','d','t','h','\0',
'o','u','t','l','i','n','e','C','h','a','n','g','e','d','C','a','l','l','b','a','c','k','\0',
'O','u','t','l','i','n','e','C','h','a','n','g','e','d','C','a','l','l','b','a','c','k','\0',
'o','u','t','l','i','n','e','B','u','t','t','o','n','P','o','l','i','c','y','\0',
'O','u','t','l','i','n','e','B','u','t','t','o','n','P','o','l','i','c','y','\0',
'O','u','t','l','i','n','e','B','u','t','t','o','n','P','o','l','i','c','y','\0',
'D','e','f','a','u','l','t','V','i','r','t','u','a','l','B','i','n','d','i','n','g','s','\0',
'd','e','f','a','u','l','t','V','i','r','t','u','a','l','B','i','n','d','i','n','g','s','\0',
'R','e','s','i','z','a','b','l','e','\0',
'D','y','n','a','m','i','c','P','i','x','m','a','p','\0',
'p','a','g','e','C','h','a','n','g','e','d','C','a','l','l','b','a','c','k','\0',
'a','r','e','a','\0',
'd','e','t','a','i','l','S','h','a','d','o','w','T','h','i','c','k','n','e','s','s','\0',
's','l','i','d','e','r','M','a','r','k','\0',
'S','l','i','d','e','r','M','a','r','k','\0',
'S','l','i','d','e','r','M','a','r','k','\0',
'E','n','a','b','l','e','B','t','n','1','T','r','a','n','s','f','e','r','\0',
'r','e','n','d','i','t','i','o','n','B','a','c','k','g','r','o','u','n','d','\0',
'r','e','n','d','i','t','i','o','n','F','o','r','e','g','r','o','u','n','d','\0',
'R','e','n','d','i','t','i','o','n','B','a','c','k','g','r','o','u','n','d','\0',
'R','e','n','d','i','t','i','o','n','F','o','r','e','g','r','o','u','n','d','\0',
'i','n','d','e','t','e','r','m','i','n','a','t','e','I','n','s','e','n','s','i','t','i','v','e','P','i','x','m','a','p','\0',
'I','n','d','e','t','e','r','m','i','n','a','t','e','I','n','s','e','n','s','i','t','i','v','e','P','i','x','m','a','p','\0',
'f','r','a','m','e','C','h','i','l','d','T','y','p','e','\0',
'F','r','a','m','e','C','h','i','l','d','T','y','p','e','\0',
't','e','x','t','F','i','e','l','d','\0',
'T','e','x','t','F','i','e','l','d','\0',
'e','n','a','b','l','e','T','h','i','n','T','h','i','c','k','n','e','s','s','\0',
'E','n','a','b','l','e','T','h','i','n','T','h','i','c','k','n','e','s','s','\0',
'p','r','i','m','a','r','y','C','o','l','o','r','S','e','t','I','d','\0',
'P','r','i','m','a','r','y','C','o','l','o','r','S','e','t','I','d','\0',
's','e','c','o','n','d','a','r','y','C','o','l','o','r','S','e','t','I','d','\0',
'S','e','c','o','n','d','a','r','y','C','o','l','o','r','S','e','t','I','d','\0',
't','e','x','t','C','o','l','o','r','S','e','t','I','d','\0',
'T','e','x','t','C','o','l','o','r','S','e','t','I','d','\0',
'a','c','t','i','v','e','C','o','l','o','r','S','e','t','I','d','\0',
'A','c','t','i','v','e','C','o','l','o','r','S','e','t','I','d','\0',
'i','n','a','c','t','i','v','e','C','o','l','o','r','S','e','t','I','d','\0',
'I','n','a','c','t','i','v','e','C','o','l','o','r','S','e','t','I','d','\0',
'u','s','e','C','o','l','o','r','O','b','j','\0',
'U','s','e','C','o','l','o','r','O','b','j','\0',
'u','s','e','T','e','x','t','C','o','l','o','r','\0',
'U','s','e','T','e','x','t','C','o','l','o','r','\0',
'u','s','e','T','e','x','t','C','o','l','o','r','F','o','r','L','i','s','t','\0',
'U','s','e','T','e','x','t','C','o','l','o','r','F','o','r','L','i','s','t','\0',
'u','s','e','M','a','s','k','\0',
'U','s','e','M','a','s','k','\0',
'u','s','e','M','u','l','t','i','C','o','l','o','r','I','c','o','n','s','\0',
'U','s','e','M','u','l','t','i','C','o','l','o','r','I','c','o','n','s','\0',
'u','s','e','I','c','o','n','F','i','l','e','C','a','c','h','e','\0',
'U','s','e','I','c','o','n','F','i','l','e','C','a','c','h','e','\0',
'P','i','x','e','l',' ','S','e','t','s','\0',
'C','u','s','t','o','m','i','z','e',' ','D','a','t','a',':','\0',
'C','o','l','o','r','S','e','r','v','e','r','\0',
'l','i','s','t','\0',
'L','i','s','t','\0',
'a','r','r','o','w','O','r','i','e','n','t','a','t','i','o','n','\0',
'A','r','r','o','w','O','r','i','e','n','t','a','t','i','o','n','\0',
'A','r','r','o','w','O','r','i','e','n','t','a','t','i','o','n','\0',
'p','o','s','i','t','i','o','n','T','y','p','e','\0',
'P','o','s','i','t','i','o','n','T','y','p','e','\0',
'P','o','s','i','t','i','o','n','T','y','p','e','\0',
'w','r','a','p','\0',
'W','r','a','p','\0',
'p','o','s','i','t','i','o','n','M','o','d','e','\0',
'P','o','s','i','t','i','o','n','M','o','d','e','\0',
'P','o','s','i','t','i','o','n','M','o','d','e','\0',
'p','r','i','n','t','O','r','i','e','n','t','a','t','i','o','n','\0',
'P','r','i','n','t','O','r','i','e','n','t','a','t','i','o','n','\0',
'p','r','i','n','t','O','r','i','e','n','t','a','t','i','o','n','s','\0',
'P','r','i','n','t','O','r','i','e','n','t','a','t','i','o','n','s','\0',
'p','r','i','n','t','R','e','s','o','l','u','t','i','o','n','\0',
'P','r','i','n','t','R','e','s','o','l','u','t','i','o','n','\0',
'p','r','i','n','t','R','e','s','o','l','u','t','i','o','n','s','\0',
'P','r','i','n','t','R','e','s','o','l','u','t','i','o','n','s','\0',
'd','e','f','a','u','l','t','P','i','x','m','a','p','R','e','s','o','l','u','t','i','o','n','\0',
'D','e','f','a','u','l','t','P','i','x','m','a','p','R','e','s','o','l','u','t','i','o','n','\0',
's','t','a','r','t','J','o','b','C','a','l','l','b','a','c','k','\0',
'e','n','d','J','o','b','C','a','l','l','b','a','c','k','\0',
'p','a','g','e','S','e','t','u','p','C','a','l','l','b','a','c','k','\0',
'p','d','m','N','o','t','i','f','i','c','a','t','i','o','n','C','a','l','l','b','a','c','k','\0',
'm','i','n','X','\0',
'm','i','n','Y','\0',
'm','a','x','X','\0',
'm','a','x','Y','\0',
'M','i','n','X','\0',
'M','i','n','Y','\0',
'M','a','x','X','\0',
'M','a','x','Y','\0',
'p','r','e','e','d','i','t','S','t','a','r','t','C','a','l','l','b','a','c','k','\0',
'p','r','e','e','d','i','t','D','o','n','e','C','a','l','l','b','a','c','k','\0',
'p','r','e','e','d','i','t','D','r','a','w','C','a','l','l','b','a','c','k','\0',
'p','r','e','e','d','i','t','C','a','r','e','t','C','a','l','l','b','a','c','k','\0',
'v','e','r','i','f','y','P','r','e','e','d','i','t','\0',
'V','e','r','i','f','y','P','r','e','e','d','i','t','\0',
'e','n','a','b','l','e','M','u','l','t','i','K','e','y','B','i','n','d','i','n','g','s','\0',
'E','n','a','b','l','e','M','u','l','t','i','K','e','y','B','i','n','d','i','n','g','s','\0',
'B','u','t','t','o','n','F','o','n','t','L','i','s','t','\0',
'L','a','b','e','l','F','o','n','t','L','i','s','t','\0',
'T','e','x','t','F','o','n','t','L','i','s','t','\0',
'S','D','T',' ','P','i','x','e','l',' ','S','e','t','\0',
'5','0','_','f','o','r','e','g','r','o','u','n','d','\0',
'u','n','s','p','e','c','i','f','i','e','d','_','p','i','x','m','a','p','\0'
};
externaldef(_xmstrings) _XmConst char _XmStrings22[] = {
'i','t','e','m','F','o','u','n','d','C','a','l','l','b','a','c','k','\0',
'i','t','e','m','N','o','t','F','o','u','n','d','C','a','l','l','b','a','c','k','\0',
'X','m','T','a','b','S','i','d','e','\0',
'T','a','b','S','i','d','e','\0',
'X','m','P','i','x','m','a','p','P','l','a','c','e','m','e','n','t','\0',
'X','m','P','i','x','m','a','p','\0',
'X','m','P','i','x','e','l','\0',
'X','m','I','c','o','n','P','l','a','c','e','m','e','n','t','\0',
'X','m','H','i','e','r','a','r','c','h','y','N','o','d','e','S','t','a','t','e','\0',
'X','m','F','i','l','l','O','p','t','i','o','n','\0',
'X','m','C','o','n','n','e','c','t','S','t','y','l','e','\0',
'X','m','C','o','l','o','r','M','o','d','e','\0',
'X','m','A','l','i','g','n','m','e','n','t','\0',
'T','a','b','S','t','y','l','e','\0',
'T','a','b','O','r','i','e','n','t','a','t','i','o','n','\0',
'T','a','b','M','o','d','e','\0',
'T','a','b','L','i','s','t','\0',
'T','a','b','E','d','g','e','\0',
'T','a','b','A','r','r','o','w','P','l','a','c','e','m','e','n','t','\0',
'x','l','f','d','S','t','r','i','n','g','\0',
'v','e','r','t','i','c','a','l','N','o','d','e','S','p','a','c','e','\0',
'v','e','r','t','i','c','a','l','M','a','r','g','i','n','\0',
'v','e','r','i','f','y','T','e','x','t','F','a','i','l','e','d','C','a','l','l','b','a','c','k','\0',
'v','e','r','i','f','y','T','e','x','t','C','a','l','l','b','a','c','k','\0',
'v','e','r','i','f','y','\0',
'v','a','l','u','e','s','\0',
'u','s','e','T','e','x','t','F','i','e','l','d','\0',
'u','s','e','S','c','a','l','i','n','g','\0',
'u','s','e','I','m','a','g','e','C','a','c','h','e','\0',
'u','p','d','a','t','e','T','e','x','t','C','a','l','l','b','a','c','k','\0',
'u','p','d','a','t','e','S','h','e','l','l','C','a','l','l','b','a','c','k','\0',
'u','n','s','e','l','e','c','t','C','a','l','l','b','a','c','k','\0',
'u','n','i','f','o','r','m','T','a','b','S','i','z','e','\0',
't','r','a','v','e','r','s','a','l','I','n','d','e','x','\0',
't','i','t','l','e','S','t','r','i','n','g','\0',
't','e','x','t','S','t','r','i','n','g','\0',
't','e','x','t','R','o','w','s','\0',
't','e','a','r','O','f','f','L','a','b','e','l','S','t','r','i','n','g','\0',
't','a','b','T','e','a','r','O','f','f','E','n','a','b','l','e','d','\0',
't','a','b','S','t','y','l','e','\0',
't','a','b','S','t','r','i','n','g','D','i','r','e','c','t','i','o','n','\0',
't','a','b','S','i','d','e','\0',
't','a','b','S','e','l','e','c','t','e','d','C','a','l','l','b','a','c','k','\0',
't','a','b','S','e','l','e','c','t','P','i','x','m','a','p','\0',
't','a','b','S','e','l','e','c','t','C','o','l','o','r','\0',
't','a','b','P','i','x','m','a','p','P','l','a','c','e','m','e','n','t','\0',
't','a','b','O','r','i','e','n','t','a','t','i','o','n','\0',
't','a','b','O','f','f','s','e','t','\0',
't','a','b','M','o','d','e','\0',
't','a','b','M','a','r','g','i','n','W','i','d','t','h','\0',
't','a','b','M','a','r','g','i','n','H','e','i','g','h','t','\0',
't','a','b','L','i','s','t','\0',
't','a','b','L','a','b','e','l','S','t','r','i','n','g','\0',
't','a','b','L','a','b','e','l','S','p','a','c','i','n','g','\0',
't','a','b','L','a','b','e','l','P','i','x','m','a','p','\0',
't','a','b','F','o','r','e','g','r','o','u','n','d','\0',
't','a','b','E','d','g','e','\0',
't','a','b','C','o','r','n','e','r','P','e','r','c','e','n','t','\0',
't','a','b','B','o','x','W','i','d','g','e','t','\0',
't','a','b','B','a','c','k','g','r','o','u','n','d','P','i','x','m','a','p','\0',
't','a','b','B','a','c','k','g','r','o','u','n','d','\0',
't','a','b','A','u','t','o','S','e','l','e','c','t','\0',
't','a','b','A','r','r','o','w','P','l','a','c','e','m','e','n','t','\0',
't','a','b','A','l','i','g','n','m','e','n','t','\0',
's','t','a','c','k','e','d','E','f','f','e','c','t','\0',
's','o','r','t','F','u','n','c','t','i','o','n','s','\0',
's','l','i','d','e','r','T','o','g','L','a','b','e','l','\0',
's','i','z','e','S','t','r','i','n','g','\0',
's','h','o','w','V','a','l','u','e','\0',
's','h','o','w','S','a','s','h','\0',
's','h','o','w','N','a','m','e','S','t','r','i','n','g','\0',
's','h','o','w','L','a','b','e','l','\0',
's','h','o','w','F','o','n','t','N','a','m','e','\0',
's','h','o','w','F','i','n','d','\0',
's','e','l','e','c','t','e','d','I','n','d','e','x','\0',
's','e','l','e','c','t','e','d','C','o','l','u','m','n','\0',
's','e','l','e','c','t','C','a','l','l','b','a','c','k','\0',
's','c','a','l','i','n','g','S','t','r','i','n','g','\0',
's','a','s','h','T','r','a','n','s','l','a','t','i','o','n','s','\0',
's','a','m','p','l','e','T','e','x','t','\0',
'r','g','b','F','i','l','e','\0',
'r','e','s','i','z','e','T','o','P','r','e','f','e','r','r','e','d','\0',
'r','e','s','i','z','e','C','a','l','l','b','a','c','k','\0',
'r','e','d','S','l','i','d','e','r','L','a','b','e','l','\0',
'p','r','o','p','S','p','a','c','e','S','t','r','i','n','g','\0',
'p','r','e','f','e','r','r','e','d','P','a','n','e','S','i','z','e','\0',
'p','o','s','i','t','i','o','n','\0',
'p','o','p','u','p','S','h','e','l','l','W','i','d','g','e','t','\0',
'p','o','p','u','p','O','f','f','s','e','t','\0',
'p','o','p','u','p','C','u','r','s','o','r','\0',
'p','i','x','m','a','p','W','i','d','t','h','\0',
'p','i','x','m','a','p','H','e','i','g','h','t','\0',
'p','a','r','e','n','t','N','o','d','e','\0',
'o','t','h','e','r','S','t','r','i','n','g','\0',
'o','p','t','i','o','n','S','t','r','i','n','g','\0',
'o','p','e','n','F','o','l','d','e','r','P','i','x','m','a','p','\0',
'o','p','e','n','C','l','o','s','e','P','a','d','d','i','n','g','\0',
'n','u','m','V','a','l','u','e','s','\0',
'n','u','m','S','t','a','c','k','s','\0',
'n','u','m','R','o','w','s','\0',
'n','o','d','e','S','t','a','t','e','C','h','a','n','g','e','d','C','a','l','l','b','a','c','k','\0',
'n','o','d','e','S','t','a','t','e','C','a','l','l','b','a','c','k','\0',
'n','o','d','e','S','t','a','t','e','B','e','g','E','n','d','C','a','l','l','b','a','c','k','\0',
'n','o','d','e','S','t','a','t','e','\0',
'n','o','C','e','l','l','E','r','r','o','r','\0',
'm','o','n','o','S','p','a','c','e','S','t','r','i','n','g','\0',
'm','i','n','i','m','u','m','V','e','r','t','i','c','a','l','C','e','l','l','s','\0',
'm','i','n','i','m','u','m','H','o','r','i','z','o','n','t','a','l','C','e','l','l','s','\0',
'm','i','n','i','m','u','m','C','e','l','l','W','i','d','t','h','\0',
'm','i','n','i','m','u','m','C','e','l','l','H','e','i','g','h','t','\0',
'm','a','r','g','i','n','\0',
'l','i','s','t','\0',
'l','i','n','e','W','i','d','t','h','\0',
'l','i','n','e','C','o','l','o','r','\0',
'l','a','b','e','l','\0',
'i','t','a','l','i','c','S','t','r','i','n','g','\0',
'i','n','s','e','r','t','B','e','f','o','r','e','\0',
'i','n','d','e','n','t','S','p','a','c','e','\0',
'i','c','o','n','T','e','x','t','P','a','d','d','i','n','g','\0',
'i','c','o','n','P','l','a','c','e','m','e','n','t','\0',
'h','o','r','i','z','o','n','t','a','l','N','o','d','e','S','p','a','c','e','\0',
'h','o','r','i','z','o','n','t','a','l','M','a','r','g','i','n','\0',
'g','r','e','e','n','S','l','i','d','e','r','L','a','b','e','l','\0',
'f','r','e','e','T','a','b','P','i','x','m','a','p','\0',
'f','i','r','s','t','R','o','w','\0',
'f','i','r','s','t','C','o','l','u','m','n','P','i','x','m','a','p','s','\0',
'f','i','r','s','t','C','o','l','u','m','n','\0',
'f','i','n','d','L','a','b','e','l','\0',
'f','i','l','l','O','p','t','i','o','n','\0',
'f','i','l','e','R','e','a','d','E','r','r','o','r','\0',
'f','a','m','i','l','y','S','t','r','i','n','g','\0',
'e','q','u','a','l','S','i','z','e','\0',
'e','n','t','r','y','L','a','b','e','l','S','t','r','i','n','g','\0',
'e','n','t','r','y','D','a','t','a','\0',
'e','n','c','o','d','i','n','g','S','t','r','i','n','g','\0',
'e','n','c','o','d','i','n','g','L','i','s','t','\0',
'd','o','u','b','l','e','C','l','i','c','k','C','a','l','l','b','a','c','k','\0',
'd','e','f','a','u','l','t','E','n','c','o','d','i','n','g','S','t','r','i','n','g','\0',
'd','F','i','e','l','d','P','r','e','f','W','i','d','t','h','\0',
'd','F','i','e','l','d','P','r','e','f','H','e','i','g','h','t','\0',
'd','F','i','e','l','d','M','i','n','W','i','d','t','h','\0',
'd','F','i','e','l','d','M','i','n','H','e','i','g','h','t','\0',
'd','F','i','e','l','d','M','a','x','W','i','d','t','h','\0',
'd','F','i','e','l','d','M','a','x','H','e','i','g','h','t','\0',
'c','u','s','t','o','m','i','z','e','d','C','o','m','b','i','n','a','t','i','o','n','B','o','x','\0',
'c','u','r','s','o','r','\0',
'c','u','r','r','e','n','t','F','o','n','t','\0',
'c','o','n','n','e','c','t','S','t','y','l','e','\0',
'c','o','m','b','o','T','r','a','n','s','l','a','t','i','o','n','s','\0',
'c','o','l','u','m','n','T','i','t','l','e','s','\0',
'c','o','l','o','r','N','a','m','e','\0',
'c','o','l','o','r','M','o','d','e','\0',
'c','o','l','o','r','L','i','s','t','T','o','g','L','a','b','e','l','\0',
'c','e','l','l','Y','\0',
'c','e','l','l','X','\0',
'b','o','t','h','S','t','r','i','n','g','\0',
'b','o','l','d','S','t','r','i','n','g','\0',
'b','l','u','e','S','l','i','d','e','r','L','a','b','e','l','\0',
'D','i','s','t','r','i','b','u','t','i','o','n','\0',
'F','i','l','l','S','t','y','l','e','\0',
'I','t','e','m','S','p','a','c','i','n','g','\0',
'L','a','b','e','l','S','p','a','c','i','n','g','\0',
'S','h','o','w','L','a','b','e','l','\0',
'S','t','r','e','t','c','h','a','b','l','e','\0',
'd','e','f','a','u','l','t','E','n','t','r','y','L','a','b','e','l','A','l','i','g','n','m','e','n','t','\0',
'd','e','f','a','u','l','t','E','n','t','r','y','L','a','b','e','l','F','o','n','t','L','i','s','t','\0',
'd','e','f','a','u','l','t','F','i','l','l','S','t','y','l','e','\0',
'd','i','s','t','r','i','b','u','t','i','o','n','\0',
'e','n','t','r','y','L','a','b','e','l','A','l','i','g','n','m','e','n','t','\0',
'e','n','t','r','y','L','a','b','e','l','F','o','n','t','L','i','s','t','\0',
'e','n','t','r','y','L','a','b','e','l','P','i','x','m','a','p','\0',
'e','n','t','r','y','L','a','b','e','l','T','y','p','e','\0',
'f','i','l','l','S','t','y','l','e','\0',
'i','t','e','m','S','p','a','c','i','n','g','\0',
'l','a','b','e','l','S','p','a','c','i','n','g','\0',
's','h','o','w','E','n','t','r','y','L','a','b','e','l','\0',
's','t','r','e','t','c','h','a','b','l','e','\0',
'D','i','s','t','r','i','b','u','t','i','o','n','\0',
'F','i','l','l','S','t','y','l','e','\0',
'E','q','u','a','l','S','i','z','e','\0',
'F','i','l','l','O','p','t','i','o','n','\0',
'C','o','l','o','r','M','o','d','e','\0',
'F','i','l','e','R','e','a','d','E','r','r','o','r','\0',
'N','o','C','e','l','l','E','r','r','o','r','\0',
'S','l','i','d','e','r','L','a','b','e','l','\0',
'T','o','g','L','a','b','e','l','\0',
'A','u','t','o','F','i','l','l','\0',
'P','i','c','t','u','r','e','\0',
'a','u','t','o','F','i','l','l','\0',
'p','i','c','t','u','r','e','\0',
'p','i','c','t','u','r','e','E','r','r','o','r','C','a','l','l','b','a','c','k','\0',
'v','a','l','i','d','a','t','e','C','a','l','l','b','a','c','k','\0',
'F','i','n','d','L','a','b','e','l','\0',
'S','h','o','w','F','i','n','d','\0',
'e','n','t','r','y','B','a','c','k','g','r','o','u','n','d','\0',
'C','o','l','u','m','n','T','i','t','l','e','s','\0',
'E','n','t','r','y','D','a','t','a','\0',
'F','i','r','s','t','C','o','l','u','m','n','P','i','x','m','a','p','s','\0',
'F','i','r','s','t','L','o','c','a','t','i','o','n','\0',
'N','e','w','V','i','s','u','a','l','S','t','y','l','e','\0',
'N','u','m','R','o','w','s','\0',
'S','c','r','o','l','l','B','a','r','\0',
'S','e','l','e','c','t','e','d','C','o','l','u','m','n','\0',
'n','e','w','V','i','s','u','a','l','S','t','y','l','e','\0',
'P','r','e','f','e','r','r','e','d','P','a','n','e','S','i','z','e','\0',
'S','h','o','w','S','a','s','h','\0',
'1','0','0','D','P','I','S','t','r','i','n','g','\0',
'7','5','D','P','I','S','t','r','i','n','g','\0',
'A','n','y','L','o','w','e','r','S','t','r','i','n','g','\0',
'A','n','y','S','t','r','i','n','g','\0',
'B','o','l','d','S','t','r','i','n','g','\0',
'B','o','t','h','S','t','r','i','n','g','\0',
'D','e','f','a','u','l','t','E','n','c','o','d','i','n','g','S','t','r','i','n','g','\0',
'E','n','c','o','d','i','n','g','L','i','s','t','\0',
'E','n','c','o','d','i','n','g','S','t','r','i','n','g','\0',
'F','a','m','i','l','y','S','t','r','i','n','g','\0',
'I','t','a','l','i','c','S','t','r','i','n','g','\0',
'M','o','n','o','S','p','a','c','e','S','t','r','i','n','g','\0',
'O','p','t','i','o','n','S','t','r','i','n','g','\0',
'O','t','h','e','r','S','t','r','i','n','g','\0',
'P','r','o','p','S','p','a','c','e','S','t','r','i','n','g','\0',
'S','a','m','p','l','e','T','e','x','t','\0',
'S','c','a','l','i','n','g','S','t','r','i','n','g','\0',
'S','h','o','w','N','a','m','e','S','t','r','i','n','g','\0',
'S','i','z','e','S','t','r','i','n','g','\0',
'T','e','x','t','R','o','w','s','\0',
'X','l','f','d','S','p','a','c','e','S','t','r','i','n','g','\0',
'1','0','0','D','P','I','s','t','r','i','n','g','\0',
'7','5','D','P','I','s','t','r','i','n','g','\0',
'a','n','y','L','o','w','e','r','S','t','r','i','n','g','\0',
'a','n','y','S','t','r','i','n','g','\0',
'C','e','l','l','X','\0',
'C','e','l','l','Y','\0',
'D','e','f','a','u','l','t','C','e','l','l','s','\0',
'M','i','n','i','m','u','m','C','e','l','l','S','i','z','e','\0',
'I','c','o','n','P','l','a','c','e','m','e','n','t','\0',
'p','i','x','m','a','p','D','e','p','t','h','\0',
'A','u','t','o','C','l','o','s','e','\0',
'I','n','s','e','r','t','B','e','f','o','r','e','\0',
'N','o','d','e','S','t','a','t','e','\0',
'N','o','d','e','S','t','a','t','e','C','a','l','l','b','a','c','k','\0',
'N','o','d','e','S','t','a','t','e','C','h','a','n','g','e','d','C','a','l','l','b','a','c','k','\0',
'P','a','r','e','n','t','N','o','d','e','\0',
'a','u','t','o','C','l','o','s','e','\0',
'c','l','o','s','e','F','o','l','d','e','r','P','i','x','m','a','p','\0',
'n','o','d','e','C','l','o','s','e','F','o','l','d','e','r','P','i','x','m','a','p','\0',
'n','o','d','e','O','p','e','n','F','o','l','d','e','r','P','i','x','m','a','p','\0',
'n','o','d','e','S','t','a','t','e','B','e','g','i','n','E','n','d','C','a','l','l','b','a','c','k','\0',
'C','o','n','s','t','r','a','i','n','W','i','d','t','h','\0',
'I','n','d','e','n','t','S','p','a','c','e','\0',
'c','o','n','n','e','c','t','N','o','d','e','s','\0',
'c','o','n','s','t','r','a','i','n','W','i','d','t','h','\0',
'N','u','m','S','t','a','c','k','s','\0',
'S','e','l','e','c','t','e','d','I','n','d','e','x','\0',
'S','t','a','c','k','e','d','E','f','f','e','c','t','\0',
'T','a','b','A','u','t','o','S','e','l','e','c','t','\0',
'T','a','b','C','o','r','n','e','r','P','e','r','c','e','n','t','\0',
'T','a','b','E','d','g','e','\0',
'T','a','b','L','a','b','e','l','S','p','a','c','i','n','g','\0',
'T','a','b','M','o','d','e','\0',
'T','a','b','O','f','f','s','e','t','\0',
'T','a','b','O','r','i','e','n','t','a','t','i','o','n','\0',
'T','a','b','S','e','l','e','c','t','C','o','l','o','r','\0',
'T','a','b','S','e','l','e','c','t','P','i','x','m','a','p','\0',
'T','a','b','S','t','y','l','e','\0',
'T','r','a','v','e','r','s','a','l','I','n','d','e','x','\0',
'U','n','i','f','o','r','m','T','a','b','S','i','z','e','\0',
'U','s','e','I','m','a','g','e','C','a','c','h','e','\0',
'F','r','e','e','T','a','b','P','i','x','m','a','p','\0',
'I','C','S','E','n','h','a','n','c','e','m','e','n','t','P','a','k','R','e','s','o','u','r','c','e','E','r','r','o','r','\0',
'T','a','b','L','a','b','e','l','P','i','x','m','a','p','\0',
'T','a','b','L','a','b','e','l','S','t','r','i','n','g','\0',
'T','a','b','P','i','x','m','a','p','P','l','a','c','e','m','e','n','t','\0',
'T','a','b','S','i','d','e','\0',
'i','l','l','e','g','a','l','R','e','s','o','u','r','c','e','V','a','l','u','e','\0',
'C','o','m','p','r','e','s','s','S','t','y','l','e','\0',
'C','o','n','n','e','c','t','S','t','y','l','e','\0',
'H','o','r','i','z','o','n','t','a','l','D','e','l','t','a','\0',
'L','i','n','e','W','i','d','t','h','\0',
'O','p','e','n','C','l','o','s','e','P','a','d','d','i','n','g','\0',
'V','e','r','t','i','c','a','l','D','e','l','t','a','\0',
'c','o','m','p','r','e','s','s','S','t','y','l','e','\0',
'h','o','r','i','z','o','n','t','a','l','D','e','l','t','a','\0',
'l','i','n','e','B','a','c','k','g','r','o','u','n','d','C','o','l','o','r','\0',
'l','i','n','e','S','t','y','l','e','\0',
'v','e','r','t','i','c','a','l','D','e','l','t','a','\0',
'X','m','C','o','m','p','r','e','s','s','S','t','y','l','e','\0',
'X','m','L','i','n','e','S','t','y','l','e','\0',
'P','o','p','u','p','O','f','f','s','e','t','\0',
'U','s','e','T','e','x','t','F','i','e','l','d','\0',
'V','e','r','i','f','y','\0'
};
externaldef(_xmstrings) _XmConst char _XmStrings23[] = {
'd','e','f','a','u','l','t','E','n','t','r','y','L','a','b','e','l','R','e','n','d','e','r','T','a','b','l','e','\0',
'e','n','t','r','y','L','a','b','e','l','R','e','n','d','e','r','T','a','b','l','e','\0',
'p','i','x','m','a','p','P','l','a','c','e','m','e','n','t','\0',
'P','i','x','m','a','p','P','l','a','c','e','m','e','n','t','\0',
'P','i','x','m','a','p','P','l','a','c','e','m','e','n','t','\0',
'p','i','x','m','a','p','T','e','x','t','P','a','d','d','i','n','g','\0',
'f','o','n','t','S','t','y','l','e','\0',
'F','o','n','t','S','t','y','l','e','\0',
'f','o','n','t','S','i','z','e','\0',
'F','o','n','t','S','i','z','e','\0',
'f','o','n','t','F','o','u','n','d','r','y','\0',
'F','o','n','t','F','o','u','n','d','r','y','\0',
'f','o','n','t','E','n','c','o','d','i','n','g','\0',
'F','o','n','t','E','n','c','o','d','i','n','g','\0',
'x','f','t','F','o','n','t','\0',
'X','f','t','F','o','n','t','\0',
'U','T','F','8','_','S','T','R','I','N','G','\0'
};
externaldef(_xmstrings) _XmConst char _XmStringsI[] = {
'A','T','O','M','_','P','A','I','R','\0',
'A','V','E','R','A','G','E','_','W','I','D','T','H','\0',
'B','A','C','K','G','R','O','U','N','D','\0',
'C','H','A','R','A','C','T','E','R','_','P','O','S','I','T','I','O','N','\0',
'C','L','A','S','S','\0',
'C','O','L','U','M','N','_','N','U','M','B','E','R','\0',
'D','O','N','E','\0',
'F','O','R','E','G','R','O','U','N','D','\0',
'H','O','S','T','_','N','A','M','E','\0',
'L','I','N','E','_','N','U','M','B','E','R','\0',
'L','I','S','T','_','L','E','N','G','T','H','\0',
'M','O','D','U','L','E','\0',
'N','A','M','E','\0',
'N','o','n','e','\0',
'O','D','I','F','\0',
'O','W','N','E','R','_','O','S','\0',
'P','D','M','_','E','X','I','T','_','C','A','N','C','E','L','\0',
'P','D','M','_','E','X','I','T','_','E','R','R','O','R','\0',
'P','D','M','_','E','X','I','T','_','O','K','\0',
'P','D','M','_','R','E','P','L','Y','\0',
'P','D','M','_','S','T','A','R','T','\0',
'P','D','M','_','S','T','A','R','T','_','E','R','R','O','R','\0',
'P','D','M','_','S','T','A','R','T','_','O','K','\0',
'P','D','M','_','S','T','A','R','T','_','P','X','A','U','T','H','\0',
'P','D','M','_','S','T','A','R','T','_','V','X','A','U','T','H','\0',
'P','I','X','E','L','\0',
'P','I','X','E','L','_','S','I','Z','E','\0',
'P','R','O','C','E','D','U','R','E','\0',
'P','R','O','C','E','S','S','\0',
'R','E','S','O','L','U','T','I','O','N','_','Y','\0',
'S','P','A','N','\0',
'T','A','S','K','\0',
'U','S','E','R','\0',
'W','M','_','D','E','L','E','T','E','_','W','I','N','D','O','W','\0',
'_','M','O','T','I','F','_','C','U','R','R','E','N','T','_','T','I','M','E','\0',
'_','M','O','T','I','F','_','D','R','A','G','_','A','T','O','M','S','\0',
'_','M','O','T','I','F','_','D','R','A','G','_','I','N','I','T','I','A','T','O','R','_','I','N','F','O','\0',
'_','M','O','T','I','F','_','D','R','A','G','_','P','R','O','X','Y','_','W','I','N','D','O','W','\0',
'_','M','O','T','I','F','_','D','R','A','G','_','R','E','C','E','I','V','E','R','_','I','N','F','O','\0',
'_','M','O','T','I','F','_','D','R','A','G','_','T','A','R','G','E','T','S','\0',
'_','M','O','T','I','F','_','D','R','A','G','_','W','I','N','D','O','W','\0',
'_','M','O','T','I','F','_','I','N','I','T','I','A','T','O','R','\0',
'_','M','O','T','I','F','_','R','E','C','E','I','V','E','R','\0',
'_','M','O','T','I','F','_','S','E','L','E','C','T','I','O','N','_','T','E','X','T','\0'
};
|