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 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294
|
typedef struct preload_schema_struct {
int itype;
char *type;
int iattr;
char *attr;
char *attr_type;
} preload_schema_t;
static preload_schema_t preload_schema_table[] = {
{1, "Test1", 1, "Version", "int"},
{1, "Test1", 2, "Expiration", "int"},
{1, "Test1", 3, "Path", "string"},
{1, "Test1", 4, "IndexPath", "string"},
{1, "Test1", 5, "IndexUsed", "object"},
{1, "Test1", 6, "IndexUsedBy", "object"},
{1, "Test1", 7, "IndexAttr", "object"},
{1, "Test1", 8, "ServerId", "string"},
{1, "Test1", 9, "ServerVersion", "int"},
{1, "Test1", 10, "Uuid", "string"},
{1, "Test1", 11, "Unsatisfied", "string"},
{1, "Test1", 12, "Bits", "int"},
{1, "Test1", 16, "IS", "int"},
{1, "Test1", 17, "IO", "int"},
{1, "Test1", 18, "IM", "int"},
{1, "Test1", 19, "SS", "string"},
{1, "Test1", 20, "SO", "string"},
{1, "Test1", 21, "SM", "string"},
{1, "Test1", 22, "FS", "file"},
{1, "Test1", 23, "FO", "file"},
{1, "Test1", 24, "FM", "file"},
{1, "Test1", 25, "OSD", "object"},
{1, "Test1", 26, "OSS", "object"},
{1, "Test1", 27, "OON", "object"},
{1, "Test1", 28, "OOD", "object"},
{1, "Test1", 29, "OOS", "object"},
{1, "Test1", 30, "OMN", "object"},
{1, "Test1", 31, "OMD", "object"},
{1, "Test1", 32, "OMS", "object"},
{2, "Test2", 1, "Version", "int"},
{2, "Test2", 2, "Expiration", "int"},
{2, "Test2", 3, "Path", "string"},
{2, "Test2", 4, "IndexPath", "string"},
{2, "Test2", 5, "IndexUsed", "object"},
{2, "Test2", 6, "IndexUsedBy", "object"},
{2, "Test2", 7, "IndexAttr", "object"},
{2, "Test2", 8, "ServerId", "string"},
{2, "Test2", 9, "ServerVersion", "int"},
{2, "Test2", 10, "Uuid", "string"},
{2, "Test2", 11, "Unsatisfied", "string"},
{2, "Test2", 12, "Bits", "int"},
{2, "Test2", 16, "I", "int"},
{2, "Test2", 17, "S", "string"},
{2, "Test2", 18, "IndexObject", "object"},
{2, "Test2", 19, "IndexInt", "int"},
{2, "Test2", 20, "IndexString", "string"},
{2, "Test2", 21, "IndexFile", "file"},
{3, "Program", 1, "Version", "int"},
{3, "Program", 2, "Expiration", "int"},
{3, "Program", 3, "Path", "string"},
{3, "Program", 4, "IndexPath", "string"},
{3, "Program", 5, "IndexUsed", "object"},
{3, "Program", 6, "IndexUsedBy", "object"},
{3, "Program", 7, "IndexAttr", "object"},
{3, "Program", 8, "ServerId", "string"},
{3, "Program", 9, "ServerVersion", "int"},
{3, "Program", 10, "Uuid", "string"},
{3, "Program", 11, "Unsatisfied", "string"},
{3, "Program", 12, "Bits", "int"},
{3, "Program", 16, "TmsId", "string"},
{3, "Program", 17, "Title", "string"},
{3, "Program", 18, "Series", "object"},
{3, "Program", 19, "Description", "string"},
{3, "Program", 20, "DescLanguage", "string"},
{3, "Program", 21, "ShowType", "int"},
{3, "Program", 22, "MovieYear", "int"},
{3, "Program", 23, "MpaaRating", "int"},
{3, "Program", 24, "StarRating", "int"},
{3, "Program", 25, "MovieRunTime", "int"},
{3, "Program", 26, "Country", "string"},
{3, "Program", 27, "NetworkSource", "string"},
{3, "Program", 28, "SourceType", "int"},
{3, "Program", 29, "EpisodeTitle", "string"},
{3, "Program", 30, "Advisory", "int"},
{3, "Program", 31, "Actor", "string"},
{3, "Program", 32, "GuestStar", "string"},
{3, "Program", 33, "Director", "string"},
{3, "Program", 34, "ExecProducer", "string"},
{3, "Program", 35, "Producer", "string"},
{3, "Program", 36, "Writer", "string"},
{3, "Program", 37, "Host", "string"},
{3, "Program", 38, "Choreographer", "string"},
{3, "Program", 39, "Genre", "int"},
{3, "Program", 40, "ColorCode", "int"},
{3, "Program", 41, "EpisodeNum", "int"},
{3, "Program", 42, "AltEpisodeNum", "int"},
{3, "Program", 43, "ShowingOBSOLETE", "object"},
{3, "Program", 44, "Recording", "object"},
{3, "Program", 45, "IsEpisode", "int"},
{3, "Program", 46, "ApgProgram", "object"},
{3, "Program", 47, "Bits", "int"},
{3, "Program", 48, "TvRating", "int"},
{3, "Program", 49, "OriginalAirDate", "int"},
{3, "Program", 50, "RootServerId", "string"},
{3, "Program", 51, "Url", "object"},
{3, "Program", 52, "AolRating", "string"},
{4, "Series", 1, "Version", "int"},
{4, "Series", 2, "Expiration", "int"},
{4, "Series", 3, "Path", "string"},
{4, "Series", 4, "IndexPath", "string"},
{4, "Series", 5, "IndexUsed", "object"},
{4, "Series", 6, "IndexUsedBy", "object"},
{4, "Series", 7, "IndexAttr", "object"},
{4, "Series", 8, "ServerId", "string"},
{4, "Series", 9, "ServerVersion", "int"},
{4, "Series", 10, "Uuid", "string"},
{4, "Series", 11, "Unsatisfied", "string"},
{4, "Series", 12, "Bits", "int"},
{4, "Series", 16, "TmsId", "string"},
{4, "Series", 17, "Title", "string"},
{4, "Series", 18, "ShowingOBSOLETE", "object"},
{4, "Series", 19, "ShowingDerivedOBSOLETE", "object"},
{4, "Series", 20, "Genre", "int"},
{4, "Series", 21, "SeriesStationOBSOLETE", "object"},
{4, "Series", 22, "Episodic", "int"},
{4, "Series", 23, "ThumbData", "int"},
{5, "Station", 1, "Version", "int"},
{5, "Station", 2, "Expiration", "int"},
{5, "Station", 3, "Path", "string"},
{5, "Station", 4, "IndexPath", "string"},
{5, "Station", 5, "IndexUsed", "object"},
{5, "Station", 6, "IndexUsedBy", "object"},
{5, "Station", 7, "IndexAttr", "object"},
{5, "Station", 8, "ServerId", "string"},
{5, "Station", 9, "ServerVersion", "int"},
{5, "Station", 10, "Uuid", "string"},
{5, "Station", 11, "Unsatisfied", "string"},
{5, "Station", 12, "Bits", "int"},
{5, "Station", 16, "TmsId", "string"},
{5, "Station", 17, "Name", "string"},
{5, "Station", 18, "CallSign", "string"},
{5, "Station", 19, "City", "string"},
{5, "Station", 20, "State", "string"},
{5, "Station", 21, "ZipCode", "string"},
{5, "Station", 22, "Country", "string"},
{5, "Station", 23, "Affiliation", "string"},
{5, "Station", 24, "DmaName", "string"},
{5, "Station", 25, "DmaNum", "int"},
{5, "Station", 26, "FccChannelNum", "int"},
{5, "Station", 27, "LogoIndex", "int"},
{5, "Station", 28, "AffiliationIndex", "int"},
{5, "Station", 29, "PayPerView", "int"},
{5, "Station", 30, "AolChannel", "int"},
{5, "Station", 31, "AolMiniGuide", "int"},
{5, "Station", 32, "AolUrl", "object"},
{5, "Station", 33, "AolDescription", "string"},
{5, "Station", 34, "AolStationType", "string"},
{6, "StationDay", 1, "Version", "int"},
{6, "StationDay", 2, "Expiration", "int"},
{6, "StationDay", 3, "Path", "string"},
{6, "StationDay", 4, "IndexPath", "string"},
{6, "StationDay", 5, "IndexUsed", "object"},
{6, "StationDay", 6, "IndexUsedBy", "object"},
{6, "StationDay", 7, "IndexAttr", "object"},
{6, "StationDay", 8, "ServerId", "string"},
{6, "StationDay", 9, "ServerVersion", "int"},
{6, "StationDay", 10, "Uuid", "string"},
{6, "StationDay", 11, "Unsatisfied", "string"},
{6, "StationDay", 12, "Bits", "int"},
{6, "StationDay", 16, "Station", "object"},
{6, "StationDay", 17, "Day", "int"},
{6, "StationDay", 18, "Showing", "object"},
{6, "StationDay", 19, "ApgSchedule", "object"},
{6, "StationDay", 20, "StartTime", "int"},
{6, "StationDay", 21, "Duration", "int"},
{7, "Showing", 1, "Version", "int"},
{7, "Showing", 2, "Expiration", "int"},
{7, "Showing", 3, "Path", "string"},
{7, "Showing", 4, "IndexPath", "string"},
{7, "Showing", 5, "IndexUsed", "object"},
{7, "Showing", 6, "IndexUsedBy", "object"},
{7, "Showing", 7, "IndexAttr", "object"},
{7, "Showing", 8, "ServerId", "string"},
{7, "Showing", 9, "ServerVersion", "int"},
{7, "Showing", 10, "Uuid", "string"},
{7, "Showing", 11, "Unsatisfied", "string"},
{7, "Showing", 12, "Bits", "int"},
{7, "Showing", 16, "Program", "object"},
{7, "Showing", 17, "Station", "object"},
{7, "Showing", 18, "Date", "int"},
{7, "Showing", 19, "Time", "int"},
{7, "Showing", 20, "Duration", "int"},
{7, "Showing", 21, "PartIndex", "int"},
{7, "Showing", 22, "PartCount", "int"},
{7, "Showing", 23, "Premiere", "int"},
{7, "Showing", 24, "Live", "int"},
{7, "Showing", 25, "Bits", "int"},
{7, "Showing", 26, "Reason", "int"},
{7, "Showing", 27, "DontIndex", "int"},
{7, "Showing", 28, "TvRating", "int"},
{7, "Showing", 29, "SeriesId", "int"},
{7, "Showing", 30, "Genre", "int"},
{7, "Showing", 31, "Dolby", "int"},
{7, "Showing", 32, "ApgScheduleEvent", "object"},
{8, "PlaceHolder", 1, "Version", "int"},
{8, "PlaceHolder", 2, "Expiration", "int"},
{8, "PlaceHolder", 3, "Path", "string"},
{8, "PlaceHolder", 4, "IndexPath", "string"},
{8, "PlaceHolder", 5, "IndexUsed", "object"},
{8, "PlaceHolder", 6, "IndexUsedBy", "object"},
{8, "PlaceHolder", 7, "IndexAttr", "object"},
{8, "PlaceHolder", 8, "ServerId", "string"},
{8, "PlaceHolder", 9, "ServerVersion", "int"},
{8, "PlaceHolder", 10, "Uuid", "string"},
{8, "PlaceHolder", 11, "Unsatisfied", "string"},
{8, "PlaceHolder", 12, "Bits", "int"},
{9, "DlWaitingOBSOLETE", 1, "Version", "int"},
{9, "DlWaitingOBSOLETE", 2, "Expiration", "int"},
{9, "DlWaitingOBSOLETE", 3, "Path", "string"},
{9, "DlWaitingOBSOLETE", 4, "IndexPath", "string"},
{9, "DlWaitingOBSOLETE", 5, "IndexUsed", "object"},
{9, "DlWaitingOBSOLETE", 6, "IndexUsedBy", "object"},
{9, "DlWaitingOBSOLETE", 7, "IndexAttr", "object"},
{9, "DlWaitingOBSOLETE", 8, "ServerId", "string"},
{9, "DlWaitingOBSOLETE", 9, "ServerVersion", "int"},
{9, "DlWaitingOBSOLETE", 10, "Uuid", "string"},
{9, "DlWaitingOBSOLETE", 11, "Unsatisfied", "string"},
{9, "DlWaitingOBSOLETE", 12, "Bits", "int"},
{9, "DlWaitingOBSOLETE", 16, "GenericFile", "file"},
{10, "LoopSet", 1, "Version", "int"},
{10, "LoopSet", 2, "Expiration", "int"},
{10, "LoopSet", 3, "Path", "string"},
{10, "LoopSet", 4, "IndexPath", "string"},
{10, "LoopSet", 5, "IndexUsed", "object"},
{10, "LoopSet", 6, "IndexUsedBy", "object"},
{10, "LoopSet", 7, "IndexAttr", "object"},
{10, "LoopSet", 8, "ServerId", "string"},
{10, "LoopSet", 9, "ServerVersion", "int"},
{10, "LoopSet", 10, "Uuid", "string"},
{10, "LoopSet", 11, "Unsatisfied", "string"},
{10, "LoopSet", 12, "Bits", "int"},
{10, "LoopSet", 16, "Name", "string"},
{10, "LoopSet", 17, "Port", "int"},
{10, "LoopSet", 18, "State", "object"},
{10, "LoopSet", 19, "Trans", "object"},
{11, "LoopSetClip", 1, "Version", "int"},
{11, "LoopSetClip", 2, "Expiration", "int"},
{11, "LoopSetClip", 3, "Path", "string"},
{11, "LoopSetClip", 4, "IndexPath", "string"},
{11, "LoopSetClip", 5, "IndexUsed", "object"},
{11, "LoopSetClip", 6, "IndexUsedBy", "object"},
{11, "LoopSetClip", 7, "IndexAttr", "object"},
{11, "LoopSetClip", 8, "ServerId", "string"},
{11, "LoopSetClip", 9, "ServerVersion", "int"},
{11, "LoopSetClip", 10, "Uuid", "string"},
{11, "LoopSetClip", 11, "Unsatisfied", "string"},
{11, "LoopSetClip", 12, "Bits", "int"},
{11, "LoopSetClip", 16, "Entrance", "int"},
{11, "LoopSetClip", 17, "Exit", "int"},
{11, "LoopSetClip", 18, "Video", "file"},
{11, "LoopSetClip", 19, "VideoClip", "object"},
{11, "LoopSetClip", 20, "SubRecording", "object"},
{12, "SwSystem", 1, "Version", "int"},
{12, "SwSystem", 2, "Expiration", "int"},
{12, "SwSystem", 3, "Path", "string"},
{12, "SwSystem", 4, "IndexPath", "string"},
{12, "SwSystem", 5, "IndexUsed", "object"},
{12, "SwSystem", 6, "IndexUsedBy", "object"},
{12, "SwSystem", 7, "IndexAttr", "object"},
{12, "SwSystem", 8, "ServerId", "string"},
{12, "SwSystem", 9, "ServerVersion", "int"},
{12, "SwSystem", 10, "Uuid", "string"},
{12, "SwSystem", 11, "Unsatisfied", "string"},
{12, "SwSystem", 12, "Bits", "int"},
{12, "SwSystem", 16, "Name", "string"},
{12, "SwSystem", 17, "Active", "int"},
{12, "SwSystem", 18, "Module", "object"},
{12, "SwSystem", 19, "ResourceGroup", "object"},
{12, "SwSystem", 20, "ObjectType", "object"},
{12, "SwSystem", 21, "ResourceChecksum", "string"},
{12, "SwSystem", 22, "InstalledOBSOLETE", "int"},
{12, "SwSystem", 23, "UserInterfaceOBSOLETE", "object"},
{13, "SwModule", 1, "Version", "int"},
{13, "SwModule", 2, "Expiration", "int"},
{13, "SwModule", 3, "Path", "string"},
{13, "SwModule", 4, "IndexPath", "string"},
{13, "SwModule", 5, "IndexUsed", "object"},
{13, "SwModule", 6, "IndexUsedBy", "object"},
{13, "SwModule", 7, "IndexAttr", "object"},
{13, "SwModule", 8, "ServerId", "string"},
{13, "SwModule", 9, "ServerVersion", "int"},
{13, "SwModule", 10, "Uuid", "string"},
{13, "SwModule", 11, "Unsatisfied", "string"},
{13, "SwModule", 12, "Bits", "int"},
{13, "SwModule", 16, "Name", "string"},
{13, "SwModule", 17, "ModuleVersion", "string"},
{13, "SwModule", 18, "ModuleRelease", "string"},
{13, "SwModule", 19, "ModuleFile", "file"},
{13, "SwModule", 20, "Dependency", "object"},
{14, "Recording", 1, "Version", "int"},
{14, "Recording", 2, "Expiration", "int"},
{14, "Recording", 3, "Path", "string"},
{14, "Recording", 4, "IndexPath", "string"},
{14, "Recording", 5, "IndexUsed", "object"},
{14, "Recording", 6, "IndexUsedBy", "object"},
{14, "Recording", 7, "IndexAttr", "object"},
{14, "Recording", 8, "ServerId", "string"},
{14, "Recording", 9, "ServerVersion", "int"},
{14, "Recording", 10, "Uuid", "string"},
{14, "Recording", 11, "Unsatisfied", "string"},
{14, "Recording", 12, "Bits", "int"},
{14, "Recording", 16, "State", "int"},
{14, "Recording", 17, "Showing", "object"},
{14, "Recording", 18, "SelectionType", "int"},
{14, "Recording", 19, "ExpirationDate", "int"},
{14, "Recording", 20, "ExpirationTime", "int"},
{14, "Recording", 21, "BitRate", "int"},
{14, "Recording", 22, "Score", "int"},
{14, "Recording", 23, "UnusedAOBSOLETE", "file"},
{14, "Recording", 24, "StartDate", "int"},
{14, "Recording", 25, "StartTime", "int"},
{14, "Recording", 26, "StopDate", "int"},
{14, "Recording", 27, "StopTime", "int"},
{14, "Recording", 28, "Bookmark", "object"},
{14, "Recording", 29, "CancelReason", "int"},
{14, "Recording", 30, "CancelDate", "int"},
{14, "Recording", 31, "CancelTime", "int"},
{14, "Recording", 32, "ExplicitlyDeletedOBSOLETE", "int"},
{14, "Recording", 33, "Outage", "object"},
{14, "Recording", 34, "Part", "object"},
{14, "Recording", 35, "AudioModeOBSOLETE", "int"},
{14, "Recording", 36, "ErrorString", "string"},
{14, "Recording", 37, "RelatedPrefs", "object"},
{14, "Recording", 38, "DeletionDate", "int"},
{14, "Recording", 39, "DeletionTime", "int"},
{14, "Recording", 40, "RecordQuality", "int"},
{14, "Recording", 41, "ContentType", "int"},
{14, "Recording", 42, "ProgramSource", "object"},
{14, "Recording", 43, "ActualShowing", "object"},
{14, "Recording", 44, "StartPadding", "int"},
{14, "Recording", 45, "EndPadding", "int"},
{14, "Recording", 46, "ConflictsWithRecording", "object"},
{14, "Recording", 47, "NSecondsWatched", "int"},
{14, "Recording", 48, "NVisit", "int"},
{14, "Recording", 49, "SaveToTapeStatus", "int"},
{14, "Recording", 50, "CreatedBy", "int"},
{14, "Recording", 51, "ServiceRecordingPriority", "int"},
{14, "Recording", 52, "Clips", "object"},
{14, "Recording", 53, "Anchors", "object"},
{14, "Recording", 54, "StreamFileSize", "int"},
{14, "Recording", 55, "ExpirationExtended", "int"},
{15, "Bookmark", 1, "Version", "int"},
{15, "Bookmark", 2, "Expiration", "int"},
{15, "Bookmark", 3, "Path", "string"},
{15, "Bookmark", 4, "IndexPath", "string"},
{15, "Bookmark", 5, "IndexUsed", "object"},
{15, "Bookmark", 6, "IndexUsedBy", "object"},
{15, "Bookmark", 7, "IndexAttr", "object"},
{15, "Bookmark", 8, "ServerId", "string"},
{15, "Bookmark", 9, "ServerVersion", "int"},
{15, "Bookmark", 10, "Uuid", "string"},
{15, "Bookmark", 11, "Unsatisfied", "string"},
{15, "Bookmark", 12, "Bits", "int"},
{15, "Bookmark", 16, "TimeMs", "int"},
{16, "Enum", 1, "Version", "int"},
{16, "Enum", 2, "Expiration", "int"},
{16, "Enum", 3, "Path", "string"},
{16, "Enum", 4, "IndexPath", "string"},
{16, "Enum", 5, "IndexUsed", "object"},
{16, "Enum", 6, "IndexUsedBy", "object"},
{16, "Enum", 7, "IndexAttr", "object"},
{16, "Enum", 8, "ServerId", "string"},
{16, "Enum", 9, "ServerVersion", "int"},
{16, "Enum", 10, "Uuid", "string"},
{16, "Enum", 11, "Unsatisfied", "string"},
{16, "Enum", 12, "Bits", "int"},
{16, "Enum", 16, "Name", "string"},
{16, "Enum", 17, "Item", "object"},
{17, "EnumItem", 1, "Version", "int"},
{17, "EnumItem", 2, "Expiration", "int"},
{17, "EnumItem", 3, "Path", "string"},
{17, "EnumItem", 4, "IndexPath", "string"},
{17, "EnumItem", 5, "IndexUsed", "object"},
{17, "EnumItem", 6, "IndexUsedBy", "object"},
{17, "EnumItem", 7, "IndexAttr", "object"},
{17, "EnumItem", 8, "ServerId", "string"},
{17, "EnumItem", 9, "ServerVersion", "int"},
{17, "EnumItem", 10, "Uuid", "string"},
{17, "EnumItem", 11, "Unsatisfied", "string"},
{17, "EnumItem", 12, "Bits", "int"},
{17, "EnumItem", 16, "Name", "string"},
{17, "EnumItem", 17, "Value", "int"},
{17, "EnumItem", 18, "PrintName", "string"},
{17, "EnumItem", 19, "AltName", "string"},
{18, "Showcase", 1, "Version", "int"},
{18, "Showcase", 2, "Expiration", "int"},
{18, "Showcase", 3, "Path", "string"},
{18, "Showcase", 4, "IndexPath", "string"},
{18, "Showcase", 5, "IndexUsed", "object"},
{18, "Showcase", 6, "IndexUsedBy", "object"},
{18, "Showcase", 7, "IndexAttr", "object"},
{18, "Showcase", 8, "ServerId", "string"},
{18, "Showcase", 9, "ServerVersion", "int"},
{18, "Showcase", 10, "Uuid", "string"},
{18, "Showcase", 11, "Unsatisfied", "string"},
{18, "Showcase", 12, "Bits", "int"},
{18, "Showcase", 16, "Name", "string"},
{18, "Showcase", 17, "Icon", "object"},
{18, "Showcase", 18, "Banner", "object"},
{18, "Showcase", 19, "Item", "object"},
{18, "Showcase", 20, "InterstitialType", "int"},
{18, "Showcase", 21, "InterstitialId", "int"},
{18, "Showcase", 22, "ExpirationDate", "int"},
{18, "Showcase", 23, "ExpirationTime", "int"},
{18, "Showcase", 24, "TiVolution", "int"},
{18, "Showcase", 25, "SequenceNumber", "int"},
{18, "Showcase", 26, "InfoBalloon", "int"},
{18, "Showcase", 27, "LoopSet", "object"},
{18, "Showcase", 28, "AudioBackground", "object"},
{18, "Showcase", 29, "AudioBackgroundPriority", "int"},
{18, "Showcase", 30, "Mugshot", "object"},
{18, "Showcase", 31, "Title", "string"},
{18, "Showcase", 32, "Description", "string"},
{18, "Showcase", 33, "BigBanner", "object"},
{18, "Showcase", 34, "ClipPlayList", "object"},
{18, "Showcase", 35, "ClipAvailableIcon", "object"},
{18, "Showcase", 36, "LoopSetName", "string"},
{18, "Showcase", 37, "AudioBackgroundName", "string"},
{18, "Showcase", 38, "NoBanner", "int"},
{18, "Showcase", 39, "NoDescriptionBox", "int"},
{18, "Showcase", 40, "WienerDisplay", "int"},
{19, "ShowcaseItem", 1, "Version", "int"},
{19, "ShowcaseItem", 2, "Expiration", "int"},
{19, "ShowcaseItem", 3, "Path", "string"},
{19, "ShowcaseItem", 4, "IndexPath", "string"},
{19, "ShowcaseItem", 5, "IndexUsed", "object"},
{19, "ShowcaseItem", 6, "IndexUsedBy", "object"},
{19, "ShowcaseItem", 7, "IndexAttr", "object"},
{19, "ShowcaseItem", 8, "ServerId", "string"},
{19, "ShowcaseItem", 9, "ServerVersion", "int"},
{19, "ShowcaseItem", 10, "Uuid", "string"},
{19, "ShowcaseItem", 11, "Unsatisfied", "string"},
{19, "ShowcaseItem", 12, "Bits", "int"},
{19, "ShowcaseItem", 16, "Name", "string"},
{19, "ShowcaseItem", 17, "Icon", "object"},
{19, "ShowcaseItem", 18, "Package", "object"},
{19, "ShowcaseItem", 19, "Program", "object"},
{19, "ShowcaseItem", 20, "ExpirationDate", "int"},
{19, "ShowcaseItem", 21, "ExpirationTime", "int"},
{19, "ShowcaseItem", 22, "Affiliation", "string"},
{19, "ShowcaseItem", 23, "Mugshot", "object"},
{19, "ShowcaseItem", 24, "Description", "string"},
{19, "ShowcaseItem", 25, "SubItemExpirationDate", "int"},
{19, "ShowcaseItem", 26, "ClipPlayList", "object"},
{20, "Package", 1, "Version", "int"},
{20, "Package", 2, "Expiration", "int"},
{20, "Package", 3, "Path", "string"},
{20, "Package", 4, "IndexPath", "string"},
{20, "Package", 5, "IndexUsed", "object"},
{20, "Package", 6, "IndexUsedBy", "object"},
{20, "Package", 7, "IndexAttr", "object"},
{20, "Package", 8, "ServerId", "string"},
{20, "Package", 9, "ServerVersion", "int"},
{20, "Package", 10, "Uuid", "string"},
{20, "Package", 11, "Unsatisfied", "string"},
{20, "Package", 12, "Bits", "int"},
{20, "Package", 16, "Name", "string"},
{20, "Package", 17, "Icon", "object"},
{20, "Package", 18, "PreviewOBSOLETE", "object"},
{20, "Package", 19, "Item", "object"},
{20, "Package", 20, "Banner", "object"},
{20, "Package", 21, "InfoBalloon", "int"},
{20, "Package", 22, "LoopSet", "object"},
{20, "Package", 23, "AudioBackground", "object"},
{20, "Package", 24, "AudioBackgroundPriority", "int"},
{20, "Package", 25, "ClipPlayList", "object"},
{20, "Package", 26, "LoopSetName", "string"},
{20, "Package", 27, "AudioBackgroundName", "string"},
{20, "Package", 28, "NoBanner", "int"},
{20, "Package", 29, "NoDescriptionBox", "int"},
{20, "Package", 30, "WienerDisplay", "int"},
{21, "PackageItem", 1, "Version", "int"},
{21, "PackageItem", 2, "Expiration", "int"},
{21, "PackageItem", 3, "Path", "string"},
{21, "PackageItem", 4, "IndexPath", "string"},
{21, "PackageItem", 5, "IndexUsed", "object"},
{21, "PackageItem", 6, "IndexUsedBy", "object"},
{21, "PackageItem", 7, "IndexAttr", "object"},
{21, "PackageItem", 8, "ServerId", "string"},
{21, "PackageItem", 9, "ServerVersion", "int"},
{21, "PackageItem", 10, "Uuid", "string"},
{21, "PackageItem", 11, "Unsatisfied", "string"},
{21, "PackageItem", 12, "Bits", "int"},
{21, "PackageItem", 16, "Name", "string"},
{21, "PackageItem", 17, "Icon", "object"},
{21, "PackageItem", 18, "Program", "object"},
{21, "PackageItem", 19, "ExpirationDate", "int"},
{21, "PackageItem", 20, "ExpirationTime", "int"},
{21, "PackageItem", 21, "Affiliation", "string"},
{21, "PackageItem", 22, "Mugshot", "object"},
{21, "PackageItem", 23, "Description", "string"},
{21, "PackageItem", 24, "Package", "object"},
{21, "PackageItem", 25, "SubItemExpirationDate", "int"},
{21, "PackageItem", 26, "ClipPlayList", "object"},
{22, "Image", 1, "Version", "int"},
{22, "Image", 2, "Expiration", "int"},
{22, "Image", 3, "Path", "string"},
{22, "Image", 4, "IndexPath", "string"},
{22, "Image", 5, "IndexUsed", "object"},
{22, "Image", 6, "IndexUsedBy", "object"},
{22, "Image", 7, "IndexAttr", "object"},
{22, "Image", 8, "ServerId", "string"},
{22, "Image", 9, "ServerVersion", "int"},
{22, "Image", 10, "Uuid", "string"},
{22, "Image", 11, "Unsatisfied", "string"},
{22, "Image", 12, "Bits", "int"},
{22, "Image", 16, "Name", "string"},
{22, "Image", 17, "Format", "int"},
{22, "Image", 18, "File", "file"},
{23, "Headend", 1, "Version", "int"},
{23, "Headend", 2, "Expiration", "int"},
{23, "Headend", 3, "Path", "string"},
{23, "Headend", 4, "IndexPath", "string"},
{23, "Headend", 5, "IndexUsed", "object"},
{23, "Headend", 6, "IndexUsedBy", "object"},
{23, "Headend", 7, "IndexAttr", "object"},
{23, "Headend", 8, "ServerId", "string"},
{23, "Headend", 9, "ServerVersion", "int"},
{23, "Headend", 10, "Uuid", "string"},
{23, "Headend", 11, "Unsatisfied", "string"},
{23, "Headend", 12, "Bits", "int"},
{23, "Headend", 16, "TmsHeadendId", "string"},
{23, "Headend", 17, "CommunityName", "string"},
{23, "Headend", 18, "CountyName", "string"},
{23, "Headend", 19, "State", "string"},
{23, "Headend", 20, "PostalCode", "string"},
{23, "Headend", 21, "Name", "string"},
{23, "Headend", 22, "TimeZone", "int"},
{23, "Headend", 23, "Lineup", "object"},
{23, "Headend", 24, "EncryptionKeys", "string"},
{23, "Headend", 25, "Location", "string"},
{23, "Headend", 26, "CityPostalCode", "object"},
{24, "Channel", 1, "Version", "int"},
{24, "Channel", 2, "Expiration", "int"},
{24, "Channel", 3, "Path", "string"},
{24, "Channel", 4, "IndexPath", "string"},
{24, "Channel", 5, "IndexUsed", "object"},
{24, "Channel", 6, "IndexUsedBy", "object"},
{24, "Channel", 7, "IndexAttr", "object"},
{24, "Channel", 8, "ServerId", "string"},
{24, "Channel", 9, "ServerVersion", "int"},
{24, "Channel", 10, "Uuid", "string"},
{24, "Channel", 11, "Unsatisfied", "string"},
{24, "Channel", 12, "Bits", "int"},
{24, "Channel", 16, "TmsHeadendId", "string"},
{24, "Channel", 17, "Station", "object"},
{24, "Channel", 18, "Number", "int"},
{24, "Channel", 19, "ServiceTier", "int"},
{24, "Channel", 20, "ABChannelOBSOLETE", "int"},
{24, "Channel", 21, "SignalOBSOLETE", "int"},
{24, "Channel", 22, "Surf", "int"},
{24, "Channel", 23, "Record", "int"},
{24, "Channel", 24, "Favorite", "int"},
{24, "Channel", 25, "SourceIndex", "int"},
{24, "Channel", 26, "ApgChannel", "object"},
{25, "ResourceGroup", 1, "Version", "int"},
{25, "ResourceGroup", 2, "Expiration", "int"},
{25, "ResourceGroup", 3, "Path", "string"},
{25, "ResourceGroup", 4, "IndexPath", "string"},
{25, "ResourceGroup", 5, "IndexUsed", "object"},
{25, "ResourceGroup", 6, "IndexUsedBy", "object"},
{25, "ResourceGroup", 7, "IndexAttr", "object"},
{25, "ResourceGroup", 8, "ServerId", "string"},
{25, "ResourceGroup", 9, "ServerVersion", "int"},
{25, "ResourceGroup", 10, "Uuid", "string"},
{25, "ResourceGroup", 11, "Unsatisfied", "string"},
{25, "ResourceGroup", 12, "Bits", "int"},
{25, "ResourceGroup", 16, "Id", "int"},
{25, "ResourceGroup", 17, "Item", "object"},
{25, "ResourceGroup", 18, "CompressedFile", "file"},
{26, "ResourceItem", 1, "Version", "int"},
{26, "ResourceItem", 2, "Expiration", "int"},
{26, "ResourceItem", 3, "Path", "string"},
{26, "ResourceItem", 4, "IndexPath", "string"},
{26, "ResourceItem", 5, "IndexUsed", "object"},
{26, "ResourceItem", 6, "IndexUsedBy", "object"},
{26, "ResourceItem", 7, "IndexAttr", "object"},
{26, "ResourceItem", 8, "ServerId", "string"},
{26, "ResourceItem", 9, "ServerVersion", "int"},
{26, "ResourceItem", 10, "Uuid", "string"},
{26, "ResourceItem", 11, "Unsatisfied", "string"},
{26, "ResourceItem", 12, "Bits", "int"},
{26, "ResourceItem", 16, "Id", "int"},
{26, "ResourceItem", 17, "String", "string"},
{26, "ResourceItem", 18, "Object", "object"},
{26, "ResourceItem", 19, "File", "file"},
{26, "ResourceItem", 20, "PreLoad", "int"},
{27, "IndexAttr", 1, "Version", "int"},
{27, "IndexAttr", 2, "Expiration", "int"},
{27, "IndexAttr", 3, "Path", "string"},
{27, "IndexAttr", 4, "IndexPath", "string"},
{27, "IndexAttr", 5, "IndexUsed", "object"},
{27, "IndexAttr", 6, "IndexUsedBy", "object"},
{27, "IndexAttr", 7, "IndexAttr", "object"},
{27, "IndexAttr", 8, "ServerId", "string"},
{27, "IndexAttr", 9, "ServerVersion", "int"},
{27, "IndexAttr", 10, "Uuid", "string"},
{27, "IndexAttr", 11, "Unsatisfied", "string"},
{27, "IndexAttr", 12, "Bits", "int"},
{27, "IndexAttr", 16, "Target", "object"},
{27, "IndexAttr", 17, "Attribute", "int"},
{27, "IndexAttr", 18, "Int", "int"},
{27, "IndexAttr", 19, "String", "string"},
{27, "IndexAttr", 20, "File", "file"},
{27, "IndexAttr", 21, "Object", "object"},
{28, "PreferencesOBSOLETE", 1, "Version", "int"},
{28, "PreferencesOBSOLETE", 2, "Expiration", "int"},
{28, "PreferencesOBSOLETE", 3, "Path", "string"},
{28, "PreferencesOBSOLETE", 4, "IndexPath", "string"},
{28, "PreferencesOBSOLETE", 5, "IndexUsed", "object"},
{28, "PreferencesOBSOLETE", 6, "IndexUsedBy", "object"},
{28, "PreferencesOBSOLETE", 7, "IndexAttr", "object"},
{28, "PreferencesOBSOLETE", 8, "ServerId", "string"},
{28, "PreferencesOBSOLETE", 9, "ServerVersion", "int"},
{28, "PreferencesOBSOLETE", 10, "Uuid", "string"},
{28, "PreferencesOBSOLETE", 11, "Unsatisfied", "string"},
{28, "PreferencesOBSOLETE", 12, "Bits", "int"},
{28, "PreferencesOBSOLETE", 16, "Progprefs", "object"},
{29, "ProgprefsOBSOLETE", 1, "Version", "int"},
{29, "ProgprefsOBSOLETE", 2, "Expiration", "int"},
{29, "ProgprefsOBSOLETE", 3, "Path", "string"},
{29, "ProgprefsOBSOLETE", 4, "IndexPath", "string"},
{29, "ProgprefsOBSOLETE", 5, "IndexUsed", "object"},
{29, "ProgprefsOBSOLETE", 6, "IndexUsedBy", "object"},
{29, "ProgprefsOBSOLETE", 7, "IndexAttr", "object"},
{29, "ProgprefsOBSOLETE", 8, "ServerId", "string"},
{29, "ProgprefsOBSOLETE", 9, "ServerVersion", "int"},
{29, "ProgprefsOBSOLETE", 10, "Uuid", "string"},
{29, "ProgprefsOBSOLETE", 11, "Unsatisfied", "string"},
{29, "ProgprefsOBSOLETE", 12, "Bits", "int"},
{29, "ProgprefsOBSOLETE", 16, "ShowType", "object"},
{29, "ProgprefsOBSOLETE", 17, "MpaaRating", "object"},
{29, "ProgprefsOBSOLETE", 18, "Country", "object"},
{29, "ProgprefsOBSOLETE", 19, "NetworkSource", "object"},
{29, "ProgprefsOBSOLETE", 20, "SourceType", "object"},
{29, "ProgprefsOBSOLETE", 21, "Advisory", "object"},
{29, "ProgprefsOBSOLETE", 22, "Actor", "object"},
{29, "ProgprefsOBSOLETE", 23, "GuestStar", "object"},
{29, "ProgprefsOBSOLETE", 24, "Director", "object"},
{29, "ProgprefsOBSOLETE", 25, "ExecProducer", "object"},
{29, "ProgprefsOBSOLETE", 26, "Producer", "object"},
{29, "ProgprefsOBSOLETE", 27, "Writer", "object"},
{29, "ProgprefsOBSOLETE", 28, "Host", "object"},
{29, "ProgprefsOBSOLETE", 29, "Genre", "object"},
{30, "IntMatchPrefOBSOLETE", 1, "Version", "int"},
{30, "IntMatchPrefOBSOLETE", 2, "Expiration", "int"},
{30, "IntMatchPrefOBSOLETE", 3, "Path", "string"},
{30, "IntMatchPrefOBSOLETE", 4, "IndexPath", "string"},
{30, "IntMatchPrefOBSOLETE", 5, "IndexUsed", "object"},
{30, "IntMatchPrefOBSOLETE", 6, "IndexUsedBy", "object"},
{30, "IntMatchPrefOBSOLETE", 7, "IndexAttr", "object"},
{30, "IntMatchPrefOBSOLETE", 8, "ServerId", "string"},
{30, "IntMatchPrefOBSOLETE", 9, "ServerVersion", "int"},
{30, "IntMatchPrefOBSOLETE", 10, "Uuid", "string"},
{30, "IntMatchPrefOBSOLETE", 11, "Unsatisfied", "string"},
{30, "IntMatchPrefOBSOLETE", 12, "Bits", "int"},
{30, "IntMatchPrefOBSOLETE", 16, "Value", "int"},
{30, "IntMatchPrefOBSOLETE", 17, "Points", "int"},
{31, "StringMatchPrefOBSOLETE", 1, "Version", "int"},
{31, "StringMatchPrefOBSOLETE", 2, "Expiration", "int"},
{31, "StringMatchPrefOBSOLETE", 3, "Path", "string"},
{31, "StringMatchPrefOBSOLETE", 4, "IndexPath", "string"},
{31, "StringMatchPrefOBSOLETE", 5, "IndexUsed", "object"},
{31, "StringMatchPrefOBSOLETE", 6, "IndexUsedBy", "object"},
{31, "StringMatchPrefOBSOLETE", 7, "IndexAttr", "object"},
{31, "StringMatchPrefOBSOLETE", 8, "ServerId", "string"},
{31, "StringMatchPrefOBSOLETE", 9, "ServerVersion", "int"},
{31, "StringMatchPrefOBSOLETE", 10, "Uuid", "string"},
{31, "StringMatchPrefOBSOLETE", 11, "Unsatisfied", "string"},
{31, "StringMatchPrefOBSOLETE", 12, "Bits", "int"},
{31, "StringMatchPrefOBSOLETE", 16, "Value", "string"},
{31, "StringMatchPrefOBSOLETE", 17, "Points", "int"},
{32, "Font", 1, "Version", "int"},
{32, "Font", 2, "Expiration", "int"},
{32, "Font", 3, "Path", "string"},
{32, "Font", 4, "IndexPath", "string"},
{32, "Font", 5, "IndexUsed", "object"},
{32, "Font", 6, "IndexUsedBy", "object"},
{32, "Font", 7, "IndexAttr", "object"},
{32, "Font", 8, "ServerId", "string"},
{32, "Font", 9, "ServerVersion", "int"},
{32, "Font", 10, "Uuid", "string"},
{32, "Font", 11, "Unsatisfied", "string"},
{32, "Font", 12, "Bits", "int"},
{32, "Font", 16, "Name", "string"},
{32, "Font", 17, "Format", "int"},
{32, "Font", 18, "Font", "file"},
{33, "ActorOBSOLETE", 1, "Version", "int"},
{33, "ActorOBSOLETE", 2, "Expiration", "int"},
{33, "ActorOBSOLETE", 3, "Path", "string"},
{33, "ActorOBSOLETE", 4, "IndexPath", "string"},
{33, "ActorOBSOLETE", 5, "IndexUsed", "object"},
{33, "ActorOBSOLETE", 6, "IndexUsedBy", "object"},
{33, "ActorOBSOLETE", 7, "IndexAttr", "object"},
{33, "ActorOBSOLETE", 8, "ServerId", "string"},
{33, "ActorOBSOLETE", 9, "ServerVersion", "int"},
{33, "ActorOBSOLETE", 10, "Uuid", "string"},
{33, "ActorOBSOLETE", 11, "Unsatisfied", "string"},
{33, "ActorOBSOLETE", 12, "Bits", "int"},
{33, "ActorOBSOLETE", 16, "Name", "string"},
{34, "Outage", 1, "Version", "int"},
{34, "Outage", 2, "Expiration", "int"},
{34, "Outage", 3, "Path", "string"},
{34, "Outage", 4, "IndexPath", "string"},
{34, "Outage", 5, "IndexUsed", "object"},
{34, "Outage", 6, "IndexUsedBy", "object"},
{34, "Outage", 7, "IndexAttr", "object"},
{34, "Outage", 8, "ServerId", "string"},
{34, "Outage", 9, "ServerVersion", "int"},
{34, "Outage", 10, "Uuid", "string"},
{34, "Outage", 11, "Unsatisfied", "string"},
{34, "Outage", 12, "Bits", "int"},
{34, "Outage", 16, "Reason", "int"},
{34, "Outage", 17, "StartTimeMs", "int"},
{34, "Outage", 18, "DurationMs", "int"},
{35, "ScheduledActionOBSOLETE", 1, "Version", "int"},
{35, "ScheduledActionOBSOLETE", 2, "Expiration", "int"},
{35, "ScheduledActionOBSOLETE", 3, "Path", "string"},
{35, "ScheduledActionOBSOLETE", 4, "IndexPath", "string"},
{35, "ScheduledActionOBSOLETE", 5, "IndexUsed", "object"},
{35, "ScheduledActionOBSOLETE", 6, "IndexUsedBy", "object"},
{35, "ScheduledActionOBSOLETE", 7, "IndexAttr", "object"},
{35, "ScheduledActionOBSOLETE", 8, "ServerId", "string"},
{35, "ScheduledActionOBSOLETE", 9, "ServerVersion", "int"},
{35, "ScheduledActionOBSOLETE", 10, "Uuid", "string"},
{35, "ScheduledActionOBSOLETE", 11, "Unsatisfied", "string"},
{35, "ScheduledActionOBSOLETE", 12, "Bits", "int"},
{35, "ScheduledActionOBSOLETE", 16, "Date", "int"},
{35, "ScheduledActionOBSOLETE", 17, "Time", "int"},
{35, "ScheduledActionOBSOLETE", 18, "Action", "int"},
{35, "ScheduledActionOBSOLETE", 19, "Recording", "object"},
{35, "ScheduledActionOBSOLETE", 20, "ToDelete", "object"},
{36, "ViewerEventGroupOBSOLETE", 1, "Version", "int"},
{36, "ViewerEventGroupOBSOLETE", 2, "Expiration", "int"},
{36, "ViewerEventGroupOBSOLETE", 3, "Path", "string"},
{36, "ViewerEventGroupOBSOLETE", 4, "IndexPath", "string"},
{36, "ViewerEventGroupOBSOLETE", 5, "IndexUsed", "object"},
{36, "ViewerEventGroupOBSOLETE", 6, "IndexUsedBy", "object"},
{36, "ViewerEventGroupOBSOLETE", 7, "IndexAttr", "object"},
{36, "ViewerEventGroupOBSOLETE", 8, "ServerId", "string"},
{36, "ViewerEventGroupOBSOLETE", 9, "ServerVersion", "int"},
{36, "ViewerEventGroupOBSOLETE", 10, "Uuid", "string"},
{36, "ViewerEventGroupOBSOLETE", 11, "Unsatisfied", "string"},
{36, "ViewerEventGroupOBSOLETE", 12, "Bits", "int"},
{36, "ViewerEventGroupOBSOLETE", 16, "Date", "int"},
{36, "ViewerEventGroupOBSOLETE", 17, "Time", "int"},
{36, "ViewerEventGroupOBSOLETE", 18, "Event", "object"},
{36, "ViewerEventGroupOBSOLETE", 19, "ViewerId", "int"},
{37, "ViewerEventOBSOLETE", 1, "Version", "int"},
{37, "ViewerEventOBSOLETE", 2, "Expiration", "int"},
{37, "ViewerEventOBSOLETE", 3, "Path", "string"},
{37, "ViewerEventOBSOLETE", 4, "IndexPath", "string"},
{37, "ViewerEventOBSOLETE", 5, "IndexUsed", "object"},
{37, "ViewerEventOBSOLETE", 6, "IndexUsedBy", "object"},
{37, "ViewerEventOBSOLETE", 7, "IndexAttr", "object"},
{37, "ViewerEventOBSOLETE", 8, "ServerId", "string"},
{37, "ViewerEventOBSOLETE", 9, "ServerVersion", "int"},
{37, "ViewerEventOBSOLETE", 10, "Uuid", "string"},
{37, "ViewerEventOBSOLETE", 11, "Unsatisfied", "string"},
{37, "ViewerEventOBSOLETE", 12, "Bits", "int"},
{37, "ViewerEventOBSOLETE", 16, "DateOfEvent", "int"},
{37, "ViewerEventOBSOLETE", 17, "TimeOfEvent", "int"},
{37, "ViewerEventOBSOLETE", 18, "DateOfContent", "int"},
{37, "ViewerEventOBSOLETE", 19, "TimeOfContent", "int"},
{37, "ViewerEventOBSOLETE", 20, "Action", "int"},
{37, "ViewerEventOBSOLETE", 21, "StationTmsId", "string"},
{38, "UnusedOBSOLETE", 1, "Version", "int"},
{38, "UnusedOBSOLETE", 2, "Expiration", "int"},
{38, "UnusedOBSOLETE", 3, "Path", "string"},
{38, "UnusedOBSOLETE", 4, "IndexPath", "string"},
{38, "UnusedOBSOLETE", 5, "IndexUsed", "object"},
{38, "UnusedOBSOLETE", 6, "IndexUsedBy", "object"},
{38, "UnusedOBSOLETE", 7, "IndexAttr", "object"},
{38, "UnusedOBSOLETE", 8, "ServerId", "string"},
{38, "UnusedOBSOLETE", 9, "ServerVersion", "int"},
{38, "UnusedOBSOLETE", 10, "Uuid", "string"},
{38, "UnusedOBSOLETE", 11, "Unsatisfied", "string"},
{38, "UnusedOBSOLETE", 12, "Bits", "int"},
{39, "RecordingPart", 1, "Version", "int"},
{39, "RecordingPart", 2, "Expiration", "int"},
{39, "RecordingPart", 3, "Path", "string"},
{39, "RecordingPart", 4, "IndexPath", "string"},
{39, "RecordingPart", 5, "IndexUsed", "object"},
{39, "RecordingPart", 6, "IndexUsedBy", "object"},
{39, "RecordingPart", 7, "IndexAttr", "object"},
{39, "RecordingPart", 8, "ServerId", "string"},
{39, "RecordingPart", 9, "ServerVersion", "int"},
{39, "RecordingPart", 10, "Uuid", "string"},
{39, "RecordingPart", 11, "Unsatisfied", "string"},
{39, "RecordingPart", 12, "Bits", "int"},
{39, "RecordingPart", 16, "Begin", "int"},
{39, "RecordingPart", 17, "End", "int"},
{39, "RecordingPart", 18, "File", "file"},
{39, "RecordingPart", 19, "Checksum", "string"},
{39, "RecordingPart", 20, "ScrambleKey", "int"},
{40, "ObjectType", 1, "Version", "int"},
{40, "ObjectType", 2, "Expiration", "int"},
{40, "ObjectType", 3, "Path", "string"},
{40, "ObjectType", 4, "IndexPath", "string"},
{40, "ObjectType", 5, "IndexUsed", "object"},
{40, "ObjectType", 6, "IndexUsedBy", "object"},
{40, "ObjectType", 7, "IndexAttr", "object"},
{40, "ObjectType", 8, "ServerId", "string"},
{40, "ObjectType", 9, "ServerVersion", "int"},
{40, "ObjectType", 10, "Uuid", "string"},
{40, "ObjectType", 11, "Unsatisfied", "string"},
{40, "ObjectType", 12, "Bits", "int"},
{40, "ObjectType", 16, "Name", "string"},
{40, "ObjectType", 17, "Index", "int"},
{40, "ObjectType", 18, "Attribute", "object"},
{40, "ObjectType", 19, "Subobject", "int"},
{40, "ObjectType", 20, "Derived", "int"},
{40, "ObjectType", 21, "Obsolete", "int"},
{41, "ObjectAttribute", 1, "Version", "int"},
{41, "ObjectAttribute", 2, "Expiration", "int"},
{41, "ObjectAttribute", 3, "Path", "string"},
{41, "ObjectAttribute", 4, "IndexPath", "string"},
{41, "ObjectAttribute", 5, "IndexUsed", "object"},
{41, "ObjectAttribute", 6, "IndexUsedBy", "object"},
{41, "ObjectAttribute", 7, "IndexAttr", "object"},
{41, "ObjectAttribute", 8, "ServerId", "string"},
{41, "ObjectAttribute", 9, "ServerVersion", "int"},
{41, "ObjectAttribute", 10, "Uuid", "string"},
{41, "ObjectAttribute", 11, "Unsatisfied", "string"},
{41, "ObjectAttribute", 12, "Bits", "int"},
{41, "ObjectAttribute", 16, "Name", "string"},
{41, "ObjectAttribute", 17, "Index", "int"},
{41, "ObjectAttribute", 18, "Type", "int"},
{41, "ObjectAttribute", 19, "Subtype", "string"},
{41, "ObjectAttribute", 20, "Arity", "int"},
{41, "ObjectAttribute", 21, "Dependency", "int"},
{41, "ObjectAttribute", 22, "Level", "int"},
{41, "ObjectAttribute", 23, "Subobject", "int"},
{41, "ObjectAttribute", 24, "Deprecated", "int"},
{41, "ObjectAttribute", 25, "DefaultInt", "int"},
{41, "ObjectAttribute", 26, "DefaultString", "string"},
{42, "SignalSource", 1, "Version", "int"},
{42, "SignalSource", 2, "Expiration", "int"},
{42, "SignalSource", 3, "Path", "string"},
{42, "SignalSource", 4, "IndexPath", "string"},
{42, "SignalSource", 5, "IndexUsed", "object"},
{42, "SignalSource", 6, "IndexUsedBy", "object"},
{42, "SignalSource", 7, "IndexAttr", "object"},
{42, "SignalSource", 8, "ServerId", "string"},
{42, "SignalSource", 9, "ServerVersion", "int"},
{42, "SignalSource", 10, "Uuid", "string"},
{42, "SignalSource", 11, "Unsatisfied", "string"},
{42, "SignalSource", 12, "Bits", "int"},
{42, "SignalSource", 16, "SignalType", "int"},
{42, "SignalSource", 17, "ProviderName", "string"},
{42, "SignalSource", 18, "Connector", "int"},
{42, "SignalSource", 19, "Channel", "object"},
{42, "SignalSource", 20, "Headend", "object"},
{42, "SignalSource", 21, "Component", "object"},
{42, "SignalSource", 22, "ComponentCode", "object"},
{42, "SignalSource", 23, "Lineup", "object"},
{42, "SignalSource", 24, "LineupSubId", "int"},
{42, "SignalSource", 25, "RFChannel", "int"},
{42, "SignalSource", 26, "DBSRemoteMethod", "int"},
{42, "SignalSource", 27, "EnterKeyRequired", "int"},
{42, "SignalSource", 28, "RecieverNumDigits", "int"},
{42, "SignalSource", 29, "CableBoxCodeNum", "int"},
{42, "SignalSource", 30, "Inventory", "string"},
{42, "SignalSource", 31, "TunerDigitDelay", "int"},
{42, "SignalSource", 32, "UnattendedTunerDigitDelay", "int"},
{42, "SignalSource", 33, "LineupType", "int"},
{42, "SignalSource", 34, "ChannelCloset", "object"},
{42, "SignalSource", 35, "CableBoxBrand", "string"},
{42, "SignalSource", 36, "VariableBitrate", "int"},
{43, "Setup", 1, "Version", "int"},
{43, "Setup", 2, "Expiration", "int"},
{43, "Setup", 3, "Path", "string"},
{43, "Setup", 4, "IndexPath", "string"},
{43, "Setup", 5, "IndexUsed", "object"},
{43, "Setup", 6, "IndexUsedBy", "object"},
{43, "Setup", 7, "IndexAttr", "object"},
{43, "Setup", 8, "ServerId", "string"},
{43, "Setup", 9, "ServerVersion", "int"},
{43, "Setup", 10, "Uuid", "string"},
{43, "Setup", 11, "Unsatisfied", "string"},
{43, "Setup", 12, "Bits", "int"},
{43, "Setup", 16, "PostalCode", "string"},
{43, "Setup", 17, "Source", "object"},
{43, "Setup", 18, "TimeZone", "int"},
{43, "Setup", 19, "DaylightSavingsPolicy", "int"},
{43, "Setup", 20, "SoundVolume", "int"},
{43, "Setup", 21, "PhoneNumber", "string"},
{43, "Setup", 22, "NetConnection", "int"},
{43, "Setup", 23, "CableType", "int"},
{43, "Setup", 24, "EncryptionKeys", "string"},
{43, "Setup", 25, "LastChannelNum", "int"},
{43, "Setup", 26, "AudioSource", "int"},
{43, "Setup", 27, "MusicVolume", "int"},
{43, "Setup", 28, "LastCallAttempt", "int"},
{43, "Setup", 29, "LastSuccessCall", "int"},
{43, "Setup", 30, "DebugMode", "int"},
{43, "Setup", 31, "DemoMode", "int"},
{43, "Setup", 32, "LastCallStatus", "string"},
{43, "Setup", 33, "RecordQuality", "int"},
{43, "Setup", 34, "Complete", "int"},
{43, "Setup", 35, "NextCallAttempt", "int"},
{43, "Setup", 36, "LocalAccessDigit", "int"},
{43, "Setup", 37, "LongDistAccessDigit", "int"},
{43, "Setup", 38, "DisableCallWaiting", "int"},
{43, "Setup", 39, "DisableCallWaitingCode", "int"},
{43, "Setup", 40, "HasPulseDialing", "int"},
{43, "Setup", 41, "AreaCodeOBSOLETE", "int"},
{43, "Setup", 42, "CountryCode", "int"},
{43, "Setup", 43, "InventoryFile", "string"},
{43, "Setup", 44, "NoPrivateBackhaul", "int"},
{43, "Setup", 45, "ServiceState", "int"},
{43, "Setup", 46, "ServiceStateExpiration", "int"},
{43, "Setup", 47, "BackgroundHour", "int"},
{43, "Setup", 48, "SerialNumber", "string"},
{43, "Setup", 49, "DisableAutoRec", "int"},
{43, "Setup", 50, "ServiceInfo", "object"},
{43, "Setup", 51, "DialPrefix", "string"},
{43, "Setup", 52, "DialMethod", "int"},
{43, "Setup", 53, "DialHookCheck", "int"},
{43, "Setup", 54, "DialToneCheck", "int"},
{43, "Setup", 55, "CallWaitingPrefix", "string"},
{43, "Setup", 56, "LastChannel", "object"},
{43, "Setup", 57, "DemoModeKeyOBSOLETE", "int"},
{43, "Setup", 58, "BannerTimeout", "int"},
{43, "Setup", 59, "LoopingDemoModeOBSOLETE", "int"},
{43, "Setup", 60, "ThumbsLogMagicNumber", "int"},
{43, "Setup", 61, "AdvancedTheme", "int"},
{43, "Setup", 62, "RemoteAddress", "int"},
{43, "Setup", 63, "VCRIrCodeNum", "int"},
{43, "Setup", 64, "SetupDate", "int"},
{43, "Setup", 65, "DolbyDigital", "int"},
{43, "Setup", 66, "AudioLanguage", "int"},
{43, "Setup", 67, "AspectRatio", "int"},
{43, "Setup", 68, "RFOutputChannel", "int"},
{43, "Setup", 69, "ScartSettings", "object"},
{43, "Setup", 70, "FrontIRBlaster", "int"},
{43, "Setup", 71, "AlternateBitrates", "int"},
{43, "Setup", 72, "TunerCount", "int"},
{44, "HeadendDayOBSOLETE", 1, "Version", "int"},
{44, "HeadendDayOBSOLETE", 2, "Expiration", "int"},
{44, "HeadendDayOBSOLETE", 3, "Path", "string"},
{44, "HeadendDayOBSOLETE", 4, "IndexPath", "string"},
{44, "HeadendDayOBSOLETE", 5, "IndexUsed", "object"},
{44, "HeadendDayOBSOLETE", 6, "IndexUsedBy", "object"},
{44, "HeadendDayOBSOLETE", 7, "IndexAttr", "object"},
{44, "HeadendDayOBSOLETE", 8, "ServerId", "string"},
{44, "HeadendDayOBSOLETE", 9, "ServerVersion", "int"},
{44, "HeadendDayOBSOLETE", 10, "Uuid", "string"},
{44, "HeadendDayOBSOLETE", 11, "Unsatisfied", "string"},
{44, "HeadendDayOBSOLETE", 12, "Bits", "int"},
{44, "HeadendDayOBSOLETE", 16, "Headend", "object"},
{44, "HeadendDayOBSOLETE", 17, "StationDay", "object"},
{45, "Lineup", 1, "Version", "int"},
{45, "Lineup", 2, "Expiration", "int"},
{45, "Lineup", 3, "Path", "string"},
{45, "Lineup", 4, "IndexPath", "string"},
{45, "Lineup", 5, "IndexUsed", "object"},
{45, "Lineup", 6, "IndexUsedBy", "object"},
{45, "Lineup", 7, "IndexAttr", "object"},
{45, "Lineup", 8, "ServerId", "string"},
{45, "Lineup", 9, "ServerVersion", "int"},
{45, "Lineup", 10, "Uuid", "string"},
{45, "Lineup", 11, "Unsatisfied", "string"},
{45, "Lineup", 12, "Bits", "int"},
{45, "Lineup", 16, "Name", "string"},
{45, "Lineup", 17, "Type", "int"},
{45, "Lineup", 18, "Channel", "object"},
{46, "ComponentCode", 1, "Version", "int"},
{46, "ComponentCode", 2, "Expiration", "int"},
{46, "ComponentCode", 3, "Path", "string"},
{46, "ComponentCode", 4, "IndexPath", "string"},
{46, "ComponentCode", 5, "IndexUsed", "object"},
{46, "ComponentCode", 6, "IndexUsedBy", "object"},
{46, "ComponentCode", 7, "IndexAttr", "object"},
{46, "ComponentCode", 8, "ServerId", "string"},
{46, "ComponentCode", 9, "ServerVersion", "int"},
{46, "ComponentCode", 10, "Uuid", "string"},
{46, "ComponentCode", 11, "Unsatisfied", "string"},
{46, "ComponentCode", 12, "Bits", "int"},
{46, "ComponentCode", 16, "Name", "string"},
{46, "ComponentCode", 17, "Code", "string"},
{47, "Component", 1, "Version", "int"},
{47, "Component", 2, "Expiration", "int"},
{47, "Component", 3, "Path", "string"},
{47, "Component", 4, "IndexPath", "string"},
{47, "Component", 5, "IndexUsed", "object"},
{47, "Component", 6, "IndexUsedBy", "object"},
{47, "Component", 7, "IndexAttr", "object"},
{47, "Component", 8, "ServerId", "string"},
{47, "Component", 9, "ServerVersion", "int"},
{47, "Component", 10, "Uuid", "string"},
{47, "Component", 11, "Unsatisfied", "string"},
{47, "Component", 12, "Bits", "int"},
{47, "Component", 16, "Name", "string"},
{47, "Component", 17, "Type", "int"},
{47, "Component", 18, "Code", "object"},
{48, "SeasonPass", 1, "Version", "int"},
{48, "SeasonPass", 2, "Expiration", "int"},
{48, "SeasonPass", 3, "Path", "string"},
{48, "SeasonPass", 4, "IndexPath", "string"},
{48, "SeasonPass", 5, "IndexUsed", "object"},
{48, "SeasonPass", 6, "IndexUsedBy", "object"},
{48, "SeasonPass", 7, "IndexAttr", "object"},
{48, "SeasonPass", 8, "ServerId", "string"},
{48, "SeasonPass", 9, "ServerVersion", "int"},
{48, "SeasonPass", 10, "Uuid", "string"},
{48, "SeasonPass", 11, "Unsatisfied", "string"},
{48, "SeasonPass", 12, "Bits", "int"},
{48, "SeasonPass", 16, "Series", "object"},
{48, "SeasonPass", 17, "Program", "object"},
{48, "SeasonPass", 18, "Station", "object"},
{48, "SeasonPass", 19, "ProcessedOBSOLETE", "object"},
{48, "SeasonPass", 20, "ProcessedDate", "int"},
{48, "SeasonPass", 21, "ProcessedTime", "int"},
{48, "SeasonPass", 22, "RecordQuality", "int"},
{48, "SeasonPass", 23, "Type", "int"},
{48, "SeasonPass", 24, "DayOfWeekOBSOLETE", "int"},
{48, "SeasonPass", 25, "Duration", "int"},
{48, "SeasonPass", 26, "StartTimeOBSOLETE", "int"},
{48, "SeasonPass", 27, "DayOfWeekLocal", "int"},
{48, "SeasonPass", 28, "StartTimeLocal", "int"},
{48, "SeasonPass", 29, "MaxRecordings", "int"},
{48, "SeasonPass", 30, "KeepTime", "int"},
{48, "SeasonPass", 31, "Priority", "int"},
{48, "SeasonPass", 32, "ProcessedStation", "object"},
{48, "SeasonPass", 33, "StartTimePadding", "int"},
{48, "SeasonPass", 34, "EndTimePadding", "int"},
{48, "SeasonPass", 35, "Theme", "object"},
{48, "SeasonPass", 36, "FirstRun", "int"},
{48, "SeasonPass", 37, "CaptureRequest", "object"},
{49, "SoundFile", 1, "Version", "int"},
{49, "SoundFile", 2, "Expiration", "int"},
{49, "SoundFile", 3, "Path", "string"},
{49, "SoundFile", 4, "IndexPath", "string"},
{49, "SoundFile", 5, "IndexUsed", "object"},
{49, "SoundFile", 6, "IndexUsedBy", "object"},
{49, "SoundFile", 7, "IndexAttr", "object"},
{49, "SoundFile", 8, "ServerId", "string"},
{49, "SoundFile", 9, "ServerVersion", "int"},
{49, "SoundFile", 10, "Uuid", "string"},
{49, "SoundFile", 11, "Unsatisfied", "string"},
{49, "SoundFile", 12, "Bits", "int"},
{49, "SoundFile", 16, "Name", "string"},
{49, "SoundFile", 17, "Format", "int"},
{49, "SoundFile", 18, "Sound", "file"},
{50, "PostalCode", 1, "Version", "int"},
{50, "PostalCode", 2, "Expiration", "int"},
{50, "PostalCode", 3, "Path", "string"},
{50, "PostalCode", 4, "IndexPath", "string"},
{50, "PostalCode", 5, "IndexUsed", "object"},
{50, "PostalCode", 6, "IndexUsedBy", "object"},
{50, "PostalCode", 7, "IndexAttr", "object"},
{50, "PostalCode", 8, "ServerId", "string"},
{50, "PostalCode", 9, "ServerVersion", "int"},
{50, "PostalCode", 10, "Uuid", "string"},
{50, "PostalCode", 11, "Unsatisfied", "string"},
{50, "PostalCode", 12, "Bits", "int"},
{50, "PostalCode", 16, "PostalCode", "string"},
{50, "PostalCode", 17, "Headend", "object"},
{50, "PostalCode", 18, "Location", "string"},
{51, "PrefsElement", 1, "Version", "int"},
{51, "PrefsElement", 2, "Expiration", "int"},
{51, "PrefsElement", 3, "Path", "string"},
{51, "PrefsElement", 4, "IndexPath", "string"},
{51, "PrefsElement", 5, "IndexUsed", "object"},
{51, "PrefsElement", 6, "IndexUsedBy", "object"},
{51, "PrefsElement", 7, "IndexAttr", "object"},
{51, "PrefsElement", 8, "ServerId", "string"},
{51, "PrefsElement", 9, "ServerVersion", "int"},
{51, "PrefsElement", 10, "Uuid", "string"},
{51, "PrefsElement", 11, "Unsatisfied", "string"},
{51, "PrefsElement", 12, "Bits", "int"},
{51, "PrefsElement", 16, "Viewer", "string"},
{51, "PrefsElement", 17, "Type", "int"},
{51, "PrefsElement", 18, "Thumbsness", "int"},
{51, "PrefsElement", 19, "IntKeyValue", "int"},
{51, "PrefsElement", 20, "StringKeyValue", "string"},
{51, "PrefsElement", 21, "Points", "int"},
{51, "PrefsElement", 22, "Item", "object"},
{51, "PrefsElement", 23, "Vector", "int"},
{52, "Person", 1, "Version", "int"},
{52, "Person", 2, "Expiration", "int"},
{52, "Person", 3, "Path", "string"},
{52, "Person", 4, "IndexPath", "string"},
{52, "Person", 5, "IndexUsed", "object"},
{52, "Person", 6, "IndexUsedBy", "object"},
{52, "Person", 7, "IndexAttr", "object"},
{52, "Person", 8, "ServerId", "string"},
{52, "Person", 9, "ServerVersion", "int"},
{52, "Person", 10, "Uuid", "string"},
{52, "Person", 11, "Unsatisfied", "string"},
{52, "Person", 12, "Bits", "int"},
{52, "Person", 16, "Name", "string"},
{52, "Person", 17, "Role", "int"},
{52, "Person", 18, "Star", "int"},
{53, "Genre", 1, "Version", "int"},
{53, "Genre", 2, "Expiration", "int"},
{53, "Genre", 3, "Path", "string"},
{53, "Genre", 4, "IndexPath", "string"},
{53, "Genre", 5, "IndexUsed", "object"},
{53, "Genre", 6, "IndexUsedBy", "object"},
{53, "Genre", 7, "IndexAttr", "object"},
{53, "Genre", 8, "ServerId", "string"},
{53, "Genre", 9, "ServerVersion", "int"},
{53, "Genre", 10, "Uuid", "string"},
{53, "Genre", 11, "Unsatisfied", "string"},
{53, "Genre", 12, "Bits", "int"},
{53, "Genre", 16, "Value", "int"},
{53, "Genre", 17, "Child", "object"},
{53, "Genre", 18, "Name", "string"},
{54, "ShowingDerivedOBSOLETE", 1, "Version", "int"},
{54, "ShowingDerivedOBSOLETE", 2, "Expiration", "int"},
{54, "ShowingDerivedOBSOLETE", 3, "Path", "string"},
{54, "ShowingDerivedOBSOLETE", 4, "IndexPath", "string"},
{54, "ShowingDerivedOBSOLETE", 5, "IndexUsed", "object"},
{54, "ShowingDerivedOBSOLETE", 6, "IndexUsedBy", "object"},
{54, "ShowingDerivedOBSOLETE", 7, "IndexAttr", "object"},
{54, "ShowingDerivedOBSOLETE", 8, "ServerId", "string"},
{54, "ShowingDerivedOBSOLETE", 9, "ServerVersion", "int"},
{54, "ShowingDerivedOBSOLETE", 10, "Uuid", "string"},
{54, "ShowingDerivedOBSOLETE", 11, "Unsatisfied", "string"},
{54, "ShowingDerivedOBSOLETE", 12, "Bits", "int"},
{54, "ShowingDerivedOBSOLETE", 16, "Station", "object"},
{54, "ShowingDerivedOBSOLETE", 17, "Program", "object"},
{54, "ShowingDerivedOBSOLETE", 18, "Date", "int"},
{54, "ShowingDerivedOBSOLETE", 19, "Time", "int"},
{54, "ShowingDerivedOBSOLETE", 20, "Showing", "object"},
{54, "ShowingDerivedOBSOLETE", 21, "Duration", "int"},
{54, "ShowingDerivedOBSOLETE", 22, "TvRating", "int"},
{55, "SeriesStationOBSOLETE", 1, "Version", "int"},
{55, "SeriesStationOBSOLETE", 2, "Expiration", "int"},
{55, "SeriesStationOBSOLETE", 3, "Path", "string"},
{55, "SeriesStationOBSOLETE", 4, "IndexPath", "string"},
{55, "SeriesStationOBSOLETE", 5, "IndexUsed", "object"},
{55, "SeriesStationOBSOLETE", 6, "IndexUsedBy", "object"},
{55, "SeriesStationOBSOLETE", 7, "IndexAttr", "object"},
{55, "SeriesStationOBSOLETE", 8, "ServerId", "string"},
{55, "SeriesStationOBSOLETE", 9, "ServerVersion", "int"},
{55, "SeriesStationOBSOLETE", 10, "Uuid", "string"},
{55, "SeriesStationOBSOLETE", 11, "Unsatisfied", "string"},
{55, "SeriesStationOBSOLETE", 12, "Bits", "int"},
{55, "SeriesStationOBSOLETE", 16, "StationId", "int"},
{55, "SeriesStationOBSOLETE", 17, "Day", "int"},
{56, "CityPostalCode", 1, "Version", "int"},
{56, "CityPostalCode", 2, "Expiration", "int"},
{56, "CityPostalCode", 3, "Path", "string"},
{56, "CityPostalCode", 4, "IndexPath", "string"},
{56, "CityPostalCode", 5, "IndexUsed", "object"},
{56, "CityPostalCode", 6, "IndexUsedBy", "object"},
{56, "CityPostalCode", 7, "IndexAttr", "object"},
{56, "CityPostalCode", 8, "ServerId", "string"},
{56, "CityPostalCode", 9, "ServerVersion", "int"},
{56, "CityPostalCode", 10, "Uuid", "string"},
{56, "CityPostalCode", 11, "Unsatisfied", "string"},
{56, "CityPostalCode", 12, "Bits", "int"},
{56, "CityPostalCode", 16, "CommunityName", "string"},
{56, "CityPostalCode", 17, "PostalCode", "string"},
{57, "IrFormat", 1, "Version", "int"},
{57, "IrFormat", 2, "Expiration", "int"},
{57, "IrFormat", 3, "Path", "string"},
{57, "IrFormat", 4, "IndexPath", "string"},
{57, "IrFormat", 5, "IndexUsed", "object"},
{57, "IrFormat", 6, "IndexUsedBy", "object"},
{57, "IrFormat", 7, "IndexAttr", "object"},
{57, "IrFormat", 8, "ServerId", "string"},
{57, "IrFormat", 9, "ServerVersion", "int"},
{57, "IrFormat", 10, "Uuid", "string"},
{57, "IrFormat", 11, "Unsatisfied", "string"},
{57, "IrFormat", 12, "Bits", "int"},
{57, "IrFormat", 16, "Id", "int"},
{57, "IrFormat", 17, "Option", "int"},
{57, "IrFormat", 18, "Outcode", "int"},
{57, "IrFormat", 19, "Logic1", "int"},
{57, "IrFormat", 20, "Logic0", "int"},
{57, "IrFormat", 21, "Lead", "int"},
{57, "IrFormat", 22, "Repeat", "int"},
{57, "IrFormat", 23, "End", "int"},
{57, "IrFormat", 24, "Timedb1", "int"},
{57, "IrFormat", 25, "Timedb2", "int"},
{57, "IrFormat", 26, "Timedb3", "int"},
{57, "IrFormat", 27, "Timedw1", "int"},
{57, "IrFormat", 28, "Timedw2", "int"},
{57, "IrFormat", 29, "Word1", "int"},
{57, "IrFormat", 30, "Word2", "int"},
{57, "IrFormat", 31, "SubroutineOBSOLETE", "string"},
{58, "IrBlastData", 1, "Version", "int"},
{58, "IrBlastData", 2, "Expiration", "int"},
{58, "IrBlastData", 3, "Path", "string"},
{58, "IrBlastData", 4, "IndexPath", "string"},
{58, "IrBlastData", 5, "IndexUsed", "object"},
{58, "IrBlastData", 6, "IndexUsedBy", "object"},
{58, "IrBlastData", 7, "IndexAttr", "object"},
{58, "IrBlastData", 8, "ServerId", "string"},
{58, "IrBlastData", 9, "ServerVersion", "int"},
{58, "IrBlastData", 10, "Uuid", "string"},
{58, "IrBlastData", 11, "Unsatisfied", "string"},
{58, "IrBlastData", 12, "Bits", "int"},
{58, "IrBlastData", 16, "Code", "int"},
{58, "IrBlastData", 17, "DevType", "string"},
{58, "IrBlastData", 18, "Format", "int"},
{58, "IrBlastData", 19, "Carrier", "int"},
{58, "IrBlastData", 20, "Syscode", "int"},
{58, "IrBlastData", 21, "SubroutineOBSOLETE", "string"},
{58, "IrBlastData", 22, "KeyCodes", "int"},
{58, "IrBlastData", 23, "NumRepeats", "int"},
{58, "IrBlastData", 24, "DigitDelay", "int"},
{59, "MessageOBSOLETE", 1, "Version", "int"},
{59, "MessageOBSOLETE", 2, "Expiration", "int"},
{59, "MessageOBSOLETE", 3, "Path", "string"},
{59, "MessageOBSOLETE", 4, "IndexPath", "string"},
{59, "MessageOBSOLETE", 5, "IndexUsed", "object"},
{59, "MessageOBSOLETE", 6, "IndexUsedBy", "object"},
{59, "MessageOBSOLETE", 7, "IndexAttr", "object"},
{59, "MessageOBSOLETE", 8, "ServerId", "string"},
{59, "MessageOBSOLETE", 9, "ServerVersion", "int"},
{59, "MessageOBSOLETE", 10, "Uuid", "string"},
{59, "MessageOBSOLETE", 11, "Unsatisfied", "string"},
{59, "MessageOBSOLETE", 12, "Bits", "int"},
{59, "MessageOBSOLETE", 16, "Title", "string"},
{59, "MessageOBSOLETE", 17, "Body", "string"},
{59, "MessageOBSOLETE", 18, "MessageId", "string"},
{59, "MessageOBSOLETE", 19, "Priority", "int"},
{59, "MessageOBSOLETE", 20, "SaveResponse", "int"},
{59, "MessageOBSOLETE", 21, "Response", "int"},
{59, "MessageOBSOLETE", 22, "Choice", "string"},
{59, "MessageOBSOLETE", 23, "RepeatCounter", "int"},
{59, "MessageOBSOLETE", 24, "ExpirationDate", "int"},
{60, "VideoClip", 1, "Version", "int"},
{60, "VideoClip", 2, "Expiration", "int"},
{60, "VideoClip", 3, "Path", "string"},
{60, "VideoClip", 4, "IndexPath", "string"},
{60, "VideoClip", 5, "IndexUsed", "object"},
{60, "VideoClip", 6, "IndexUsedBy", "object"},
{60, "VideoClip", 7, "IndexAttr", "object"},
{60, "VideoClip", 8, "ServerId", "string"},
{60, "VideoClip", 9, "ServerVersion", "int"},
{60, "VideoClip", 10, "Uuid", "string"},
{60, "VideoClip", 11, "Unsatisfied", "string"},
{60, "VideoClip", 12, "Bits", "int"},
{60, "VideoClip", 16, "Name", "string"},
{60, "VideoClip", 17, "File", "file"},
{61, "ServiceInfo", 1, "Version", "int"},
{61, "ServiceInfo", 2, "Expiration", "int"},
{61, "ServiceInfo", 3, "Path", "string"},
{61, "ServiceInfo", 4, "IndexPath", "string"},
{61, "ServiceInfo", 5, "IndexUsed", "object"},
{61, "ServiceInfo", 6, "IndexUsedBy", "object"},
{61, "ServiceInfo", 7, "IndexAttr", "object"},
{61, "ServiceInfo", 8, "ServerId", "string"},
{61, "ServiceInfo", 9, "ServerVersion", "int"},
{61, "ServiceInfo", 10, "Uuid", "string"},
{61, "ServiceInfo", 11, "Unsatisfied", "string"},
{61, "ServiceInfo", 12, "Bits", "int"},
{61, "ServiceInfo", 16, "SwSystemName", "string"},
{61, "ServiceInfo", 17, "LastCleanupDate", "int"},
{61, "ServiceInfo", 18, "LastCleanupTime", "int"},
{61, "ServiceInfo", 19, "CallInProgress", "int"},
{61, "ServiceInfo", 20, "DialConfig", "string"},
{61, "ServiceInfo", 21, "DialInNum", "string"},
{61, "ServiceInfo", 22, "DialInAreaCode", "string"},
{61, "ServiceInfo", 23, "DialInPrefix", "string"},
{61, "ServiceInfo", 24, "LocalAreaCode", "string"},
{61, "ServiceInfo", 25, "LastDialInUpdateTime", "int"},
{61, "ServiceInfo", 26, "AuthTollFree", "int"},
{61, "ServiceInfo", 27, "TollFreeNum", "string"},
{61, "ServiceInfo", 28, "CallStatusInfo", "string"},
{61, "ServiceInfo", 29, "ForceBackhaul", "int"},
{61, "ServiceInfo", 30, "PublicLogFilter", "string"},
{61, "ServiceInfo", 31, "LastSuccessPGDCall", "int"},
{61, "ServiceInfo", 32, "BackhaulDataOn", "int"},
{61, "ServiceInfo", 33, "PersonalDataOn", "int"},
{61, "ServiceInfo", 34, "ClientToken", "string"},
{61, "ServiceInfo", 35, "LastPrivBackhaul", "int"},
{61, "ServiceInfo", 36, "AltPlanYStationID", "string"},
{61, "ServiceInfo", 37, "DataGroupList", "string"},
{61, "ServiceInfo", 38, "SequenceCookie", "string"},
{62, "IrTivoFormat", 1, "Version", "int"},
{62, "IrTivoFormat", 2, "Expiration", "int"},
{62, "IrTivoFormat", 3, "Path", "string"},
{62, "IrTivoFormat", 4, "IndexPath", "string"},
{62, "IrTivoFormat", 5, "IndexUsed", "object"},
{62, "IrTivoFormat", 6, "IndexUsedBy", "object"},
{62, "IrTivoFormat", 7, "IndexAttr", "object"},
{62, "IrTivoFormat", 8, "ServerId", "string"},
{62, "IrTivoFormat", 9, "ServerVersion", "int"},
{62, "IrTivoFormat", 10, "Uuid", "string"},
{62, "IrTivoFormat", 11, "Unsatisfied", "string"},
{62, "IrTivoFormat", 12, "Bits", "int"},
{62, "IrTivoFormat", 16, "DeviceName", "string"},
{62, "IrTivoFormat", 17, "TimeSpacer", "int"},
{62, "IrTivoFormat", 18, "Dig0", "int"},
{62, "IrTivoFormat", 19, "Dig1", "int"},
{62, "IrTivoFormat", 20, "Dig2", "int"},
{62, "IrTivoFormat", 21, "Dig3", "int"},
{62, "IrTivoFormat", 22, "Dig4", "int"},
{62, "IrTivoFormat", 23, "Dig5", "int"},
{62, "IrTivoFormat", 24, "Dig6", "int"},
{62, "IrTivoFormat", 25, "Dig7", "int"},
{62, "IrTivoFormat", 26, "Dig8", "int"},
{62, "IrTivoFormat", 27, "Dig9", "int"},
{62, "IrTivoFormat", 28, "Enter", "int"},
{62, "IrTivoFormat", 29, "PowerToggle", "int"},
{62, "IrTivoFormat", 30, "PowerOn", "int"},
{62, "IrTivoFormat", 31, "PowerOff", "int"},
{62, "IrTivoFormat", 32, "ChanUp", "int"},
{62, "IrTivoFormat", 33, "ChanDown", "int"},
{62, "IrTivoFormat", 34, "SurfingDelay", "int"},
{62, "IrTivoFormat", 35, "RecordingDelay", "int"},
{62, "IrTivoFormat", 36, "Play", "int"},
{62, "IrTivoFormat", 37, "Pause", "int"},
{62, "IrTivoFormat", 38, "Stop", "int"},
{62, "IrTivoFormat", 39, "Record", "int"},
{63, "MessageBoardOBSOLETE", 1, "Version", "int"},
{63, "MessageBoardOBSOLETE", 2, "Expiration", "int"},
{63, "MessageBoardOBSOLETE", 3, "Path", "string"},
{63, "MessageBoardOBSOLETE", 4, "IndexPath", "string"},
{63, "MessageBoardOBSOLETE", 5, "IndexUsed", "object"},
{63, "MessageBoardOBSOLETE", 6, "IndexUsedBy", "object"},
{63, "MessageBoardOBSOLETE", 7, "IndexAttr", "object"},
{63, "MessageBoardOBSOLETE", 8, "ServerId", "string"},
{63, "MessageBoardOBSOLETE", 9, "ServerVersion", "int"},
{63, "MessageBoardOBSOLETE", 10, "Uuid", "string"},
{63, "MessageBoardOBSOLETE", 11, "Unsatisfied", "string"},
{63, "MessageBoardOBSOLETE", 12, "Bits", "int"},
{63, "MessageBoardOBSOLETE", 16, "NewMessageCount", "int"},
{63, "MessageBoardOBSOLETE", 17, "NextPtcmDisplayDate", "int"},
{63, "MessageBoardOBSOLETE", 18, "NextPtcmDisplayTime", "int"},
{64, "MessageItem", 1, "Version", "int"},
{64, "MessageItem", 2, "Expiration", "int"},
{64, "MessageItem", 3, "Path", "string"},
{64, "MessageItem", 4, "IndexPath", "string"},
{64, "MessageItem", 5, "IndexUsed", "object"},
{64, "MessageItem", 6, "IndexUsedBy", "object"},
{64, "MessageItem", 7, "IndexAttr", "object"},
{64, "MessageItem", 8, "ServerId", "string"},
{64, "MessageItem", 9, "ServerVersion", "int"},
{64, "MessageItem", 10, "Uuid", "string"},
{64, "MessageItem", 11, "Unsatisfied", "string"},
{64, "MessageItem", 12, "Bits", "int"},
{64, "MessageItem", 16, "Subject", "string"},
{64, "MessageItem", 17, "From", "string"},
{64, "MessageItem", 18, "FromId", "int"},
{64, "MessageItem", 19, "Body", "string"},
{64, "MessageItem", 20, "MessageId", "string"},
{64, "MessageItem", 21, "Priority", "int"},
{64, "MessageItem", 22, "ExpirationDate", "int"},
{64, "MessageItem", 23, "DateGenerated", "int"},
{64, "MessageItem", 24, "TimeGenerated", "int"},
{64, "MessageItem", 25, "DateRead", "int"},
{64, "MessageItem", 26, "TimeRead", "int"},
{64, "MessageItem", 27, "MessageFlags", "int"},
{64, "MessageItem", 28, "Deleted", "int"},
{64, "MessageItem", 29, "Destination", "int"},
{64, "MessageItem", 30, "DisplayFrequency", "int"},
{64, "MessageItem", 31, "PtcmCountRemaining", "int"},
{64, "MessageItem", 32, "LocalMessageType", "int"},
{65, "DataSet", 1, "Version", "int"},
{65, "DataSet", 2, "Expiration", "int"},
{65, "DataSet", 3, "Path", "string"},
{65, "DataSet", 4, "IndexPath", "string"},
{65, "DataSet", 5, "IndexUsed", "object"},
{65, "DataSet", 6, "IndexUsedBy", "object"},
{65, "DataSet", 7, "IndexAttr", "object"},
{65, "DataSet", 8, "ServerId", "string"},
{65, "DataSet", 9, "ServerVersion", "int"},
{65, "DataSet", 10, "Uuid", "string"},
{65, "DataSet", 11, "Unsatisfied", "string"},
{65, "DataSet", 12, "Bits", "int"},
{65, "DataSet", 16, "Name", "string"},
{65, "DataSet", 17, "Date", "int"},
{65, "DataSet", 18, "Data", "object"},
{66, "AreaCode", 1, "Version", "int"},
{66, "AreaCode", 2, "Expiration", "int"},
{66, "AreaCode", 3, "Path", "string"},
{66, "AreaCode", 4, "IndexPath", "string"},
{66, "AreaCode", 5, "IndexUsed", "object"},
{66, "AreaCode", 6, "IndexUsedBy", "object"},
{66, "AreaCode", 7, "IndexAttr", "object"},
{66, "AreaCode", 8, "ServerId", "string"},
{66, "AreaCode", 9, "ServerVersion", "int"},
{66, "AreaCode", 10, "Uuid", "string"},
{66, "AreaCode", 11, "Unsatisfied", "string"},
{66, "AreaCode", 12, "Bits", "int"},
{66, "AreaCode", 16, "DBAreaCode", "string"},
{66, "AreaCode", 17, "CityPhoneNum", "object"},
{67, "CityPhoneNum", 1, "Version", "int"},
{67, "CityPhoneNum", 2, "Expiration", "int"},
{67, "CityPhoneNum", 3, "Path", "string"},
{67, "CityPhoneNum", 4, "IndexPath", "string"},
{67, "CityPhoneNum", 5, "IndexUsed", "object"},
{67, "CityPhoneNum", 6, "IndexUsedBy", "object"},
{67, "CityPhoneNum", 7, "IndexAttr", "object"},
{67, "CityPhoneNum", 8, "ServerId", "string"},
{67, "CityPhoneNum", 9, "ServerVersion", "int"},
{67, "CityPhoneNum", 10, "Uuid", "string"},
{67, "CityPhoneNum", 11, "Unsatisfied", "string"},
{67, "CityPhoneNum", 12, "Bits", "int"},
{67, "CityPhoneNum", 16, "City", "string"},
{67, "CityPhoneNum", 17, "PhoneNum", "string"},
{68, "User", 1, "Version", "int"},
{68, "User", 2, "Expiration", "int"},
{68, "User", 3, "Path", "string"},
{68, "User", 4, "IndexPath", "string"},
{68, "User", 5, "IndexUsed", "object"},
{68, "User", 6, "IndexUsedBy", "object"},
{68, "User", 7, "IndexAttr", "object"},
{68, "User", 8, "ServerId", "string"},
{68, "User", 9, "ServerVersion", "int"},
{68, "User", 10, "Uuid", "string"},
{68, "User", 11, "Unsatisfied", "string"},
{68, "User", 12, "Bits", "int"},
{68, "User", 16, "Login", "string"},
{68, "User", 17, "Password", "string"},
{68, "User", 18, "TVRating", "int"},
{68, "User", 19, "MPAARating", "int"},
{68, "User", 20, "TVAdvisorys", "int"},
{68, "User", 21, "BlockedStation", "object"},
{68, "User", 22, "SpendingLimit", "int"},
{68, "User", 23, "BlockSwitch", "int"},
{68, "User", 24, "ApgUser", "object"},
{68, "User", 25, "PasswordDelay", "int"},
{68, "User", 26, "AutoLockOBSOLETE", "int"},
{68, "User", 27, "TvAdvisory", "object"},
{68, "User", 28, "AutoRelock", "int"},
{69, "SeriesCorrelation", 1, "Version", "int"},
{69, "SeriesCorrelation", 2, "Expiration", "int"},
{69, "SeriesCorrelation", 3, "Path", "string"},
{69, "SeriesCorrelation", 4, "IndexPath", "string"},
{69, "SeriesCorrelation", 5, "IndexUsed", "object"},
{69, "SeriesCorrelation", 6, "IndexUsedBy", "object"},
{69, "SeriesCorrelation", 7, "IndexAttr", "object"},
{69, "SeriesCorrelation", 8, "ServerId", "string"},
{69, "SeriesCorrelation", 9, "ServerVersion", "int"},
{69, "SeriesCorrelation", 10, "Uuid", "string"},
{69, "SeriesCorrelation", 11, "Unsatisfied", "string"},
{69, "SeriesCorrelation", 12, "Bits", "int"},
{69, "SeriesCorrelation", 16, "SeriesId", "string"},
{69, "SeriesCorrelation", 17, "Contributor", "object"},
{69, "SeriesCorrelation", 18, "Package", "int"},
{70, "CorrelationContributor", 1, "Version", "int"},
{70, "CorrelationContributor", 2, "Expiration", "int"},
{70, "CorrelationContributor", 3, "Path", "string"},
{70, "CorrelationContributor", 4, "IndexPath", "string"},
{70, "CorrelationContributor", 5, "IndexUsed", "object"},
{70, "CorrelationContributor", 6, "IndexUsedBy", "object"},
{70, "CorrelationContributor", 7, "IndexAttr", "object"},
{70, "CorrelationContributor", 8, "ServerId", "string"},
{70, "CorrelationContributor", 9, "ServerVersion", "int"},
{70, "CorrelationContributor", 10, "Uuid", "string"},
{70, "CorrelationContributor", 11, "Unsatisfied", "string"},
{70, "CorrelationContributor", 12, "Bits", "int"},
{70, "CorrelationContributor", 16, "SeriesId", "string"},
{70, "CorrelationContributor", 17, "Correlation", "int"},
{71, "UserInterfaceOBSOLETE", 1, "Version", "int"},
{71, "UserInterfaceOBSOLETE", 2, "Expiration", "int"},
{71, "UserInterfaceOBSOLETE", 3, "Path", "string"},
{71, "UserInterfaceOBSOLETE", 4, "IndexPath", "string"},
{71, "UserInterfaceOBSOLETE", 5, "IndexUsed", "object"},
{71, "UserInterfaceOBSOLETE", 6, "IndexUsedBy", "object"},
{71, "UserInterfaceOBSOLETE", 7, "IndexAttr", "object"},
{71, "UserInterfaceOBSOLETE", 8, "ServerId", "string"},
{71, "UserInterfaceOBSOLETE", 9, "ServerVersion", "int"},
{71, "UserInterfaceOBSOLETE", 10, "Uuid", "string"},
{71, "UserInterfaceOBSOLETE", 11, "Unsatisfied", "string"},
{71, "UserInterfaceOBSOLETE", 12, "Bits", "int"},
{71, "UserInterfaceOBSOLETE", 16, "Name", "string"},
{71, "UserInterfaceOBSOLETE", 17, "Global", "object"},
{71, "UserInterfaceOBSOLETE", 18, "Context", "object"},
{71, "UserInterfaceOBSOLETE", 19, "DefaultContext", "object"},
{72, "TuikGlobalOBSOLETE", 1, "Version", "int"},
{72, "TuikGlobalOBSOLETE", 2, "Expiration", "int"},
{72, "TuikGlobalOBSOLETE", 3, "Path", "string"},
{72, "TuikGlobalOBSOLETE", 4, "IndexPath", "string"},
{72, "TuikGlobalOBSOLETE", 5, "IndexUsed", "object"},
{72, "TuikGlobalOBSOLETE", 6, "IndexUsedBy", "object"},
{72, "TuikGlobalOBSOLETE", 7, "IndexAttr", "object"},
{72, "TuikGlobalOBSOLETE", 8, "ServerId", "string"},
{72, "TuikGlobalOBSOLETE", 9, "ServerVersion", "int"},
{72, "TuikGlobalOBSOLETE", 10, "Uuid", "string"},
{72, "TuikGlobalOBSOLETE", 11, "Unsatisfied", "string"},
{72, "TuikGlobalOBSOLETE", 12, "Bits", "int"},
{72, "TuikGlobalOBSOLETE", 16, "Name", "string"},
{72, "TuikGlobalOBSOLETE", 17, "File", "file"},
{72, "TuikGlobalOBSOLETE", 18, "Resource", "object"},
{73, "TuikContextOBSOLETE", 1, "Version", "int"},
{73, "TuikContextOBSOLETE", 2, "Expiration", "int"},
{73, "TuikContextOBSOLETE", 3, "Path", "string"},
{73, "TuikContextOBSOLETE", 4, "IndexPath", "string"},
{73, "TuikContextOBSOLETE", 5, "IndexUsed", "object"},
{73, "TuikContextOBSOLETE", 6, "IndexUsedBy", "object"},
{73, "TuikContextOBSOLETE", 7, "IndexAttr", "object"},
{73, "TuikContextOBSOLETE", 8, "ServerId", "string"},
{73, "TuikContextOBSOLETE", 9, "ServerVersion", "int"},
{73, "TuikContextOBSOLETE", 10, "Uuid", "string"},
{73, "TuikContextOBSOLETE", 11, "Unsatisfied", "string"},
{73, "TuikContextOBSOLETE", 12, "Bits", "int"},
{73, "TuikContextOBSOLETE", 16, "Name", "string"},
{73, "TuikContextOBSOLETE", 17, "Id", "string"},
{73, "TuikContextOBSOLETE", 18, "File", "file"},
{73, "TuikContextOBSOLETE", 19, "Resource", "object"},
{74, "DatabaseState", 1, "Version", "int"},
{74, "DatabaseState", 2, "Expiration", "int"},
{74, "DatabaseState", 3, "Path", "string"},
{74, "DatabaseState", 4, "IndexPath", "string"},
{74, "DatabaseState", 5, "IndexUsed", "object"},
{74, "DatabaseState", 6, "IndexUsedBy", "object"},
{74, "DatabaseState", 7, "IndexAttr", "object"},
{74, "DatabaseState", 8, "ServerId", "string"},
{74, "DatabaseState", 9, "ServerVersion", "int"},
{74, "DatabaseState", 10, "Uuid", "string"},
{74, "DatabaseState", 11, "Unsatisfied", "string"},
{74, "DatabaseState", 12, "Bits", "int"},
{74, "DatabaseState", 16, "VersionMajor", "int"},
{74, "DatabaseState", 17, "VersionMinor", "int"},
{74, "DatabaseState", 18, "GcCompletionDate", "int"},
{74, "DatabaseState", 19, "GcCompletionTime", "int"},
{74, "DatabaseState", 20, "GcIndexCompletionDate", "int"},
{74, "DatabaseState", 21, "GcIndexCompletionTime", "int"},
{74, "DatabaseState", 22, "ZapRequest", "int"},
{75, "Theme", 1, "Version", "int"},
{75, "Theme", 2, "Expiration", "int"},
{75, "Theme", 3, "Path", "string"},
{75, "Theme", 4, "IndexPath", "string"},
{75, "Theme", 5, "IndexUsed", "object"},
{75, "Theme", 6, "IndexUsedBy", "object"},
{75, "Theme", 7, "IndexAttr", "object"},
{75, "Theme", 8, "ServerId", "string"},
{75, "Theme", 9, "ServerVersion", "int"},
{75, "Theme", 10, "Uuid", "string"},
{75, "Theme", 11, "Unsatisfied", "string"},
{75, "Theme", 12, "Bits", "int"},
{75, "Theme", 16, "Name", "string"},
{75, "Theme", 17, "Director", "string"},
{75, "Theme", 18, "Actor", "string"},
{75, "Theme", 19, "KeywordPhrase", "string"},
{75, "Theme", 20, "GenreFilterPath", "int"},
{75, "Theme", 21, "ThemeType", "int"},
{75, "Theme", 22, "DirectorOp", "int"},
{75, "Theme", 23, "ActorOp", "int"},
{75, "Theme", 24, "KeywordPhraseOp", "int"},
{75, "Theme", 25, "SeasonPass", "object"},
{76, "ApgBoot", 1, "Version", "int"},
{76, "ApgBoot", 2, "Expiration", "int"},
{76, "ApgBoot", 3, "Path", "string"},
{76, "ApgBoot", 4, "IndexPath", "string"},
{76, "ApgBoot", 5, "IndexUsed", "object"},
{76, "ApgBoot", 6, "IndexUsedBy", "object"},
{76, "ApgBoot", 7, "IndexAttr", "object"},
{76, "ApgBoot", 8, "ServerId", "string"},
{76, "ApgBoot", 9, "ServerVersion", "int"},
{76, "ApgBoot", 10, "Uuid", "string"},
{76, "ApgBoot", 11, "Unsatisfied", "string"},
{76, "ApgBoot", 12, "Bits", "int"},
{76, "ApgBoot", 16, "RootCategorySystem", "object"},
{76, "ApgBoot", 17, "CaScid", "int"},
{76, "ApgBoot", 18, "PipScid", "int"},
{76, "ApgBoot", 19, "Networks", "object"},
{77, "ApgCategorySystem", 1, "Version", "int"},
{77, "ApgCategorySystem", 2, "Expiration", "int"},
{77, "ApgCategorySystem", 3, "Path", "string"},
{77, "ApgCategorySystem", 4, "IndexPath", "string"},
{77, "ApgCategorySystem", 5, "IndexUsed", "object"},
{77, "ApgCategorySystem", 6, "IndexUsedBy", "object"},
{77, "ApgCategorySystem", 7, "IndexAttr", "object"},
{77, "ApgCategorySystem", 8, "ServerId", "string"},
{77, "ApgCategorySystem", 9, "ServerVersion", "int"},
{77, "ApgCategorySystem", 10, "Uuid", "string"},
{77, "ApgCategorySystem", 11, "Unsatisfied", "string"},
{77, "ApgCategorySystem", 12, "Bits", "int"},
{77, "ApgCategorySystem", 16, "Title", "string"},
{77, "ApgCategorySystem", 17, "Labels", "object"},
{78, "ApgFrequency", 1, "Version", "int"},
{78, "ApgFrequency", 2, "Expiration", "int"},
{78, "ApgFrequency", 3, "Path", "string"},
{78, "ApgFrequency", 4, "IndexPath", "string"},
{78, "ApgFrequency", 5, "IndexUsed", "object"},
{78, "ApgFrequency", 6, "IndexUsedBy", "object"},
{78, "ApgFrequency", 7, "IndexAttr", "object"},
{78, "ApgFrequency", 8, "ServerId", "string"},
{78, "ApgFrequency", 9, "ServerVersion", "int"},
{78, "ApgFrequency", 10, "Uuid", "string"},
{78, "ApgFrequency", 11, "Unsatisfied", "string"},
{78, "ApgFrequency", 12, "Bits", "int"},
{78, "ApgFrequency", 16, "Parameters", "int"},
{78, "ApgFrequency", 17, "Lnb", "int"},
{79, "ApgNetwork", 1, "Version", "int"},
{79, "ApgNetwork", 2, "Expiration", "int"},
{79, "ApgNetwork", 3, "Path", "string"},
{79, "ApgNetwork", 4, "IndexPath", "string"},
{79, "ApgNetwork", 5, "IndexUsed", "object"},
{79, "ApgNetwork", 6, "IndexUsedBy", "object"},
{79, "ApgNetwork", 7, "IndexAttr", "object"},
{79, "ApgNetwork", 8, "ServerId", "string"},
{79, "ApgNetwork", 9, "ServerVersion", "int"},
{79, "ApgNetwork", 10, "Uuid", "string"},
{79, "ApgNetwork", 11, "Unsatisfied", "string"},
{79, "ApgNetwork", 12, "Bits", "int"},
{79, "ApgNetwork", 16, "NetworkId", "int"},
{79, "ApgNetwork", 17, "Satellite", "object"},
{80, "ApgSatellite", 1, "Version", "int"},
{80, "ApgSatellite", 2, "Expiration", "int"},
{80, "ApgSatellite", 3, "Path", "string"},
{80, "ApgSatellite", 4, "IndexPath", "string"},
{80, "ApgSatellite", 5, "IndexUsed", "object"},
{80, "ApgSatellite", 6, "IndexUsedBy", "object"},
{80, "ApgSatellite", 7, "IndexAttr", "object"},
{80, "ApgSatellite", 8, "ServerId", "string"},
{80, "ApgSatellite", 9, "ServerVersion", "int"},
{80, "ApgSatellite", 10, "Uuid", "string"},
{80, "ApgSatellite", 11, "Unsatisfied", "string"},
{80, "ApgSatellite", 12, "Bits", "int"},
{80, "ApgSatellite", 16, "OrbitalPosition", "int"},
{80, "ApgSatellite", 17, "Direction", "int"},
{80, "ApgSatellite", 18, "Frequency", "object"},
{81, "ApgCategoryLabel", 1, "Version", "int"},
{81, "ApgCategoryLabel", 2, "Expiration", "int"},
{81, "ApgCategoryLabel", 3, "Path", "string"},
{81, "ApgCategoryLabel", 4, "IndexPath", "string"},
{81, "ApgCategoryLabel", 5, "IndexUsed", "object"},
{81, "ApgCategoryLabel", 6, "IndexUsedBy", "object"},
{81, "ApgCategoryLabel", 7, "IndexAttr", "object"},
{81, "ApgCategoryLabel", 8, "ServerId", "string"},
{81, "ApgCategoryLabel", 9, "ServerVersion", "int"},
{81, "ApgCategoryLabel", 10, "Uuid", "string"},
{81, "ApgCategoryLabel", 11, "Unsatisfied", "string"},
{81, "ApgCategoryLabel", 12, "Bits", "int"},
{81, "ApgCategoryLabel", 16, "Index", "int"},
{81, "ApgCategoryLabel", 17, "Subcategory", "object"},
{81, "ApgCategoryLabel", 18, "FCoreSet", "int"},
{81, "ApgCategoryLabel", 19, "Label", "string"},
{81, "ApgCategoryLabel", 20, "AboutText", "string"},
{82, "ApgProgram", 1, "Version", "int"},
{82, "ApgProgram", 2, "Expiration", "int"},
{82, "ApgProgram", 3, "Path", "string"},
{82, "ApgProgram", 4, "IndexPath", "string"},
{82, "ApgProgram", 5, "IndexUsed", "object"},
{82, "ApgProgram", 6, "IndexUsedBy", "object"},
{82, "ApgProgram", 7, "IndexAttr", "object"},
{82, "ApgProgram", 8, "ServerId", "string"},
{82, "ApgProgram", 9, "ServerVersion", "int"},
{82, "ApgProgram", 10, "Uuid", "string"},
{82, "ApgProgram", 11, "Unsatisfied", "string"},
{82, "ApgProgram", 12, "Bits", "int"},
{82, "ApgProgram", 16, "Category", "int"},
{82, "ApgProgram", 17, "CwpDescription", "string"},
{83, "BitrateEstimate", 1, "Version", "int"},
{83, "BitrateEstimate", 2, "Expiration", "int"},
{83, "BitrateEstimate", 3, "Path", "string"},
{83, "BitrateEstimate", 4, "IndexPath", "string"},
{83, "BitrateEstimate", 5, "IndexUsed", "object"},
{83, "BitrateEstimate", 6, "IndexUsedBy", "object"},
{83, "BitrateEstimate", 7, "IndexAttr", "object"},
{83, "BitrateEstimate", 8, "ServerId", "string"},
{83, "BitrateEstimate", 9, "ServerVersion", "int"},
{83, "BitrateEstimate", 10, "Uuid", "string"},
{83, "BitrateEstimate", 11, "Unsatisfied", "string"},
{83, "BitrateEstimate", 12, "Bits", "int"},
{83, "BitrateEstimate", 16, "ProgramGuideSource", "int"},
{83, "BitrateEstimate", 17, "Genre", "int"},
{83, "BitrateEstimate", 18, "Bitrate", "int"},
{84, "MyWorldState", 1, "Version", "int"},
{84, "MyWorldState", 2, "Expiration", "int"},
{84, "MyWorldState", 3, "Path", "string"},
{84, "MyWorldState", 4, "IndexPath", "string"},
{84, "MyWorldState", 5, "IndexUsed", "object"},
{84, "MyWorldState", 6, "IndexUsedBy", "object"},
{84, "MyWorldState", 7, "IndexAttr", "object"},
{84, "MyWorldState", 8, "ServerId", "string"},
{84, "MyWorldState", 9, "ServerVersion", "int"},
{84, "MyWorldState", 10, "Uuid", "string"},
{84, "MyWorldState", 11, "Unsatisfied", "string"},
{84, "MyWorldState", 12, "Bits", "int"},
{84, "MyWorldState", 16, "LockState", "int"},
{84, "MyWorldState", 17, "LastChannel", "object"},
{84, "MyWorldState", 18, "AutoDetect", "int"},
{84, "MyWorldState", 19, "GuideStyle", "int"},
{84, "MyWorldState", 20, "GuideChannelList", "int"},
{84, "MyWorldState", 21, "StandbyModeActive", "int"},
{85, "Test3", 1, "Version", "int"},
{85, "Test3", 2, "Expiration", "int"},
{85, "Test3", 3, "Path", "string"},
{85, "Test3", 4, "IndexPath", "string"},
{85, "Test3", 5, "IndexUsed", "object"},
{85, "Test3", 6, "IndexUsedBy", "object"},
{85, "Test3", 7, "IndexAttr", "object"},
{85, "Test3", 8, "ServerId", "string"},
{85, "Test3", 9, "ServerVersion", "int"},
{85, "Test3", 10, "Uuid", "string"},
{85, "Test3", 11, "Unsatisfied", "string"},
{85, "Test3", 12, "Bits", "int"},
{85, "Test3", 16, "Test3Object", "object"},
{85, "Test3", 17, "OptionalFile", "file"},
{86, "ApgPip", 1, "Version", "int"},
{86, "ApgPip", 2, "Expiration", "int"},
{86, "ApgPip", 3, "Path", "string"},
{86, "ApgPip", 4, "IndexPath", "string"},
{86, "ApgPip", 5, "IndexUsed", "object"},
{86, "ApgPip", 6, "IndexUsedBy", "object"},
{86, "ApgPip", 7, "IndexAttr", "object"},
{86, "ApgPip", 8, "ServerId", "string"},
{86, "ApgPip", 9, "ServerVersion", "int"},
{86, "ApgPip", 10, "Uuid", "string"},
{86, "ApgPip", 11, "Unsatisfied", "string"},
{86, "ApgPip", 12, "Bits", "int"},
{86, "ApgPip", 16, "Pip", "int"},
{87, "ApgChannel", 1, "Version", "int"},
{87, "ApgChannel", 2, "Expiration", "int"},
{87, "ApgChannel", 3, "Path", "string"},
{87, "ApgChannel", 4, "IndexPath", "string"},
{87, "ApgChannel", 5, "IndexUsed", "object"},
{87, "ApgChannel", 6, "IndexUsedBy", "object"},
{87, "ApgChannel", 7, "IndexAttr", "object"},
{87, "ApgChannel", 8, "ServerId", "string"},
{87, "ApgChannel", 9, "ServerVersion", "int"},
{87, "ApgChannel", 10, "Uuid", "string"},
{87, "ApgChannel", 11, "Unsatisfied", "string"},
{87, "ApgChannel", 12, "Bits", "int"},
{87, "ApgChannel", 16, "GuideInclusionExpr", "int"},
{87, "ApgChannel", 17, "PipApgObjectId", "int"},
{87, "ApgChannel", 18, "PipMessageTag", "int"},
{87, "ApgChannel", 19, "CanBeViewed", "int"},
{87, "ApgChannel", 20, "SourceId", "int"},
{87, "ApgChannel", 21, "ShortName", "string"},
{87, "ApgChannel", 22, "ChannelDefinition", "object"},
{87, "ApgChannel", 23, "CgmsHda", "int"},
{87, "ApgChannel", 24, "CgmsA", "int"},
{87, "ApgChannel", 25, "Aps", "int"},
{87, "ApgChannel", 26, "CgmsD", "int"},
{87, "ApgChannel", 27, "NetworkIdOBSOLETE", "int"},
{87, "ApgChannel", 28, "AboutText", "string"},
{87, "ApgChannel", 29, "CwpDescription", "string"},
{87, "ApgChannel", 30, "DefaultProgram", "object"},
{87, "ApgChannel", 31, "AdditionalNetworkId", "int"},
{87, "ApgChannel", 32, "PipFrequencyIndex", "int"},
{87, "ApgChannel", 33, "PipChannelNumber", "int"},
{87, "ApgChannel", 34, "PipMessageNumber", "int"},
{87, "ApgChannel", 35, "ApgObjectId", "int"},
{87, "ApgChannel", 36, "ChannelPipIndicator", "int"},
{87, "ApgChannel", 37, "LogoIndex", "int"},
{87, "ApgChannel", 38, "BackupLogoIndex", "int"},
{87, "ApgChannel", 39, "ConditionalDescriptorExpr", "int"},
{87, "ApgChannel", 40, "LongName", "string"},
{87, "ApgChannel", 41, "Category", "int"},
{87, "ApgChannel", 42, "FrameHeaderNetworkId", "int"},
{88, "ApgChannelDefinition", 1, "Version", "int"},
{88, "ApgChannelDefinition", 2, "Expiration", "int"},
{88, "ApgChannelDefinition", 3, "Path", "string"},
{88, "ApgChannelDefinition", 4, "IndexPath", "string"},
{88, "ApgChannelDefinition", 5, "IndexUsed", "object"},
{88, "ApgChannelDefinition", 6, "IndexUsedBy", "object"},
{88, "ApgChannelDefinition", 7, "IndexAttr", "object"},
{88, "ApgChannelDefinition", 8, "ServerId", "string"},
{88, "ApgChannelDefinition", 9, "ServerVersion", "int"},
{88, "ApgChannelDefinition", 10, "Uuid", "string"},
{88, "ApgChannelDefinition", 11, "Unsatisfied", "string"},
{88, "ApgChannelDefinition", 12, "Bits", "int"},
{88, "ApgChannelDefinition", 16, "ChannelExpression", "int"},
{88, "ApgChannelDefinition", 17, "ServiceType", "int"},
{88, "ApgChannelDefinition", 18, "Spi", "int"},
{88, "ApgChannelDefinition", 19, "NumberOfStreams", "int"},
{88, "ApgChannelDefinition", 20, "FrequencyIndex", "int"},
{88, "ApgChannelDefinition", 21, "StreamType", "int"},
{88, "ApgChannelDefinition", 22, "Scid", "int"},
{88, "ApgChannelDefinition", 23, "LanguageCode", "int"},
{88, "ApgChannelDefinition", 24, "AboutText", "string"},
{88, "ApgChannelDefinition", 25, "ServiceLabel", "string"},
{89, "AudioBackground", 1, "Version", "int"},
{89, "AudioBackground", 2, "Expiration", "int"},
{89, "AudioBackground", 3, "Path", "string"},
{89, "AudioBackground", 4, "IndexPath", "string"},
{89, "AudioBackground", 5, "IndexUsed", "object"},
{89, "AudioBackground", 6, "IndexUsedBy", "object"},
{89, "AudioBackground", 7, "IndexAttr", "object"},
{89, "AudioBackground", 8, "ServerId", "string"},
{89, "AudioBackground", 9, "ServerVersion", "int"},
{89, "AudioBackground", 10, "Uuid", "string"},
{89, "AudioBackground", 11, "Unsatisfied", "string"},
{89, "AudioBackground", 12, "Bits", "int"},
{89, "AudioBackground", 16, "Enter", "object"},
{89, "AudioBackground", 17, "Loop", "object"},
{89, "AudioBackground", 18, "Name", "string"},
{90, "AudioBackgroundItem", 1, "Version", "int"},
{90, "AudioBackgroundItem", 2, "Expiration", "int"},
{90, "AudioBackgroundItem", 3, "Path", "string"},
{90, "AudioBackgroundItem", 4, "IndexPath", "string"},
{90, "AudioBackgroundItem", 5, "IndexUsed", "object"},
{90, "AudioBackgroundItem", 6, "IndexUsedBy", "object"},
{90, "AudioBackgroundItem", 7, "IndexAttr", "object"},
{90, "AudioBackgroundItem", 8, "ServerId", "string"},
{90, "AudioBackgroundItem", 9, "ServerVersion", "int"},
{90, "AudioBackgroundItem", 10, "Uuid", "string"},
{90, "AudioBackgroundItem", 11, "Unsatisfied", "string"},
{90, "AudioBackgroundItem", 12, "Bits", "int"},
{90, "AudioBackgroundItem", 16, "AudioClip", "object"},
{90, "AudioBackgroundItem", 17, "PlaybackFrequency", "int"},
{90, "AudioBackgroundItem", 18, "LastPlaybackTime", "int"},
{91, "SubRecording", 1, "Version", "int"},
{91, "SubRecording", 2, "Expiration", "int"},
{91, "SubRecording", 3, "Path", "string"},
{91, "SubRecording", 4, "IndexPath", "string"},
{91, "SubRecording", 5, "IndexUsed", "object"},
{91, "SubRecording", 6, "IndexUsedBy", "object"},
{91, "SubRecording", 7, "IndexAttr", "object"},
{91, "SubRecording", 8, "ServerId", "string"},
{91, "SubRecording", 9, "ServerVersion", "int"},
{91, "SubRecording", 10, "Uuid", "string"},
{91, "SubRecording", 11, "Unsatisfied", "string"},
{91, "SubRecording", 12, "Bits", "int"},
{91, "SubRecording", 16, "Recording", "object"},
{91, "SubRecording", 17, "OffsetSeconds", "int"},
{91, "SubRecording", 18, "OffsetNanos", "int"},
{91, "SubRecording", 19, "DurationSeconds", "int"},
{91, "SubRecording", 20, "DurationNanos", "int"},
{92, "ApgSchedule", 1, "Version", "int"},
{92, "ApgSchedule", 2, "Expiration", "int"},
{92, "ApgSchedule", 3, "Path", "string"},
{92, "ApgSchedule", 4, "IndexPath", "string"},
{92, "ApgSchedule", 5, "IndexUsed", "object"},
{92, "ApgSchedule", 6, "IndexUsedBy", "object"},
{92, "ApgSchedule", 7, "IndexAttr", "object"},
{92, "ApgSchedule", 8, "ServerId", "string"},
{92, "ApgSchedule", 9, "ServerVersion", "int"},
{92, "ApgSchedule", 10, "Uuid", "string"},
{92, "ApgSchedule", 11, "Unsatisfied", "string"},
{92, "ApgSchedule", 12, "Bits", "int"},
{92, "ApgSchedule", 16, "ApgObjectId", "int"},
{92, "ApgSchedule", 17, "StartTime", "int"},
{92, "ApgSchedule", 18, "Duration", "int"},
{92, "ApgSchedule", 19, "Showing", "object"},
{93, "ApgScheduleEvent", 1, "Version", "int"},
{93, "ApgScheduleEvent", 2, "Expiration", "int"},
{93, "ApgScheduleEvent", 3, "Path", "string"},
{93, "ApgScheduleEvent", 4, "IndexPath", "string"},
{93, "ApgScheduleEvent", 5, "IndexUsed", "object"},
{93, "ApgScheduleEvent", 6, "IndexUsedBy", "object"},
{93, "ApgScheduleEvent", 7, "IndexAttr", "object"},
{93, "ApgScheduleEvent", 8, "ServerId", "string"},
{93, "ApgScheduleEvent", 9, "ServerVersion", "int"},
{93, "ApgScheduleEvent", 10, "Uuid", "string"},
{93, "ApgScheduleEvent", 11, "Unsatisfied", "string"},
{93, "ApgScheduleEvent", 12, "Bits", "int"},
{93, "ApgScheduleEvent", 16, "PipMessageNumber", "int"},
{93, "ApgScheduleEvent", 17, "CgmsHda", "int"},
{93, "ApgScheduleEvent", 18, "CgmsA", "int"},
{93, "ApgScheduleEvent", 19, "Aps", "int"},
{93, "ApgScheduleEvent", 20, "CgmsD", "int"},
{93, "ApgScheduleEvent", 21, "EventPipIndicator", "int"},
{94, "SatConfig", 1, "Version", "int"},
{94, "SatConfig", 2, "Expiration", "int"},
{94, "SatConfig", 3, "Path", "string"},
{94, "SatConfig", 4, "IndexPath", "string"},
{94, "SatConfig", 5, "IndexUsed", "object"},
{94, "SatConfig", 6, "IndexUsedBy", "object"},
{94, "SatConfig", 7, "IndexAttr", "object"},
{94, "SatConfig", 8, "ServerId", "string"},
{94, "SatConfig", 9, "ServerVersion", "int"},
{94, "SatConfig", 10, "Uuid", "string"},
{94, "SatConfig", 11, "Unsatisfied", "string"},
{94, "SatConfig", 12, "Bits", "int"},
{94, "SatConfig", 16, "ConnectionType", "int"},
{94, "SatConfig", 17, "NetworkPortInfo", "object"},
{94, "SatConfig", 18, "DishType", "int"},
{94, "SatConfig", 19, "MarketId", "int"},
{94, "SatConfig", 20, "Css", "int"},
{94, "SatConfig", 21, "CwStat", "int"},
{95, "SatNetworkPortInfo", 1, "Version", "int"},
{95, "SatNetworkPortInfo", 2, "Expiration", "int"},
{95, "SatNetworkPortInfo", 3, "Path", "string"},
{95, "SatNetworkPortInfo", 4, "IndexPath", "string"},
{95, "SatNetworkPortInfo", 5, "IndexUsed", "object"},
{95, "SatNetworkPortInfo", 6, "IndexUsedBy", "object"},
{95, "SatNetworkPortInfo", 7, "IndexAttr", "object"},
{95, "SatNetworkPortInfo", 8, "ServerId", "string"},
{95, "SatNetworkPortInfo", 9, "ServerVersion", "int"},
{95, "SatNetworkPortInfo", 10, "Uuid", "string"},
{95, "SatNetworkPortInfo", 11, "Unsatisfied", "string"},
{95, "SatNetworkPortInfo", 12, "Bits", "int"},
{95, "SatNetworkPortInfo", 16, "NetworkId", "int"},
{95, "SatNetworkPortInfo", 17, "PolarizationA", "int"},
{95, "SatNetworkPortInfo", 18, "PolarizationB", "int"},
{95, "SatNetworkPortInfo", 19, "IsStacked", "int"},
{95, "SatNetworkPortInfo", 20, "PortNumberA", "int"},
{95, "SatNetworkPortInfo", 21, "PortNumberB", "int"},
{96, "ApgUpdateList", 1, "Version", "int"},
{96, "ApgUpdateList", 2, "Expiration", "int"},
{96, "ApgUpdateList", 3, "Path", "string"},
{96, "ApgUpdateList", 4, "IndexPath", "string"},
{96, "ApgUpdateList", 5, "IndexUsed", "object"},
{96, "ApgUpdateList", 6, "IndexUsedBy", "object"},
{96, "ApgUpdateList", 7, "IndexAttr", "object"},
{96, "ApgUpdateList", 8, "ServerId", "string"},
{96, "ApgUpdateList", 9, "ServerVersion", "int"},
{96, "ApgUpdateList", 10, "Uuid", "string"},
{96, "ApgUpdateList", 11, "Unsatisfied", "string"},
{96, "ApgUpdateList", 12, "Bits", "int"},
{96, "ApgUpdateList", 16, "NetworkId", "int"},
{96, "ApgUpdateList", 17, "ApgChannelObjectId", "int"},
{96, "ApgUpdateList", 18, "ApgChannelVersion", "int"},
{97, "LogoGroup", 1, "Version", "int"},
{97, "LogoGroup", 2, "Expiration", "int"},
{97, "LogoGroup", 3, "Path", "string"},
{97, "LogoGroup", 4, "IndexPath", "string"},
{97, "LogoGroup", 5, "IndexUsed", "object"},
{97, "LogoGroup", 6, "IndexUsedBy", "object"},
{97, "LogoGroup", 7, "IndexAttr", "object"},
{97, "LogoGroup", 8, "ServerId", "string"},
{97, "LogoGroup", 9, "ServerVersion", "int"},
{97, "LogoGroup", 10, "Uuid", "string"},
{97, "LogoGroup", 11, "Unsatisfied", "string"},
{97, "LogoGroup", 12, "Bits", "int"},
{97, "LogoGroup", 16, "LogoSpace", "int"},
{97, "LogoGroup", 17, "Index", "int"},
{97, "LogoGroup", 18, "Image", "object"},
{97, "LogoGroup", 19, "Size", "int"},
{97, "LogoGroup", 20, "Palette", "int"},
{98, "NvRam", 1, "Version", "int"},
{98, "NvRam", 2, "Expiration", "int"},
{98, "NvRam", 3, "Path", "string"},
{98, "NvRam", 4, "IndexPath", "string"},
{98, "NvRam", 5, "IndexUsed", "object"},
{98, "NvRam", 6, "IndexUsedBy", "object"},
{98, "NvRam", 7, "IndexAttr", "object"},
{98, "NvRam", 8, "ServerId", "string"},
{98, "NvRam", 9, "ServerVersion", "int"},
{98, "NvRam", 10, "Uuid", "string"},
{98, "NvRam", 11, "Unsatisfied", "string"},
{98, "NvRam", 12, "Bits", "int"},
{98, "NvRam", 16, "Index", "int"},
{98, "NvRam", 17, "PackedData", "int"},
{99, "Table", 1, "Version", "int"},
{99, "Table", 2, "Expiration", "int"},
{99, "Table", 3, "Path", "string"},
{99, "Table", 4, "IndexPath", "string"},
{99, "Table", 5, "IndexUsed", "object"},
{99, "Table", 6, "IndexUsedBy", "object"},
{99, "Table", 7, "IndexAttr", "object"},
{99, "Table", 8, "ServerId", "string"},
{99, "Table", 9, "ServerVersion", "int"},
{99, "Table", 10, "Uuid", "string"},
{99, "Table", 11, "Unsatisfied", "string"},
{99, "Table", 12, "Bits", "int"},
{99, "Table", 16, "Name", "string"},
{99, "Table", 17, "Index", "int"},
{99, "Table", 18, "StringData", "string"},
{100, "ApgDealerPip", 1, "Version", "int"},
{100, "ApgDealerPip", 2, "Expiration", "int"},
{100, "ApgDealerPip", 3, "Path", "string"},
{100, "ApgDealerPip", 4, "IndexPath", "string"},
{100, "ApgDealerPip", 5, "IndexUsed", "object"},
{100, "ApgDealerPip", 6, "IndexUsedBy", "object"},
{100, "ApgDealerPip", 7, "IndexAttr", "object"},
{100, "ApgDealerPip", 8, "ServerId", "string"},
{100, "ApgDealerPip", 9, "ServerVersion", "int"},
{100, "ApgDealerPip", 10, "Uuid", "string"},
{100, "ApgDealerPip", 11, "Unsatisfied", "string"},
{100, "ApgDealerPip", 12, "Bits", "int"},
{100, "ApgDealerPip", 16, "MessageTag", "int"},
{100, "ApgDealerPip", 17, "Pip", "int"},
{101, "ApgUser", 1, "Version", "int"},
{101, "ApgUser", 2, "Expiration", "int"},
{101, "ApgUser", 3, "Path", "string"},
{101, "ApgUser", 4, "IndexPath", "string"},
{101, "ApgUser", 5, "IndexUsed", "object"},
{101, "ApgUser", 6, "IndexUsedBy", "object"},
{101, "ApgUser", 7, "IndexAttr", "object"},
{101, "ApgUser", 8, "ServerId", "string"},
{101, "ApgUser", 9, "ServerVersion", "int"},
{101, "ApgUser", 10, "Uuid", "string"},
{101, "ApgUser", 11, "Unsatisfied", "string"},
{101, "ApgUser", 12, "Bits", "int"},
{101, "ApgUser", 16, "BlockedChannel", "object"},
{102, "ScartSettings", 1, "Version", "int"},
{102, "ScartSettings", 2, "Expiration", "int"},
{102, "ScartSettings", 3, "Path", "string"},
{102, "ScartSettings", 4, "IndexPath", "string"},
{102, "ScartSettings", 5, "IndexUsed", "object"},
{102, "ScartSettings", 6, "IndexUsedBy", "object"},
{102, "ScartSettings", 7, "IndexAttr", "object"},
{102, "ScartSettings", 8, "ServerId", "string"},
{102, "ScartSettings", 9, "ServerVersion", "int"},
{102, "ScartSettings", 10, "Uuid", "string"},
{102, "ScartSettings", 11, "Unsatisfied", "string"},
{102, "ScartSettings", 12, "Bits", "int"},
{102, "ScartSettings", 16, "AuxInput", "int"},
{102, "ScartSettings", 17, "AutoVcrBypass", "int"},
{102, "ScartSettings", 18, "TvOutput", "int"},
{102, "ScartSettings", 19, "TvScartCtrlActive", "int"},
{102, "ScartSettings", 20, "TvAudioLevel", "int"},
{103, "UpdateHistory", 1, "Version", "int"},
{103, "UpdateHistory", 2, "Expiration", "int"},
{103, "UpdateHistory", 3, "Path", "string"},
{103, "UpdateHistory", 4, "IndexPath", "string"},
{103, "UpdateHistory", 5, "IndexUsed", "object"},
{103, "UpdateHistory", 6, "IndexUsedBy", "object"},
{103, "UpdateHistory", 7, "IndexAttr", "object"},
{103, "UpdateHistory", 8, "ServerId", "string"},
{103, "UpdateHistory", 9, "ServerVersion", "int"},
{103, "UpdateHistory", 10, "Uuid", "string"},
{103, "UpdateHistory", 11, "Unsatisfied", "string"},
{103, "UpdateHistory", 12, "Bits", "int"},
{103, "UpdateHistory", 16, "WasUpgradedFrom1_3", "int"},
{104, "AolMiniGuide", 1, "Version", "int"},
{104, "AolMiniGuide", 2, "Expiration", "int"},
{104, "AolMiniGuide", 3, "Path", "string"},
{104, "AolMiniGuide", 4, "IndexPath", "string"},
{104, "AolMiniGuide", 5, "IndexUsed", "object"},
{104, "AolMiniGuide", 6, "IndexUsedBy", "object"},
{104, "AolMiniGuide", 7, "IndexAttr", "object"},
{104, "AolMiniGuide", 8, "ServerId", "string"},
{104, "AolMiniGuide", 9, "ServerVersion", "int"},
{104, "AolMiniGuide", 10, "Uuid", "string"},
{104, "AolMiniGuide", 11, "Unsatisfied", "string"},
{104, "AolMiniGuide", 12, "Bits", "int"},
{104, "AolMiniGuide", 16, "Name", "string"},
{104, "AolMiniGuide", 17, "ChannelId", "string"},
{104, "AolMiniGuide", 18, "Url", "object"},
{104, "AolMiniGuide", 19, "Description", "string"},
{105, "Url", 1, "Version", "int"},
{105, "Url", 2, "Expiration", "int"},
{105, "Url", 3, "Path", "string"},
{105, "Url", 4, "IndexPath", "string"},
{105, "Url", 5, "IndexUsed", "object"},
{105, "Url", 6, "IndexUsedBy", "object"},
{105, "Url", 7, "IndexAttr", "object"},
{105, "Url", 8, "ServerId", "string"},
{105, "Url", 9, "ServerVersion", "int"},
{105, "Url", 10, "Uuid", "string"},
{105, "Url", 11, "Unsatisfied", "string"},
{105, "Url", 12, "Bits", "int"},
{105, "Url", 16, "Url", "string"},
{105, "Url", 17, "AolType", "string"},
{105, "Url", 18, "Description", "string"},
{106, "Asset", 1, "Version", "int"},
{106, "Asset", 2, "Expiration", "int"},
{106, "Asset", 3, "Path", "string"},
{106, "Asset", 4, "IndexPath", "string"},
{106, "Asset", 5, "IndexUsed", "object"},
{106, "Asset", 6, "IndexUsedBy", "object"},
{106, "Asset", 7, "IndexAttr", "object"},
{106, "Asset", 8, "ServerId", "string"},
{106, "Asset", 9, "ServerVersion", "int"},
{106, "Asset", 10, "Uuid", "string"},
{106, "Asset", 11, "Unsatisfied", "string"},
{106, "Asset", 12, "Bits", "int"},
{106, "Asset", 16, "MimeType", "string"},
{106, "Asset", 17, "File", "file"},
{107, "AssetHolder", 1, "Version", "int"},
{107, "AssetHolder", 2, "Expiration", "int"},
{107, "AssetHolder", 3, "Path", "string"},
{107, "AssetHolder", 4, "IndexPath", "string"},
{107, "AssetHolder", 5, "IndexUsed", "object"},
{107, "AssetHolder", 6, "IndexUsedBy", "object"},
{107, "AssetHolder", 7, "IndexAttr", "object"},
{107, "AssetHolder", 8, "ServerId", "string"},
{107, "AssetHolder", 9, "ServerVersion", "int"},
{107, "AssetHolder", 10, "Uuid", "string"},
{107, "AssetHolder", 11, "Unsatisfied", "string"},
{107, "AssetHolder", 12, "Bits", "int"},
{107, "AssetHolder", 16, "PathBase", "string"},
{107, "AssetHolder", 17, "Asset", "object"},
{107, "AssetHolder", 18, "MimeType", "string"},
{107, "AssetHolder", 19, "File", "file"},
{107, "AssetHolder", 20, "AxisSpecification", "object"},
{108, "AxisSpecification", 1, "Version", "int"},
{108, "AxisSpecification", 2, "Expiration", "int"},
{108, "AxisSpecification", 3, "Path", "string"},
{108, "AxisSpecification", 4, "IndexPath", "string"},
{108, "AxisSpecification", 5, "IndexUsed", "object"},
{108, "AxisSpecification", 6, "IndexUsedBy", "object"},
{108, "AxisSpecification", 7, "IndexAttr", "object"},
{108, "AxisSpecification", 8, "ServerId", "string"},
{108, "AxisSpecification", 9, "ServerVersion", "int"},
{108, "AxisSpecification", 10, "Uuid", "string"},
{108, "AxisSpecification", 11, "Unsatisfied", "string"},
{108, "AxisSpecification", 12, "Bits", "int"},
{108, "AxisSpecification", 16, "ClientVariant", "int"},
{108, "AxisSpecification", 17, "ClientInvariant", "int"},
{109, "CaptureRequest", 1, "Version", "int"},
{109, "CaptureRequest", 2, "Expiration", "int"},
{109, "CaptureRequest", 3, "Path", "string"},
{109, "CaptureRequest", 4, "IndexPath", "string"},
{109, "CaptureRequest", 5, "IndexUsed", "object"},
{109, "CaptureRequest", 6, "IndexUsedBy", "object"},
{109, "CaptureRequest", 7, "IndexAttr", "object"},
{109, "CaptureRequest", 8, "ServerId", "string"},
{109, "CaptureRequest", 9, "ServerVersion", "int"},
{109, "CaptureRequest", 10, "Uuid", "string"},
{109, "CaptureRequest", 11, "Unsatisfied", "string"},
{109, "CaptureRequest", 12, "Bits", "int"},
{109, "CaptureRequest", 16, "ContentType", "int"},
{109, "CaptureRequest", 17, "SelectionType", "int"},
{109, "CaptureRequest", 18, "ServiceRecordingPriority", "int"},
{109, "CaptureRequest", 19, "TmsId", "string"},
{109, "CaptureRequest", 20, "Affiliation", "string"},
{109, "CaptureRequest", 21, "RecordingPriority", "int"},
{109, "CaptureRequest", 22, "RecordQuality", "int"},
{109, "CaptureRequest", 23, "BillingId", "int"},
{109, "CaptureRequest", 24, "SeasonPass", "object"},
{109, "CaptureRequest", 25, "KeepTime", "int"},
{109, "CaptureRequest", 26, "Processed", "int"},
{109, "CaptureRequest", 27, "Name", "string"},
{109, "CaptureRequest", 28, "CapturePrePadSeconds", "int"},
{109, "CaptureRequest", 29, "CapturePostPadSeconds", "int"},
{110, "ApgState", 1, "Version", "int"},
{110, "ApgState", 2, "Expiration", "int"},
{110, "ApgState", 3, "Path", "string"},
{110, "ApgState", 4, "IndexPath", "string"},
{110, "ApgState", 5, "IndexUsed", "object"},
{110, "ApgState", 6, "IndexUsedBy", "object"},
{110, "ApgState", 7, "IndexAttr", "object"},
{110, "ApgState", 8, "ServerId", "string"},
{110, "ApgState", 9, "ServerVersion", "int"},
{110, "ApgState", 10, "Uuid", "string"},
{110, "ApgState", 11, "Unsatisfied", "string"},
{110, "ApgState", 12, "Bits", "int"},
{110, "ApgState", 16, "MarkerTransponder", "int"},
{110, "ApgState", 17, "ForcedPgdChangeEnable", "int"},
{110, "ApgState", 18, "ForcedPgdChangeTimeGMT", "int"},
{110, "ApgState", 19, "ForcedPgdChangeRecheckSeconds", "int"},
{111, "DiskPartition", 1, "Version", "int"},
{111, "DiskPartition", 2, "Expiration", "int"},
{111, "DiskPartition", 3, "Path", "string"},
{111, "DiskPartition", 4, "IndexPath", "string"},
{111, "DiskPartition", 5, "IndexUsed", "object"},
{111, "DiskPartition", 6, "IndexUsedBy", "object"},
{111, "DiskPartition", 7, "IndexAttr", "object"},
{111, "DiskPartition", 8, "ServerId", "string"},
{111, "DiskPartition", 9, "ServerVersion", "int"},
{111, "DiskPartition", 10, "Uuid", "string"},
{111, "DiskPartition", 11, "Unsatisfied", "string"},
{111, "DiskPartition", 12, "Bits", "int"},
{111, "DiskPartition", 16, "Id", "int"},
{111, "DiskPartition", 17, "SizeInKb", "int"},
{112, "DiskConfiguration", 1, "Version", "int"},
{112, "DiskConfiguration", 2, "Expiration", "int"},
{112, "DiskConfiguration", 3, "Path", "string"},
{112, "DiskConfiguration", 4, "IndexPath", "string"},
{112, "DiskConfiguration", 5, "IndexUsed", "object"},
{112, "DiskConfiguration", 6, "IndexUsedBy", "object"},
{112, "DiskConfiguration", 7, "IndexAttr", "object"},
{112, "DiskConfiguration", 8, "ServerId", "string"},
{112, "DiskConfiguration", 9, "ServerVersion", "int"},
{112, "DiskConfiguration", 10, "Uuid", "string"},
{112, "DiskConfiguration", 11, "Unsatisfied", "string"},
{112, "DiskConfiguration", 12, "Bits", "int"},
{112, "DiskConfiguration", 16, "Id", "string"},
{112, "DiskConfiguration", 17, "Active", "int"},
{112, "DiskConfiguration", 18, "DiskPartitions", "object"},
{112, "DiskConfiguration", 19, "MinDiskSize", "int"},
{112, "DiskConfiguration", 20, "MaxDiskSize", "int"},
{113, "Clip", 1, "Version", "int"},
{113, "Clip", 2, "Expiration", "int"},
{113, "Clip", 3, "Path", "string"},
{113, "Clip", 4, "IndexPath", "string"},
{113, "Clip", 5, "IndexUsed", "object"},
{113, "Clip", 6, "IndexUsedBy", "object"},
{113, "Clip", 7, "IndexAttr", "object"},
{113, "Clip", 8, "ServerId", "string"},
{113, "Clip", 9, "ServerVersion", "int"},
{113, "Clip", 10, "Uuid", "string"},
{113, "Clip", 11, "Unsatisfied", "string"},
{113, "Clip", 12, "Bits", "int"},
{113, "Clip", 16, "Recording", "object"},
{113, "Clip", 17, "Number", "int"},
{113, "Clip", 18, "NameOBSOLETE", "string"},
{113, "Clip", 19, "Authorized", "int"},
{113, "Clip", 20, "AuxInfo", "object"},
{113, "Clip", 21, "OffsetSeconds", "int"},
{113, "Clip", 22, "OffsetNanos", "int"},
{113, "Clip", 23, "DurationSeconds", "int"},
{113, "Clip", 24, "DurationNanos", "int"},
{113, "Clip", 25, "ClipName", "string"},
{113, "Clip", 26, "StartAnchorNumber", "int"},
{113, "Clip", 27, "EndAnchorNumber", "int"},
{114, "AuxInfo", 1, "Version", "int"},
{114, "AuxInfo", 2, "Expiration", "int"},
{114, "AuxInfo", 3, "Path", "string"},
{114, "AuxInfo", 4, "IndexPath", "string"},
{114, "AuxInfo", 5, "IndexUsed", "object"},
{114, "AuxInfo", 6, "IndexUsedBy", "object"},
{114, "AuxInfo", 7, "IndexAttr", "object"},
{114, "AuxInfo", 8, "ServerId", "string"},
{114, "AuxInfo", 9, "ServerVersion", "int"},
{114, "AuxInfo", 10, "Uuid", "string"},
{114, "AuxInfo", 11, "Unsatisfied", "string"},
{114, "AuxInfo", 12, "Bits", "int"},
{114, "AuxInfo", 16, "Name", "string"},
{114, "AuxInfo", 17, "Data", "object"},
{115, "Anchor", 1, "Version", "int"},
{115, "Anchor", 2, "Expiration", "int"},
{115, "Anchor", 3, "Path", "string"},
{115, "Anchor", 4, "IndexPath", "string"},
{115, "Anchor", 5, "IndexUsed", "object"},
{115, "Anchor", 6, "IndexUsedBy", "object"},
{115, "Anchor", 7, "IndexAttr", "object"},
{115, "Anchor", 8, "ServerId", "string"},
{115, "Anchor", 9, "ServerVersion", "int"},
{115, "Anchor", 10, "Uuid", "string"},
{115, "Anchor", 11, "Unsatisfied", "string"},
{115, "Anchor", 12, "Bits", "int"},
{115, "Anchor", 16, "Recording", "object"},
{115, "Anchor", 17, "Number", "int"},
{115, "Anchor", 18, "OffsetSeconds", "int"},
{115, "Anchor", 19, "OffsetNanos", "int"},
{115, "Anchor", 20, "Flags", "int"},
{116, "ClipPlayList", 1, "Version", "int"},
{116, "ClipPlayList", 2, "Expiration", "int"},
{116, "ClipPlayList", 3, "Path", "string"},
{116, "ClipPlayList", 4, "IndexPath", "string"},
{116, "ClipPlayList", 5, "IndexUsed", "object"},
{116, "ClipPlayList", 6, "IndexUsedBy", "object"},
{116, "ClipPlayList", 7, "IndexAttr", "object"},
{116, "ClipPlayList", 8, "ServerId", "string"},
{116, "ClipPlayList", 9, "ServerVersion", "int"},
{116, "ClipPlayList", 10, "Uuid", "string"},
{116, "ClipPlayList", 11, "Unsatisfied", "string"},
{116, "ClipPlayList", 12, "Bits", "int"},
{116, "ClipPlayList", 16, "Name", "string"},
{116, "ClipPlayList", 17, "Description", "string"},
{116, "ClipPlayList", 18, "ClipToPlay", "string"},
{117, "MediaState", 1, "Version", "int"},
{117, "MediaState", 2, "Expiration", "int"},
{117, "MediaState", 3, "Path", "string"},
{117, "MediaState", 4, "IndexPath", "string"},
{117, "MediaState", 5, "IndexUsed", "object"},
{117, "MediaState", 6, "IndexUsedBy", "object"},
{117, "MediaState", 7, "IndexAttr", "object"},
{117, "MediaState", 8, "ServerId", "string"},
{117, "MediaState", 9, "ServerVersion", "int"},
{117, "MediaState", 10, "Uuid", "string"},
{117, "MediaState", 11, "Unsatisfied", "string"},
{117, "MediaState", 12, "Bits", "int"},
{117, "MediaState", 16, "DiskConfiguration", "int"},
{117, "MediaState", 17, "ControlByte", "int"},
{118, "UserAdvisoryRating", 1, "Version", "int"},
{118, "UserAdvisoryRating", 2, "Expiration", "int"},
{118, "UserAdvisoryRating", 3, "Path", "string"},
{118, "UserAdvisoryRating", 4, "IndexPath", "string"},
{118, "UserAdvisoryRating", 5, "IndexUsed", "object"},
{118, "UserAdvisoryRating", 6, "IndexUsedBy", "object"},
{118, "UserAdvisoryRating", 7, "IndexAttr", "object"},
{118, "UserAdvisoryRating", 8, "ServerId", "string"},
{118, "UserAdvisoryRating", 9, "ServerVersion", "int"},
{118, "UserAdvisoryRating", 10, "Uuid", "string"},
{118, "UserAdvisoryRating", 11, "Unsatisfied", "string"},
{118, "UserAdvisoryRating", 12, "Bits", "int"},
{118, "UserAdvisoryRating", 16, "TVRating", "int"},
{118, "UserAdvisoryRating", 17, "TVAdvisory", "int"},
{119, "AvalancheState", 1, "Version", "int"},
{119, "AvalancheState", 2, "Expiration", "int"},
{119, "AvalancheState", 3, "Path", "string"},
{119, "AvalancheState", 4, "IndexPath", "string"},
{119, "AvalancheState", 5, "IndexUsed", "object"},
{119, "AvalancheState", 6, "IndexUsedBy", "object"},
{119, "AvalancheState", 7, "IndexAttr", "object"},
{119, "AvalancheState", 8, "ServerId", "string"},
{119, "AvalancheState", 9, "ServerVersion", "int"},
{119, "AvalancheState", 10, "Uuid", "string"},
{119, "AvalancheState", 11, "Unsatisfied", "string"},
{119, "AvalancheState", 12, "Bits", "int"},
{119, "AvalancheState", 16, "LastSuccessDownloadDate", "int"},
{119, "AvalancheState", 17, "LastSuccessDownloadTime", "int"},
{119, "AvalancheState", 18, "LastAttemptedDownloadDate", "int"},
{119, "AvalancheState", 19, "LastAttemptedDownloadTime", "int"},
{119, "AvalancheState", 20, "LastStatus", "int"},
{119, "AvalancheState", 21, "LastSuccessDirectoryDate", "int"},
{119, "AvalancheState", 22, "LastSuccessDirectoryTime", "int"},
{119, "AvalancheState", 23, "LastAttemptedDirectoryDate", "int"},
{119, "AvalancheState", 24, "LastAttemptedDirectoryTime", "int"},
{120, "ModemState", 1, "Version", "int"},
{120, "ModemState", 2, "Expiration", "int"},
{120, "ModemState", 3, "Path", "string"},
{120, "ModemState", 4, "IndexPath", "string"},
{120, "ModemState", 5, "IndexUsed", "object"},
{120, "ModemState", 6, "IndexUsedBy", "object"},
{120, "ModemState", 7, "IndexAttr", "object"},
{120, "ModemState", 8, "ServerId", "string"},
{120, "ModemState", 9, "ServerVersion", "int"},
{120, "ModemState", 10, "Uuid", "string"},
{120, "ModemState", 11, "Unsatisfied", "string"},
{120, "ModemState", 12, "Bits", "int"},
{120, "ModemState", 16, "CurrentMode", "int"},
{120, "ModemState", 17, "ExpirationDay", "int"},
{120, "ModemState", 18, "SuccessiveFailures", "int"},
};
|