File size: 190,334 Bytes
9376a67 | 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 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 | country_sector,country,icio_sector,model_sector,mapping_version
AGO_A01,AGO,A01,energy_primary,v1_rule_based
AGO_A02,AGO,A02,energy_primary,v1_rule_based
AGO_A03,AGO,A03,energy_primary,v1_rule_based
AGO_B05,AGO,B05,energy_primary,v1_rule_based
AGO_B06,AGO,B06,energy_primary,v1_rule_based
AGO_B07,AGO,B07,energy_primary,v1_rule_based
AGO_B08,AGO,B08,energy_primary,v1_rule_based
AGO_B09,AGO,B09,energy_primary,v1_rule_based
AGO_C10T12,AGO,C10T12,retail_consumer,v1_rule_based
AGO_C13T15,AGO,C13T15,retail_consumer,v1_rule_based
AGO_C16,AGO,C16,manufacturing_other,v1_rule_based
AGO_C17_18,AGO,C17_18,manufacturing_other,v1_rule_based
AGO_C19,AGO,C19,manufacturing_other,v1_rule_based
AGO_C20,AGO,C20,manufacturing_other,v1_rule_based
AGO_C21,AGO,C21,pharma,v1_rule_based
AGO_C22,AGO,C22,manufacturing_other,v1_rule_based
AGO_C23,AGO,C23,manufacturing_other,v1_rule_based
AGO_C24A,AGO,C24A,steel_aluminum,v1_rule_based
AGO_C24B,AGO,C24B,steel_aluminum,v1_rule_based
AGO_C25,AGO,C25,steel_aluminum,v1_rule_based
AGO_C26,AGO,C26,manufacturing_other,v1_rule_based
AGO_C27,AGO,C27,manufacturing_other,v1_rule_based
AGO_C28,AGO,C28,manufacturing_other,v1_rule_based
AGO_C29,AGO,C29,manufacturing_other,v1_rule_based
AGO_C301,AGO,C301,manufacturing_other,v1_rule_based
AGO_C302T309,AGO,C302T309,manufacturing_other,v1_rule_based
AGO_C31T33,AGO,C31T33,retail_consumer,v1_rule_based
AGO_D,AGO,D,energy_primary,v1_rule_based
AGO_E,AGO,E,energy_primary,v1_rule_based
AGO_F,AGO,F,services_other,v1_rule_based
AGO_G,AGO,G,retail_consumer,v1_rule_based
AGO_H49,AGO,H49,services_other,v1_rule_based
AGO_H50,AGO,H50,services_other,v1_rule_based
AGO_H51,AGO,H51,services_other,v1_rule_based
AGO_H52,AGO,H52,services_other,v1_rule_based
AGO_H53,AGO,H53,services_other,v1_rule_based
AGO_I,AGO,I,retail_consumer,v1_rule_based
AGO_J58T60,AGO,J58T60,services_other,v1_rule_based
AGO_J61,AGO,J61,services_other,v1_rule_based
AGO_J62_63,AGO,J62_63,services_other,v1_rule_based
AGO_K,AGO,K,services_other,v1_rule_based
AGO_L,AGO,L,services_other,v1_rule_based
AGO_M,AGO,M,services_other,v1_rule_based
AGO_N,AGO,N,services_other,v1_rule_based
AGO_O,AGO,O,services_other,v1_rule_based
AGO_P,AGO,P,services_other,v1_rule_based
AGO_Q,AGO,Q,services_other,v1_rule_based
AGO_R,AGO,R,services_other,v1_rule_based
AGO_S,AGO,S,services_other,v1_rule_based
AGO_T,AGO,T,services_other,v1_rule_based
ARE_A01,ARE,A01,energy_primary,v1_rule_based
ARE_A02,ARE,A02,energy_primary,v1_rule_based
ARE_A03,ARE,A03,energy_primary,v1_rule_based
ARE_B05,ARE,B05,energy_primary,v1_rule_based
ARE_B06,ARE,B06,energy_primary,v1_rule_based
ARE_B07,ARE,B07,energy_primary,v1_rule_based
ARE_B08,ARE,B08,energy_primary,v1_rule_based
ARE_B09,ARE,B09,energy_primary,v1_rule_based
ARE_C10T12,ARE,C10T12,retail_consumer,v1_rule_based
ARE_C13T15,ARE,C13T15,retail_consumer,v1_rule_based
ARE_C16,ARE,C16,manufacturing_other,v1_rule_based
ARE_C17_18,ARE,C17_18,manufacturing_other,v1_rule_based
ARE_C19,ARE,C19,manufacturing_other,v1_rule_based
ARE_C20,ARE,C20,manufacturing_other,v1_rule_based
ARE_C21,ARE,C21,pharma,v1_rule_based
ARE_C22,ARE,C22,manufacturing_other,v1_rule_based
ARE_C23,ARE,C23,manufacturing_other,v1_rule_based
ARE_C24A,ARE,C24A,steel_aluminum,v1_rule_based
ARE_C24B,ARE,C24B,steel_aluminum,v1_rule_based
ARE_C25,ARE,C25,steel_aluminum,v1_rule_based
ARE_C26,ARE,C26,manufacturing_other,v1_rule_based
ARE_C27,ARE,C27,manufacturing_other,v1_rule_based
ARE_C28,ARE,C28,manufacturing_other,v1_rule_based
ARE_C29,ARE,C29,manufacturing_other,v1_rule_based
ARE_C301,ARE,C301,manufacturing_other,v1_rule_based
ARE_C302T309,ARE,C302T309,manufacturing_other,v1_rule_based
ARE_C31T33,ARE,C31T33,retail_consumer,v1_rule_based
ARE_D,ARE,D,energy_primary,v1_rule_based
ARE_E,ARE,E,energy_primary,v1_rule_based
ARE_F,ARE,F,services_other,v1_rule_based
ARE_G,ARE,G,retail_consumer,v1_rule_based
ARE_H49,ARE,H49,services_other,v1_rule_based
ARE_H50,ARE,H50,services_other,v1_rule_based
ARE_H51,ARE,H51,services_other,v1_rule_based
ARE_H52,ARE,H52,services_other,v1_rule_based
ARE_H53,ARE,H53,services_other,v1_rule_based
ARE_I,ARE,I,retail_consumer,v1_rule_based
ARE_J58T60,ARE,J58T60,services_other,v1_rule_based
ARE_J61,ARE,J61,services_other,v1_rule_based
ARE_J62_63,ARE,J62_63,services_other,v1_rule_based
ARE_K,ARE,K,services_other,v1_rule_based
ARE_L,ARE,L,services_other,v1_rule_based
ARE_M,ARE,M,services_other,v1_rule_based
ARE_N,ARE,N,services_other,v1_rule_based
ARE_O,ARE,O,services_other,v1_rule_based
ARE_P,ARE,P,services_other,v1_rule_based
ARE_Q,ARE,Q,services_other,v1_rule_based
ARE_R,ARE,R,services_other,v1_rule_based
ARE_S,ARE,S,services_other,v1_rule_based
ARE_T,ARE,T,services_other,v1_rule_based
ARG_A01,ARG,A01,energy_primary,v1_rule_based
ARG_A02,ARG,A02,energy_primary,v1_rule_based
ARG_A03,ARG,A03,energy_primary,v1_rule_based
ARG_B05,ARG,B05,energy_primary,v1_rule_based
ARG_B06,ARG,B06,energy_primary,v1_rule_based
ARG_B07,ARG,B07,energy_primary,v1_rule_based
ARG_B08,ARG,B08,energy_primary,v1_rule_based
ARG_B09,ARG,B09,energy_primary,v1_rule_based
ARG_C10T12,ARG,C10T12,retail_consumer,v1_rule_based
ARG_C13T15,ARG,C13T15,retail_consumer,v1_rule_based
ARG_C16,ARG,C16,manufacturing_other,v1_rule_based
ARG_C17_18,ARG,C17_18,manufacturing_other,v1_rule_based
ARG_C19,ARG,C19,manufacturing_other,v1_rule_based
ARG_C20,ARG,C20,manufacturing_other,v1_rule_based
ARG_C21,ARG,C21,pharma,v1_rule_based
ARG_C22,ARG,C22,manufacturing_other,v1_rule_based
ARG_C23,ARG,C23,manufacturing_other,v1_rule_based
ARG_C24A,ARG,C24A,steel_aluminum,v1_rule_based
ARG_C24B,ARG,C24B,steel_aluminum,v1_rule_based
ARG_C25,ARG,C25,steel_aluminum,v1_rule_based
ARG_C26,ARG,C26,manufacturing_other,v1_rule_based
ARG_C27,ARG,C27,manufacturing_other,v1_rule_based
ARG_C28,ARG,C28,manufacturing_other,v1_rule_based
ARG_C29,ARG,C29,manufacturing_other,v1_rule_based
ARG_C301,ARG,C301,manufacturing_other,v1_rule_based
ARG_C302T309,ARG,C302T309,manufacturing_other,v1_rule_based
ARG_C31T33,ARG,C31T33,retail_consumer,v1_rule_based
ARG_D,ARG,D,energy_primary,v1_rule_based
ARG_E,ARG,E,energy_primary,v1_rule_based
ARG_F,ARG,F,services_other,v1_rule_based
ARG_G,ARG,G,retail_consumer,v1_rule_based
ARG_H49,ARG,H49,services_other,v1_rule_based
ARG_H50,ARG,H50,services_other,v1_rule_based
ARG_H51,ARG,H51,services_other,v1_rule_based
ARG_H52,ARG,H52,services_other,v1_rule_based
ARG_H53,ARG,H53,services_other,v1_rule_based
ARG_I,ARG,I,retail_consumer,v1_rule_based
ARG_J58T60,ARG,J58T60,services_other,v1_rule_based
ARG_J61,ARG,J61,services_other,v1_rule_based
ARG_J62_63,ARG,J62_63,services_other,v1_rule_based
ARG_K,ARG,K,services_other,v1_rule_based
ARG_L,ARG,L,services_other,v1_rule_based
ARG_M,ARG,M,services_other,v1_rule_based
ARG_N,ARG,N,services_other,v1_rule_based
ARG_O,ARG,O,services_other,v1_rule_based
ARG_P,ARG,P,services_other,v1_rule_based
ARG_Q,ARG,Q,services_other,v1_rule_based
ARG_R,ARG,R,services_other,v1_rule_based
ARG_S,ARG,S,services_other,v1_rule_based
ARG_T,ARG,T,services_other,v1_rule_based
AUS_A01,AUS,A01,energy_primary,v1_rule_based
AUS_A02,AUS,A02,energy_primary,v1_rule_based
AUS_A03,AUS,A03,energy_primary,v1_rule_based
AUS_B05,AUS,B05,energy_primary,v1_rule_based
AUS_B06,AUS,B06,energy_primary,v1_rule_based
AUS_B07,AUS,B07,energy_primary,v1_rule_based
AUS_B08,AUS,B08,energy_primary,v1_rule_based
AUS_B09,AUS,B09,energy_primary,v1_rule_based
AUS_C10T12,AUS,C10T12,retail_consumer,v1_rule_based
AUS_C13T15,AUS,C13T15,retail_consumer,v1_rule_based
AUS_C16,AUS,C16,manufacturing_other,v1_rule_based
AUS_C17_18,AUS,C17_18,manufacturing_other,v1_rule_based
AUS_C19,AUS,C19,manufacturing_other,v1_rule_based
AUS_C20,AUS,C20,manufacturing_other,v1_rule_based
AUS_C21,AUS,C21,pharma,v1_rule_based
AUS_C22,AUS,C22,manufacturing_other,v1_rule_based
AUS_C23,AUS,C23,manufacturing_other,v1_rule_based
AUS_C24A,AUS,C24A,steel_aluminum,v1_rule_based
AUS_C24B,AUS,C24B,steel_aluminum,v1_rule_based
AUS_C25,AUS,C25,steel_aluminum,v1_rule_based
AUS_C26,AUS,C26,manufacturing_other,v1_rule_based
AUS_C27,AUS,C27,manufacturing_other,v1_rule_based
AUS_C28,AUS,C28,manufacturing_other,v1_rule_based
AUS_C29,AUS,C29,manufacturing_other,v1_rule_based
AUS_C301,AUS,C301,manufacturing_other,v1_rule_based
AUS_C302T309,AUS,C302T309,manufacturing_other,v1_rule_based
AUS_C31T33,AUS,C31T33,retail_consumer,v1_rule_based
AUS_D,AUS,D,energy_primary,v1_rule_based
AUS_E,AUS,E,energy_primary,v1_rule_based
AUS_F,AUS,F,services_other,v1_rule_based
AUS_G,AUS,G,retail_consumer,v1_rule_based
AUS_H49,AUS,H49,services_other,v1_rule_based
AUS_H50,AUS,H50,services_other,v1_rule_based
AUS_H51,AUS,H51,services_other,v1_rule_based
AUS_H52,AUS,H52,services_other,v1_rule_based
AUS_H53,AUS,H53,services_other,v1_rule_based
AUS_I,AUS,I,retail_consumer,v1_rule_based
AUS_J58T60,AUS,J58T60,services_other,v1_rule_based
AUS_J61,AUS,J61,services_other,v1_rule_based
AUS_J62_63,AUS,J62_63,services_other,v1_rule_based
AUS_K,AUS,K,services_other,v1_rule_based
AUS_L,AUS,L,services_other,v1_rule_based
AUS_M,AUS,M,services_other,v1_rule_based
AUS_N,AUS,N,services_other,v1_rule_based
AUS_O,AUS,O,services_other,v1_rule_based
AUS_P,AUS,P,services_other,v1_rule_based
AUS_Q,AUS,Q,services_other,v1_rule_based
AUS_R,AUS,R,services_other,v1_rule_based
AUS_S,AUS,S,services_other,v1_rule_based
AUS_T,AUS,T,services_other,v1_rule_based
AUT_A01,AUT,A01,energy_primary,v1_rule_based
AUT_A02,AUT,A02,energy_primary,v1_rule_based
AUT_A03,AUT,A03,energy_primary,v1_rule_based
AUT_B05,AUT,B05,energy_primary,v1_rule_based
AUT_B06,AUT,B06,energy_primary,v1_rule_based
AUT_B07,AUT,B07,energy_primary,v1_rule_based
AUT_B08,AUT,B08,energy_primary,v1_rule_based
AUT_B09,AUT,B09,energy_primary,v1_rule_based
AUT_C10T12,AUT,C10T12,retail_consumer,v1_rule_based
AUT_C13T15,AUT,C13T15,retail_consumer,v1_rule_based
AUT_C16,AUT,C16,manufacturing_other,v1_rule_based
AUT_C17_18,AUT,C17_18,manufacturing_other,v1_rule_based
AUT_C19,AUT,C19,manufacturing_other,v1_rule_based
AUT_C20,AUT,C20,manufacturing_other,v1_rule_based
AUT_C21,AUT,C21,pharma,v1_rule_based
AUT_C22,AUT,C22,manufacturing_other,v1_rule_based
AUT_C23,AUT,C23,manufacturing_other,v1_rule_based
AUT_C24A,AUT,C24A,steel_aluminum,v1_rule_based
AUT_C24B,AUT,C24B,steel_aluminum,v1_rule_based
AUT_C25,AUT,C25,steel_aluminum,v1_rule_based
AUT_C26,AUT,C26,manufacturing_other,v1_rule_based
AUT_C27,AUT,C27,manufacturing_other,v1_rule_based
AUT_C28,AUT,C28,manufacturing_other,v1_rule_based
AUT_C29,AUT,C29,manufacturing_other,v1_rule_based
AUT_C301,AUT,C301,manufacturing_other,v1_rule_based
AUT_C302T309,AUT,C302T309,manufacturing_other,v1_rule_based
AUT_C31T33,AUT,C31T33,retail_consumer,v1_rule_based
AUT_D,AUT,D,energy_primary,v1_rule_based
AUT_E,AUT,E,energy_primary,v1_rule_based
AUT_F,AUT,F,services_other,v1_rule_based
AUT_G,AUT,G,retail_consumer,v1_rule_based
AUT_H49,AUT,H49,services_other,v1_rule_based
AUT_H50,AUT,H50,services_other,v1_rule_based
AUT_H51,AUT,H51,services_other,v1_rule_based
AUT_H52,AUT,H52,services_other,v1_rule_based
AUT_H53,AUT,H53,services_other,v1_rule_based
AUT_I,AUT,I,retail_consumer,v1_rule_based
AUT_J58T60,AUT,J58T60,services_other,v1_rule_based
AUT_J61,AUT,J61,services_other,v1_rule_based
AUT_J62_63,AUT,J62_63,services_other,v1_rule_based
AUT_K,AUT,K,services_other,v1_rule_based
AUT_L,AUT,L,services_other,v1_rule_based
AUT_M,AUT,M,services_other,v1_rule_based
AUT_N,AUT,N,services_other,v1_rule_based
AUT_O,AUT,O,services_other,v1_rule_based
AUT_P,AUT,P,services_other,v1_rule_based
AUT_Q,AUT,Q,services_other,v1_rule_based
AUT_R,AUT,R,services_other,v1_rule_based
AUT_S,AUT,S,services_other,v1_rule_based
AUT_T,AUT,T,services_other,v1_rule_based
BEL_A01,BEL,A01,energy_primary,v1_rule_based
BEL_A02,BEL,A02,energy_primary,v1_rule_based
BEL_A03,BEL,A03,energy_primary,v1_rule_based
BEL_B05,BEL,B05,energy_primary,v1_rule_based
BEL_B06,BEL,B06,energy_primary,v1_rule_based
BEL_B07,BEL,B07,energy_primary,v1_rule_based
BEL_B08,BEL,B08,energy_primary,v1_rule_based
BEL_B09,BEL,B09,energy_primary,v1_rule_based
BEL_C10T12,BEL,C10T12,retail_consumer,v1_rule_based
BEL_C13T15,BEL,C13T15,retail_consumer,v1_rule_based
BEL_C16,BEL,C16,manufacturing_other,v1_rule_based
BEL_C17_18,BEL,C17_18,manufacturing_other,v1_rule_based
BEL_C19,BEL,C19,manufacturing_other,v1_rule_based
BEL_C20,BEL,C20,manufacturing_other,v1_rule_based
BEL_C21,BEL,C21,pharma,v1_rule_based
BEL_C22,BEL,C22,manufacturing_other,v1_rule_based
BEL_C23,BEL,C23,manufacturing_other,v1_rule_based
BEL_C24A,BEL,C24A,steel_aluminum,v1_rule_based
BEL_C24B,BEL,C24B,steel_aluminum,v1_rule_based
BEL_C25,BEL,C25,steel_aluminum,v1_rule_based
BEL_C26,BEL,C26,manufacturing_other,v1_rule_based
BEL_C27,BEL,C27,manufacturing_other,v1_rule_based
BEL_C28,BEL,C28,manufacturing_other,v1_rule_based
BEL_C29,BEL,C29,manufacturing_other,v1_rule_based
BEL_C301,BEL,C301,manufacturing_other,v1_rule_based
BEL_C302T309,BEL,C302T309,manufacturing_other,v1_rule_based
BEL_C31T33,BEL,C31T33,retail_consumer,v1_rule_based
BEL_D,BEL,D,energy_primary,v1_rule_based
BEL_E,BEL,E,energy_primary,v1_rule_based
BEL_F,BEL,F,services_other,v1_rule_based
BEL_G,BEL,G,retail_consumer,v1_rule_based
BEL_H49,BEL,H49,services_other,v1_rule_based
BEL_H50,BEL,H50,services_other,v1_rule_based
BEL_H51,BEL,H51,services_other,v1_rule_based
BEL_H52,BEL,H52,services_other,v1_rule_based
BEL_H53,BEL,H53,services_other,v1_rule_based
BEL_I,BEL,I,retail_consumer,v1_rule_based
BEL_J58T60,BEL,J58T60,services_other,v1_rule_based
BEL_J61,BEL,J61,services_other,v1_rule_based
BEL_J62_63,BEL,J62_63,services_other,v1_rule_based
BEL_K,BEL,K,services_other,v1_rule_based
BEL_L,BEL,L,services_other,v1_rule_based
BEL_M,BEL,M,services_other,v1_rule_based
BEL_N,BEL,N,services_other,v1_rule_based
BEL_O,BEL,O,services_other,v1_rule_based
BEL_P,BEL,P,services_other,v1_rule_based
BEL_Q,BEL,Q,services_other,v1_rule_based
BEL_R,BEL,R,services_other,v1_rule_based
BEL_S,BEL,S,services_other,v1_rule_based
BEL_T,BEL,T,services_other,v1_rule_based
BGD_A01,BGD,A01,energy_primary,v1_rule_based
BGD_A02,BGD,A02,energy_primary,v1_rule_based
BGD_A03,BGD,A03,energy_primary,v1_rule_based
BGD_B05,BGD,B05,energy_primary,v1_rule_based
BGD_B06,BGD,B06,energy_primary,v1_rule_based
BGD_B07,BGD,B07,energy_primary,v1_rule_based
BGD_B08,BGD,B08,energy_primary,v1_rule_based
BGD_B09,BGD,B09,energy_primary,v1_rule_based
BGD_C10T12,BGD,C10T12,retail_consumer,v1_rule_based
BGD_C13T15,BGD,C13T15,retail_consumer,v1_rule_based
BGD_C16,BGD,C16,manufacturing_other,v1_rule_based
BGD_C17_18,BGD,C17_18,manufacturing_other,v1_rule_based
BGD_C19,BGD,C19,manufacturing_other,v1_rule_based
BGD_C20,BGD,C20,manufacturing_other,v1_rule_based
BGD_C21,BGD,C21,pharma,v1_rule_based
BGD_C22,BGD,C22,manufacturing_other,v1_rule_based
BGD_C23,BGD,C23,manufacturing_other,v1_rule_based
BGD_C24A,BGD,C24A,steel_aluminum,v1_rule_based
BGD_C24B,BGD,C24B,steel_aluminum,v1_rule_based
BGD_C25,BGD,C25,steel_aluminum,v1_rule_based
BGD_C26,BGD,C26,manufacturing_other,v1_rule_based
BGD_C27,BGD,C27,manufacturing_other,v1_rule_based
BGD_C28,BGD,C28,manufacturing_other,v1_rule_based
BGD_C29,BGD,C29,manufacturing_other,v1_rule_based
BGD_C301,BGD,C301,manufacturing_other,v1_rule_based
BGD_C302T309,BGD,C302T309,manufacturing_other,v1_rule_based
BGD_C31T33,BGD,C31T33,retail_consumer,v1_rule_based
BGD_D,BGD,D,energy_primary,v1_rule_based
BGD_E,BGD,E,energy_primary,v1_rule_based
BGD_F,BGD,F,services_other,v1_rule_based
BGD_G,BGD,G,retail_consumer,v1_rule_based
BGD_H49,BGD,H49,services_other,v1_rule_based
BGD_H50,BGD,H50,services_other,v1_rule_based
BGD_H51,BGD,H51,services_other,v1_rule_based
BGD_H52,BGD,H52,services_other,v1_rule_based
BGD_H53,BGD,H53,services_other,v1_rule_based
BGD_I,BGD,I,retail_consumer,v1_rule_based
BGD_J58T60,BGD,J58T60,services_other,v1_rule_based
BGD_J61,BGD,J61,services_other,v1_rule_based
BGD_J62_63,BGD,J62_63,services_other,v1_rule_based
BGD_K,BGD,K,services_other,v1_rule_based
BGD_L,BGD,L,services_other,v1_rule_based
BGD_M,BGD,M,services_other,v1_rule_based
BGD_N,BGD,N,services_other,v1_rule_based
BGD_O,BGD,O,services_other,v1_rule_based
BGD_P,BGD,P,services_other,v1_rule_based
BGD_Q,BGD,Q,services_other,v1_rule_based
BGD_R,BGD,R,services_other,v1_rule_based
BGD_S,BGD,S,services_other,v1_rule_based
BGD_T,BGD,T,services_other,v1_rule_based
BGR_A01,BGR,A01,energy_primary,v1_rule_based
BGR_A02,BGR,A02,energy_primary,v1_rule_based
BGR_A03,BGR,A03,energy_primary,v1_rule_based
BGR_B05,BGR,B05,energy_primary,v1_rule_based
BGR_B06,BGR,B06,energy_primary,v1_rule_based
BGR_B07,BGR,B07,energy_primary,v1_rule_based
BGR_B08,BGR,B08,energy_primary,v1_rule_based
BGR_B09,BGR,B09,energy_primary,v1_rule_based
BGR_C10T12,BGR,C10T12,retail_consumer,v1_rule_based
BGR_C13T15,BGR,C13T15,retail_consumer,v1_rule_based
BGR_C16,BGR,C16,manufacturing_other,v1_rule_based
BGR_C17_18,BGR,C17_18,manufacturing_other,v1_rule_based
BGR_C19,BGR,C19,manufacturing_other,v1_rule_based
BGR_C20,BGR,C20,manufacturing_other,v1_rule_based
BGR_C21,BGR,C21,pharma,v1_rule_based
BGR_C22,BGR,C22,manufacturing_other,v1_rule_based
BGR_C23,BGR,C23,manufacturing_other,v1_rule_based
BGR_C24A,BGR,C24A,steel_aluminum,v1_rule_based
BGR_C24B,BGR,C24B,steel_aluminum,v1_rule_based
BGR_C25,BGR,C25,steel_aluminum,v1_rule_based
BGR_C26,BGR,C26,manufacturing_other,v1_rule_based
BGR_C27,BGR,C27,manufacturing_other,v1_rule_based
BGR_C28,BGR,C28,manufacturing_other,v1_rule_based
BGR_C29,BGR,C29,manufacturing_other,v1_rule_based
BGR_C301,BGR,C301,manufacturing_other,v1_rule_based
BGR_C302T309,BGR,C302T309,manufacturing_other,v1_rule_based
BGR_C31T33,BGR,C31T33,retail_consumer,v1_rule_based
BGR_D,BGR,D,energy_primary,v1_rule_based
BGR_E,BGR,E,energy_primary,v1_rule_based
BGR_F,BGR,F,services_other,v1_rule_based
BGR_G,BGR,G,retail_consumer,v1_rule_based
BGR_H49,BGR,H49,services_other,v1_rule_based
BGR_H50,BGR,H50,services_other,v1_rule_based
BGR_H51,BGR,H51,services_other,v1_rule_based
BGR_H52,BGR,H52,services_other,v1_rule_based
BGR_H53,BGR,H53,services_other,v1_rule_based
BGR_I,BGR,I,retail_consumer,v1_rule_based
BGR_J58T60,BGR,J58T60,services_other,v1_rule_based
BGR_J61,BGR,J61,services_other,v1_rule_based
BGR_J62_63,BGR,J62_63,services_other,v1_rule_based
BGR_K,BGR,K,services_other,v1_rule_based
BGR_L,BGR,L,services_other,v1_rule_based
BGR_M,BGR,M,services_other,v1_rule_based
BGR_N,BGR,N,services_other,v1_rule_based
BGR_O,BGR,O,services_other,v1_rule_based
BGR_P,BGR,P,services_other,v1_rule_based
BGR_Q,BGR,Q,services_other,v1_rule_based
BGR_R,BGR,R,services_other,v1_rule_based
BGR_S,BGR,S,services_other,v1_rule_based
BGR_T,BGR,T,services_other,v1_rule_based
BLR_A01,BLR,A01,energy_primary,v1_rule_based
BLR_A02,BLR,A02,energy_primary,v1_rule_based
BLR_A03,BLR,A03,energy_primary,v1_rule_based
BLR_B05,BLR,B05,energy_primary,v1_rule_based
BLR_B06,BLR,B06,energy_primary,v1_rule_based
BLR_B07,BLR,B07,energy_primary,v1_rule_based
BLR_B08,BLR,B08,energy_primary,v1_rule_based
BLR_B09,BLR,B09,energy_primary,v1_rule_based
BLR_C10T12,BLR,C10T12,retail_consumer,v1_rule_based
BLR_C13T15,BLR,C13T15,retail_consumer,v1_rule_based
BLR_C16,BLR,C16,manufacturing_other,v1_rule_based
BLR_C17_18,BLR,C17_18,manufacturing_other,v1_rule_based
BLR_C19,BLR,C19,manufacturing_other,v1_rule_based
BLR_C20,BLR,C20,manufacturing_other,v1_rule_based
BLR_C21,BLR,C21,pharma,v1_rule_based
BLR_C22,BLR,C22,manufacturing_other,v1_rule_based
BLR_C23,BLR,C23,manufacturing_other,v1_rule_based
BLR_C24A,BLR,C24A,steel_aluminum,v1_rule_based
BLR_C24B,BLR,C24B,steel_aluminum,v1_rule_based
BLR_C25,BLR,C25,steel_aluminum,v1_rule_based
BLR_C26,BLR,C26,manufacturing_other,v1_rule_based
BLR_C27,BLR,C27,manufacturing_other,v1_rule_based
BLR_C28,BLR,C28,manufacturing_other,v1_rule_based
BLR_C29,BLR,C29,manufacturing_other,v1_rule_based
BLR_C301,BLR,C301,manufacturing_other,v1_rule_based
BLR_C302T309,BLR,C302T309,manufacturing_other,v1_rule_based
BLR_C31T33,BLR,C31T33,retail_consumer,v1_rule_based
BLR_D,BLR,D,energy_primary,v1_rule_based
BLR_E,BLR,E,energy_primary,v1_rule_based
BLR_F,BLR,F,services_other,v1_rule_based
BLR_G,BLR,G,retail_consumer,v1_rule_based
BLR_H49,BLR,H49,services_other,v1_rule_based
BLR_H50,BLR,H50,services_other,v1_rule_based
BLR_H51,BLR,H51,services_other,v1_rule_based
BLR_H52,BLR,H52,services_other,v1_rule_based
BLR_H53,BLR,H53,services_other,v1_rule_based
BLR_I,BLR,I,retail_consumer,v1_rule_based
BLR_J58T60,BLR,J58T60,services_other,v1_rule_based
BLR_J61,BLR,J61,services_other,v1_rule_based
BLR_J62_63,BLR,J62_63,services_other,v1_rule_based
BLR_K,BLR,K,services_other,v1_rule_based
BLR_L,BLR,L,services_other,v1_rule_based
BLR_M,BLR,M,services_other,v1_rule_based
BLR_N,BLR,N,services_other,v1_rule_based
BLR_O,BLR,O,services_other,v1_rule_based
BLR_P,BLR,P,services_other,v1_rule_based
BLR_Q,BLR,Q,services_other,v1_rule_based
BLR_R,BLR,R,services_other,v1_rule_based
BLR_S,BLR,S,services_other,v1_rule_based
BLR_T,BLR,T,services_other,v1_rule_based
BRA_A01,BRA,A01,energy_primary,v1_rule_based
BRA_A02,BRA,A02,energy_primary,v1_rule_based
BRA_A03,BRA,A03,energy_primary,v1_rule_based
BRA_B05,BRA,B05,energy_primary,v1_rule_based
BRA_B06,BRA,B06,energy_primary,v1_rule_based
BRA_B07,BRA,B07,energy_primary,v1_rule_based
BRA_B08,BRA,B08,energy_primary,v1_rule_based
BRA_B09,BRA,B09,energy_primary,v1_rule_based
BRA_C10T12,BRA,C10T12,retail_consumer,v1_rule_based
BRA_C13T15,BRA,C13T15,retail_consumer,v1_rule_based
BRA_C16,BRA,C16,manufacturing_other,v1_rule_based
BRA_C17_18,BRA,C17_18,manufacturing_other,v1_rule_based
BRA_C19,BRA,C19,manufacturing_other,v1_rule_based
BRA_C20,BRA,C20,manufacturing_other,v1_rule_based
BRA_C21,BRA,C21,pharma,v1_rule_based
BRA_C22,BRA,C22,manufacturing_other,v1_rule_based
BRA_C23,BRA,C23,manufacturing_other,v1_rule_based
BRA_C24A,BRA,C24A,steel_aluminum,v1_rule_based
BRA_C24B,BRA,C24B,steel_aluminum,v1_rule_based
BRA_C25,BRA,C25,steel_aluminum,v1_rule_based
BRA_C26,BRA,C26,manufacturing_other,v1_rule_based
BRA_C27,BRA,C27,manufacturing_other,v1_rule_based
BRA_C28,BRA,C28,manufacturing_other,v1_rule_based
BRA_C29,BRA,C29,manufacturing_other,v1_rule_based
BRA_C301,BRA,C301,manufacturing_other,v1_rule_based
BRA_C302T309,BRA,C302T309,manufacturing_other,v1_rule_based
BRA_C31T33,BRA,C31T33,retail_consumer,v1_rule_based
BRA_D,BRA,D,energy_primary,v1_rule_based
BRA_E,BRA,E,energy_primary,v1_rule_based
BRA_F,BRA,F,services_other,v1_rule_based
BRA_G,BRA,G,retail_consumer,v1_rule_based
BRA_H49,BRA,H49,services_other,v1_rule_based
BRA_H50,BRA,H50,services_other,v1_rule_based
BRA_H51,BRA,H51,services_other,v1_rule_based
BRA_H52,BRA,H52,services_other,v1_rule_based
BRA_H53,BRA,H53,services_other,v1_rule_based
BRA_I,BRA,I,retail_consumer,v1_rule_based
BRA_J58T60,BRA,J58T60,services_other,v1_rule_based
BRA_J61,BRA,J61,services_other,v1_rule_based
BRA_J62_63,BRA,J62_63,services_other,v1_rule_based
BRA_K,BRA,K,services_other,v1_rule_based
BRA_L,BRA,L,services_other,v1_rule_based
BRA_M,BRA,M,services_other,v1_rule_based
BRA_N,BRA,N,services_other,v1_rule_based
BRA_O,BRA,O,services_other,v1_rule_based
BRA_P,BRA,P,services_other,v1_rule_based
BRA_Q,BRA,Q,services_other,v1_rule_based
BRA_R,BRA,R,services_other,v1_rule_based
BRA_S,BRA,S,services_other,v1_rule_based
BRA_T,BRA,T,services_other,v1_rule_based
BRN_A01,BRN,A01,energy_primary,v1_rule_based
BRN_A02,BRN,A02,energy_primary,v1_rule_based
BRN_A03,BRN,A03,energy_primary,v1_rule_based
BRN_B05,BRN,B05,energy_primary,v1_rule_based
BRN_B06,BRN,B06,energy_primary,v1_rule_based
BRN_B07,BRN,B07,energy_primary,v1_rule_based
BRN_B08,BRN,B08,energy_primary,v1_rule_based
BRN_B09,BRN,B09,energy_primary,v1_rule_based
BRN_C10T12,BRN,C10T12,retail_consumer,v1_rule_based
BRN_C13T15,BRN,C13T15,retail_consumer,v1_rule_based
BRN_C16,BRN,C16,manufacturing_other,v1_rule_based
BRN_C17_18,BRN,C17_18,manufacturing_other,v1_rule_based
BRN_C19,BRN,C19,manufacturing_other,v1_rule_based
BRN_C20,BRN,C20,manufacturing_other,v1_rule_based
BRN_C21,BRN,C21,pharma,v1_rule_based
BRN_C22,BRN,C22,manufacturing_other,v1_rule_based
BRN_C23,BRN,C23,manufacturing_other,v1_rule_based
BRN_C24A,BRN,C24A,steel_aluminum,v1_rule_based
BRN_C24B,BRN,C24B,steel_aluminum,v1_rule_based
BRN_C25,BRN,C25,steel_aluminum,v1_rule_based
BRN_C26,BRN,C26,manufacturing_other,v1_rule_based
BRN_C27,BRN,C27,manufacturing_other,v1_rule_based
BRN_C28,BRN,C28,manufacturing_other,v1_rule_based
BRN_C29,BRN,C29,manufacturing_other,v1_rule_based
BRN_C301,BRN,C301,manufacturing_other,v1_rule_based
BRN_C302T309,BRN,C302T309,manufacturing_other,v1_rule_based
BRN_C31T33,BRN,C31T33,retail_consumer,v1_rule_based
BRN_D,BRN,D,energy_primary,v1_rule_based
BRN_E,BRN,E,energy_primary,v1_rule_based
BRN_F,BRN,F,services_other,v1_rule_based
BRN_G,BRN,G,retail_consumer,v1_rule_based
BRN_H49,BRN,H49,services_other,v1_rule_based
BRN_H50,BRN,H50,services_other,v1_rule_based
BRN_H51,BRN,H51,services_other,v1_rule_based
BRN_H52,BRN,H52,services_other,v1_rule_based
BRN_H53,BRN,H53,services_other,v1_rule_based
BRN_I,BRN,I,retail_consumer,v1_rule_based
BRN_J58T60,BRN,J58T60,services_other,v1_rule_based
BRN_J61,BRN,J61,services_other,v1_rule_based
BRN_J62_63,BRN,J62_63,services_other,v1_rule_based
BRN_K,BRN,K,services_other,v1_rule_based
BRN_L,BRN,L,services_other,v1_rule_based
BRN_M,BRN,M,services_other,v1_rule_based
BRN_N,BRN,N,services_other,v1_rule_based
BRN_O,BRN,O,services_other,v1_rule_based
BRN_P,BRN,P,services_other,v1_rule_based
BRN_Q,BRN,Q,services_other,v1_rule_based
BRN_R,BRN,R,services_other,v1_rule_based
BRN_S,BRN,S,services_other,v1_rule_based
BRN_T,BRN,T,services_other,v1_rule_based
CAN_A01,CAN,A01,energy_primary,v1_rule_based
CAN_A02,CAN,A02,energy_primary,v1_rule_based
CAN_A03,CAN,A03,energy_primary,v1_rule_based
CAN_B05,CAN,B05,energy_primary,v1_rule_based
CAN_B06,CAN,B06,energy_primary,v1_rule_based
CAN_B07,CAN,B07,energy_primary,v1_rule_based
CAN_B08,CAN,B08,energy_primary,v1_rule_based
CAN_B09,CAN,B09,energy_primary,v1_rule_based
CAN_C10T12,CAN,C10T12,retail_consumer,v1_rule_based
CAN_C13T15,CAN,C13T15,retail_consumer,v1_rule_based
CAN_C16,CAN,C16,manufacturing_other,v1_rule_based
CAN_C17_18,CAN,C17_18,manufacturing_other,v1_rule_based
CAN_C19,CAN,C19,manufacturing_other,v1_rule_based
CAN_C20,CAN,C20,manufacturing_other,v1_rule_based
CAN_C21,CAN,C21,pharma,v1_rule_based
CAN_C22,CAN,C22,manufacturing_other,v1_rule_based
CAN_C23,CAN,C23,manufacturing_other,v1_rule_based
CAN_C24A,CAN,C24A,steel_aluminum,v1_rule_based
CAN_C24B,CAN,C24B,steel_aluminum,v1_rule_based
CAN_C25,CAN,C25,steel_aluminum,v1_rule_based
CAN_C26,CAN,C26,manufacturing_other,v1_rule_based
CAN_C27,CAN,C27,manufacturing_other,v1_rule_based
CAN_C28,CAN,C28,manufacturing_other,v1_rule_based
CAN_C29,CAN,C29,manufacturing_other,v1_rule_based
CAN_C301,CAN,C301,manufacturing_other,v1_rule_based
CAN_C302T309,CAN,C302T309,manufacturing_other,v1_rule_based
CAN_C31T33,CAN,C31T33,retail_consumer,v1_rule_based
CAN_D,CAN,D,energy_primary,v1_rule_based
CAN_E,CAN,E,energy_primary,v1_rule_based
CAN_F,CAN,F,services_other,v1_rule_based
CAN_G,CAN,G,retail_consumer,v1_rule_based
CAN_H49,CAN,H49,services_other,v1_rule_based
CAN_H50,CAN,H50,services_other,v1_rule_based
CAN_H51,CAN,H51,services_other,v1_rule_based
CAN_H52,CAN,H52,services_other,v1_rule_based
CAN_H53,CAN,H53,services_other,v1_rule_based
CAN_I,CAN,I,retail_consumer,v1_rule_based
CAN_J58T60,CAN,J58T60,services_other,v1_rule_based
CAN_J61,CAN,J61,services_other,v1_rule_based
CAN_J62_63,CAN,J62_63,services_other,v1_rule_based
CAN_K,CAN,K,services_other,v1_rule_based
CAN_L,CAN,L,services_other,v1_rule_based
CAN_M,CAN,M,services_other,v1_rule_based
CAN_N,CAN,N,services_other,v1_rule_based
CAN_O,CAN,O,services_other,v1_rule_based
CAN_P,CAN,P,services_other,v1_rule_based
CAN_Q,CAN,Q,services_other,v1_rule_based
CAN_R,CAN,R,services_other,v1_rule_based
CAN_S,CAN,S,services_other,v1_rule_based
CAN_T,CAN,T,services_other,v1_rule_based
CHE_A01,CHE,A01,energy_primary,v1_rule_based
CHE_A02,CHE,A02,energy_primary,v1_rule_based
CHE_A03,CHE,A03,energy_primary,v1_rule_based
CHE_B05,CHE,B05,energy_primary,v1_rule_based
CHE_B06,CHE,B06,energy_primary,v1_rule_based
CHE_B07,CHE,B07,energy_primary,v1_rule_based
CHE_B08,CHE,B08,energy_primary,v1_rule_based
CHE_B09,CHE,B09,energy_primary,v1_rule_based
CHE_C10T12,CHE,C10T12,retail_consumer,v1_rule_based
CHE_C13T15,CHE,C13T15,retail_consumer,v1_rule_based
CHE_C16,CHE,C16,manufacturing_other,v1_rule_based
CHE_C17_18,CHE,C17_18,manufacturing_other,v1_rule_based
CHE_C19,CHE,C19,manufacturing_other,v1_rule_based
CHE_C20,CHE,C20,manufacturing_other,v1_rule_based
CHE_C21,CHE,C21,pharma,v1_rule_based
CHE_C22,CHE,C22,manufacturing_other,v1_rule_based
CHE_C23,CHE,C23,manufacturing_other,v1_rule_based
CHE_C24A,CHE,C24A,steel_aluminum,v1_rule_based
CHE_C24B,CHE,C24B,steel_aluminum,v1_rule_based
CHE_C25,CHE,C25,steel_aluminum,v1_rule_based
CHE_C26,CHE,C26,manufacturing_other,v1_rule_based
CHE_C27,CHE,C27,manufacturing_other,v1_rule_based
CHE_C28,CHE,C28,manufacturing_other,v1_rule_based
CHE_C29,CHE,C29,manufacturing_other,v1_rule_based
CHE_C301,CHE,C301,manufacturing_other,v1_rule_based
CHE_C302T309,CHE,C302T309,manufacturing_other,v1_rule_based
CHE_C31T33,CHE,C31T33,retail_consumer,v1_rule_based
CHE_D,CHE,D,energy_primary,v1_rule_based
CHE_E,CHE,E,energy_primary,v1_rule_based
CHE_F,CHE,F,services_other,v1_rule_based
CHE_G,CHE,G,retail_consumer,v1_rule_based
CHE_H49,CHE,H49,services_other,v1_rule_based
CHE_H50,CHE,H50,services_other,v1_rule_based
CHE_H51,CHE,H51,services_other,v1_rule_based
CHE_H52,CHE,H52,services_other,v1_rule_based
CHE_H53,CHE,H53,services_other,v1_rule_based
CHE_I,CHE,I,retail_consumer,v1_rule_based
CHE_J58T60,CHE,J58T60,services_other,v1_rule_based
CHE_J61,CHE,J61,services_other,v1_rule_based
CHE_J62_63,CHE,J62_63,services_other,v1_rule_based
CHE_K,CHE,K,services_other,v1_rule_based
CHE_L,CHE,L,services_other,v1_rule_based
CHE_M,CHE,M,services_other,v1_rule_based
CHE_N,CHE,N,services_other,v1_rule_based
CHE_O,CHE,O,services_other,v1_rule_based
CHE_P,CHE,P,services_other,v1_rule_based
CHE_Q,CHE,Q,services_other,v1_rule_based
CHE_R,CHE,R,services_other,v1_rule_based
CHE_S,CHE,S,services_other,v1_rule_based
CHE_T,CHE,T,services_other,v1_rule_based
CHL_A01,CHL,A01,energy_primary,v1_rule_based
CHL_A02,CHL,A02,energy_primary,v1_rule_based
CHL_A03,CHL,A03,energy_primary,v1_rule_based
CHL_B05,CHL,B05,energy_primary,v1_rule_based
CHL_B06,CHL,B06,energy_primary,v1_rule_based
CHL_B07,CHL,B07,energy_primary,v1_rule_based
CHL_B08,CHL,B08,energy_primary,v1_rule_based
CHL_B09,CHL,B09,energy_primary,v1_rule_based
CHL_C10T12,CHL,C10T12,retail_consumer,v1_rule_based
CHL_C13T15,CHL,C13T15,retail_consumer,v1_rule_based
CHL_C16,CHL,C16,manufacturing_other,v1_rule_based
CHL_C17_18,CHL,C17_18,manufacturing_other,v1_rule_based
CHL_C19,CHL,C19,manufacturing_other,v1_rule_based
CHL_C20,CHL,C20,manufacturing_other,v1_rule_based
CHL_C21,CHL,C21,pharma,v1_rule_based
CHL_C22,CHL,C22,manufacturing_other,v1_rule_based
CHL_C23,CHL,C23,manufacturing_other,v1_rule_based
CHL_C24A,CHL,C24A,steel_aluminum,v1_rule_based
CHL_C24B,CHL,C24B,steel_aluminum,v1_rule_based
CHL_C25,CHL,C25,steel_aluminum,v1_rule_based
CHL_C26,CHL,C26,manufacturing_other,v1_rule_based
CHL_C27,CHL,C27,manufacturing_other,v1_rule_based
CHL_C28,CHL,C28,manufacturing_other,v1_rule_based
CHL_C29,CHL,C29,manufacturing_other,v1_rule_based
CHL_C301,CHL,C301,manufacturing_other,v1_rule_based
CHL_C302T309,CHL,C302T309,manufacturing_other,v1_rule_based
CHL_C31T33,CHL,C31T33,retail_consumer,v1_rule_based
CHL_D,CHL,D,energy_primary,v1_rule_based
CHL_E,CHL,E,energy_primary,v1_rule_based
CHL_F,CHL,F,services_other,v1_rule_based
CHL_G,CHL,G,retail_consumer,v1_rule_based
CHL_H49,CHL,H49,services_other,v1_rule_based
CHL_H50,CHL,H50,services_other,v1_rule_based
CHL_H51,CHL,H51,services_other,v1_rule_based
CHL_H52,CHL,H52,services_other,v1_rule_based
CHL_H53,CHL,H53,services_other,v1_rule_based
CHL_I,CHL,I,retail_consumer,v1_rule_based
CHL_J58T60,CHL,J58T60,services_other,v1_rule_based
CHL_J61,CHL,J61,services_other,v1_rule_based
CHL_J62_63,CHL,J62_63,services_other,v1_rule_based
CHL_K,CHL,K,services_other,v1_rule_based
CHL_L,CHL,L,services_other,v1_rule_based
CHL_M,CHL,M,services_other,v1_rule_based
CHL_N,CHL,N,services_other,v1_rule_based
CHL_O,CHL,O,services_other,v1_rule_based
CHL_P,CHL,P,services_other,v1_rule_based
CHL_Q,CHL,Q,services_other,v1_rule_based
CHL_R,CHL,R,services_other,v1_rule_based
CHL_S,CHL,S,services_other,v1_rule_based
CHL_T,CHL,T,services_other,v1_rule_based
CHN_A01,CHN,A01,energy_primary,v1_rule_based
CHN_A02,CHN,A02,energy_primary,v1_rule_based
CHN_A03,CHN,A03,energy_primary,v1_rule_based
CHN_B05,CHN,B05,energy_primary,v1_rule_based
CHN_B06,CHN,B06,energy_primary,v1_rule_based
CHN_B07,CHN,B07,energy_primary,v1_rule_based
CHN_B08,CHN,B08,energy_primary,v1_rule_based
CHN_B09,CHN,B09,energy_primary,v1_rule_based
CHN_C10T12,CHN,C10T12,retail_consumer,v1_rule_based
CHN_C13T15,CHN,C13T15,retail_consumer,v1_rule_based
CHN_C16,CHN,C16,manufacturing_other,v1_rule_based
CHN_C17_18,CHN,C17_18,manufacturing_other,v1_rule_based
CHN_C19,CHN,C19,manufacturing_other,v1_rule_based
CHN_C20,CHN,C20,manufacturing_other,v1_rule_based
CHN_C21,CHN,C21,pharma,v1_rule_based
CHN_C22,CHN,C22,manufacturing_other,v1_rule_based
CHN_C23,CHN,C23,manufacturing_other,v1_rule_based
CHN_C24A,CHN,C24A,steel_aluminum,v1_rule_based
CHN_C24B,CHN,C24B,steel_aluminum,v1_rule_based
CHN_C25,CHN,C25,steel_aluminum,v1_rule_based
CHN_C26,CHN,C26,manufacturing_other,v1_rule_based
CHN_C27,CHN,C27,manufacturing_other,v1_rule_based
CHN_C28,CHN,C28,manufacturing_other,v1_rule_based
CHN_C29,CHN,C29,manufacturing_other,v1_rule_based
CHN_C301,CHN,C301,manufacturing_other,v1_rule_based
CHN_C302T309,CHN,C302T309,manufacturing_other,v1_rule_based
CHN_C31T33,CHN,C31T33,retail_consumer,v1_rule_based
CHN_D,CHN,D,energy_primary,v1_rule_based
CHN_E,CHN,E,energy_primary,v1_rule_based
CHN_F,CHN,F,services_other,v1_rule_based
CHN_G,CHN,G,retail_consumer,v1_rule_based
CHN_H49,CHN,H49,services_other,v1_rule_based
CHN_H50,CHN,H50,services_other,v1_rule_based
CHN_H51,CHN,H51,services_other,v1_rule_based
CHN_H52,CHN,H52,services_other,v1_rule_based
CHN_H53,CHN,H53,services_other,v1_rule_based
CHN_I,CHN,I,retail_consumer,v1_rule_based
CHN_J58T60,CHN,J58T60,services_other,v1_rule_based
CHN_J61,CHN,J61,services_other,v1_rule_based
CHN_J62_63,CHN,J62_63,services_other,v1_rule_based
CHN_K,CHN,K,services_other,v1_rule_based
CHN_L,CHN,L,services_other,v1_rule_based
CHN_M,CHN,M,services_other,v1_rule_based
CHN_N,CHN,N,services_other,v1_rule_based
CHN_O,CHN,O,services_other,v1_rule_based
CHN_P,CHN,P,services_other,v1_rule_based
CHN_Q,CHN,Q,services_other,v1_rule_based
CHN_R,CHN,R,services_other,v1_rule_based
CHN_S,CHN,S,services_other,v1_rule_based
CHN_T,CHN,T,services_other,v1_rule_based
CIV_A01,CIV,A01,energy_primary,v1_rule_based
CIV_A02,CIV,A02,energy_primary,v1_rule_based
CIV_A03,CIV,A03,energy_primary,v1_rule_based
CIV_B05,CIV,B05,energy_primary,v1_rule_based
CIV_B06,CIV,B06,energy_primary,v1_rule_based
CIV_B07,CIV,B07,energy_primary,v1_rule_based
CIV_B08,CIV,B08,energy_primary,v1_rule_based
CIV_B09,CIV,B09,energy_primary,v1_rule_based
CIV_C10T12,CIV,C10T12,retail_consumer,v1_rule_based
CIV_C13T15,CIV,C13T15,retail_consumer,v1_rule_based
CIV_C16,CIV,C16,manufacturing_other,v1_rule_based
CIV_C17_18,CIV,C17_18,manufacturing_other,v1_rule_based
CIV_C19,CIV,C19,manufacturing_other,v1_rule_based
CIV_C20,CIV,C20,manufacturing_other,v1_rule_based
CIV_C21,CIV,C21,pharma,v1_rule_based
CIV_C22,CIV,C22,manufacturing_other,v1_rule_based
CIV_C23,CIV,C23,manufacturing_other,v1_rule_based
CIV_C24A,CIV,C24A,steel_aluminum,v1_rule_based
CIV_C24B,CIV,C24B,steel_aluminum,v1_rule_based
CIV_C25,CIV,C25,steel_aluminum,v1_rule_based
CIV_C26,CIV,C26,manufacturing_other,v1_rule_based
CIV_C27,CIV,C27,manufacturing_other,v1_rule_based
CIV_C28,CIV,C28,manufacturing_other,v1_rule_based
CIV_C29,CIV,C29,manufacturing_other,v1_rule_based
CIV_C301,CIV,C301,manufacturing_other,v1_rule_based
CIV_C302T309,CIV,C302T309,manufacturing_other,v1_rule_based
CIV_C31T33,CIV,C31T33,retail_consumer,v1_rule_based
CIV_D,CIV,D,energy_primary,v1_rule_based
CIV_E,CIV,E,energy_primary,v1_rule_based
CIV_F,CIV,F,services_other,v1_rule_based
CIV_G,CIV,G,retail_consumer,v1_rule_based
CIV_H49,CIV,H49,services_other,v1_rule_based
CIV_H50,CIV,H50,services_other,v1_rule_based
CIV_H51,CIV,H51,services_other,v1_rule_based
CIV_H52,CIV,H52,services_other,v1_rule_based
CIV_H53,CIV,H53,services_other,v1_rule_based
CIV_I,CIV,I,retail_consumer,v1_rule_based
CIV_J58T60,CIV,J58T60,services_other,v1_rule_based
CIV_J61,CIV,J61,services_other,v1_rule_based
CIV_J62_63,CIV,J62_63,services_other,v1_rule_based
CIV_K,CIV,K,services_other,v1_rule_based
CIV_L,CIV,L,services_other,v1_rule_based
CIV_M,CIV,M,services_other,v1_rule_based
CIV_N,CIV,N,services_other,v1_rule_based
CIV_O,CIV,O,services_other,v1_rule_based
CIV_P,CIV,P,services_other,v1_rule_based
CIV_Q,CIV,Q,services_other,v1_rule_based
CIV_R,CIV,R,services_other,v1_rule_based
CIV_S,CIV,S,services_other,v1_rule_based
CIV_T,CIV,T,services_other,v1_rule_based
CMR_A01,CMR,A01,energy_primary,v1_rule_based
CMR_A02,CMR,A02,energy_primary,v1_rule_based
CMR_A03,CMR,A03,energy_primary,v1_rule_based
CMR_B05,CMR,B05,energy_primary,v1_rule_based
CMR_B06,CMR,B06,energy_primary,v1_rule_based
CMR_B07,CMR,B07,energy_primary,v1_rule_based
CMR_B08,CMR,B08,energy_primary,v1_rule_based
CMR_B09,CMR,B09,energy_primary,v1_rule_based
CMR_C10T12,CMR,C10T12,retail_consumer,v1_rule_based
CMR_C13T15,CMR,C13T15,retail_consumer,v1_rule_based
CMR_C16,CMR,C16,manufacturing_other,v1_rule_based
CMR_C17_18,CMR,C17_18,manufacturing_other,v1_rule_based
CMR_C19,CMR,C19,manufacturing_other,v1_rule_based
CMR_C20,CMR,C20,manufacturing_other,v1_rule_based
CMR_C21,CMR,C21,pharma,v1_rule_based
CMR_C22,CMR,C22,manufacturing_other,v1_rule_based
CMR_C23,CMR,C23,manufacturing_other,v1_rule_based
CMR_C24A,CMR,C24A,steel_aluminum,v1_rule_based
CMR_C24B,CMR,C24B,steel_aluminum,v1_rule_based
CMR_C25,CMR,C25,steel_aluminum,v1_rule_based
CMR_C26,CMR,C26,manufacturing_other,v1_rule_based
CMR_C27,CMR,C27,manufacturing_other,v1_rule_based
CMR_C28,CMR,C28,manufacturing_other,v1_rule_based
CMR_C29,CMR,C29,manufacturing_other,v1_rule_based
CMR_C301,CMR,C301,manufacturing_other,v1_rule_based
CMR_C302T309,CMR,C302T309,manufacturing_other,v1_rule_based
CMR_C31T33,CMR,C31T33,retail_consumer,v1_rule_based
CMR_D,CMR,D,energy_primary,v1_rule_based
CMR_E,CMR,E,energy_primary,v1_rule_based
CMR_F,CMR,F,services_other,v1_rule_based
CMR_G,CMR,G,retail_consumer,v1_rule_based
CMR_H49,CMR,H49,services_other,v1_rule_based
CMR_H50,CMR,H50,services_other,v1_rule_based
CMR_H51,CMR,H51,services_other,v1_rule_based
CMR_H52,CMR,H52,services_other,v1_rule_based
CMR_H53,CMR,H53,services_other,v1_rule_based
CMR_I,CMR,I,retail_consumer,v1_rule_based
CMR_J58T60,CMR,J58T60,services_other,v1_rule_based
CMR_J61,CMR,J61,services_other,v1_rule_based
CMR_J62_63,CMR,J62_63,services_other,v1_rule_based
CMR_K,CMR,K,services_other,v1_rule_based
CMR_L,CMR,L,services_other,v1_rule_based
CMR_M,CMR,M,services_other,v1_rule_based
CMR_N,CMR,N,services_other,v1_rule_based
CMR_O,CMR,O,services_other,v1_rule_based
CMR_P,CMR,P,services_other,v1_rule_based
CMR_Q,CMR,Q,services_other,v1_rule_based
CMR_R,CMR,R,services_other,v1_rule_based
CMR_S,CMR,S,services_other,v1_rule_based
CMR_T,CMR,T,services_other,v1_rule_based
COD_A01,COD,A01,energy_primary,v1_rule_based
COD_A02,COD,A02,energy_primary,v1_rule_based
COD_A03,COD,A03,energy_primary,v1_rule_based
COD_B05,COD,B05,energy_primary,v1_rule_based
COD_B06,COD,B06,energy_primary,v1_rule_based
COD_B07,COD,B07,energy_primary,v1_rule_based
COD_B08,COD,B08,energy_primary,v1_rule_based
COD_B09,COD,B09,energy_primary,v1_rule_based
COD_C10T12,COD,C10T12,retail_consumer,v1_rule_based
COD_C13T15,COD,C13T15,retail_consumer,v1_rule_based
COD_C16,COD,C16,manufacturing_other,v1_rule_based
COD_C17_18,COD,C17_18,manufacturing_other,v1_rule_based
COD_C19,COD,C19,manufacturing_other,v1_rule_based
COD_C20,COD,C20,manufacturing_other,v1_rule_based
COD_C21,COD,C21,pharma,v1_rule_based
COD_C22,COD,C22,manufacturing_other,v1_rule_based
COD_C23,COD,C23,manufacturing_other,v1_rule_based
COD_C24A,COD,C24A,steel_aluminum,v1_rule_based
COD_C24B,COD,C24B,steel_aluminum,v1_rule_based
COD_C25,COD,C25,steel_aluminum,v1_rule_based
COD_C26,COD,C26,manufacturing_other,v1_rule_based
COD_C27,COD,C27,manufacturing_other,v1_rule_based
COD_C28,COD,C28,manufacturing_other,v1_rule_based
COD_C29,COD,C29,manufacturing_other,v1_rule_based
COD_C301,COD,C301,manufacturing_other,v1_rule_based
COD_C302T309,COD,C302T309,manufacturing_other,v1_rule_based
COD_C31T33,COD,C31T33,retail_consumer,v1_rule_based
COD_D,COD,D,energy_primary,v1_rule_based
COD_E,COD,E,energy_primary,v1_rule_based
COD_F,COD,F,services_other,v1_rule_based
COD_G,COD,G,retail_consumer,v1_rule_based
COD_H49,COD,H49,services_other,v1_rule_based
COD_H50,COD,H50,services_other,v1_rule_based
COD_H51,COD,H51,services_other,v1_rule_based
COD_H52,COD,H52,services_other,v1_rule_based
COD_H53,COD,H53,services_other,v1_rule_based
COD_I,COD,I,retail_consumer,v1_rule_based
COD_J58T60,COD,J58T60,services_other,v1_rule_based
COD_J61,COD,J61,services_other,v1_rule_based
COD_J62_63,COD,J62_63,services_other,v1_rule_based
COD_K,COD,K,services_other,v1_rule_based
COD_L,COD,L,services_other,v1_rule_based
COD_M,COD,M,services_other,v1_rule_based
COD_N,COD,N,services_other,v1_rule_based
COD_O,COD,O,services_other,v1_rule_based
COD_P,COD,P,services_other,v1_rule_based
COD_Q,COD,Q,services_other,v1_rule_based
COD_R,COD,R,services_other,v1_rule_based
COD_S,COD,S,services_other,v1_rule_based
COD_T,COD,T,services_other,v1_rule_based
COL_A01,COL,A01,energy_primary,v1_rule_based
COL_A02,COL,A02,energy_primary,v1_rule_based
COL_A03,COL,A03,energy_primary,v1_rule_based
COL_B05,COL,B05,energy_primary,v1_rule_based
COL_B06,COL,B06,energy_primary,v1_rule_based
COL_B07,COL,B07,energy_primary,v1_rule_based
COL_B08,COL,B08,energy_primary,v1_rule_based
COL_B09,COL,B09,energy_primary,v1_rule_based
COL_C10T12,COL,C10T12,retail_consumer,v1_rule_based
COL_C13T15,COL,C13T15,retail_consumer,v1_rule_based
COL_C16,COL,C16,manufacturing_other,v1_rule_based
COL_C17_18,COL,C17_18,manufacturing_other,v1_rule_based
COL_C19,COL,C19,manufacturing_other,v1_rule_based
COL_C20,COL,C20,manufacturing_other,v1_rule_based
COL_C21,COL,C21,pharma,v1_rule_based
COL_C22,COL,C22,manufacturing_other,v1_rule_based
COL_C23,COL,C23,manufacturing_other,v1_rule_based
COL_C24A,COL,C24A,steel_aluminum,v1_rule_based
COL_C24B,COL,C24B,steel_aluminum,v1_rule_based
COL_C25,COL,C25,steel_aluminum,v1_rule_based
COL_C26,COL,C26,manufacturing_other,v1_rule_based
COL_C27,COL,C27,manufacturing_other,v1_rule_based
COL_C28,COL,C28,manufacturing_other,v1_rule_based
COL_C29,COL,C29,manufacturing_other,v1_rule_based
COL_C301,COL,C301,manufacturing_other,v1_rule_based
COL_C302T309,COL,C302T309,manufacturing_other,v1_rule_based
COL_C31T33,COL,C31T33,retail_consumer,v1_rule_based
COL_D,COL,D,energy_primary,v1_rule_based
COL_E,COL,E,energy_primary,v1_rule_based
COL_F,COL,F,services_other,v1_rule_based
COL_G,COL,G,retail_consumer,v1_rule_based
COL_H49,COL,H49,services_other,v1_rule_based
COL_H50,COL,H50,services_other,v1_rule_based
COL_H51,COL,H51,services_other,v1_rule_based
COL_H52,COL,H52,services_other,v1_rule_based
COL_H53,COL,H53,services_other,v1_rule_based
COL_I,COL,I,retail_consumer,v1_rule_based
COL_J58T60,COL,J58T60,services_other,v1_rule_based
COL_J61,COL,J61,services_other,v1_rule_based
COL_J62_63,COL,J62_63,services_other,v1_rule_based
COL_K,COL,K,services_other,v1_rule_based
COL_L,COL,L,services_other,v1_rule_based
COL_M,COL,M,services_other,v1_rule_based
COL_N,COL,N,services_other,v1_rule_based
COL_O,COL,O,services_other,v1_rule_based
COL_P,COL,P,services_other,v1_rule_based
COL_Q,COL,Q,services_other,v1_rule_based
COL_R,COL,R,services_other,v1_rule_based
COL_S,COL,S,services_other,v1_rule_based
COL_T,COL,T,services_other,v1_rule_based
CRI_A01,CRI,A01,energy_primary,v1_rule_based
CRI_A02,CRI,A02,energy_primary,v1_rule_based
CRI_A03,CRI,A03,energy_primary,v1_rule_based
CRI_B05,CRI,B05,energy_primary,v1_rule_based
CRI_B06,CRI,B06,energy_primary,v1_rule_based
CRI_B07,CRI,B07,energy_primary,v1_rule_based
CRI_B08,CRI,B08,energy_primary,v1_rule_based
CRI_B09,CRI,B09,energy_primary,v1_rule_based
CRI_C10T12,CRI,C10T12,retail_consumer,v1_rule_based
CRI_C13T15,CRI,C13T15,retail_consumer,v1_rule_based
CRI_C16,CRI,C16,manufacturing_other,v1_rule_based
CRI_C17_18,CRI,C17_18,manufacturing_other,v1_rule_based
CRI_C19,CRI,C19,manufacturing_other,v1_rule_based
CRI_C20,CRI,C20,manufacturing_other,v1_rule_based
CRI_C21,CRI,C21,pharma,v1_rule_based
CRI_C22,CRI,C22,manufacturing_other,v1_rule_based
CRI_C23,CRI,C23,manufacturing_other,v1_rule_based
CRI_C24A,CRI,C24A,steel_aluminum,v1_rule_based
CRI_C24B,CRI,C24B,steel_aluminum,v1_rule_based
CRI_C25,CRI,C25,steel_aluminum,v1_rule_based
CRI_C26,CRI,C26,manufacturing_other,v1_rule_based
CRI_C27,CRI,C27,manufacturing_other,v1_rule_based
CRI_C28,CRI,C28,manufacturing_other,v1_rule_based
CRI_C29,CRI,C29,manufacturing_other,v1_rule_based
CRI_C301,CRI,C301,manufacturing_other,v1_rule_based
CRI_C302T309,CRI,C302T309,manufacturing_other,v1_rule_based
CRI_C31T33,CRI,C31T33,retail_consumer,v1_rule_based
CRI_D,CRI,D,energy_primary,v1_rule_based
CRI_E,CRI,E,energy_primary,v1_rule_based
CRI_F,CRI,F,services_other,v1_rule_based
CRI_G,CRI,G,retail_consumer,v1_rule_based
CRI_H49,CRI,H49,services_other,v1_rule_based
CRI_H50,CRI,H50,services_other,v1_rule_based
CRI_H51,CRI,H51,services_other,v1_rule_based
CRI_H52,CRI,H52,services_other,v1_rule_based
CRI_H53,CRI,H53,services_other,v1_rule_based
CRI_I,CRI,I,retail_consumer,v1_rule_based
CRI_J58T60,CRI,J58T60,services_other,v1_rule_based
CRI_J61,CRI,J61,services_other,v1_rule_based
CRI_J62_63,CRI,J62_63,services_other,v1_rule_based
CRI_K,CRI,K,services_other,v1_rule_based
CRI_L,CRI,L,services_other,v1_rule_based
CRI_M,CRI,M,services_other,v1_rule_based
CRI_N,CRI,N,services_other,v1_rule_based
CRI_O,CRI,O,services_other,v1_rule_based
CRI_P,CRI,P,services_other,v1_rule_based
CRI_Q,CRI,Q,services_other,v1_rule_based
CRI_R,CRI,R,services_other,v1_rule_based
CRI_S,CRI,S,services_other,v1_rule_based
CRI_T,CRI,T,services_other,v1_rule_based
CYP_A01,CYP,A01,energy_primary,v1_rule_based
CYP_A02,CYP,A02,energy_primary,v1_rule_based
CYP_A03,CYP,A03,energy_primary,v1_rule_based
CYP_B05,CYP,B05,energy_primary,v1_rule_based
CYP_B06,CYP,B06,energy_primary,v1_rule_based
CYP_B07,CYP,B07,energy_primary,v1_rule_based
CYP_B08,CYP,B08,energy_primary,v1_rule_based
CYP_B09,CYP,B09,energy_primary,v1_rule_based
CYP_C10T12,CYP,C10T12,retail_consumer,v1_rule_based
CYP_C13T15,CYP,C13T15,retail_consumer,v1_rule_based
CYP_C16,CYP,C16,manufacturing_other,v1_rule_based
CYP_C17_18,CYP,C17_18,manufacturing_other,v1_rule_based
CYP_C19,CYP,C19,manufacturing_other,v1_rule_based
CYP_C20,CYP,C20,manufacturing_other,v1_rule_based
CYP_C21,CYP,C21,pharma,v1_rule_based
CYP_C22,CYP,C22,manufacturing_other,v1_rule_based
CYP_C23,CYP,C23,manufacturing_other,v1_rule_based
CYP_C24A,CYP,C24A,steel_aluminum,v1_rule_based
CYP_C24B,CYP,C24B,steel_aluminum,v1_rule_based
CYP_C25,CYP,C25,steel_aluminum,v1_rule_based
CYP_C26,CYP,C26,manufacturing_other,v1_rule_based
CYP_C27,CYP,C27,manufacturing_other,v1_rule_based
CYP_C28,CYP,C28,manufacturing_other,v1_rule_based
CYP_C29,CYP,C29,manufacturing_other,v1_rule_based
CYP_C301,CYP,C301,manufacturing_other,v1_rule_based
CYP_C302T309,CYP,C302T309,manufacturing_other,v1_rule_based
CYP_C31T33,CYP,C31T33,retail_consumer,v1_rule_based
CYP_D,CYP,D,energy_primary,v1_rule_based
CYP_E,CYP,E,energy_primary,v1_rule_based
CYP_F,CYP,F,services_other,v1_rule_based
CYP_G,CYP,G,retail_consumer,v1_rule_based
CYP_H49,CYP,H49,services_other,v1_rule_based
CYP_H50,CYP,H50,services_other,v1_rule_based
CYP_H51,CYP,H51,services_other,v1_rule_based
CYP_H52,CYP,H52,services_other,v1_rule_based
CYP_H53,CYP,H53,services_other,v1_rule_based
CYP_I,CYP,I,retail_consumer,v1_rule_based
CYP_J58T60,CYP,J58T60,services_other,v1_rule_based
CYP_J61,CYP,J61,services_other,v1_rule_based
CYP_J62_63,CYP,J62_63,services_other,v1_rule_based
CYP_K,CYP,K,services_other,v1_rule_based
CYP_L,CYP,L,services_other,v1_rule_based
CYP_M,CYP,M,services_other,v1_rule_based
CYP_N,CYP,N,services_other,v1_rule_based
CYP_O,CYP,O,services_other,v1_rule_based
CYP_P,CYP,P,services_other,v1_rule_based
CYP_Q,CYP,Q,services_other,v1_rule_based
CYP_R,CYP,R,services_other,v1_rule_based
CYP_S,CYP,S,services_other,v1_rule_based
CYP_T,CYP,T,services_other,v1_rule_based
CZE_A01,CZE,A01,energy_primary,v1_rule_based
CZE_A02,CZE,A02,energy_primary,v1_rule_based
CZE_A03,CZE,A03,energy_primary,v1_rule_based
CZE_B05,CZE,B05,energy_primary,v1_rule_based
CZE_B06,CZE,B06,energy_primary,v1_rule_based
CZE_B07,CZE,B07,energy_primary,v1_rule_based
CZE_B08,CZE,B08,energy_primary,v1_rule_based
CZE_B09,CZE,B09,energy_primary,v1_rule_based
CZE_C10T12,CZE,C10T12,retail_consumer,v1_rule_based
CZE_C13T15,CZE,C13T15,retail_consumer,v1_rule_based
CZE_C16,CZE,C16,manufacturing_other,v1_rule_based
CZE_C17_18,CZE,C17_18,manufacturing_other,v1_rule_based
CZE_C19,CZE,C19,manufacturing_other,v1_rule_based
CZE_C20,CZE,C20,manufacturing_other,v1_rule_based
CZE_C21,CZE,C21,pharma,v1_rule_based
CZE_C22,CZE,C22,manufacturing_other,v1_rule_based
CZE_C23,CZE,C23,manufacturing_other,v1_rule_based
CZE_C24A,CZE,C24A,steel_aluminum,v1_rule_based
CZE_C24B,CZE,C24B,steel_aluminum,v1_rule_based
CZE_C25,CZE,C25,steel_aluminum,v1_rule_based
CZE_C26,CZE,C26,manufacturing_other,v1_rule_based
CZE_C27,CZE,C27,manufacturing_other,v1_rule_based
CZE_C28,CZE,C28,manufacturing_other,v1_rule_based
CZE_C29,CZE,C29,manufacturing_other,v1_rule_based
CZE_C301,CZE,C301,manufacturing_other,v1_rule_based
CZE_C302T309,CZE,C302T309,manufacturing_other,v1_rule_based
CZE_C31T33,CZE,C31T33,retail_consumer,v1_rule_based
CZE_D,CZE,D,energy_primary,v1_rule_based
CZE_E,CZE,E,energy_primary,v1_rule_based
CZE_F,CZE,F,services_other,v1_rule_based
CZE_G,CZE,G,retail_consumer,v1_rule_based
CZE_H49,CZE,H49,services_other,v1_rule_based
CZE_H50,CZE,H50,services_other,v1_rule_based
CZE_H51,CZE,H51,services_other,v1_rule_based
CZE_H52,CZE,H52,services_other,v1_rule_based
CZE_H53,CZE,H53,services_other,v1_rule_based
CZE_I,CZE,I,retail_consumer,v1_rule_based
CZE_J58T60,CZE,J58T60,services_other,v1_rule_based
CZE_J61,CZE,J61,services_other,v1_rule_based
CZE_J62_63,CZE,J62_63,services_other,v1_rule_based
CZE_K,CZE,K,services_other,v1_rule_based
CZE_L,CZE,L,services_other,v1_rule_based
CZE_M,CZE,M,services_other,v1_rule_based
CZE_N,CZE,N,services_other,v1_rule_based
CZE_O,CZE,O,services_other,v1_rule_based
CZE_P,CZE,P,services_other,v1_rule_based
CZE_Q,CZE,Q,services_other,v1_rule_based
CZE_R,CZE,R,services_other,v1_rule_based
CZE_S,CZE,S,services_other,v1_rule_based
CZE_T,CZE,T,services_other,v1_rule_based
DEU_A01,DEU,A01,energy_primary,v1_rule_based
DEU_A02,DEU,A02,energy_primary,v1_rule_based
DEU_A03,DEU,A03,energy_primary,v1_rule_based
DEU_B05,DEU,B05,energy_primary,v1_rule_based
DEU_B06,DEU,B06,energy_primary,v1_rule_based
DEU_B07,DEU,B07,energy_primary,v1_rule_based
DEU_B08,DEU,B08,energy_primary,v1_rule_based
DEU_B09,DEU,B09,energy_primary,v1_rule_based
DEU_C10T12,DEU,C10T12,retail_consumer,v1_rule_based
DEU_C13T15,DEU,C13T15,retail_consumer,v1_rule_based
DEU_C16,DEU,C16,manufacturing_other,v1_rule_based
DEU_C17_18,DEU,C17_18,manufacturing_other,v1_rule_based
DEU_C19,DEU,C19,manufacturing_other,v1_rule_based
DEU_C20,DEU,C20,manufacturing_other,v1_rule_based
DEU_C21,DEU,C21,pharma,v1_rule_based
DEU_C22,DEU,C22,manufacturing_other,v1_rule_based
DEU_C23,DEU,C23,manufacturing_other,v1_rule_based
DEU_C24A,DEU,C24A,steel_aluminum,v1_rule_based
DEU_C24B,DEU,C24B,steel_aluminum,v1_rule_based
DEU_C25,DEU,C25,steel_aluminum,v1_rule_based
DEU_C26,DEU,C26,manufacturing_other,v1_rule_based
DEU_C27,DEU,C27,manufacturing_other,v1_rule_based
DEU_C28,DEU,C28,manufacturing_other,v1_rule_based
DEU_C29,DEU,C29,manufacturing_other,v1_rule_based
DEU_C301,DEU,C301,manufacturing_other,v1_rule_based
DEU_C302T309,DEU,C302T309,manufacturing_other,v1_rule_based
DEU_C31T33,DEU,C31T33,retail_consumer,v1_rule_based
DEU_D,DEU,D,energy_primary,v1_rule_based
DEU_E,DEU,E,energy_primary,v1_rule_based
DEU_F,DEU,F,services_other,v1_rule_based
DEU_G,DEU,G,retail_consumer,v1_rule_based
DEU_H49,DEU,H49,services_other,v1_rule_based
DEU_H50,DEU,H50,services_other,v1_rule_based
DEU_H51,DEU,H51,services_other,v1_rule_based
DEU_H52,DEU,H52,services_other,v1_rule_based
DEU_H53,DEU,H53,services_other,v1_rule_based
DEU_I,DEU,I,retail_consumer,v1_rule_based
DEU_J58T60,DEU,J58T60,services_other,v1_rule_based
DEU_J61,DEU,J61,services_other,v1_rule_based
DEU_J62_63,DEU,J62_63,services_other,v1_rule_based
DEU_K,DEU,K,services_other,v1_rule_based
DEU_L,DEU,L,services_other,v1_rule_based
DEU_M,DEU,M,services_other,v1_rule_based
DEU_N,DEU,N,services_other,v1_rule_based
DEU_O,DEU,O,services_other,v1_rule_based
DEU_P,DEU,P,services_other,v1_rule_based
DEU_Q,DEU,Q,services_other,v1_rule_based
DEU_R,DEU,R,services_other,v1_rule_based
DEU_S,DEU,S,services_other,v1_rule_based
DEU_T,DEU,T,services_other,v1_rule_based
DNK_A01,DNK,A01,energy_primary,v1_rule_based
DNK_A02,DNK,A02,energy_primary,v1_rule_based
DNK_A03,DNK,A03,energy_primary,v1_rule_based
DNK_B05,DNK,B05,energy_primary,v1_rule_based
DNK_B06,DNK,B06,energy_primary,v1_rule_based
DNK_B07,DNK,B07,energy_primary,v1_rule_based
DNK_B08,DNK,B08,energy_primary,v1_rule_based
DNK_B09,DNK,B09,energy_primary,v1_rule_based
DNK_C10T12,DNK,C10T12,retail_consumer,v1_rule_based
DNK_C13T15,DNK,C13T15,retail_consumer,v1_rule_based
DNK_C16,DNK,C16,manufacturing_other,v1_rule_based
DNK_C17_18,DNK,C17_18,manufacturing_other,v1_rule_based
DNK_C19,DNK,C19,manufacturing_other,v1_rule_based
DNK_C20,DNK,C20,manufacturing_other,v1_rule_based
DNK_C21,DNK,C21,pharma,v1_rule_based
DNK_C22,DNK,C22,manufacturing_other,v1_rule_based
DNK_C23,DNK,C23,manufacturing_other,v1_rule_based
DNK_C24A,DNK,C24A,steel_aluminum,v1_rule_based
DNK_C24B,DNK,C24B,steel_aluminum,v1_rule_based
DNK_C25,DNK,C25,steel_aluminum,v1_rule_based
DNK_C26,DNK,C26,manufacturing_other,v1_rule_based
DNK_C27,DNK,C27,manufacturing_other,v1_rule_based
DNK_C28,DNK,C28,manufacturing_other,v1_rule_based
DNK_C29,DNK,C29,manufacturing_other,v1_rule_based
DNK_C301,DNK,C301,manufacturing_other,v1_rule_based
DNK_C302T309,DNK,C302T309,manufacturing_other,v1_rule_based
DNK_C31T33,DNK,C31T33,retail_consumer,v1_rule_based
DNK_D,DNK,D,energy_primary,v1_rule_based
DNK_E,DNK,E,energy_primary,v1_rule_based
DNK_F,DNK,F,services_other,v1_rule_based
DNK_G,DNK,G,retail_consumer,v1_rule_based
DNK_H49,DNK,H49,services_other,v1_rule_based
DNK_H50,DNK,H50,services_other,v1_rule_based
DNK_H51,DNK,H51,services_other,v1_rule_based
DNK_H52,DNK,H52,services_other,v1_rule_based
DNK_H53,DNK,H53,services_other,v1_rule_based
DNK_I,DNK,I,retail_consumer,v1_rule_based
DNK_J58T60,DNK,J58T60,services_other,v1_rule_based
DNK_J61,DNK,J61,services_other,v1_rule_based
DNK_J62_63,DNK,J62_63,services_other,v1_rule_based
DNK_K,DNK,K,services_other,v1_rule_based
DNK_L,DNK,L,services_other,v1_rule_based
DNK_M,DNK,M,services_other,v1_rule_based
DNK_N,DNK,N,services_other,v1_rule_based
DNK_O,DNK,O,services_other,v1_rule_based
DNK_P,DNK,P,services_other,v1_rule_based
DNK_Q,DNK,Q,services_other,v1_rule_based
DNK_R,DNK,R,services_other,v1_rule_based
DNK_S,DNK,S,services_other,v1_rule_based
DNK_T,DNK,T,services_other,v1_rule_based
EGY_A01,EGY,A01,energy_primary,v1_rule_based
EGY_A02,EGY,A02,energy_primary,v1_rule_based
EGY_A03,EGY,A03,energy_primary,v1_rule_based
EGY_B05,EGY,B05,energy_primary,v1_rule_based
EGY_B06,EGY,B06,energy_primary,v1_rule_based
EGY_B07,EGY,B07,energy_primary,v1_rule_based
EGY_B08,EGY,B08,energy_primary,v1_rule_based
EGY_B09,EGY,B09,energy_primary,v1_rule_based
EGY_C10T12,EGY,C10T12,retail_consumer,v1_rule_based
EGY_C13T15,EGY,C13T15,retail_consumer,v1_rule_based
EGY_C16,EGY,C16,manufacturing_other,v1_rule_based
EGY_C17_18,EGY,C17_18,manufacturing_other,v1_rule_based
EGY_C19,EGY,C19,manufacturing_other,v1_rule_based
EGY_C20,EGY,C20,manufacturing_other,v1_rule_based
EGY_C21,EGY,C21,pharma,v1_rule_based
EGY_C22,EGY,C22,manufacturing_other,v1_rule_based
EGY_C23,EGY,C23,manufacturing_other,v1_rule_based
EGY_C24A,EGY,C24A,steel_aluminum,v1_rule_based
EGY_C24B,EGY,C24B,steel_aluminum,v1_rule_based
EGY_C25,EGY,C25,steel_aluminum,v1_rule_based
EGY_C26,EGY,C26,manufacturing_other,v1_rule_based
EGY_C27,EGY,C27,manufacturing_other,v1_rule_based
EGY_C28,EGY,C28,manufacturing_other,v1_rule_based
EGY_C29,EGY,C29,manufacturing_other,v1_rule_based
EGY_C301,EGY,C301,manufacturing_other,v1_rule_based
EGY_C302T309,EGY,C302T309,manufacturing_other,v1_rule_based
EGY_C31T33,EGY,C31T33,retail_consumer,v1_rule_based
EGY_D,EGY,D,energy_primary,v1_rule_based
EGY_E,EGY,E,energy_primary,v1_rule_based
EGY_F,EGY,F,services_other,v1_rule_based
EGY_G,EGY,G,retail_consumer,v1_rule_based
EGY_H49,EGY,H49,services_other,v1_rule_based
EGY_H50,EGY,H50,services_other,v1_rule_based
EGY_H51,EGY,H51,services_other,v1_rule_based
EGY_H52,EGY,H52,services_other,v1_rule_based
EGY_H53,EGY,H53,services_other,v1_rule_based
EGY_I,EGY,I,retail_consumer,v1_rule_based
EGY_J58T60,EGY,J58T60,services_other,v1_rule_based
EGY_J61,EGY,J61,services_other,v1_rule_based
EGY_J62_63,EGY,J62_63,services_other,v1_rule_based
EGY_K,EGY,K,services_other,v1_rule_based
EGY_L,EGY,L,services_other,v1_rule_based
EGY_M,EGY,M,services_other,v1_rule_based
EGY_N,EGY,N,services_other,v1_rule_based
EGY_O,EGY,O,services_other,v1_rule_based
EGY_P,EGY,P,services_other,v1_rule_based
EGY_Q,EGY,Q,services_other,v1_rule_based
EGY_R,EGY,R,services_other,v1_rule_based
EGY_S,EGY,S,services_other,v1_rule_based
EGY_T,EGY,T,services_other,v1_rule_based
ESP_A01,ESP,A01,energy_primary,v1_rule_based
ESP_A02,ESP,A02,energy_primary,v1_rule_based
ESP_A03,ESP,A03,energy_primary,v1_rule_based
ESP_B05,ESP,B05,energy_primary,v1_rule_based
ESP_B06,ESP,B06,energy_primary,v1_rule_based
ESP_B07,ESP,B07,energy_primary,v1_rule_based
ESP_B08,ESP,B08,energy_primary,v1_rule_based
ESP_B09,ESP,B09,energy_primary,v1_rule_based
ESP_C10T12,ESP,C10T12,retail_consumer,v1_rule_based
ESP_C13T15,ESP,C13T15,retail_consumer,v1_rule_based
ESP_C16,ESP,C16,manufacturing_other,v1_rule_based
ESP_C17_18,ESP,C17_18,manufacturing_other,v1_rule_based
ESP_C19,ESP,C19,manufacturing_other,v1_rule_based
ESP_C20,ESP,C20,manufacturing_other,v1_rule_based
ESP_C21,ESP,C21,pharma,v1_rule_based
ESP_C22,ESP,C22,manufacturing_other,v1_rule_based
ESP_C23,ESP,C23,manufacturing_other,v1_rule_based
ESP_C24A,ESP,C24A,steel_aluminum,v1_rule_based
ESP_C24B,ESP,C24B,steel_aluminum,v1_rule_based
ESP_C25,ESP,C25,steel_aluminum,v1_rule_based
ESP_C26,ESP,C26,manufacturing_other,v1_rule_based
ESP_C27,ESP,C27,manufacturing_other,v1_rule_based
ESP_C28,ESP,C28,manufacturing_other,v1_rule_based
ESP_C29,ESP,C29,manufacturing_other,v1_rule_based
ESP_C301,ESP,C301,manufacturing_other,v1_rule_based
ESP_C302T309,ESP,C302T309,manufacturing_other,v1_rule_based
ESP_C31T33,ESP,C31T33,retail_consumer,v1_rule_based
ESP_D,ESP,D,energy_primary,v1_rule_based
ESP_E,ESP,E,energy_primary,v1_rule_based
ESP_F,ESP,F,services_other,v1_rule_based
ESP_G,ESP,G,retail_consumer,v1_rule_based
ESP_H49,ESP,H49,services_other,v1_rule_based
ESP_H50,ESP,H50,services_other,v1_rule_based
ESP_H51,ESP,H51,services_other,v1_rule_based
ESP_H52,ESP,H52,services_other,v1_rule_based
ESP_H53,ESP,H53,services_other,v1_rule_based
ESP_I,ESP,I,retail_consumer,v1_rule_based
ESP_J58T60,ESP,J58T60,services_other,v1_rule_based
ESP_J61,ESP,J61,services_other,v1_rule_based
ESP_J62_63,ESP,J62_63,services_other,v1_rule_based
ESP_K,ESP,K,services_other,v1_rule_based
ESP_L,ESP,L,services_other,v1_rule_based
ESP_M,ESP,M,services_other,v1_rule_based
ESP_N,ESP,N,services_other,v1_rule_based
ESP_O,ESP,O,services_other,v1_rule_based
ESP_P,ESP,P,services_other,v1_rule_based
ESP_Q,ESP,Q,services_other,v1_rule_based
ESP_R,ESP,R,services_other,v1_rule_based
ESP_S,ESP,S,services_other,v1_rule_based
ESP_T,ESP,T,services_other,v1_rule_based
EST_A01,EST,A01,energy_primary,v1_rule_based
EST_A02,EST,A02,energy_primary,v1_rule_based
EST_A03,EST,A03,energy_primary,v1_rule_based
EST_B05,EST,B05,energy_primary,v1_rule_based
EST_B06,EST,B06,energy_primary,v1_rule_based
EST_B07,EST,B07,energy_primary,v1_rule_based
EST_B08,EST,B08,energy_primary,v1_rule_based
EST_B09,EST,B09,energy_primary,v1_rule_based
EST_C10T12,EST,C10T12,retail_consumer,v1_rule_based
EST_C13T15,EST,C13T15,retail_consumer,v1_rule_based
EST_C16,EST,C16,manufacturing_other,v1_rule_based
EST_C17_18,EST,C17_18,manufacturing_other,v1_rule_based
EST_C19,EST,C19,manufacturing_other,v1_rule_based
EST_C20,EST,C20,manufacturing_other,v1_rule_based
EST_C21,EST,C21,pharma,v1_rule_based
EST_C22,EST,C22,manufacturing_other,v1_rule_based
EST_C23,EST,C23,manufacturing_other,v1_rule_based
EST_C24A,EST,C24A,steel_aluminum,v1_rule_based
EST_C24B,EST,C24B,steel_aluminum,v1_rule_based
EST_C25,EST,C25,steel_aluminum,v1_rule_based
EST_C26,EST,C26,manufacturing_other,v1_rule_based
EST_C27,EST,C27,manufacturing_other,v1_rule_based
EST_C28,EST,C28,manufacturing_other,v1_rule_based
EST_C29,EST,C29,manufacturing_other,v1_rule_based
EST_C301,EST,C301,manufacturing_other,v1_rule_based
EST_C302T309,EST,C302T309,manufacturing_other,v1_rule_based
EST_C31T33,EST,C31T33,retail_consumer,v1_rule_based
EST_D,EST,D,energy_primary,v1_rule_based
EST_E,EST,E,energy_primary,v1_rule_based
EST_F,EST,F,services_other,v1_rule_based
EST_G,EST,G,retail_consumer,v1_rule_based
EST_H49,EST,H49,services_other,v1_rule_based
EST_H50,EST,H50,services_other,v1_rule_based
EST_H51,EST,H51,services_other,v1_rule_based
EST_H52,EST,H52,services_other,v1_rule_based
EST_H53,EST,H53,services_other,v1_rule_based
EST_I,EST,I,retail_consumer,v1_rule_based
EST_J58T60,EST,J58T60,services_other,v1_rule_based
EST_J61,EST,J61,services_other,v1_rule_based
EST_J62_63,EST,J62_63,services_other,v1_rule_based
EST_K,EST,K,services_other,v1_rule_based
EST_L,EST,L,services_other,v1_rule_based
EST_M,EST,M,services_other,v1_rule_based
EST_N,EST,N,services_other,v1_rule_based
EST_O,EST,O,services_other,v1_rule_based
EST_P,EST,P,services_other,v1_rule_based
EST_Q,EST,Q,services_other,v1_rule_based
EST_R,EST,R,services_other,v1_rule_based
EST_S,EST,S,services_other,v1_rule_based
EST_T,EST,T,services_other,v1_rule_based
FIN_A01,FIN,A01,energy_primary,v1_rule_based
FIN_A02,FIN,A02,energy_primary,v1_rule_based
FIN_A03,FIN,A03,energy_primary,v1_rule_based
FIN_B05,FIN,B05,energy_primary,v1_rule_based
FIN_B06,FIN,B06,energy_primary,v1_rule_based
FIN_B07,FIN,B07,energy_primary,v1_rule_based
FIN_B08,FIN,B08,energy_primary,v1_rule_based
FIN_B09,FIN,B09,energy_primary,v1_rule_based
FIN_C10T12,FIN,C10T12,retail_consumer,v1_rule_based
FIN_C13T15,FIN,C13T15,retail_consumer,v1_rule_based
FIN_C16,FIN,C16,manufacturing_other,v1_rule_based
FIN_C17_18,FIN,C17_18,manufacturing_other,v1_rule_based
FIN_C19,FIN,C19,manufacturing_other,v1_rule_based
FIN_C20,FIN,C20,manufacturing_other,v1_rule_based
FIN_C21,FIN,C21,pharma,v1_rule_based
FIN_C22,FIN,C22,manufacturing_other,v1_rule_based
FIN_C23,FIN,C23,manufacturing_other,v1_rule_based
FIN_C24A,FIN,C24A,steel_aluminum,v1_rule_based
FIN_C24B,FIN,C24B,steel_aluminum,v1_rule_based
FIN_C25,FIN,C25,steel_aluminum,v1_rule_based
FIN_C26,FIN,C26,manufacturing_other,v1_rule_based
FIN_C27,FIN,C27,manufacturing_other,v1_rule_based
FIN_C28,FIN,C28,manufacturing_other,v1_rule_based
FIN_C29,FIN,C29,manufacturing_other,v1_rule_based
FIN_C301,FIN,C301,manufacturing_other,v1_rule_based
FIN_C302T309,FIN,C302T309,manufacturing_other,v1_rule_based
FIN_C31T33,FIN,C31T33,retail_consumer,v1_rule_based
FIN_D,FIN,D,energy_primary,v1_rule_based
FIN_E,FIN,E,energy_primary,v1_rule_based
FIN_F,FIN,F,services_other,v1_rule_based
FIN_G,FIN,G,retail_consumer,v1_rule_based
FIN_H49,FIN,H49,services_other,v1_rule_based
FIN_H50,FIN,H50,services_other,v1_rule_based
FIN_H51,FIN,H51,services_other,v1_rule_based
FIN_H52,FIN,H52,services_other,v1_rule_based
FIN_H53,FIN,H53,services_other,v1_rule_based
FIN_I,FIN,I,retail_consumer,v1_rule_based
FIN_J58T60,FIN,J58T60,services_other,v1_rule_based
FIN_J61,FIN,J61,services_other,v1_rule_based
FIN_J62_63,FIN,J62_63,services_other,v1_rule_based
FIN_K,FIN,K,services_other,v1_rule_based
FIN_L,FIN,L,services_other,v1_rule_based
FIN_M,FIN,M,services_other,v1_rule_based
FIN_N,FIN,N,services_other,v1_rule_based
FIN_O,FIN,O,services_other,v1_rule_based
FIN_P,FIN,P,services_other,v1_rule_based
FIN_Q,FIN,Q,services_other,v1_rule_based
FIN_R,FIN,R,services_other,v1_rule_based
FIN_S,FIN,S,services_other,v1_rule_based
FIN_T,FIN,T,services_other,v1_rule_based
FRA_A01,FRA,A01,energy_primary,v1_rule_based
FRA_A02,FRA,A02,energy_primary,v1_rule_based
FRA_A03,FRA,A03,energy_primary,v1_rule_based
FRA_B05,FRA,B05,energy_primary,v1_rule_based
FRA_B06,FRA,B06,energy_primary,v1_rule_based
FRA_B07,FRA,B07,energy_primary,v1_rule_based
FRA_B08,FRA,B08,energy_primary,v1_rule_based
FRA_B09,FRA,B09,energy_primary,v1_rule_based
FRA_C10T12,FRA,C10T12,retail_consumer,v1_rule_based
FRA_C13T15,FRA,C13T15,retail_consumer,v1_rule_based
FRA_C16,FRA,C16,manufacturing_other,v1_rule_based
FRA_C17_18,FRA,C17_18,manufacturing_other,v1_rule_based
FRA_C19,FRA,C19,manufacturing_other,v1_rule_based
FRA_C20,FRA,C20,manufacturing_other,v1_rule_based
FRA_C21,FRA,C21,pharma,v1_rule_based
FRA_C22,FRA,C22,manufacturing_other,v1_rule_based
FRA_C23,FRA,C23,manufacturing_other,v1_rule_based
FRA_C24A,FRA,C24A,steel_aluminum,v1_rule_based
FRA_C24B,FRA,C24B,steel_aluminum,v1_rule_based
FRA_C25,FRA,C25,steel_aluminum,v1_rule_based
FRA_C26,FRA,C26,manufacturing_other,v1_rule_based
FRA_C27,FRA,C27,manufacturing_other,v1_rule_based
FRA_C28,FRA,C28,manufacturing_other,v1_rule_based
FRA_C29,FRA,C29,manufacturing_other,v1_rule_based
FRA_C301,FRA,C301,manufacturing_other,v1_rule_based
FRA_C302T309,FRA,C302T309,manufacturing_other,v1_rule_based
FRA_C31T33,FRA,C31T33,retail_consumer,v1_rule_based
FRA_D,FRA,D,energy_primary,v1_rule_based
FRA_E,FRA,E,energy_primary,v1_rule_based
FRA_F,FRA,F,services_other,v1_rule_based
FRA_G,FRA,G,retail_consumer,v1_rule_based
FRA_H49,FRA,H49,services_other,v1_rule_based
FRA_H50,FRA,H50,services_other,v1_rule_based
FRA_H51,FRA,H51,services_other,v1_rule_based
FRA_H52,FRA,H52,services_other,v1_rule_based
FRA_H53,FRA,H53,services_other,v1_rule_based
FRA_I,FRA,I,retail_consumer,v1_rule_based
FRA_J58T60,FRA,J58T60,services_other,v1_rule_based
FRA_J61,FRA,J61,services_other,v1_rule_based
FRA_J62_63,FRA,J62_63,services_other,v1_rule_based
FRA_K,FRA,K,services_other,v1_rule_based
FRA_L,FRA,L,services_other,v1_rule_based
FRA_M,FRA,M,services_other,v1_rule_based
FRA_N,FRA,N,services_other,v1_rule_based
FRA_O,FRA,O,services_other,v1_rule_based
FRA_P,FRA,P,services_other,v1_rule_based
FRA_Q,FRA,Q,services_other,v1_rule_based
FRA_R,FRA,R,services_other,v1_rule_based
FRA_S,FRA,S,services_other,v1_rule_based
FRA_T,FRA,T,services_other,v1_rule_based
GBR_A01,GBR,A01,energy_primary,v1_rule_based
GBR_A02,GBR,A02,energy_primary,v1_rule_based
GBR_A03,GBR,A03,energy_primary,v1_rule_based
GBR_B05,GBR,B05,energy_primary,v1_rule_based
GBR_B06,GBR,B06,energy_primary,v1_rule_based
GBR_B07,GBR,B07,energy_primary,v1_rule_based
GBR_B08,GBR,B08,energy_primary,v1_rule_based
GBR_B09,GBR,B09,energy_primary,v1_rule_based
GBR_C10T12,GBR,C10T12,retail_consumer,v1_rule_based
GBR_C13T15,GBR,C13T15,retail_consumer,v1_rule_based
GBR_C16,GBR,C16,manufacturing_other,v1_rule_based
GBR_C17_18,GBR,C17_18,manufacturing_other,v1_rule_based
GBR_C19,GBR,C19,manufacturing_other,v1_rule_based
GBR_C20,GBR,C20,manufacturing_other,v1_rule_based
GBR_C21,GBR,C21,pharma,v1_rule_based
GBR_C22,GBR,C22,manufacturing_other,v1_rule_based
GBR_C23,GBR,C23,manufacturing_other,v1_rule_based
GBR_C24A,GBR,C24A,steel_aluminum,v1_rule_based
GBR_C24B,GBR,C24B,steel_aluminum,v1_rule_based
GBR_C25,GBR,C25,steel_aluminum,v1_rule_based
GBR_C26,GBR,C26,manufacturing_other,v1_rule_based
GBR_C27,GBR,C27,manufacturing_other,v1_rule_based
GBR_C28,GBR,C28,manufacturing_other,v1_rule_based
GBR_C29,GBR,C29,manufacturing_other,v1_rule_based
GBR_C301,GBR,C301,manufacturing_other,v1_rule_based
GBR_C302T309,GBR,C302T309,manufacturing_other,v1_rule_based
GBR_C31T33,GBR,C31T33,retail_consumer,v1_rule_based
GBR_D,GBR,D,energy_primary,v1_rule_based
GBR_E,GBR,E,energy_primary,v1_rule_based
GBR_F,GBR,F,services_other,v1_rule_based
GBR_G,GBR,G,retail_consumer,v1_rule_based
GBR_H49,GBR,H49,services_other,v1_rule_based
GBR_H50,GBR,H50,services_other,v1_rule_based
GBR_H51,GBR,H51,services_other,v1_rule_based
GBR_H52,GBR,H52,services_other,v1_rule_based
GBR_H53,GBR,H53,services_other,v1_rule_based
GBR_I,GBR,I,retail_consumer,v1_rule_based
GBR_J58T60,GBR,J58T60,services_other,v1_rule_based
GBR_J61,GBR,J61,services_other,v1_rule_based
GBR_J62_63,GBR,J62_63,services_other,v1_rule_based
GBR_K,GBR,K,services_other,v1_rule_based
GBR_L,GBR,L,services_other,v1_rule_based
GBR_M,GBR,M,services_other,v1_rule_based
GBR_N,GBR,N,services_other,v1_rule_based
GBR_O,GBR,O,services_other,v1_rule_based
GBR_P,GBR,P,services_other,v1_rule_based
GBR_Q,GBR,Q,services_other,v1_rule_based
GBR_R,GBR,R,services_other,v1_rule_based
GBR_S,GBR,S,services_other,v1_rule_based
GBR_T,GBR,T,services_other,v1_rule_based
GRC_A01,GRC,A01,energy_primary,v1_rule_based
GRC_A02,GRC,A02,energy_primary,v1_rule_based
GRC_A03,GRC,A03,energy_primary,v1_rule_based
GRC_B05,GRC,B05,energy_primary,v1_rule_based
GRC_B06,GRC,B06,energy_primary,v1_rule_based
GRC_B07,GRC,B07,energy_primary,v1_rule_based
GRC_B08,GRC,B08,energy_primary,v1_rule_based
GRC_B09,GRC,B09,energy_primary,v1_rule_based
GRC_C10T12,GRC,C10T12,retail_consumer,v1_rule_based
GRC_C13T15,GRC,C13T15,retail_consumer,v1_rule_based
GRC_C16,GRC,C16,manufacturing_other,v1_rule_based
GRC_C17_18,GRC,C17_18,manufacturing_other,v1_rule_based
GRC_C19,GRC,C19,manufacturing_other,v1_rule_based
GRC_C20,GRC,C20,manufacturing_other,v1_rule_based
GRC_C21,GRC,C21,pharma,v1_rule_based
GRC_C22,GRC,C22,manufacturing_other,v1_rule_based
GRC_C23,GRC,C23,manufacturing_other,v1_rule_based
GRC_C24A,GRC,C24A,steel_aluminum,v1_rule_based
GRC_C24B,GRC,C24B,steel_aluminum,v1_rule_based
GRC_C25,GRC,C25,steel_aluminum,v1_rule_based
GRC_C26,GRC,C26,manufacturing_other,v1_rule_based
GRC_C27,GRC,C27,manufacturing_other,v1_rule_based
GRC_C28,GRC,C28,manufacturing_other,v1_rule_based
GRC_C29,GRC,C29,manufacturing_other,v1_rule_based
GRC_C301,GRC,C301,manufacturing_other,v1_rule_based
GRC_C302T309,GRC,C302T309,manufacturing_other,v1_rule_based
GRC_C31T33,GRC,C31T33,retail_consumer,v1_rule_based
GRC_D,GRC,D,energy_primary,v1_rule_based
GRC_E,GRC,E,energy_primary,v1_rule_based
GRC_F,GRC,F,services_other,v1_rule_based
GRC_G,GRC,G,retail_consumer,v1_rule_based
GRC_H49,GRC,H49,services_other,v1_rule_based
GRC_H50,GRC,H50,services_other,v1_rule_based
GRC_H51,GRC,H51,services_other,v1_rule_based
GRC_H52,GRC,H52,services_other,v1_rule_based
GRC_H53,GRC,H53,services_other,v1_rule_based
GRC_I,GRC,I,retail_consumer,v1_rule_based
GRC_J58T60,GRC,J58T60,services_other,v1_rule_based
GRC_J61,GRC,J61,services_other,v1_rule_based
GRC_J62_63,GRC,J62_63,services_other,v1_rule_based
GRC_K,GRC,K,services_other,v1_rule_based
GRC_L,GRC,L,services_other,v1_rule_based
GRC_M,GRC,M,services_other,v1_rule_based
GRC_N,GRC,N,services_other,v1_rule_based
GRC_O,GRC,O,services_other,v1_rule_based
GRC_P,GRC,P,services_other,v1_rule_based
GRC_Q,GRC,Q,services_other,v1_rule_based
GRC_R,GRC,R,services_other,v1_rule_based
GRC_S,GRC,S,services_other,v1_rule_based
GRC_T,GRC,T,services_other,v1_rule_based
HKG_A01,HKG,A01,energy_primary,v1_rule_based
HKG_A02,HKG,A02,energy_primary,v1_rule_based
HKG_A03,HKG,A03,energy_primary,v1_rule_based
HKG_B05,HKG,B05,energy_primary,v1_rule_based
HKG_B06,HKG,B06,energy_primary,v1_rule_based
HKG_B07,HKG,B07,energy_primary,v1_rule_based
HKG_B08,HKG,B08,energy_primary,v1_rule_based
HKG_B09,HKG,B09,energy_primary,v1_rule_based
HKG_C10T12,HKG,C10T12,retail_consumer,v1_rule_based
HKG_C13T15,HKG,C13T15,retail_consumer,v1_rule_based
HKG_C16,HKG,C16,manufacturing_other,v1_rule_based
HKG_C17_18,HKG,C17_18,manufacturing_other,v1_rule_based
HKG_C19,HKG,C19,manufacturing_other,v1_rule_based
HKG_C20,HKG,C20,manufacturing_other,v1_rule_based
HKG_C21,HKG,C21,pharma,v1_rule_based
HKG_C22,HKG,C22,manufacturing_other,v1_rule_based
HKG_C23,HKG,C23,manufacturing_other,v1_rule_based
HKG_C24A,HKG,C24A,steel_aluminum,v1_rule_based
HKG_C24B,HKG,C24B,steel_aluminum,v1_rule_based
HKG_C25,HKG,C25,steel_aluminum,v1_rule_based
HKG_C26,HKG,C26,manufacturing_other,v1_rule_based
HKG_C27,HKG,C27,manufacturing_other,v1_rule_based
HKG_C28,HKG,C28,manufacturing_other,v1_rule_based
HKG_C29,HKG,C29,manufacturing_other,v1_rule_based
HKG_C301,HKG,C301,manufacturing_other,v1_rule_based
HKG_C302T309,HKG,C302T309,manufacturing_other,v1_rule_based
HKG_C31T33,HKG,C31T33,retail_consumer,v1_rule_based
HKG_D,HKG,D,energy_primary,v1_rule_based
HKG_E,HKG,E,energy_primary,v1_rule_based
HKG_F,HKG,F,services_other,v1_rule_based
HKG_G,HKG,G,retail_consumer,v1_rule_based
HKG_H49,HKG,H49,services_other,v1_rule_based
HKG_H50,HKG,H50,services_other,v1_rule_based
HKG_H51,HKG,H51,services_other,v1_rule_based
HKG_H52,HKG,H52,services_other,v1_rule_based
HKG_H53,HKG,H53,services_other,v1_rule_based
HKG_I,HKG,I,retail_consumer,v1_rule_based
HKG_J58T60,HKG,J58T60,services_other,v1_rule_based
HKG_J61,HKG,J61,services_other,v1_rule_based
HKG_J62_63,HKG,J62_63,services_other,v1_rule_based
HKG_K,HKG,K,services_other,v1_rule_based
HKG_L,HKG,L,services_other,v1_rule_based
HKG_M,HKG,M,services_other,v1_rule_based
HKG_N,HKG,N,services_other,v1_rule_based
HKG_O,HKG,O,services_other,v1_rule_based
HKG_P,HKG,P,services_other,v1_rule_based
HKG_Q,HKG,Q,services_other,v1_rule_based
HKG_R,HKG,R,services_other,v1_rule_based
HKG_S,HKG,S,services_other,v1_rule_based
HKG_T,HKG,T,services_other,v1_rule_based
HRV_A01,HRV,A01,energy_primary,v1_rule_based
HRV_A02,HRV,A02,energy_primary,v1_rule_based
HRV_A03,HRV,A03,energy_primary,v1_rule_based
HRV_B05,HRV,B05,energy_primary,v1_rule_based
HRV_B06,HRV,B06,energy_primary,v1_rule_based
HRV_B07,HRV,B07,energy_primary,v1_rule_based
HRV_B08,HRV,B08,energy_primary,v1_rule_based
HRV_B09,HRV,B09,energy_primary,v1_rule_based
HRV_C10T12,HRV,C10T12,retail_consumer,v1_rule_based
HRV_C13T15,HRV,C13T15,retail_consumer,v1_rule_based
HRV_C16,HRV,C16,manufacturing_other,v1_rule_based
HRV_C17_18,HRV,C17_18,manufacturing_other,v1_rule_based
HRV_C19,HRV,C19,manufacturing_other,v1_rule_based
HRV_C20,HRV,C20,manufacturing_other,v1_rule_based
HRV_C21,HRV,C21,pharma,v1_rule_based
HRV_C22,HRV,C22,manufacturing_other,v1_rule_based
HRV_C23,HRV,C23,manufacturing_other,v1_rule_based
HRV_C24A,HRV,C24A,steel_aluminum,v1_rule_based
HRV_C24B,HRV,C24B,steel_aluminum,v1_rule_based
HRV_C25,HRV,C25,steel_aluminum,v1_rule_based
HRV_C26,HRV,C26,manufacturing_other,v1_rule_based
HRV_C27,HRV,C27,manufacturing_other,v1_rule_based
HRV_C28,HRV,C28,manufacturing_other,v1_rule_based
HRV_C29,HRV,C29,manufacturing_other,v1_rule_based
HRV_C301,HRV,C301,manufacturing_other,v1_rule_based
HRV_C302T309,HRV,C302T309,manufacturing_other,v1_rule_based
HRV_C31T33,HRV,C31T33,retail_consumer,v1_rule_based
HRV_D,HRV,D,energy_primary,v1_rule_based
HRV_E,HRV,E,energy_primary,v1_rule_based
HRV_F,HRV,F,services_other,v1_rule_based
HRV_G,HRV,G,retail_consumer,v1_rule_based
HRV_H49,HRV,H49,services_other,v1_rule_based
HRV_H50,HRV,H50,services_other,v1_rule_based
HRV_H51,HRV,H51,services_other,v1_rule_based
HRV_H52,HRV,H52,services_other,v1_rule_based
HRV_H53,HRV,H53,services_other,v1_rule_based
HRV_I,HRV,I,retail_consumer,v1_rule_based
HRV_J58T60,HRV,J58T60,services_other,v1_rule_based
HRV_J61,HRV,J61,services_other,v1_rule_based
HRV_J62_63,HRV,J62_63,services_other,v1_rule_based
HRV_K,HRV,K,services_other,v1_rule_based
HRV_L,HRV,L,services_other,v1_rule_based
HRV_M,HRV,M,services_other,v1_rule_based
HRV_N,HRV,N,services_other,v1_rule_based
HRV_O,HRV,O,services_other,v1_rule_based
HRV_P,HRV,P,services_other,v1_rule_based
HRV_Q,HRV,Q,services_other,v1_rule_based
HRV_R,HRV,R,services_other,v1_rule_based
HRV_S,HRV,S,services_other,v1_rule_based
HRV_T,HRV,T,services_other,v1_rule_based
HUN_A01,HUN,A01,energy_primary,v1_rule_based
HUN_A02,HUN,A02,energy_primary,v1_rule_based
HUN_A03,HUN,A03,energy_primary,v1_rule_based
HUN_B05,HUN,B05,energy_primary,v1_rule_based
HUN_B06,HUN,B06,energy_primary,v1_rule_based
HUN_B07,HUN,B07,energy_primary,v1_rule_based
HUN_B08,HUN,B08,energy_primary,v1_rule_based
HUN_B09,HUN,B09,energy_primary,v1_rule_based
HUN_C10T12,HUN,C10T12,retail_consumer,v1_rule_based
HUN_C13T15,HUN,C13T15,retail_consumer,v1_rule_based
HUN_C16,HUN,C16,manufacturing_other,v1_rule_based
HUN_C17_18,HUN,C17_18,manufacturing_other,v1_rule_based
HUN_C19,HUN,C19,manufacturing_other,v1_rule_based
HUN_C20,HUN,C20,manufacturing_other,v1_rule_based
HUN_C21,HUN,C21,pharma,v1_rule_based
HUN_C22,HUN,C22,manufacturing_other,v1_rule_based
HUN_C23,HUN,C23,manufacturing_other,v1_rule_based
HUN_C24A,HUN,C24A,steel_aluminum,v1_rule_based
HUN_C24B,HUN,C24B,steel_aluminum,v1_rule_based
HUN_C25,HUN,C25,steel_aluminum,v1_rule_based
HUN_C26,HUN,C26,manufacturing_other,v1_rule_based
HUN_C27,HUN,C27,manufacturing_other,v1_rule_based
HUN_C28,HUN,C28,manufacturing_other,v1_rule_based
HUN_C29,HUN,C29,manufacturing_other,v1_rule_based
HUN_C301,HUN,C301,manufacturing_other,v1_rule_based
HUN_C302T309,HUN,C302T309,manufacturing_other,v1_rule_based
HUN_C31T33,HUN,C31T33,retail_consumer,v1_rule_based
HUN_D,HUN,D,energy_primary,v1_rule_based
HUN_E,HUN,E,energy_primary,v1_rule_based
HUN_F,HUN,F,services_other,v1_rule_based
HUN_G,HUN,G,retail_consumer,v1_rule_based
HUN_H49,HUN,H49,services_other,v1_rule_based
HUN_H50,HUN,H50,services_other,v1_rule_based
HUN_H51,HUN,H51,services_other,v1_rule_based
HUN_H52,HUN,H52,services_other,v1_rule_based
HUN_H53,HUN,H53,services_other,v1_rule_based
HUN_I,HUN,I,retail_consumer,v1_rule_based
HUN_J58T60,HUN,J58T60,services_other,v1_rule_based
HUN_J61,HUN,J61,services_other,v1_rule_based
HUN_J62_63,HUN,J62_63,services_other,v1_rule_based
HUN_K,HUN,K,services_other,v1_rule_based
HUN_L,HUN,L,services_other,v1_rule_based
HUN_M,HUN,M,services_other,v1_rule_based
HUN_N,HUN,N,services_other,v1_rule_based
HUN_O,HUN,O,services_other,v1_rule_based
HUN_P,HUN,P,services_other,v1_rule_based
HUN_Q,HUN,Q,services_other,v1_rule_based
HUN_R,HUN,R,services_other,v1_rule_based
HUN_S,HUN,S,services_other,v1_rule_based
HUN_T,HUN,T,services_other,v1_rule_based
IDN_A01,IDN,A01,energy_primary,v1_rule_based
IDN_A02,IDN,A02,energy_primary,v1_rule_based
IDN_A03,IDN,A03,energy_primary,v1_rule_based
IDN_B05,IDN,B05,energy_primary,v1_rule_based
IDN_B06,IDN,B06,energy_primary,v1_rule_based
IDN_B07,IDN,B07,energy_primary,v1_rule_based
IDN_B08,IDN,B08,energy_primary,v1_rule_based
IDN_B09,IDN,B09,energy_primary,v1_rule_based
IDN_C10T12,IDN,C10T12,retail_consumer,v1_rule_based
IDN_C13T15,IDN,C13T15,retail_consumer,v1_rule_based
IDN_C16,IDN,C16,manufacturing_other,v1_rule_based
IDN_C17_18,IDN,C17_18,manufacturing_other,v1_rule_based
IDN_C19,IDN,C19,manufacturing_other,v1_rule_based
IDN_C20,IDN,C20,manufacturing_other,v1_rule_based
IDN_C21,IDN,C21,pharma,v1_rule_based
IDN_C22,IDN,C22,manufacturing_other,v1_rule_based
IDN_C23,IDN,C23,manufacturing_other,v1_rule_based
IDN_C24A,IDN,C24A,steel_aluminum,v1_rule_based
IDN_C24B,IDN,C24B,steel_aluminum,v1_rule_based
IDN_C25,IDN,C25,steel_aluminum,v1_rule_based
IDN_C26,IDN,C26,manufacturing_other,v1_rule_based
IDN_C27,IDN,C27,manufacturing_other,v1_rule_based
IDN_C28,IDN,C28,manufacturing_other,v1_rule_based
IDN_C29,IDN,C29,manufacturing_other,v1_rule_based
IDN_C301,IDN,C301,manufacturing_other,v1_rule_based
IDN_C302T309,IDN,C302T309,manufacturing_other,v1_rule_based
IDN_C31T33,IDN,C31T33,retail_consumer,v1_rule_based
IDN_D,IDN,D,energy_primary,v1_rule_based
IDN_E,IDN,E,energy_primary,v1_rule_based
IDN_F,IDN,F,services_other,v1_rule_based
IDN_G,IDN,G,retail_consumer,v1_rule_based
IDN_H49,IDN,H49,services_other,v1_rule_based
IDN_H50,IDN,H50,services_other,v1_rule_based
IDN_H51,IDN,H51,services_other,v1_rule_based
IDN_H52,IDN,H52,services_other,v1_rule_based
IDN_H53,IDN,H53,services_other,v1_rule_based
IDN_I,IDN,I,retail_consumer,v1_rule_based
IDN_J58T60,IDN,J58T60,services_other,v1_rule_based
IDN_J61,IDN,J61,services_other,v1_rule_based
IDN_J62_63,IDN,J62_63,services_other,v1_rule_based
IDN_K,IDN,K,services_other,v1_rule_based
IDN_L,IDN,L,services_other,v1_rule_based
IDN_M,IDN,M,services_other,v1_rule_based
IDN_N,IDN,N,services_other,v1_rule_based
IDN_O,IDN,O,services_other,v1_rule_based
IDN_P,IDN,P,services_other,v1_rule_based
IDN_Q,IDN,Q,services_other,v1_rule_based
IDN_R,IDN,R,services_other,v1_rule_based
IDN_S,IDN,S,services_other,v1_rule_based
IDN_T,IDN,T,services_other,v1_rule_based
IND_A01,IND,A01,energy_primary,v1_rule_based
IND_A02,IND,A02,energy_primary,v1_rule_based
IND_A03,IND,A03,energy_primary,v1_rule_based
IND_B05,IND,B05,energy_primary,v1_rule_based
IND_B06,IND,B06,energy_primary,v1_rule_based
IND_B07,IND,B07,energy_primary,v1_rule_based
IND_B08,IND,B08,energy_primary,v1_rule_based
IND_B09,IND,B09,energy_primary,v1_rule_based
IND_C10T12,IND,C10T12,retail_consumer,v1_rule_based
IND_C13T15,IND,C13T15,retail_consumer,v1_rule_based
IND_C16,IND,C16,manufacturing_other,v1_rule_based
IND_C17_18,IND,C17_18,manufacturing_other,v1_rule_based
IND_C19,IND,C19,manufacturing_other,v1_rule_based
IND_C20,IND,C20,manufacturing_other,v1_rule_based
IND_C21,IND,C21,pharma,v1_rule_based
IND_C22,IND,C22,manufacturing_other,v1_rule_based
IND_C23,IND,C23,manufacturing_other,v1_rule_based
IND_C24A,IND,C24A,steel_aluminum,v1_rule_based
IND_C24B,IND,C24B,steel_aluminum,v1_rule_based
IND_C25,IND,C25,steel_aluminum,v1_rule_based
IND_C26,IND,C26,manufacturing_other,v1_rule_based
IND_C27,IND,C27,manufacturing_other,v1_rule_based
IND_C28,IND,C28,manufacturing_other,v1_rule_based
IND_C29,IND,C29,manufacturing_other,v1_rule_based
IND_C301,IND,C301,manufacturing_other,v1_rule_based
IND_C302T309,IND,C302T309,manufacturing_other,v1_rule_based
IND_C31T33,IND,C31T33,retail_consumer,v1_rule_based
IND_D,IND,D,energy_primary,v1_rule_based
IND_E,IND,E,energy_primary,v1_rule_based
IND_F,IND,F,services_other,v1_rule_based
IND_G,IND,G,retail_consumer,v1_rule_based
IND_H49,IND,H49,services_other,v1_rule_based
IND_H50,IND,H50,services_other,v1_rule_based
IND_H51,IND,H51,services_other,v1_rule_based
IND_H52,IND,H52,services_other,v1_rule_based
IND_H53,IND,H53,services_other,v1_rule_based
IND_I,IND,I,retail_consumer,v1_rule_based
IND_J58T60,IND,J58T60,services_other,v1_rule_based
IND_J61,IND,J61,services_other,v1_rule_based
IND_J62_63,IND,J62_63,services_other,v1_rule_based
IND_K,IND,K,services_other,v1_rule_based
IND_L,IND,L,services_other,v1_rule_based
IND_M,IND,M,services_other,v1_rule_based
IND_N,IND,N,services_other,v1_rule_based
IND_O,IND,O,services_other,v1_rule_based
IND_P,IND,P,services_other,v1_rule_based
IND_Q,IND,Q,services_other,v1_rule_based
IND_R,IND,R,services_other,v1_rule_based
IND_S,IND,S,services_other,v1_rule_based
IND_T,IND,T,services_other,v1_rule_based
IRL_A01,IRL,A01,energy_primary,v1_rule_based
IRL_A02,IRL,A02,energy_primary,v1_rule_based
IRL_A03,IRL,A03,energy_primary,v1_rule_based
IRL_B05,IRL,B05,energy_primary,v1_rule_based
IRL_B06,IRL,B06,energy_primary,v1_rule_based
IRL_B07,IRL,B07,energy_primary,v1_rule_based
IRL_B08,IRL,B08,energy_primary,v1_rule_based
IRL_B09,IRL,B09,energy_primary,v1_rule_based
IRL_C10T12,IRL,C10T12,retail_consumer,v1_rule_based
IRL_C13T15,IRL,C13T15,retail_consumer,v1_rule_based
IRL_C16,IRL,C16,manufacturing_other,v1_rule_based
IRL_C17_18,IRL,C17_18,manufacturing_other,v1_rule_based
IRL_C19,IRL,C19,manufacturing_other,v1_rule_based
IRL_C20,IRL,C20,manufacturing_other,v1_rule_based
IRL_C21,IRL,C21,pharma,v1_rule_based
IRL_C22,IRL,C22,manufacturing_other,v1_rule_based
IRL_C23,IRL,C23,manufacturing_other,v1_rule_based
IRL_C24A,IRL,C24A,steel_aluminum,v1_rule_based
IRL_C24B,IRL,C24B,steel_aluminum,v1_rule_based
IRL_C25,IRL,C25,steel_aluminum,v1_rule_based
IRL_C26,IRL,C26,manufacturing_other,v1_rule_based
IRL_C27,IRL,C27,manufacturing_other,v1_rule_based
IRL_C28,IRL,C28,manufacturing_other,v1_rule_based
IRL_C29,IRL,C29,manufacturing_other,v1_rule_based
IRL_C301,IRL,C301,manufacturing_other,v1_rule_based
IRL_C302T309,IRL,C302T309,manufacturing_other,v1_rule_based
IRL_C31T33,IRL,C31T33,retail_consumer,v1_rule_based
IRL_D,IRL,D,energy_primary,v1_rule_based
IRL_E,IRL,E,energy_primary,v1_rule_based
IRL_F,IRL,F,services_other,v1_rule_based
IRL_G,IRL,G,retail_consumer,v1_rule_based
IRL_H49,IRL,H49,services_other,v1_rule_based
IRL_H50,IRL,H50,services_other,v1_rule_based
IRL_H51,IRL,H51,services_other,v1_rule_based
IRL_H52,IRL,H52,services_other,v1_rule_based
IRL_H53,IRL,H53,services_other,v1_rule_based
IRL_I,IRL,I,retail_consumer,v1_rule_based
IRL_J58T60,IRL,J58T60,services_other,v1_rule_based
IRL_J61,IRL,J61,services_other,v1_rule_based
IRL_J62_63,IRL,J62_63,services_other,v1_rule_based
IRL_K,IRL,K,services_other,v1_rule_based
IRL_L,IRL,L,services_other,v1_rule_based
IRL_M,IRL,M,services_other,v1_rule_based
IRL_N,IRL,N,services_other,v1_rule_based
IRL_O,IRL,O,services_other,v1_rule_based
IRL_P,IRL,P,services_other,v1_rule_based
IRL_Q,IRL,Q,services_other,v1_rule_based
IRL_R,IRL,R,services_other,v1_rule_based
IRL_S,IRL,S,services_other,v1_rule_based
IRL_T,IRL,T,services_other,v1_rule_based
ISL_A01,ISL,A01,energy_primary,v1_rule_based
ISL_A02,ISL,A02,energy_primary,v1_rule_based
ISL_A03,ISL,A03,energy_primary,v1_rule_based
ISL_B05,ISL,B05,energy_primary,v1_rule_based
ISL_B06,ISL,B06,energy_primary,v1_rule_based
ISL_B07,ISL,B07,energy_primary,v1_rule_based
ISL_B08,ISL,B08,energy_primary,v1_rule_based
ISL_B09,ISL,B09,energy_primary,v1_rule_based
ISL_C10T12,ISL,C10T12,retail_consumer,v1_rule_based
ISL_C13T15,ISL,C13T15,retail_consumer,v1_rule_based
ISL_C16,ISL,C16,manufacturing_other,v1_rule_based
ISL_C17_18,ISL,C17_18,manufacturing_other,v1_rule_based
ISL_C19,ISL,C19,manufacturing_other,v1_rule_based
ISL_C20,ISL,C20,manufacturing_other,v1_rule_based
ISL_C21,ISL,C21,pharma,v1_rule_based
ISL_C22,ISL,C22,manufacturing_other,v1_rule_based
ISL_C23,ISL,C23,manufacturing_other,v1_rule_based
ISL_C24A,ISL,C24A,steel_aluminum,v1_rule_based
ISL_C24B,ISL,C24B,steel_aluminum,v1_rule_based
ISL_C25,ISL,C25,steel_aluminum,v1_rule_based
ISL_C26,ISL,C26,manufacturing_other,v1_rule_based
ISL_C27,ISL,C27,manufacturing_other,v1_rule_based
ISL_C28,ISL,C28,manufacturing_other,v1_rule_based
ISL_C29,ISL,C29,manufacturing_other,v1_rule_based
ISL_C301,ISL,C301,manufacturing_other,v1_rule_based
ISL_C302T309,ISL,C302T309,manufacturing_other,v1_rule_based
ISL_C31T33,ISL,C31T33,retail_consumer,v1_rule_based
ISL_D,ISL,D,energy_primary,v1_rule_based
ISL_E,ISL,E,energy_primary,v1_rule_based
ISL_F,ISL,F,services_other,v1_rule_based
ISL_G,ISL,G,retail_consumer,v1_rule_based
ISL_H49,ISL,H49,services_other,v1_rule_based
ISL_H50,ISL,H50,services_other,v1_rule_based
ISL_H51,ISL,H51,services_other,v1_rule_based
ISL_H52,ISL,H52,services_other,v1_rule_based
ISL_H53,ISL,H53,services_other,v1_rule_based
ISL_I,ISL,I,retail_consumer,v1_rule_based
ISL_J58T60,ISL,J58T60,services_other,v1_rule_based
ISL_J61,ISL,J61,services_other,v1_rule_based
ISL_J62_63,ISL,J62_63,services_other,v1_rule_based
ISL_K,ISL,K,services_other,v1_rule_based
ISL_L,ISL,L,services_other,v1_rule_based
ISL_M,ISL,M,services_other,v1_rule_based
ISL_N,ISL,N,services_other,v1_rule_based
ISL_O,ISL,O,services_other,v1_rule_based
ISL_P,ISL,P,services_other,v1_rule_based
ISL_Q,ISL,Q,services_other,v1_rule_based
ISL_R,ISL,R,services_other,v1_rule_based
ISL_S,ISL,S,services_other,v1_rule_based
ISL_T,ISL,T,services_other,v1_rule_based
ISR_A01,ISR,A01,energy_primary,v1_rule_based
ISR_A02,ISR,A02,energy_primary,v1_rule_based
ISR_A03,ISR,A03,energy_primary,v1_rule_based
ISR_B05,ISR,B05,energy_primary,v1_rule_based
ISR_B06,ISR,B06,energy_primary,v1_rule_based
ISR_B07,ISR,B07,energy_primary,v1_rule_based
ISR_B08,ISR,B08,energy_primary,v1_rule_based
ISR_B09,ISR,B09,energy_primary,v1_rule_based
ISR_C10T12,ISR,C10T12,retail_consumer,v1_rule_based
ISR_C13T15,ISR,C13T15,retail_consumer,v1_rule_based
ISR_C16,ISR,C16,manufacturing_other,v1_rule_based
ISR_C17_18,ISR,C17_18,manufacturing_other,v1_rule_based
ISR_C19,ISR,C19,manufacturing_other,v1_rule_based
ISR_C20,ISR,C20,manufacturing_other,v1_rule_based
ISR_C21,ISR,C21,pharma,v1_rule_based
ISR_C22,ISR,C22,manufacturing_other,v1_rule_based
ISR_C23,ISR,C23,manufacturing_other,v1_rule_based
ISR_C24A,ISR,C24A,steel_aluminum,v1_rule_based
ISR_C24B,ISR,C24B,steel_aluminum,v1_rule_based
ISR_C25,ISR,C25,steel_aluminum,v1_rule_based
ISR_C26,ISR,C26,manufacturing_other,v1_rule_based
ISR_C27,ISR,C27,manufacturing_other,v1_rule_based
ISR_C28,ISR,C28,manufacturing_other,v1_rule_based
ISR_C29,ISR,C29,manufacturing_other,v1_rule_based
ISR_C301,ISR,C301,manufacturing_other,v1_rule_based
ISR_C302T309,ISR,C302T309,manufacturing_other,v1_rule_based
ISR_C31T33,ISR,C31T33,retail_consumer,v1_rule_based
ISR_D,ISR,D,energy_primary,v1_rule_based
ISR_E,ISR,E,energy_primary,v1_rule_based
ISR_F,ISR,F,services_other,v1_rule_based
ISR_G,ISR,G,retail_consumer,v1_rule_based
ISR_H49,ISR,H49,services_other,v1_rule_based
ISR_H50,ISR,H50,services_other,v1_rule_based
ISR_H51,ISR,H51,services_other,v1_rule_based
ISR_H52,ISR,H52,services_other,v1_rule_based
ISR_H53,ISR,H53,services_other,v1_rule_based
ISR_I,ISR,I,retail_consumer,v1_rule_based
ISR_J58T60,ISR,J58T60,services_other,v1_rule_based
ISR_J61,ISR,J61,services_other,v1_rule_based
ISR_J62_63,ISR,J62_63,services_other,v1_rule_based
ISR_K,ISR,K,services_other,v1_rule_based
ISR_L,ISR,L,services_other,v1_rule_based
ISR_M,ISR,M,services_other,v1_rule_based
ISR_N,ISR,N,services_other,v1_rule_based
ISR_O,ISR,O,services_other,v1_rule_based
ISR_P,ISR,P,services_other,v1_rule_based
ISR_Q,ISR,Q,services_other,v1_rule_based
ISR_R,ISR,R,services_other,v1_rule_based
ISR_S,ISR,S,services_other,v1_rule_based
ISR_T,ISR,T,services_other,v1_rule_based
ITA_A01,ITA,A01,energy_primary,v1_rule_based
ITA_A02,ITA,A02,energy_primary,v1_rule_based
ITA_A03,ITA,A03,energy_primary,v1_rule_based
ITA_B05,ITA,B05,energy_primary,v1_rule_based
ITA_B06,ITA,B06,energy_primary,v1_rule_based
ITA_B07,ITA,B07,energy_primary,v1_rule_based
ITA_B08,ITA,B08,energy_primary,v1_rule_based
ITA_B09,ITA,B09,energy_primary,v1_rule_based
ITA_C10T12,ITA,C10T12,retail_consumer,v1_rule_based
ITA_C13T15,ITA,C13T15,retail_consumer,v1_rule_based
ITA_C16,ITA,C16,manufacturing_other,v1_rule_based
ITA_C17_18,ITA,C17_18,manufacturing_other,v1_rule_based
ITA_C19,ITA,C19,manufacturing_other,v1_rule_based
ITA_C20,ITA,C20,manufacturing_other,v1_rule_based
ITA_C21,ITA,C21,pharma,v1_rule_based
ITA_C22,ITA,C22,manufacturing_other,v1_rule_based
ITA_C23,ITA,C23,manufacturing_other,v1_rule_based
ITA_C24A,ITA,C24A,steel_aluminum,v1_rule_based
ITA_C24B,ITA,C24B,steel_aluminum,v1_rule_based
ITA_C25,ITA,C25,steel_aluminum,v1_rule_based
ITA_C26,ITA,C26,manufacturing_other,v1_rule_based
ITA_C27,ITA,C27,manufacturing_other,v1_rule_based
ITA_C28,ITA,C28,manufacturing_other,v1_rule_based
ITA_C29,ITA,C29,manufacturing_other,v1_rule_based
ITA_C301,ITA,C301,manufacturing_other,v1_rule_based
ITA_C302T309,ITA,C302T309,manufacturing_other,v1_rule_based
ITA_C31T33,ITA,C31T33,retail_consumer,v1_rule_based
ITA_D,ITA,D,energy_primary,v1_rule_based
ITA_E,ITA,E,energy_primary,v1_rule_based
ITA_F,ITA,F,services_other,v1_rule_based
ITA_G,ITA,G,retail_consumer,v1_rule_based
ITA_H49,ITA,H49,services_other,v1_rule_based
ITA_H50,ITA,H50,services_other,v1_rule_based
ITA_H51,ITA,H51,services_other,v1_rule_based
ITA_H52,ITA,H52,services_other,v1_rule_based
ITA_H53,ITA,H53,services_other,v1_rule_based
ITA_I,ITA,I,retail_consumer,v1_rule_based
ITA_J58T60,ITA,J58T60,services_other,v1_rule_based
ITA_J61,ITA,J61,services_other,v1_rule_based
ITA_J62_63,ITA,J62_63,services_other,v1_rule_based
ITA_K,ITA,K,services_other,v1_rule_based
ITA_L,ITA,L,services_other,v1_rule_based
ITA_M,ITA,M,services_other,v1_rule_based
ITA_N,ITA,N,services_other,v1_rule_based
ITA_O,ITA,O,services_other,v1_rule_based
ITA_P,ITA,P,services_other,v1_rule_based
ITA_Q,ITA,Q,services_other,v1_rule_based
ITA_R,ITA,R,services_other,v1_rule_based
ITA_S,ITA,S,services_other,v1_rule_based
ITA_T,ITA,T,services_other,v1_rule_based
JOR_A01,JOR,A01,energy_primary,v1_rule_based
JOR_A02,JOR,A02,energy_primary,v1_rule_based
JOR_A03,JOR,A03,energy_primary,v1_rule_based
JOR_B05,JOR,B05,energy_primary,v1_rule_based
JOR_B06,JOR,B06,energy_primary,v1_rule_based
JOR_B07,JOR,B07,energy_primary,v1_rule_based
JOR_B08,JOR,B08,energy_primary,v1_rule_based
JOR_B09,JOR,B09,energy_primary,v1_rule_based
JOR_C10T12,JOR,C10T12,retail_consumer,v1_rule_based
JOR_C13T15,JOR,C13T15,retail_consumer,v1_rule_based
JOR_C16,JOR,C16,manufacturing_other,v1_rule_based
JOR_C17_18,JOR,C17_18,manufacturing_other,v1_rule_based
JOR_C19,JOR,C19,manufacturing_other,v1_rule_based
JOR_C20,JOR,C20,manufacturing_other,v1_rule_based
JOR_C21,JOR,C21,pharma,v1_rule_based
JOR_C22,JOR,C22,manufacturing_other,v1_rule_based
JOR_C23,JOR,C23,manufacturing_other,v1_rule_based
JOR_C24A,JOR,C24A,steel_aluminum,v1_rule_based
JOR_C24B,JOR,C24B,steel_aluminum,v1_rule_based
JOR_C25,JOR,C25,steel_aluminum,v1_rule_based
JOR_C26,JOR,C26,manufacturing_other,v1_rule_based
JOR_C27,JOR,C27,manufacturing_other,v1_rule_based
JOR_C28,JOR,C28,manufacturing_other,v1_rule_based
JOR_C29,JOR,C29,manufacturing_other,v1_rule_based
JOR_C301,JOR,C301,manufacturing_other,v1_rule_based
JOR_C302T309,JOR,C302T309,manufacturing_other,v1_rule_based
JOR_C31T33,JOR,C31T33,retail_consumer,v1_rule_based
JOR_D,JOR,D,energy_primary,v1_rule_based
JOR_E,JOR,E,energy_primary,v1_rule_based
JOR_F,JOR,F,services_other,v1_rule_based
JOR_G,JOR,G,retail_consumer,v1_rule_based
JOR_H49,JOR,H49,services_other,v1_rule_based
JOR_H50,JOR,H50,services_other,v1_rule_based
JOR_H51,JOR,H51,services_other,v1_rule_based
JOR_H52,JOR,H52,services_other,v1_rule_based
JOR_H53,JOR,H53,services_other,v1_rule_based
JOR_I,JOR,I,retail_consumer,v1_rule_based
JOR_J58T60,JOR,J58T60,services_other,v1_rule_based
JOR_J61,JOR,J61,services_other,v1_rule_based
JOR_J62_63,JOR,J62_63,services_other,v1_rule_based
JOR_K,JOR,K,services_other,v1_rule_based
JOR_L,JOR,L,services_other,v1_rule_based
JOR_M,JOR,M,services_other,v1_rule_based
JOR_N,JOR,N,services_other,v1_rule_based
JOR_O,JOR,O,services_other,v1_rule_based
JOR_P,JOR,P,services_other,v1_rule_based
JOR_Q,JOR,Q,services_other,v1_rule_based
JOR_R,JOR,R,services_other,v1_rule_based
JOR_S,JOR,S,services_other,v1_rule_based
JOR_T,JOR,T,services_other,v1_rule_based
JPN_A01,JPN,A01,energy_primary,v1_rule_based
JPN_A02,JPN,A02,energy_primary,v1_rule_based
JPN_A03,JPN,A03,energy_primary,v1_rule_based
JPN_B05,JPN,B05,energy_primary,v1_rule_based
JPN_B06,JPN,B06,energy_primary,v1_rule_based
JPN_B07,JPN,B07,energy_primary,v1_rule_based
JPN_B08,JPN,B08,energy_primary,v1_rule_based
JPN_B09,JPN,B09,energy_primary,v1_rule_based
JPN_C10T12,JPN,C10T12,retail_consumer,v1_rule_based
JPN_C13T15,JPN,C13T15,retail_consumer,v1_rule_based
JPN_C16,JPN,C16,manufacturing_other,v1_rule_based
JPN_C17_18,JPN,C17_18,manufacturing_other,v1_rule_based
JPN_C19,JPN,C19,manufacturing_other,v1_rule_based
JPN_C20,JPN,C20,manufacturing_other,v1_rule_based
JPN_C21,JPN,C21,pharma,v1_rule_based
JPN_C22,JPN,C22,manufacturing_other,v1_rule_based
JPN_C23,JPN,C23,manufacturing_other,v1_rule_based
JPN_C24A,JPN,C24A,steel_aluminum,v1_rule_based
JPN_C24B,JPN,C24B,steel_aluminum,v1_rule_based
JPN_C25,JPN,C25,steel_aluminum,v1_rule_based
JPN_C26,JPN,C26,manufacturing_other,v1_rule_based
JPN_C27,JPN,C27,manufacturing_other,v1_rule_based
JPN_C28,JPN,C28,manufacturing_other,v1_rule_based
JPN_C29,JPN,C29,manufacturing_other,v1_rule_based
JPN_C301,JPN,C301,manufacturing_other,v1_rule_based
JPN_C302T309,JPN,C302T309,manufacturing_other,v1_rule_based
JPN_C31T33,JPN,C31T33,retail_consumer,v1_rule_based
JPN_D,JPN,D,energy_primary,v1_rule_based
JPN_E,JPN,E,energy_primary,v1_rule_based
JPN_F,JPN,F,services_other,v1_rule_based
JPN_G,JPN,G,retail_consumer,v1_rule_based
JPN_H49,JPN,H49,services_other,v1_rule_based
JPN_H50,JPN,H50,services_other,v1_rule_based
JPN_H51,JPN,H51,services_other,v1_rule_based
JPN_H52,JPN,H52,services_other,v1_rule_based
JPN_H53,JPN,H53,services_other,v1_rule_based
JPN_I,JPN,I,retail_consumer,v1_rule_based
JPN_J58T60,JPN,J58T60,services_other,v1_rule_based
JPN_J61,JPN,J61,services_other,v1_rule_based
JPN_J62_63,JPN,J62_63,services_other,v1_rule_based
JPN_K,JPN,K,services_other,v1_rule_based
JPN_L,JPN,L,services_other,v1_rule_based
JPN_M,JPN,M,services_other,v1_rule_based
JPN_N,JPN,N,services_other,v1_rule_based
JPN_O,JPN,O,services_other,v1_rule_based
JPN_P,JPN,P,services_other,v1_rule_based
JPN_Q,JPN,Q,services_other,v1_rule_based
JPN_R,JPN,R,services_other,v1_rule_based
JPN_S,JPN,S,services_other,v1_rule_based
JPN_T,JPN,T,services_other,v1_rule_based
KAZ_A01,KAZ,A01,energy_primary,v1_rule_based
KAZ_A02,KAZ,A02,energy_primary,v1_rule_based
KAZ_A03,KAZ,A03,energy_primary,v1_rule_based
KAZ_B05,KAZ,B05,energy_primary,v1_rule_based
KAZ_B06,KAZ,B06,energy_primary,v1_rule_based
KAZ_B07,KAZ,B07,energy_primary,v1_rule_based
KAZ_B08,KAZ,B08,energy_primary,v1_rule_based
KAZ_B09,KAZ,B09,energy_primary,v1_rule_based
KAZ_C10T12,KAZ,C10T12,retail_consumer,v1_rule_based
KAZ_C13T15,KAZ,C13T15,retail_consumer,v1_rule_based
KAZ_C16,KAZ,C16,manufacturing_other,v1_rule_based
KAZ_C17_18,KAZ,C17_18,manufacturing_other,v1_rule_based
KAZ_C19,KAZ,C19,manufacturing_other,v1_rule_based
KAZ_C20,KAZ,C20,manufacturing_other,v1_rule_based
KAZ_C21,KAZ,C21,pharma,v1_rule_based
KAZ_C22,KAZ,C22,manufacturing_other,v1_rule_based
KAZ_C23,KAZ,C23,manufacturing_other,v1_rule_based
KAZ_C24A,KAZ,C24A,steel_aluminum,v1_rule_based
KAZ_C24B,KAZ,C24B,steel_aluminum,v1_rule_based
KAZ_C25,KAZ,C25,steel_aluminum,v1_rule_based
KAZ_C26,KAZ,C26,manufacturing_other,v1_rule_based
KAZ_C27,KAZ,C27,manufacturing_other,v1_rule_based
KAZ_C28,KAZ,C28,manufacturing_other,v1_rule_based
KAZ_C29,KAZ,C29,manufacturing_other,v1_rule_based
KAZ_C301,KAZ,C301,manufacturing_other,v1_rule_based
KAZ_C302T309,KAZ,C302T309,manufacturing_other,v1_rule_based
KAZ_C31T33,KAZ,C31T33,retail_consumer,v1_rule_based
KAZ_D,KAZ,D,energy_primary,v1_rule_based
KAZ_E,KAZ,E,energy_primary,v1_rule_based
KAZ_F,KAZ,F,services_other,v1_rule_based
KAZ_G,KAZ,G,retail_consumer,v1_rule_based
KAZ_H49,KAZ,H49,services_other,v1_rule_based
KAZ_H50,KAZ,H50,services_other,v1_rule_based
KAZ_H51,KAZ,H51,services_other,v1_rule_based
KAZ_H52,KAZ,H52,services_other,v1_rule_based
KAZ_H53,KAZ,H53,services_other,v1_rule_based
KAZ_I,KAZ,I,retail_consumer,v1_rule_based
KAZ_J58T60,KAZ,J58T60,services_other,v1_rule_based
KAZ_J61,KAZ,J61,services_other,v1_rule_based
KAZ_J62_63,KAZ,J62_63,services_other,v1_rule_based
KAZ_K,KAZ,K,services_other,v1_rule_based
KAZ_L,KAZ,L,services_other,v1_rule_based
KAZ_M,KAZ,M,services_other,v1_rule_based
KAZ_N,KAZ,N,services_other,v1_rule_based
KAZ_O,KAZ,O,services_other,v1_rule_based
KAZ_P,KAZ,P,services_other,v1_rule_based
KAZ_Q,KAZ,Q,services_other,v1_rule_based
KAZ_R,KAZ,R,services_other,v1_rule_based
KAZ_S,KAZ,S,services_other,v1_rule_based
KAZ_T,KAZ,T,services_other,v1_rule_based
KHM_A01,KHM,A01,energy_primary,v1_rule_based
KHM_A02,KHM,A02,energy_primary,v1_rule_based
KHM_A03,KHM,A03,energy_primary,v1_rule_based
KHM_B05,KHM,B05,energy_primary,v1_rule_based
KHM_B06,KHM,B06,energy_primary,v1_rule_based
KHM_B07,KHM,B07,energy_primary,v1_rule_based
KHM_B08,KHM,B08,energy_primary,v1_rule_based
KHM_B09,KHM,B09,energy_primary,v1_rule_based
KHM_C10T12,KHM,C10T12,retail_consumer,v1_rule_based
KHM_C13T15,KHM,C13T15,retail_consumer,v1_rule_based
KHM_C16,KHM,C16,manufacturing_other,v1_rule_based
KHM_C17_18,KHM,C17_18,manufacturing_other,v1_rule_based
KHM_C19,KHM,C19,manufacturing_other,v1_rule_based
KHM_C20,KHM,C20,manufacturing_other,v1_rule_based
KHM_C21,KHM,C21,pharma,v1_rule_based
KHM_C22,KHM,C22,manufacturing_other,v1_rule_based
KHM_C23,KHM,C23,manufacturing_other,v1_rule_based
KHM_C24A,KHM,C24A,steel_aluminum,v1_rule_based
KHM_C24B,KHM,C24B,steel_aluminum,v1_rule_based
KHM_C25,KHM,C25,steel_aluminum,v1_rule_based
KHM_C26,KHM,C26,manufacturing_other,v1_rule_based
KHM_C27,KHM,C27,manufacturing_other,v1_rule_based
KHM_C28,KHM,C28,manufacturing_other,v1_rule_based
KHM_C29,KHM,C29,manufacturing_other,v1_rule_based
KHM_C301,KHM,C301,manufacturing_other,v1_rule_based
KHM_C302T309,KHM,C302T309,manufacturing_other,v1_rule_based
KHM_C31T33,KHM,C31T33,retail_consumer,v1_rule_based
KHM_D,KHM,D,energy_primary,v1_rule_based
KHM_E,KHM,E,energy_primary,v1_rule_based
KHM_F,KHM,F,services_other,v1_rule_based
KHM_G,KHM,G,retail_consumer,v1_rule_based
KHM_H49,KHM,H49,services_other,v1_rule_based
KHM_H50,KHM,H50,services_other,v1_rule_based
KHM_H51,KHM,H51,services_other,v1_rule_based
KHM_H52,KHM,H52,services_other,v1_rule_based
KHM_H53,KHM,H53,services_other,v1_rule_based
KHM_I,KHM,I,retail_consumer,v1_rule_based
KHM_J58T60,KHM,J58T60,services_other,v1_rule_based
KHM_J61,KHM,J61,services_other,v1_rule_based
KHM_J62_63,KHM,J62_63,services_other,v1_rule_based
KHM_K,KHM,K,services_other,v1_rule_based
KHM_L,KHM,L,services_other,v1_rule_based
KHM_M,KHM,M,services_other,v1_rule_based
KHM_N,KHM,N,services_other,v1_rule_based
KHM_O,KHM,O,services_other,v1_rule_based
KHM_P,KHM,P,services_other,v1_rule_based
KHM_Q,KHM,Q,services_other,v1_rule_based
KHM_R,KHM,R,services_other,v1_rule_based
KHM_S,KHM,S,services_other,v1_rule_based
KHM_T,KHM,T,services_other,v1_rule_based
KOR_A01,KOR,A01,energy_primary,v1_rule_based
KOR_A02,KOR,A02,energy_primary,v1_rule_based
KOR_A03,KOR,A03,energy_primary,v1_rule_based
KOR_B05,KOR,B05,energy_primary,v1_rule_based
KOR_B06,KOR,B06,energy_primary,v1_rule_based
KOR_B07,KOR,B07,energy_primary,v1_rule_based
KOR_B08,KOR,B08,energy_primary,v1_rule_based
KOR_B09,KOR,B09,energy_primary,v1_rule_based
KOR_C10T12,KOR,C10T12,retail_consumer,v1_rule_based
KOR_C13T15,KOR,C13T15,retail_consumer,v1_rule_based
KOR_C16,KOR,C16,manufacturing_other,v1_rule_based
KOR_C17_18,KOR,C17_18,manufacturing_other,v1_rule_based
KOR_C19,KOR,C19,manufacturing_other,v1_rule_based
KOR_C20,KOR,C20,manufacturing_other,v1_rule_based
KOR_C21,KOR,C21,pharma,v1_rule_based
KOR_C22,KOR,C22,manufacturing_other,v1_rule_based
KOR_C23,KOR,C23,manufacturing_other,v1_rule_based
KOR_C24A,KOR,C24A,steel_aluminum,v1_rule_based
KOR_C24B,KOR,C24B,steel_aluminum,v1_rule_based
KOR_C25,KOR,C25,steel_aluminum,v1_rule_based
KOR_C26,KOR,C26,manufacturing_other,v1_rule_based
KOR_C27,KOR,C27,manufacturing_other,v1_rule_based
KOR_C28,KOR,C28,manufacturing_other,v1_rule_based
KOR_C29,KOR,C29,manufacturing_other,v1_rule_based
KOR_C301,KOR,C301,manufacturing_other,v1_rule_based
KOR_C302T309,KOR,C302T309,manufacturing_other,v1_rule_based
KOR_C31T33,KOR,C31T33,retail_consumer,v1_rule_based
KOR_D,KOR,D,energy_primary,v1_rule_based
KOR_E,KOR,E,energy_primary,v1_rule_based
KOR_F,KOR,F,services_other,v1_rule_based
KOR_G,KOR,G,retail_consumer,v1_rule_based
KOR_H49,KOR,H49,services_other,v1_rule_based
KOR_H50,KOR,H50,services_other,v1_rule_based
KOR_H51,KOR,H51,services_other,v1_rule_based
KOR_H52,KOR,H52,services_other,v1_rule_based
KOR_H53,KOR,H53,services_other,v1_rule_based
KOR_I,KOR,I,retail_consumer,v1_rule_based
KOR_J58T60,KOR,J58T60,services_other,v1_rule_based
KOR_J61,KOR,J61,services_other,v1_rule_based
KOR_J62_63,KOR,J62_63,services_other,v1_rule_based
KOR_K,KOR,K,services_other,v1_rule_based
KOR_L,KOR,L,services_other,v1_rule_based
KOR_M,KOR,M,services_other,v1_rule_based
KOR_N,KOR,N,services_other,v1_rule_based
KOR_O,KOR,O,services_other,v1_rule_based
KOR_P,KOR,P,services_other,v1_rule_based
KOR_Q,KOR,Q,services_other,v1_rule_based
KOR_R,KOR,R,services_other,v1_rule_based
KOR_S,KOR,S,services_other,v1_rule_based
KOR_T,KOR,T,services_other,v1_rule_based
LAO_A01,LAO,A01,energy_primary,v1_rule_based
LAO_A02,LAO,A02,energy_primary,v1_rule_based
LAO_A03,LAO,A03,energy_primary,v1_rule_based
LAO_B05,LAO,B05,energy_primary,v1_rule_based
LAO_B06,LAO,B06,energy_primary,v1_rule_based
LAO_B07,LAO,B07,energy_primary,v1_rule_based
LAO_B08,LAO,B08,energy_primary,v1_rule_based
LAO_B09,LAO,B09,energy_primary,v1_rule_based
LAO_C10T12,LAO,C10T12,retail_consumer,v1_rule_based
LAO_C13T15,LAO,C13T15,retail_consumer,v1_rule_based
LAO_C16,LAO,C16,manufacturing_other,v1_rule_based
LAO_C17_18,LAO,C17_18,manufacturing_other,v1_rule_based
LAO_C19,LAO,C19,manufacturing_other,v1_rule_based
LAO_C20,LAO,C20,manufacturing_other,v1_rule_based
LAO_C21,LAO,C21,pharma,v1_rule_based
LAO_C22,LAO,C22,manufacturing_other,v1_rule_based
LAO_C23,LAO,C23,manufacturing_other,v1_rule_based
LAO_C24A,LAO,C24A,steel_aluminum,v1_rule_based
LAO_C24B,LAO,C24B,steel_aluminum,v1_rule_based
LAO_C25,LAO,C25,steel_aluminum,v1_rule_based
LAO_C26,LAO,C26,manufacturing_other,v1_rule_based
LAO_C27,LAO,C27,manufacturing_other,v1_rule_based
LAO_C28,LAO,C28,manufacturing_other,v1_rule_based
LAO_C29,LAO,C29,manufacturing_other,v1_rule_based
LAO_C301,LAO,C301,manufacturing_other,v1_rule_based
LAO_C302T309,LAO,C302T309,manufacturing_other,v1_rule_based
LAO_C31T33,LAO,C31T33,retail_consumer,v1_rule_based
LAO_D,LAO,D,energy_primary,v1_rule_based
LAO_E,LAO,E,energy_primary,v1_rule_based
LAO_F,LAO,F,services_other,v1_rule_based
LAO_G,LAO,G,retail_consumer,v1_rule_based
LAO_H49,LAO,H49,services_other,v1_rule_based
LAO_H50,LAO,H50,services_other,v1_rule_based
LAO_H51,LAO,H51,services_other,v1_rule_based
LAO_H52,LAO,H52,services_other,v1_rule_based
LAO_H53,LAO,H53,services_other,v1_rule_based
LAO_I,LAO,I,retail_consumer,v1_rule_based
LAO_J58T60,LAO,J58T60,services_other,v1_rule_based
LAO_J61,LAO,J61,services_other,v1_rule_based
LAO_J62_63,LAO,J62_63,services_other,v1_rule_based
LAO_K,LAO,K,services_other,v1_rule_based
LAO_L,LAO,L,services_other,v1_rule_based
LAO_M,LAO,M,services_other,v1_rule_based
LAO_N,LAO,N,services_other,v1_rule_based
LAO_O,LAO,O,services_other,v1_rule_based
LAO_P,LAO,P,services_other,v1_rule_based
LAO_Q,LAO,Q,services_other,v1_rule_based
LAO_R,LAO,R,services_other,v1_rule_based
LAO_S,LAO,S,services_other,v1_rule_based
LAO_T,LAO,T,services_other,v1_rule_based
LTU_A01,LTU,A01,energy_primary,v1_rule_based
LTU_A02,LTU,A02,energy_primary,v1_rule_based
LTU_A03,LTU,A03,energy_primary,v1_rule_based
LTU_B05,LTU,B05,energy_primary,v1_rule_based
LTU_B06,LTU,B06,energy_primary,v1_rule_based
LTU_B07,LTU,B07,energy_primary,v1_rule_based
LTU_B08,LTU,B08,energy_primary,v1_rule_based
LTU_B09,LTU,B09,energy_primary,v1_rule_based
LTU_C10T12,LTU,C10T12,retail_consumer,v1_rule_based
LTU_C13T15,LTU,C13T15,retail_consumer,v1_rule_based
LTU_C16,LTU,C16,manufacturing_other,v1_rule_based
LTU_C17_18,LTU,C17_18,manufacturing_other,v1_rule_based
LTU_C19,LTU,C19,manufacturing_other,v1_rule_based
LTU_C20,LTU,C20,manufacturing_other,v1_rule_based
LTU_C21,LTU,C21,pharma,v1_rule_based
LTU_C22,LTU,C22,manufacturing_other,v1_rule_based
LTU_C23,LTU,C23,manufacturing_other,v1_rule_based
LTU_C24A,LTU,C24A,steel_aluminum,v1_rule_based
LTU_C24B,LTU,C24B,steel_aluminum,v1_rule_based
LTU_C25,LTU,C25,steel_aluminum,v1_rule_based
LTU_C26,LTU,C26,manufacturing_other,v1_rule_based
LTU_C27,LTU,C27,manufacturing_other,v1_rule_based
LTU_C28,LTU,C28,manufacturing_other,v1_rule_based
LTU_C29,LTU,C29,manufacturing_other,v1_rule_based
LTU_C301,LTU,C301,manufacturing_other,v1_rule_based
LTU_C302T309,LTU,C302T309,manufacturing_other,v1_rule_based
LTU_C31T33,LTU,C31T33,retail_consumer,v1_rule_based
LTU_D,LTU,D,energy_primary,v1_rule_based
LTU_E,LTU,E,energy_primary,v1_rule_based
LTU_F,LTU,F,services_other,v1_rule_based
LTU_G,LTU,G,retail_consumer,v1_rule_based
LTU_H49,LTU,H49,services_other,v1_rule_based
LTU_H50,LTU,H50,services_other,v1_rule_based
LTU_H51,LTU,H51,services_other,v1_rule_based
LTU_H52,LTU,H52,services_other,v1_rule_based
LTU_H53,LTU,H53,services_other,v1_rule_based
LTU_I,LTU,I,retail_consumer,v1_rule_based
LTU_J58T60,LTU,J58T60,services_other,v1_rule_based
LTU_J61,LTU,J61,services_other,v1_rule_based
LTU_J62_63,LTU,J62_63,services_other,v1_rule_based
LTU_K,LTU,K,services_other,v1_rule_based
LTU_L,LTU,L,services_other,v1_rule_based
LTU_M,LTU,M,services_other,v1_rule_based
LTU_N,LTU,N,services_other,v1_rule_based
LTU_O,LTU,O,services_other,v1_rule_based
LTU_P,LTU,P,services_other,v1_rule_based
LTU_Q,LTU,Q,services_other,v1_rule_based
LTU_R,LTU,R,services_other,v1_rule_based
LTU_S,LTU,S,services_other,v1_rule_based
LTU_T,LTU,T,services_other,v1_rule_based
LUX_A01,LUX,A01,energy_primary,v1_rule_based
LUX_A02,LUX,A02,energy_primary,v1_rule_based
LUX_A03,LUX,A03,energy_primary,v1_rule_based
LUX_B05,LUX,B05,energy_primary,v1_rule_based
LUX_B06,LUX,B06,energy_primary,v1_rule_based
LUX_B07,LUX,B07,energy_primary,v1_rule_based
LUX_B08,LUX,B08,energy_primary,v1_rule_based
LUX_B09,LUX,B09,energy_primary,v1_rule_based
LUX_C10T12,LUX,C10T12,retail_consumer,v1_rule_based
LUX_C13T15,LUX,C13T15,retail_consumer,v1_rule_based
LUX_C16,LUX,C16,manufacturing_other,v1_rule_based
LUX_C17_18,LUX,C17_18,manufacturing_other,v1_rule_based
LUX_C19,LUX,C19,manufacturing_other,v1_rule_based
LUX_C20,LUX,C20,manufacturing_other,v1_rule_based
LUX_C21,LUX,C21,pharma,v1_rule_based
LUX_C22,LUX,C22,manufacturing_other,v1_rule_based
LUX_C23,LUX,C23,manufacturing_other,v1_rule_based
LUX_C24A,LUX,C24A,steel_aluminum,v1_rule_based
LUX_C24B,LUX,C24B,steel_aluminum,v1_rule_based
LUX_C25,LUX,C25,steel_aluminum,v1_rule_based
LUX_C26,LUX,C26,manufacturing_other,v1_rule_based
LUX_C27,LUX,C27,manufacturing_other,v1_rule_based
LUX_C28,LUX,C28,manufacturing_other,v1_rule_based
LUX_C29,LUX,C29,manufacturing_other,v1_rule_based
LUX_C301,LUX,C301,manufacturing_other,v1_rule_based
LUX_C302T309,LUX,C302T309,manufacturing_other,v1_rule_based
LUX_C31T33,LUX,C31T33,retail_consumer,v1_rule_based
LUX_D,LUX,D,energy_primary,v1_rule_based
LUX_E,LUX,E,energy_primary,v1_rule_based
LUX_F,LUX,F,services_other,v1_rule_based
LUX_G,LUX,G,retail_consumer,v1_rule_based
LUX_H49,LUX,H49,services_other,v1_rule_based
LUX_H50,LUX,H50,services_other,v1_rule_based
LUX_H51,LUX,H51,services_other,v1_rule_based
LUX_H52,LUX,H52,services_other,v1_rule_based
LUX_H53,LUX,H53,services_other,v1_rule_based
LUX_I,LUX,I,retail_consumer,v1_rule_based
LUX_J58T60,LUX,J58T60,services_other,v1_rule_based
LUX_J61,LUX,J61,services_other,v1_rule_based
LUX_J62_63,LUX,J62_63,services_other,v1_rule_based
LUX_K,LUX,K,services_other,v1_rule_based
LUX_L,LUX,L,services_other,v1_rule_based
LUX_M,LUX,M,services_other,v1_rule_based
LUX_N,LUX,N,services_other,v1_rule_based
LUX_O,LUX,O,services_other,v1_rule_based
LUX_P,LUX,P,services_other,v1_rule_based
LUX_Q,LUX,Q,services_other,v1_rule_based
LUX_R,LUX,R,services_other,v1_rule_based
LUX_S,LUX,S,services_other,v1_rule_based
LUX_T,LUX,T,services_other,v1_rule_based
LVA_A01,LVA,A01,energy_primary,v1_rule_based
LVA_A02,LVA,A02,energy_primary,v1_rule_based
LVA_A03,LVA,A03,energy_primary,v1_rule_based
LVA_B05,LVA,B05,energy_primary,v1_rule_based
LVA_B06,LVA,B06,energy_primary,v1_rule_based
LVA_B07,LVA,B07,energy_primary,v1_rule_based
LVA_B08,LVA,B08,energy_primary,v1_rule_based
LVA_B09,LVA,B09,energy_primary,v1_rule_based
LVA_C10T12,LVA,C10T12,retail_consumer,v1_rule_based
LVA_C13T15,LVA,C13T15,retail_consumer,v1_rule_based
LVA_C16,LVA,C16,manufacturing_other,v1_rule_based
LVA_C17_18,LVA,C17_18,manufacturing_other,v1_rule_based
LVA_C19,LVA,C19,manufacturing_other,v1_rule_based
LVA_C20,LVA,C20,manufacturing_other,v1_rule_based
LVA_C21,LVA,C21,pharma,v1_rule_based
LVA_C22,LVA,C22,manufacturing_other,v1_rule_based
LVA_C23,LVA,C23,manufacturing_other,v1_rule_based
LVA_C24A,LVA,C24A,steel_aluminum,v1_rule_based
LVA_C24B,LVA,C24B,steel_aluminum,v1_rule_based
LVA_C25,LVA,C25,steel_aluminum,v1_rule_based
LVA_C26,LVA,C26,manufacturing_other,v1_rule_based
LVA_C27,LVA,C27,manufacturing_other,v1_rule_based
LVA_C28,LVA,C28,manufacturing_other,v1_rule_based
LVA_C29,LVA,C29,manufacturing_other,v1_rule_based
LVA_C301,LVA,C301,manufacturing_other,v1_rule_based
LVA_C302T309,LVA,C302T309,manufacturing_other,v1_rule_based
LVA_C31T33,LVA,C31T33,retail_consumer,v1_rule_based
LVA_D,LVA,D,energy_primary,v1_rule_based
LVA_E,LVA,E,energy_primary,v1_rule_based
LVA_F,LVA,F,services_other,v1_rule_based
LVA_G,LVA,G,retail_consumer,v1_rule_based
LVA_H49,LVA,H49,services_other,v1_rule_based
LVA_H50,LVA,H50,services_other,v1_rule_based
LVA_H51,LVA,H51,services_other,v1_rule_based
LVA_H52,LVA,H52,services_other,v1_rule_based
LVA_H53,LVA,H53,services_other,v1_rule_based
LVA_I,LVA,I,retail_consumer,v1_rule_based
LVA_J58T60,LVA,J58T60,services_other,v1_rule_based
LVA_J61,LVA,J61,services_other,v1_rule_based
LVA_J62_63,LVA,J62_63,services_other,v1_rule_based
LVA_K,LVA,K,services_other,v1_rule_based
LVA_L,LVA,L,services_other,v1_rule_based
LVA_M,LVA,M,services_other,v1_rule_based
LVA_N,LVA,N,services_other,v1_rule_based
LVA_O,LVA,O,services_other,v1_rule_based
LVA_P,LVA,P,services_other,v1_rule_based
LVA_Q,LVA,Q,services_other,v1_rule_based
LVA_R,LVA,R,services_other,v1_rule_based
LVA_S,LVA,S,services_other,v1_rule_based
LVA_T,LVA,T,services_other,v1_rule_based
MAR_A01,MAR,A01,energy_primary,v1_rule_based
MAR_A02,MAR,A02,energy_primary,v1_rule_based
MAR_A03,MAR,A03,energy_primary,v1_rule_based
MAR_B05,MAR,B05,energy_primary,v1_rule_based
MAR_B06,MAR,B06,energy_primary,v1_rule_based
MAR_B07,MAR,B07,energy_primary,v1_rule_based
MAR_B08,MAR,B08,energy_primary,v1_rule_based
MAR_B09,MAR,B09,energy_primary,v1_rule_based
MAR_C10T12,MAR,C10T12,retail_consumer,v1_rule_based
MAR_C13T15,MAR,C13T15,retail_consumer,v1_rule_based
MAR_C16,MAR,C16,manufacturing_other,v1_rule_based
MAR_C17_18,MAR,C17_18,manufacturing_other,v1_rule_based
MAR_C19,MAR,C19,manufacturing_other,v1_rule_based
MAR_C20,MAR,C20,manufacturing_other,v1_rule_based
MAR_C21,MAR,C21,pharma,v1_rule_based
MAR_C22,MAR,C22,manufacturing_other,v1_rule_based
MAR_C23,MAR,C23,manufacturing_other,v1_rule_based
MAR_C24A,MAR,C24A,steel_aluminum,v1_rule_based
MAR_C24B,MAR,C24B,steel_aluminum,v1_rule_based
MAR_C25,MAR,C25,steel_aluminum,v1_rule_based
MAR_C26,MAR,C26,manufacturing_other,v1_rule_based
MAR_C27,MAR,C27,manufacturing_other,v1_rule_based
MAR_C28,MAR,C28,manufacturing_other,v1_rule_based
MAR_C29,MAR,C29,manufacturing_other,v1_rule_based
MAR_C301,MAR,C301,manufacturing_other,v1_rule_based
MAR_C302T309,MAR,C302T309,manufacturing_other,v1_rule_based
MAR_C31T33,MAR,C31T33,retail_consumer,v1_rule_based
MAR_D,MAR,D,energy_primary,v1_rule_based
MAR_E,MAR,E,energy_primary,v1_rule_based
MAR_F,MAR,F,services_other,v1_rule_based
MAR_G,MAR,G,retail_consumer,v1_rule_based
MAR_H49,MAR,H49,services_other,v1_rule_based
MAR_H50,MAR,H50,services_other,v1_rule_based
MAR_H51,MAR,H51,services_other,v1_rule_based
MAR_H52,MAR,H52,services_other,v1_rule_based
MAR_H53,MAR,H53,services_other,v1_rule_based
MAR_I,MAR,I,retail_consumer,v1_rule_based
MAR_J58T60,MAR,J58T60,services_other,v1_rule_based
MAR_J61,MAR,J61,services_other,v1_rule_based
MAR_J62_63,MAR,J62_63,services_other,v1_rule_based
MAR_K,MAR,K,services_other,v1_rule_based
MAR_L,MAR,L,services_other,v1_rule_based
MAR_M,MAR,M,services_other,v1_rule_based
MAR_N,MAR,N,services_other,v1_rule_based
MAR_O,MAR,O,services_other,v1_rule_based
MAR_P,MAR,P,services_other,v1_rule_based
MAR_Q,MAR,Q,services_other,v1_rule_based
MAR_R,MAR,R,services_other,v1_rule_based
MAR_S,MAR,S,services_other,v1_rule_based
MAR_T,MAR,T,services_other,v1_rule_based
MEX_A01,MEX,A01,energy_primary,v1_rule_based
MEX_A02,MEX,A02,energy_primary,v1_rule_based
MEX_A03,MEX,A03,energy_primary,v1_rule_based
MEX_B05,MEX,B05,energy_primary,v1_rule_based
MEX_B06,MEX,B06,energy_primary,v1_rule_based
MEX_B07,MEX,B07,energy_primary,v1_rule_based
MEX_B08,MEX,B08,energy_primary,v1_rule_based
MEX_B09,MEX,B09,energy_primary,v1_rule_based
MEX_C10T12,MEX,C10T12,retail_consumer,v1_rule_based
MEX_C13T15,MEX,C13T15,retail_consumer,v1_rule_based
MEX_C16,MEX,C16,manufacturing_other,v1_rule_based
MEX_C17_18,MEX,C17_18,manufacturing_other,v1_rule_based
MEX_C19,MEX,C19,manufacturing_other,v1_rule_based
MEX_C20,MEX,C20,manufacturing_other,v1_rule_based
MEX_C21,MEX,C21,pharma,v1_rule_based
MEX_C22,MEX,C22,manufacturing_other,v1_rule_based
MEX_C23,MEX,C23,manufacturing_other,v1_rule_based
MEX_C24A,MEX,C24A,steel_aluminum,v1_rule_based
MEX_C24B,MEX,C24B,steel_aluminum,v1_rule_based
MEX_C25,MEX,C25,steel_aluminum,v1_rule_based
MEX_C26,MEX,C26,manufacturing_other,v1_rule_based
MEX_C27,MEX,C27,manufacturing_other,v1_rule_based
MEX_C28,MEX,C28,manufacturing_other,v1_rule_based
MEX_C29,MEX,C29,manufacturing_other,v1_rule_based
MEX_C301,MEX,C301,manufacturing_other,v1_rule_based
MEX_C302T309,MEX,C302T309,manufacturing_other,v1_rule_based
MEX_C31T33,MEX,C31T33,retail_consumer,v1_rule_based
MEX_D,MEX,D,energy_primary,v1_rule_based
MEX_E,MEX,E,energy_primary,v1_rule_based
MEX_F,MEX,F,services_other,v1_rule_based
MEX_G,MEX,G,retail_consumer,v1_rule_based
MEX_H49,MEX,H49,services_other,v1_rule_based
MEX_H50,MEX,H50,services_other,v1_rule_based
MEX_H51,MEX,H51,services_other,v1_rule_based
MEX_H52,MEX,H52,services_other,v1_rule_based
MEX_H53,MEX,H53,services_other,v1_rule_based
MEX_I,MEX,I,retail_consumer,v1_rule_based
MEX_J58T60,MEX,J58T60,services_other,v1_rule_based
MEX_J61,MEX,J61,services_other,v1_rule_based
MEX_J62_63,MEX,J62_63,services_other,v1_rule_based
MEX_K,MEX,K,services_other,v1_rule_based
MEX_L,MEX,L,services_other,v1_rule_based
MEX_M,MEX,M,services_other,v1_rule_based
MEX_N,MEX,N,services_other,v1_rule_based
MEX_O,MEX,O,services_other,v1_rule_based
MEX_P,MEX,P,services_other,v1_rule_based
MEX_Q,MEX,Q,services_other,v1_rule_based
MEX_R,MEX,R,services_other,v1_rule_based
MEX_S,MEX,S,services_other,v1_rule_based
MEX_T,MEX,T,services_other,v1_rule_based
MLT_A01,MLT,A01,energy_primary,v1_rule_based
MLT_A02,MLT,A02,energy_primary,v1_rule_based
MLT_A03,MLT,A03,energy_primary,v1_rule_based
MLT_B05,MLT,B05,energy_primary,v1_rule_based
MLT_B06,MLT,B06,energy_primary,v1_rule_based
MLT_B07,MLT,B07,energy_primary,v1_rule_based
MLT_B08,MLT,B08,energy_primary,v1_rule_based
MLT_B09,MLT,B09,energy_primary,v1_rule_based
MLT_C10T12,MLT,C10T12,retail_consumer,v1_rule_based
MLT_C13T15,MLT,C13T15,retail_consumer,v1_rule_based
MLT_C16,MLT,C16,manufacturing_other,v1_rule_based
MLT_C17_18,MLT,C17_18,manufacturing_other,v1_rule_based
MLT_C19,MLT,C19,manufacturing_other,v1_rule_based
MLT_C20,MLT,C20,manufacturing_other,v1_rule_based
MLT_C21,MLT,C21,pharma,v1_rule_based
MLT_C22,MLT,C22,manufacturing_other,v1_rule_based
MLT_C23,MLT,C23,manufacturing_other,v1_rule_based
MLT_C24A,MLT,C24A,steel_aluminum,v1_rule_based
MLT_C24B,MLT,C24B,steel_aluminum,v1_rule_based
MLT_C25,MLT,C25,steel_aluminum,v1_rule_based
MLT_C26,MLT,C26,manufacturing_other,v1_rule_based
MLT_C27,MLT,C27,manufacturing_other,v1_rule_based
MLT_C28,MLT,C28,manufacturing_other,v1_rule_based
MLT_C29,MLT,C29,manufacturing_other,v1_rule_based
MLT_C301,MLT,C301,manufacturing_other,v1_rule_based
MLT_C302T309,MLT,C302T309,manufacturing_other,v1_rule_based
MLT_C31T33,MLT,C31T33,retail_consumer,v1_rule_based
MLT_D,MLT,D,energy_primary,v1_rule_based
MLT_E,MLT,E,energy_primary,v1_rule_based
MLT_F,MLT,F,services_other,v1_rule_based
MLT_G,MLT,G,retail_consumer,v1_rule_based
MLT_H49,MLT,H49,services_other,v1_rule_based
MLT_H50,MLT,H50,services_other,v1_rule_based
MLT_H51,MLT,H51,services_other,v1_rule_based
MLT_H52,MLT,H52,services_other,v1_rule_based
MLT_H53,MLT,H53,services_other,v1_rule_based
MLT_I,MLT,I,retail_consumer,v1_rule_based
MLT_J58T60,MLT,J58T60,services_other,v1_rule_based
MLT_J61,MLT,J61,services_other,v1_rule_based
MLT_J62_63,MLT,J62_63,services_other,v1_rule_based
MLT_K,MLT,K,services_other,v1_rule_based
MLT_L,MLT,L,services_other,v1_rule_based
MLT_M,MLT,M,services_other,v1_rule_based
MLT_N,MLT,N,services_other,v1_rule_based
MLT_O,MLT,O,services_other,v1_rule_based
MLT_P,MLT,P,services_other,v1_rule_based
MLT_Q,MLT,Q,services_other,v1_rule_based
MLT_R,MLT,R,services_other,v1_rule_based
MLT_S,MLT,S,services_other,v1_rule_based
MLT_T,MLT,T,services_other,v1_rule_based
MMR_A01,MMR,A01,energy_primary,v1_rule_based
MMR_A02,MMR,A02,energy_primary,v1_rule_based
MMR_A03,MMR,A03,energy_primary,v1_rule_based
MMR_B05,MMR,B05,energy_primary,v1_rule_based
MMR_B06,MMR,B06,energy_primary,v1_rule_based
MMR_B07,MMR,B07,energy_primary,v1_rule_based
MMR_B08,MMR,B08,energy_primary,v1_rule_based
MMR_B09,MMR,B09,energy_primary,v1_rule_based
MMR_C10T12,MMR,C10T12,retail_consumer,v1_rule_based
MMR_C13T15,MMR,C13T15,retail_consumer,v1_rule_based
MMR_C16,MMR,C16,manufacturing_other,v1_rule_based
MMR_C17_18,MMR,C17_18,manufacturing_other,v1_rule_based
MMR_C19,MMR,C19,manufacturing_other,v1_rule_based
MMR_C20,MMR,C20,manufacturing_other,v1_rule_based
MMR_C21,MMR,C21,pharma,v1_rule_based
MMR_C22,MMR,C22,manufacturing_other,v1_rule_based
MMR_C23,MMR,C23,manufacturing_other,v1_rule_based
MMR_C24A,MMR,C24A,steel_aluminum,v1_rule_based
MMR_C24B,MMR,C24B,steel_aluminum,v1_rule_based
MMR_C25,MMR,C25,steel_aluminum,v1_rule_based
MMR_C26,MMR,C26,manufacturing_other,v1_rule_based
MMR_C27,MMR,C27,manufacturing_other,v1_rule_based
MMR_C28,MMR,C28,manufacturing_other,v1_rule_based
MMR_C29,MMR,C29,manufacturing_other,v1_rule_based
MMR_C301,MMR,C301,manufacturing_other,v1_rule_based
MMR_C302T309,MMR,C302T309,manufacturing_other,v1_rule_based
MMR_C31T33,MMR,C31T33,retail_consumer,v1_rule_based
MMR_D,MMR,D,energy_primary,v1_rule_based
MMR_E,MMR,E,energy_primary,v1_rule_based
MMR_F,MMR,F,services_other,v1_rule_based
MMR_G,MMR,G,retail_consumer,v1_rule_based
MMR_H49,MMR,H49,services_other,v1_rule_based
MMR_H50,MMR,H50,services_other,v1_rule_based
MMR_H51,MMR,H51,services_other,v1_rule_based
MMR_H52,MMR,H52,services_other,v1_rule_based
MMR_H53,MMR,H53,services_other,v1_rule_based
MMR_I,MMR,I,retail_consumer,v1_rule_based
MMR_J58T60,MMR,J58T60,services_other,v1_rule_based
MMR_J61,MMR,J61,services_other,v1_rule_based
MMR_J62_63,MMR,J62_63,services_other,v1_rule_based
MMR_K,MMR,K,services_other,v1_rule_based
MMR_L,MMR,L,services_other,v1_rule_based
MMR_M,MMR,M,services_other,v1_rule_based
MMR_N,MMR,N,services_other,v1_rule_based
MMR_O,MMR,O,services_other,v1_rule_based
MMR_P,MMR,P,services_other,v1_rule_based
MMR_Q,MMR,Q,services_other,v1_rule_based
MMR_R,MMR,R,services_other,v1_rule_based
MMR_S,MMR,S,services_other,v1_rule_based
MMR_T,MMR,T,services_other,v1_rule_based
MYS_A01,MYS,A01,energy_primary,v1_rule_based
MYS_A02,MYS,A02,energy_primary,v1_rule_based
MYS_A03,MYS,A03,energy_primary,v1_rule_based
MYS_B05,MYS,B05,energy_primary,v1_rule_based
MYS_B06,MYS,B06,energy_primary,v1_rule_based
MYS_B07,MYS,B07,energy_primary,v1_rule_based
MYS_B08,MYS,B08,energy_primary,v1_rule_based
MYS_B09,MYS,B09,energy_primary,v1_rule_based
MYS_C10T12,MYS,C10T12,retail_consumer,v1_rule_based
MYS_C13T15,MYS,C13T15,retail_consumer,v1_rule_based
MYS_C16,MYS,C16,manufacturing_other,v1_rule_based
MYS_C17_18,MYS,C17_18,manufacturing_other,v1_rule_based
MYS_C19,MYS,C19,manufacturing_other,v1_rule_based
MYS_C20,MYS,C20,manufacturing_other,v1_rule_based
MYS_C21,MYS,C21,pharma,v1_rule_based
MYS_C22,MYS,C22,manufacturing_other,v1_rule_based
MYS_C23,MYS,C23,manufacturing_other,v1_rule_based
MYS_C24A,MYS,C24A,steel_aluminum,v1_rule_based
MYS_C24B,MYS,C24B,steel_aluminum,v1_rule_based
MYS_C25,MYS,C25,steel_aluminum,v1_rule_based
MYS_C26,MYS,C26,manufacturing_other,v1_rule_based
MYS_C27,MYS,C27,manufacturing_other,v1_rule_based
MYS_C28,MYS,C28,manufacturing_other,v1_rule_based
MYS_C29,MYS,C29,manufacturing_other,v1_rule_based
MYS_C301,MYS,C301,manufacturing_other,v1_rule_based
MYS_C302T309,MYS,C302T309,manufacturing_other,v1_rule_based
MYS_C31T33,MYS,C31T33,retail_consumer,v1_rule_based
MYS_D,MYS,D,energy_primary,v1_rule_based
MYS_E,MYS,E,energy_primary,v1_rule_based
MYS_F,MYS,F,services_other,v1_rule_based
MYS_G,MYS,G,retail_consumer,v1_rule_based
MYS_H49,MYS,H49,services_other,v1_rule_based
MYS_H50,MYS,H50,services_other,v1_rule_based
MYS_H51,MYS,H51,services_other,v1_rule_based
MYS_H52,MYS,H52,services_other,v1_rule_based
MYS_H53,MYS,H53,services_other,v1_rule_based
MYS_I,MYS,I,retail_consumer,v1_rule_based
MYS_J58T60,MYS,J58T60,services_other,v1_rule_based
MYS_J61,MYS,J61,services_other,v1_rule_based
MYS_J62_63,MYS,J62_63,services_other,v1_rule_based
MYS_K,MYS,K,services_other,v1_rule_based
MYS_L,MYS,L,services_other,v1_rule_based
MYS_M,MYS,M,services_other,v1_rule_based
MYS_N,MYS,N,services_other,v1_rule_based
MYS_O,MYS,O,services_other,v1_rule_based
MYS_P,MYS,P,services_other,v1_rule_based
MYS_Q,MYS,Q,services_other,v1_rule_based
MYS_R,MYS,R,services_other,v1_rule_based
MYS_S,MYS,S,services_other,v1_rule_based
MYS_T,MYS,T,services_other,v1_rule_based
NGA_A01,NGA,A01,energy_primary,v1_rule_based
NGA_A02,NGA,A02,energy_primary,v1_rule_based
NGA_A03,NGA,A03,energy_primary,v1_rule_based
NGA_B05,NGA,B05,energy_primary,v1_rule_based
NGA_B06,NGA,B06,energy_primary,v1_rule_based
NGA_B07,NGA,B07,energy_primary,v1_rule_based
NGA_B08,NGA,B08,energy_primary,v1_rule_based
NGA_B09,NGA,B09,energy_primary,v1_rule_based
NGA_C10T12,NGA,C10T12,retail_consumer,v1_rule_based
NGA_C13T15,NGA,C13T15,retail_consumer,v1_rule_based
NGA_C16,NGA,C16,manufacturing_other,v1_rule_based
NGA_C17_18,NGA,C17_18,manufacturing_other,v1_rule_based
NGA_C19,NGA,C19,manufacturing_other,v1_rule_based
NGA_C20,NGA,C20,manufacturing_other,v1_rule_based
NGA_C21,NGA,C21,pharma,v1_rule_based
NGA_C22,NGA,C22,manufacturing_other,v1_rule_based
NGA_C23,NGA,C23,manufacturing_other,v1_rule_based
NGA_C24A,NGA,C24A,steel_aluminum,v1_rule_based
NGA_C24B,NGA,C24B,steel_aluminum,v1_rule_based
NGA_C25,NGA,C25,steel_aluminum,v1_rule_based
NGA_C26,NGA,C26,manufacturing_other,v1_rule_based
NGA_C27,NGA,C27,manufacturing_other,v1_rule_based
NGA_C28,NGA,C28,manufacturing_other,v1_rule_based
NGA_C29,NGA,C29,manufacturing_other,v1_rule_based
NGA_C301,NGA,C301,manufacturing_other,v1_rule_based
NGA_C302T309,NGA,C302T309,manufacturing_other,v1_rule_based
NGA_C31T33,NGA,C31T33,retail_consumer,v1_rule_based
NGA_D,NGA,D,energy_primary,v1_rule_based
NGA_E,NGA,E,energy_primary,v1_rule_based
NGA_F,NGA,F,services_other,v1_rule_based
NGA_G,NGA,G,retail_consumer,v1_rule_based
NGA_H49,NGA,H49,services_other,v1_rule_based
NGA_H50,NGA,H50,services_other,v1_rule_based
NGA_H51,NGA,H51,services_other,v1_rule_based
NGA_H52,NGA,H52,services_other,v1_rule_based
NGA_H53,NGA,H53,services_other,v1_rule_based
NGA_I,NGA,I,retail_consumer,v1_rule_based
NGA_J58T60,NGA,J58T60,services_other,v1_rule_based
NGA_J61,NGA,J61,services_other,v1_rule_based
NGA_J62_63,NGA,J62_63,services_other,v1_rule_based
NGA_K,NGA,K,services_other,v1_rule_based
NGA_L,NGA,L,services_other,v1_rule_based
NGA_M,NGA,M,services_other,v1_rule_based
NGA_N,NGA,N,services_other,v1_rule_based
NGA_O,NGA,O,services_other,v1_rule_based
NGA_P,NGA,P,services_other,v1_rule_based
NGA_Q,NGA,Q,services_other,v1_rule_based
NGA_R,NGA,R,services_other,v1_rule_based
NGA_S,NGA,S,services_other,v1_rule_based
NGA_T,NGA,T,services_other,v1_rule_based
NLD_A01,NLD,A01,energy_primary,v1_rule_based
NLD_A02,NLD,A02,energy_primary,v1_rule_based
NLD_A03,NLD,A03,energy_primary,v1_rule_based
NLD_B05,NLD,B05,energy_primary,v1_rule_based
NLD_B06,NLD,B06,energy_primary,v1_rule_based
NLD_B07,NLD,B07,energy_primary,v1_rule_based
NLD_B08,NLD,B08,energy_primary,v1_rule_based
NLD_B09,NLD,B09,energy_primary,v1_rule_based
NLD_C10T12,NLD,C10T12,retail_consumer,v1_rule_based
NLD_C13T15,NLD,C13T15,retail_consumer,v1_rule_based
NLD_C16,NLD,C16,manufacturing_other,v1_rule_based
NLD_C17_18,NLD,C17_18,manufacturing_other,v1_rule_based
NLD_C19,NLD,C19,manufacturing_other,v1_rule_based
NLD_C20,NLD,C20,manufacturing_other,v1_rule_based
NLD_C21,NLD,C21,pharma,v1_rule_based
NLD_C22,NLD,C22,manufacturing_other,v1_rule_based
NLD_C23,NLD,C23,manufacturing_other,v1_rule_based
NLD_C24A,NLD,C24A,steel_aluminum,v1_rule_based
NLD_C24B,NLD,C24B,steel_aluminum,v1_rule_based
NLD_C25,NLD,C25,steel_aluminum,v1_rule_based
NLD_C26,NLD,C26,manufacturing_other,v1_rule_based
NLD_C27,NLD,C27,manufacturing_other,v1_rule_based
NLD_C28,NLD,C28,manufacturing_other,v1_rule_based
NLD_C29,NLD,C29,manufacturing_other,v1_rule_based
NLD_C301,NLD,C301,manufacturing_other,v1_rule_based
NLD_C302T309,NLD,C302T309,manufacturing_other,v1_rule_based
NLD_C31T33,NLD,C31T33,retail_consumer,v1_rule_based
NLD_D,NLD,D,energy_primary,v1_rule_based
NLD_E,NLD,E,energy_primary,v1_rule_based
NLD_F,NLD,F,services_other,v1_rule_based
NLD_G,NLD,G,retail_consumer,v1_rule_based
NLD_H49,NLD,H49,services_other,v1_rule_based
NLD_H50,NLD,H50,services_other,v1_rule_based
NLD_H51,NLD,H51,services_other,v1_rule_based
NLD_H52,NLD,H52,services_other,v1_rule_based
NLD_H53,NLD,H53,services_other,v1_rule_based
NLD_I,NLD,I,retail_consumer,v1_rule_based
NLD_J58T60,NLD,J58T60,services_other,v1_rule_based
NLD_J61,NLD,J61,services_other,v1_rule_based
NLD_J62_63,NLD,J62_63,services_other,v1_rule_based
NLD_K,NLD,K,services_other,v1_rule_based
NLD_L,NLD,L,services_other,v1_rule_based
NLD_M,NLD,M,services_other,v1_rule_based
NLD_N,NLD,N,services_other,v1_rule_based
NLD_O,NLD,O,services_other,v1_rule_based
NLD_P,NLD,P,services_other,v1_rule_based
NLD_Q,NLD,Q,services_other,v1_rule_based
NLD_R,NLD,R,services_other,v1_rule_based
NLD_S,NLD,S,services_other,v1_rule_based
NLD_T,NLD,T,services_other,v1_rule_based
NOR_A01,NOR,A01,energy_primary,v1_rule_based
NOR_A02,NOR,A02,energy_primary,v1_rule_based
NOR_A03,NOR,A03,energy_primary,v1_rule_based
NOR_B05,NOR,B05,energy_primary,v1_rule_based
NOR_B06,NOR,B06,energy_primary,v1_rule_based
NOR_B07,NOR,B07,energy_primary,v1_rule_based
NOR_B08,NOR,B08,energy_primary,v1_rule_based
NOR_B09,NOR,B09,energy_primary,v1_rule_based
NOR_C10T12,NOR,C10T12,retail_consumer,v1_rule_based
NOR_C13T15,NOR,C13T15,retail_consumer,v1_rule_based
NOR_C16,NOR,C16,manufacturing_other,v1_rule_based
NOR_C17_18,NOR,C17_18,manufacturing_other,v1_rule_based
NOR_C19,NOR,C19,manufacturing_other,v1_rule_based
NOR_C20,NOR,C20,manufacturing_other,v1_rule_based
NOR_C21,NOR,C21,pharma,v1_rule_based
NOR_C22,NOR,C22,manufacturing_other,v1_rule_based
NOR_C23,NOR,C23,manufacturing_other,v1_rule_based
NOR_C24A,NOR,C24A,steel_aluminum,v1_rule_based
NOR_C24B,NOR,C24B,steel_aluminum,v1_rule_based
NOR_C25,NOR,C25,steel_aluminum,v1_rule_based
NOR_C26,NOR,C26,manufacturing_other,v1_rule_based
NOR_C27,NOR,C27,manufacturing_other,v1_rule_based
NOR_C28,NOR,C28,manufacturing_other,v1_rule_based
NOR_C29,NOR,C29,manufacturing_other,v1_rule_based
NOR_C301,NOR,C301,manufacturing_other,v1_rule_based
NOR_C302T309,NOR,C302T309,manufacturing_other,v1_rule_based
NOR_C31T33,NOR,C31T33,retail_consumer,v1_rule_based
NOR_D,NOR,D,energy_primary,v1_rule_based
NOR_E,NOR,E,energy_primary,v1_rule_based
NOR_F,NOR,F,services_other,v1_rule_based
NOR_G,NOR,G,retail_consumer,v1_rule_based
NOR_H49,NOR,H49,services_other,v1_rule_based
NOR_H50,NOR,H50,services_other,v1_rule_based
NOR_H51,NOR,H51,services_other,v1_rule_based
NOR_H52,NOR,H52,services_other,v1_rule_based
NOR_H53,NOR,H53,services_other,v1_rule_based
NOR_I,NOR,I,retail_consumer,v1_rule_based
NOR_J58T60,NOR,J58T60,services_other,v1_rule_based
NOR_J61,NOR,J61,services_other,v1_rule_based
NOR_J62_63,NOR,J62_63,services_other,v1_rule_based
NOR_K,NOR,K,services_other,v1_rule_based
NOR_L,NOR,L,services_other,v1_rule_based
NOR_M,NOR,M,services_other,v1_rule_based
NOR_N,NOR,N,services_other,v1_rule_based
NOR_O,NOR,O,services_other,v1_rule_based
NOR_P,NOR,P,services_other,v1_rule_based
NOR_Q,NOR,Q,services_other,v1_rule_based
NOR_R,NOR,R,services_other,v1_rule_based
NOR_S,NOR,S,services_other,v1_rule_based
NOR_T,NOR,T,services_other,v1_rule_based
NZL_A01,NZL,A01,energy_primary,v1_rule_based
NZL_A02,NZL,A02,energy_primary,v1_rule_based
NZL_A03,NZL,A03,energy_primary,v1_rule_based
NZL_B05,NZL,B05,energy_primary,v1_rule_based
NZL_B06,NZL,B06,energy_primary,v1_rule_based
NZL_B07,NZL,B07,energy_primary,v1_rule_based
NZL_B08,NZL,B08,energy_primary,v1_rule_based
NZL_B09,NZL,B09,energy_primary,v1_rule_based
NZL_C10T12,NZL,C10T12,retail_consumer,v1_rule_based
NZL_C13T15,NZL,C13T15,retail_consumer,v1_rule_based
NZL_C16,NZL,C16,manufacturing_other,v1_rule_based
NZL_C17_18,NZL,C17_18,manufacturing_other,v1_rule_based
NZL_C19,NZL,C19,manufacturing_other,v1_rule_based
NZL_C20,NZL,C20,manufacturing_other,v1_rule_based
NZL_C21,NZL,C21,pharma,v1_rule_based
NZL_C22,NZL,C22,manufacturing_other,v1_rule_based
NZL_C23,NZL,C23,manufacturing_other,v1_rule_based
NZL_C24A,NZL,C24A,steel_aluminum,v1_rule_based
NZL_C24B,NZL,C24B,steel_aluminum,v1_rule_based
NZL_C25,NZL,C25,steel_aluminum,v1_rule_based
NZL_C26,NZL,C26,manufacturing_other,v1_rule_based
NZL_C27,NZL,C27,manufacturing_other,v1_rule_based
NZL_C28,NZL,C28,manufacturing_other,v1_rule_based
NZL_C29,NZL,C29,manufacturing_other,v1_rule_based
NZL_C301,NZL,C301,manufacturing_other,v1_rule_based
NZL_C302T309,NZL,C302T309,manufacturing_other,v1_rule_based
NZL_C31T33,NZL,C31T33,retail_consumer,v1_rule_based
NZL_D,NZL,D,energy_primary,v1_rule_based
NZL_E,NZL,E,energy_primary,v1_rule_based
NZL_F,NZL,F,services_other,v1_rule_based
NZL_G,NZL,G,retail_consumer,v1_rule_based
NZL_H49,NZL,H49,services_other,v1_rule_based
NZL_H50,NZL,H50,services_other,v1_rule_based
NZL_H51,NZL,H51,services_other,v1_rule_based
NZL_H52,NZL,H52,services_other,v1_rule_based
NZL_H53,NZL,H53,services_other,v1_rule_based
NZL_I,NZL,I,retail_consumer,v1_rule_based
NZL_J58T60,NZL,J58T60,services_other,v1_rule_based
NZL_J61,NZL,J61,services_other,v1_rule_based
NZL_J62_63,NZL,J62_63,services_other,v1_rule_based
NZL_K,NZL,K,services_other,v1_rule_based
NZL_L,NZL,L,services_other,v1_rule_based
NZL_M,NZL,M,services_other,v1_rule_based
NZL_N,NZL,N,services_other,v1_rule_based
NZL_O,NZL,O,services_other,v1_rule_based
NZL_P,NZL,P,services_other,v1_rule_based
NZL_Q,NZL,Q,services_other,v1_rule_based
NZL_R,NZL,R,services_other,v1_rule_based
NZL_S,NZL,S,services_other,v1_rule_based
NZL_T,NZL,T,services_other,v1_rule_based
PAK_A01,PAK,A01,energy_primary,v1_rule_based
PAK_A02,PAK,A02,energy_primary,v1_rule_based
PAK_A03,PAK,A03,energy_primary,v1_rule_based
PAK_B05,PAK,B05,energy_primary,v1_rule_based
PAK_B06,PAK,B06,energy_primary,v1_rule_based
PAK_B07,PAK,B07,energy_primary,v1_rule_based
PAK_B08,PAK,B08,energy_primary,v1_rule_based
PAK_B09,PAK,B09,energy_primary,v1_rule_based
PAK_C10T12,PAK,C10T12,retail_consumer,v1_rule_based
PAK_C13T15,PAK,C13T15,retail_consumer,v1_rule_based
PAK_C16,PAK,C16,manufacturing_other,v1_rule_based
PAK_C17_18,PAK,C17_18,manufacturing_other,v1_rule_based
PAK_C19,PAK,C19,manufacturing_other,v1_rule_based
PAK_C20,PAK,C20,manufacturing_other,v1_rule_based
PAK_C21,PAK,C21,pharma,v1_rule_based
PAK_C22,PAK,C22,manufacturing_other,v1_rule_based
PAK_C23,PAK,C23,manufacturing_other,v1_rule_based
PAK_C24A,PAK,C24A,steel_aluminum,v1_rule_based
PAK_C24B,PAK,C24B,steel_aluminum,v1_rule_based
PAK_C25,PAK,C25,steel_aluminum,v1_rule_based
PAK_C26,PAK,C26,manufacturing_other,v1_rule_based
PAK_C27,PAK,C27,manufacturing_other,v1_rule_based
PAK_C28,PAK,C28,manufacturing_other,v1_rule_based
PAK_C29,PAK,C29,manufacturing_other,v1_rule_based
PAK_C301,PAK,C301,manufacturing_other,v1_rule_based
PAK_C302T309,PAK,C302T309,manufacturing_other,v1_rule_based
PAK_C31T33,PAK,C31T33,retail_consumer,v1_rule_based
PAK_D,PAK,D,energy_primary,v1_rule_based
PAK_E,PAK,E,energy_primary,v1_rule_based
PAK_F,PAK,F,services_other,v1_rule_based
PAK_G,PAK,G,retail_consumer,v1_rule_based
PAK_H49,PAK,H49,services_other,v1_rule_based
PAK_H50,PAK,H50,services_other,v1_rule_based
PAK_H51,PAK,H51,services_other,v1_rule_based
PAK_H52,PAK,H52,services_other,v1_rule_based
PAK_H53,PAK,H53,services_other,v1_rule_based
PAK_I,PAK,I,retail_consumer,v1_rule_based
PAK_J58T60,PAK,J58T60,services_other,v1_rule_based
PAK_J61,PAK,J61,services_other,v1_rule_based
PAK_J62_63,PAK,J62_63,services_other,v1_rule_based
PAK_K,PAK,K,services_other,v1_rule_based
PAK_L,PAK,L,services_other,v1_rule_based
PAK_M,PAK,M,services_other,v1_rule_based
PAK_N,PAK,N,services_other,v1_rule_based
PAK_O,PAK,O,services_other,v1_rule_based
PAK_P,PAK,P,services_other,v1_rule_based
PAK_Q,PAK,Q,services_other,v1_rule_based
PAK_R,PAK,R,services_other,v1_rule_based
PAK_S,PAK,S,services_other,v1_rule_based
PAK_T,PAK,T,services_other,v1_rule_based
PER_A01,PER,A01,energy_primary,v1_rule_based
PER_A02,PER,A02,energy_primary,v1_rule_based
PER_A03,PER,A03,energy_primary,v1_rule_based
PER_B05,PER,B05,energy_primary,v1_rule_based
PER_B06,PER,B06,energy_primary,v1_rule_based
PER_B07,PER,B07,energy_primary,v1_rule_based
PER_B08,PER,B08,energy_primary,v1_rule_based
PER_B09,PER,B09,energy_primary,v1_rule_based
PER_C10T12,PER,C10T12,retail_consumer,v1_rule_based
PER_C13T15,PER,C13T15,retail_consumer,v1_rule_based
PER_C16,PER,C16,manufacturing_other,v1_rule_based
PER_C17_18,PER,C17_18,manufacturing_other,v1_rule_based
PER_C19,PER,C19,manufacturing_other,v1_rule_based
PER_C20,PER,C20,manufacturing_other,v1_rule_based
PER_C21,PER,C21,pharma,v1_rule_based
PER_C22,PER,C22,manufacturing_other,v1_rule_based
PER_C23,PER,C23,manufacturing_other,v1_rule_based
PER_C24A,PER,C24A,steel_aluminum,v1_rule_based
PER_C24B,PER,C24B,steel_aluminum,v1_rule_based
PER_C25,PER,C25,steel_aluminum,v1_rule_based
PER_C26,PER,C26,manufacturing_other,v1_rule_based
PER_C27,PER,C27,manufacturing_other,v1_rule_based
PER_C28,PER,C28,manufacturing_other,v1_rule_based
PER_C29,PER,C29,manufacturing_other,v1_rule_based
PER_C301,PER,C301,manufacturing_other,v1_rule_based
PER_C302T309,PER,C302T309,manufacturing_other,v1_rule_based
PER_C31T33,PER,C31T33,retail_consumer,v1_rule_based
PER_D,PER,D,energy_primary,v1_rule_based
PER_E,PER,E,energy_primary,v1_rule_based
PER_F,PER,F,services_other,v1_rule_based
PER_G,PER,G,retail_consumer,v1_rule_based
PER_H49,PER,H49,services_other,v1_rule_based
PER_H50,PER,H50,services_other,v1_rule_based
PER_H51,PER,H51,services_other,v1_rule_based
PER_H52,PER,H52,services_other,v1_rule_based
PER_H53,PER,H53,services_other,v1_rule_based
PER_I,PER,I,retail_consumer,v1_rule_based
PER_J58T60,PER,J58T60,services_other,v1_rule_based
PER_J61,PER,J61,services_other,v1_rule_based
PER_J62_63,PER,J62_63,services_other,v1_rule_based
PER_K,PER,K,services_other,v1_rule_based
PER_L,PER,L,services_other,v1_rule_based
PER_M,PER,M,services_other,v1_rule_based
PER_N,PER,N,services_other,v1_rule_based
PER_O,PER,O,services_other,v1_rule_based
PER_P,PER,P,services_other,v1_rule_based
PER_Q,PER,Q,services_other,v1_rule_based
PER_R,PER,R,services_other,v1_rule_based
PER_S,PER,S,services_other,v1_rule_based
PER_T,PER,T,services_other,v1_rule_based
PHL_A01,PHL,A01,energy_primary,v1_rule_based
PHL_A02,PHL,A02,energy_primary,v1_rule_based
PHL_A03,PHL,A03,energy_primary,v1_rule_based
PHL_B05,PHL,B05,energy_primary,v1_rule_based
PHL_B06,PHL,B06,energy_primary,v1_rule_based
PHL_B07,PHL,B07,energy_primary,v1_rule_based
PHL_B08,PHL,B08,energy_primary,v1_rule_based
PHL_B09,PHL,B09,energy_primary,v1_rule_based
PHL_C10T12,PHL,C10T12,retail_consumer,v1_rule_based
PHL_C13T15,PHL,C13T15,retail_consumer,v1_rule_based
PHL_C16,PHL,C16,manufacturing_other,v1_rule_based
PHL_C17_18,PHL,C17_18,manufacturing_other,v1_rule_based
PHL_C19,PHL,C19,manufacturing_other,v1_rule_based
PHL_C20,PHL,C20,manufacturing_other,v1_rule_based
PHL_C21,PHL,C21,pharma,v1_rule_based
PHL_C22,PHL,C22,manufacturing_other,v1_rule_based
PHL_C23,PHL,C23,manufacturing_other,v1_rule_based
PHL_C24A,PHL,C24A,steel_aluminum,v1_rule_based
PHL_C24B,PHL,C24B,steel_aluminum,v1_rule_based
PHL_C25,PHL,C25,steel_aluminum,v1_rule_based
PHL_C26,PHL,C26,manufacturing_other,v1_rule_based
PHL_C27,PHL,C27,manufacturing_other,v1_rule_based
PHL_C28,PHL,C28,manufacturing_other,v1_rule_based
PHL_C29,PHL,C29,manufacturing_other,v1_rule_based
PHL_C301,PHL,C301,manufacturing_other,v1_rule_based
PHL_C302T309,PHL,C302T309,manufacturing_other,v1_rule_based
PHL_C31T33,PHL,C31T33,retail_consumer,v1_rule_based
PHL_D,PHL,D,energy_primary,v1_rule_based
PHL_E,PHL,E,energy_primary,v1_rule_based
PHL_F,PHL,F,services_other,v1_rule_based
PHL_G,PHL,G,retail_consumer,v1_rule_based
PHL_H49,PHL,H49,services_other,v1_rule_based
PHL_H50,PHL,H50,services_other,v1_rule_based
PHL_H51,PHL,H51,services_other,v1_rule_based
PHL_H52,PHL,H52,services_other,v1_rule_based
PHL_H53,PHL,H53,services_other,v1_rule_based
PHL_I,PHL,I,retail_consumer,v1_rule_based
PHL_J58T60,PHL,J58T60,services_other,v1_rule_based
PHL_J61,PHL,J61,services_other,v1_rule_based
PHL_J62_63,PHL,J62_63,services_other,v1_rule_based
PHL_K,PHL,K,services_other,v1_rule_based
PHL_L,PHL,L,services_other,v1_rule_based
PHL_M,PHL,M,services_other,v1_rule_based
PHL_N,PHL,N,services_other,v1_rule_based
PHL_O,PHL,O,services_other,v1_rule_based
PHL_P,PHL,P,services_other,v1_rule_based
PHL_Q,PHL,Q,services_other,v1_rule_based
PHL_R,PHL,R,services_other,v1_rule_based
PHL_S,PHL,S,services_other,v1_rule_based
PHL_T,PHL,T,services_other,v1_rule_based
POL_A01,POL,A01,energy_primary,v1_rule_based
POL_A02,POL,A02,energy_primary,v1_rule_based
POL_A03,POL,A03,energy_primary,v1_rule_based
POL_B05,POL,B05,energy_primary,v1_rule_based
POL_B06,POL,B06,energy_primary,v1_rule_based
POL_B07,POL,B07,energy_primary,v1_rule_based
POL_B08,POL,B08,energy_primary,v1_rule_based
POL_B09,POL,B09,energy_primary,v1_rule_based
POL_C10T12,POL,C10T12,retail_consumer,v1_rule_based
POL_C13T15,POL,C13T15,retail_consumer,v1_rule_based
POL_C16,POL,C16,manufacturing_other,v1_rule_based
POL_C17_18,POL,C17_18,manufacturing_other,v1_rule_based
POL_C19,POL,C19,manufacturing_other,v1_rule_based
POL_C20,POL,C20,manufacturing_other,v1_rule_based
POL_C21,POL,C21,pharma,v1_rule_based
POL_C22,POL,C22,manufacturing_other,v1_rule_based
POL_C23,POL,C23,manufacturing_other,v1_rule_based
POL_C24A,POL,C24A,steel_aluminum,v1_rule_based
POL_C24B,POL,C24B,steel_aluminum,v1_rule_based
POL_C25,POL,C25,steel_aluminum,v1_rule_based
POL_C26,POL,C26,manufacturing_other,v1_rule_based
POL_C27,POL,C27,manufacturing_other,v1_rule_based
POL_C28,POL,C28,manufacturing_other,v1_rule_based
POL_C29,POL,C29,manufacturing_other,v1_rule_based
POL_C301,POL,C301,manufacturing_other,v1_rule_based
POL_C302T309,POL,C302T309,manufacturing_other,v1_rule_based
POL_C31T33,POL,C31T33,retail_consumer,v1_rule_based
POL_D,POL,D,energy_primary,v1_rule_based
POL_E,POL,E,energy_primary,v1_rule_based
POL_F,POL,F,services_other,v1_rule_based
POL_G,POL,G,retail_consumer,v1_rule_based
POL_H49,POL,H49,services_other,v1_rule_based
POL_H50,POL,H50,services_other,v1_rule_based
POL_H51,POL,H51,services_other,v1_rule_based
POL_H52,POL,H52,services_other,v1_rule_based
POL_H53,POL,H53,services_other,v1_rule_based
POL_I,POL,I,retail_consumer,v1_rule_based
POL_J58T60,POL,J58T60,services_other,v1_rule_based
POL_J61,POL,J61,services_other,v1_rule_based
POL_J62_63,POL,J62_63,services_other,v1_rule_based
POL_K,POL,K,services_other,v1_rule_based
POL_L,POL,L,services_other,v1_rule_based
POL_M,POL,M,services_other,v1_rule_based
POL_N,POL,N,services_other,v1_rule_based
POL_O,POL,O,services_other,v1_rule_based
POL_P,POL,P,services_other,v1_rule_based
POL_Q,POL,Q,services_other,v1_rule_based
POL_R,POL,R,services_other,v1_rule_based
POL_S,POL,S,services_other,v1_rule_based
POL_T,POL,T,services_other,v1_rule_based
PRT_A01,PRT,A01,energy_primary,v1_rule_based
PRT_A02,PRT,A02,energy_primary,v1_rule_based
PRT_A03,PRT,A03,energy_primary,v1_rule_based
PRT_B05,PRT,B05,energy_primary,v1_rule_based
PRT_B06,PRT,B06,energy_primary,v1_rule_based
PRT_B07,PRT,B07,energy_primary,v1_rule_based
PRT_B08,PRT,B08,energy_primary,v1_rule_based
PRT_B09,PRT,B09,energy_primary,v1_rule_based
PRT_C10T12,PRT,C10T12,retail_consumer,v1_rule_based
PRT_C13T15,PRT,C13T15,retail_consumer,v1_rule_based
PRT_C16,PRT,C16,manufacturing_other,v1_rule_based
PRT_C17_18,PRT,C17_18,manufacturing_other,v1_rule_based
PRT_C19,PRT,C19,manufacturing_other,v1_rule_based
PRT_C20,PRT,C20,manufacturing_other,v1_rule_based
PRT_C21,PRT,C21,pharma,v1_rule_based
PRT_C22,PRT,C22,manufacturing_other,v1_rule_based
PRT_C23,PRT,C23,manufacturing_other,v1_rule_based
PRT_C24A,PRT,C24A,steel_aluminum,v1_rule_based
PRT_C24B,PRT,C24B,steel_aluminum,v1_rule_based
PRT_C25,PRT,C25,steel_aluminum,v1_rule_based
PRT_C26,PRT,C26,manufacturing_other,v1_rule_based
PRT_C27,PRT,C27,manufacturing_other,v1_rule_based
PRT_C28,PRT,C28,manufacturing_other,v1_rule_based
PRT_C29,PRT,C29,manufacturing_other,v1_rule_based
PRT_C301,PRT,C301,manufacturing_other,v1_rule_based
PRT_C302T309,PRT,C302T309,manufacturing_other,v1_rule_based
PRT_C31T33,PRT,C31T33,retail_consumer,v1_rule_based
PRT_D,PRT,D,energy_primary,v1_rule_based
PRT_E,PRT,E,energy_primary,v1_rule_based
PRT_F,PRT,F,services_other,v1_rule_based
PRT_G,PRT,G,retail_consumer,v1_rule_based
PRT_H49,PRT,H49,services_other,v1_rule_based
PRT_H50,PRT,H50,services_other,v1_rule_based
PRT_H51,PRT,H51,services_other,v1_rule_based
PRT_H52,PRT,H52,services_other,v1_rule_based
PRT_H53,PRT,H53,services_other,v1_rule_based
PRT_I,PRT,I,retail_consumer,v1_rule_based
PRT_J58T60,PRT,J58T60,services_other,v1_rule_based
PRT_J61,PRT,J61,services_other,v1_rule_based
PRT_J62_63,PRT,J62_63,services_other,v1_rule_based
PRT_K,PRT,K,services_other,v1_rule_based
PRT_L,PRT,L,services_other,v1_rule_based
PRT_M,PRT,M,services_other,v1_rule_based
PRT_N,PRT,N,services_other,v1_rule_based
PRT_O,PRT,O,services_other,v1_rule_based
PRT_P,PRT,P,services_other,v1_rule_based
PRT_Q,PRT,Q,services_other,v1_rule_based
PRT_R,PRT,R,services_other,v1_rule_based
PRT_S,PRT,S,services_other,v1_rule_based
PRT_T,PRT,T,services_other,v1_rule_based
ROU_A01,ROU,A01,energy_primary,v1_rule_based
ROU_A02,ROU,A02,energy_primary,v1_rule_based
ROU_A03,ROU,A03,energy_primary,v1_rule_based
ROU_B05,ROU,B05,energy_primary,v1_rule_based
ROU_B06,ROU,B06,energy_primary,v1_rule_based
ROU_B07,ROU,B07,energy_primary,v1_rule_based
ROU_B08,ROU,B08,energy_primary,v1_rule_based
ROU_B09,ROU,B09,energy_primary,v1_rule_based
ROU_C10T12,ROU,C10T12,retail_consumer,v1_rule_based
ROU_C13T15,ROU,C13T15,retail_consumer,v1_rule_based
ROU_C16,ROU,C16,manufacturing_other,v1_rule_based
ROU_C17_18,ROU,C17_18,manufacturing_other,v1_rule_based
ROU_C19,ROU,C19,manufacturing_other,v1_rule_based
ROU_C20,ROU,C20,manufacturing_other,v1_rule_based
ROU_C21,ROU,C21,pharma,v1_rule_based
ROU_C22,ROU,C22,manufacturing_other,v1_rule_based
ROU_C23,ROU,C23,manufacturing_other,v1_rule_based
ROU_C24A,ROU,C24A,steel_aluminum,v1_rule_based
ROU_C24B,ROU,C24B,steel_aluminum,v1_rule_based
ROU_C25,ROU,C25,steel_aluminum,v1_rule_based
ROU_C26,ROU,C26,manufacturing_other,v1_rule_based
ROU_C27,ROU,C27,manufacturing_other,v1_rule_based
ROU_C28,ROU,C28,manufacturing_other,v1_rule_based
ROU_C29,ROU,C29,manufacturing_other,v1_rule_based
ROU_C301,ROU,C301,manufacturing_other,v1_rule_based
ROU_C302T309,ROU,C302T309,manufacturing_other,v1_rule_based
ROU_C31T33,ROU,C31T33,retail_consumer,v1_rule_based
ROU_D,ROU,D,energy_primary,v1_rule_based
ROU_E,ROU,E,energy_primary,v1_rule_based
ROU_F,ROU,F,services_other,v1_rule_based
ROU_G,ROU,G,retail_consumer,v1_rule_based
ROU_H49,ROU,H49,services_other,v1_rule_based
ROU_H50,ROU,H50,services_other,v1_rule_based
ROU_H51,ROU,H51,services_other,v1_rule_based
ROU_H52,ROU,H52,services_other,v1_rule_based
ROU_H53,ROU,H53,services_other,v1_rule_based
ROU_I,ROU,I,retail_consumer,v1_rule_based
ROU_J58T60,ROU,J58T60,services_other,v1_rule_based
ROU_J61,ROU,J61,services_other,v1_rule_based
ROU_J62_63,ROU,J62_63,services_other,v1_rule_based
ROU_K,ROU,K,services_other,v1_rule_based
ROU_L,ROU,L,services_other,v1_rule_based
ROU_M,ROU,M,services_other,v1_rule_based
ROU_N,ROU,N,services_other,v1_rule_based
ROU_O,ROU,O,services_other,v1_rule_based
ROU_P,ROU,P,services_other,v1_rule_based
ROU_Q,ROU,Q,services_other,v1_rule_based
ROU_R,ROU,R,services_other,v1_rule_based
ROU_S,ROU,S,services_other,v1_rule_based
ROU_T,ROU,T,services_other,v1_rule_based
RUS_A01,RUS,A01,energy_primary,v1_rule_based
RUS_A02,RUS,A02,energy_primary,v1_rule_based
RUS_A03,RUS,A03,energy_primary,v1_rule_based
RUS_B05,RUS,B05,energy_primary,v1_rule_based
RUS_B06,RUS,B06,energy_primary,v1_rule_based
RUS_B07,RUS,B07,energy_primary,v1_rule_based
RUS_B08,RUS,B08,energy_primary,v1_rule_based
RUS_B09,RUS,B09,energy_primary,v1_rule_based
RUS_C10T12,RUS,C10T12,retail_consumer,v1_rule_based
RUS_C13T15,RUS,C13T15,retail_consumer,v1_rule_based
RUS_C16,RUS,C16,manufacturing_other,v1_rule_based
RUS_C17_18,RUS,C17_18,manufacturing_other,v1_rule_based
RUS_C19,RUS,C19,manufacturing_other,v1_rule_based
RUS_C20,RUS,C20,manufacturing_other,v1_rule_based
RUS_C21,RUS,C21,pharma,v1_rule_based
RUS_C22,RUS,C22,manufacturing_other,v1_rule_based
RUS_C23,RUS,C23,manufacturing_other,v1_rule_based
RUS_C24A,RUS,C24A,steel_aluminum,v1_rule_based
RUS_C24B,RUS,C24B,steel_aluminum,v1_rule_based
RUS_C25,RUS,C25,steel_aluminum,v1_rule_based
RUS_C26,RUS,C26,manufacturing_other,v1_rule_based
RUS_C27,RUS,C27,manufacturing_other,v1_rule_based
RUS_C28,RUS,C28,manufacturing_other,v1_rule_based
RUS_C29,RUS,C29,manufacturing_other,v1_rule_based
RUS_C301,RUS,C301,manufacturing_other,v1_rule_based
RUS_C302T309,RUS,C302T309,manufacturing_other,v1_rule_based
RUS_C31T33,RUS,C31T33,retail_consumer,v1_rule_based
RUS_D,RUS,D,energy_primary,v1_rule_based
RUS_E,RUS,E,energy_primary,v1_rule_based
RUS_F,RUS,F,services_other,v1_rule_based
RUS_G,RUS,G,retail_consumer,v1_rule_based
RUS_H49,RUS,H49,services_other,v1_rule_based
RUS_H50,RUS,H50,services_other,v1_rule_based
RUS_H51,RUS,H51,services_other,v1_rule_based
RUS_H52,RUS,H52,services_other,v1_rule_based
RUS_H53,RUS,H53,services_other,v1_rule_based
RUS_I,RUS,I,retail_consumer,v1_rule_based
RUS_J58T60,RUS,J58T60,services_other,v1_rule_based
RUS_J61,RUS,J61,services_other,v1_rule_based
RUS_J62_63,RUS,J62_63,services_other,v1_rule_based
RUS_K,RUS,K,services_other,v1_rule_based
RUS_L,RUS,L,services_other,v1_rule_based
RUS_M,RUS,M,services_other,v1_rule_based
RUS_N,RUS,N,services_other,v1_rule_based
RUS_O,RUS,O,services_other,v1_rule_based
RUS_P,RUS,P,services_other,v1_rule_based
RUS_Q,RUS,Q,services_other,v1_rule_based
RUS_R,RUS,R,services_other,v1_rule_based
RUS_S,RUS,S,services_other,v1_rule_based
RUS_T,RUS,T,services_other,v1_rule_based
SAU_A01,SAU,A01,energy_primary,v1_rule_based
SAU_A02,SAU,A02,energy_primary,v1_rule_based
SAU_A03,SAU,A03,energy_primary,v1_rule_based
SAU_B05,SAU,B05,energy_primary,v1_rule_based
SAU_B06,SAU,B06,energy_primary,v1_rule_based
SAU_B07,SAU,B07,energy_primary,v1_rule_based
SAU_B08,SAU,B08,energy_primary,v1_rule_based
SAU_B09,SAU,B09,energy_primary,v1_rule_based
SAU_C10T12,SAU,C10T12,retail_consumer,v1_rule_based
SAU_C13T15,SAU,C13T15,retail_consumer,v1_rule_based
SAU_C16,SAU,C16,manufacturing_other,v1_rule_based
SAU_C17_18,SAU,C17_18,manufacturing_other,v1_rule_based
SAU_C19,SAU,C19,manufacturing_other,v1_rule_based
SAU_C20,SAU,C20,manufacturing_other,v1_rule_based
SAU_C21,SAU,C21,pharma,v1_rule_based
SAU_C22,SAU,C22,manufacturing_other,v1_rule_based
SAU_C23,SAU,C23,manufacturing_other,v1_rule_based
SAU_C24A,SAU,C24A,steel_aluminum,v1_rule_based
SAU_C24B,SAU,C24B,steel_aluminum,v1_rule_based
SAU_C25,SAU,C25,steel_aluminum,v1_rule_based
SAU_C26,SAU,C26,manufacturing_other,v1_rule_based
SAU_C27,SAU,C27,manufacturing_other,v1_rule_based
SAU_C28,SAU,C28,manufacturing_other,v1_rule_based
SAU_C29,SAU,C29,manufacturing_other,v1_rule_based
SAU_C301,SAU,C301,manufacturing_other,v1_rule_based
SAU_C302T309,SAU,C302T309,manufacturing_other,v1_rule_based
SAU_C31T33,SAU,C31T33,retail_consumer,v1_rule_based
SAU_D,SAU,D,energy_primary,v1_rule_based
SAU_E,SAU,E,energy_primary,v1_rule_based
SAU_F,SAU,F,services_other,v1_rule_based
SAU_G,SAU,G,retail_consumer,v1_rule_based
SAU_H49,SAU,H49,services_other,v1_rule_based
SAU_H50,SAU,H50,services_other,v1_rule_based
SAU_H51,SAU,H51,services_other,v1_rule_based
SAU_H52,SAU,H52,services_other,v1_rule_based
SAU_H53,SAU,H53,services_other,v1_rule_based
SAU_I,SAU,I,retail_consumer,v1_rule_based
SAU_J58T60,SAU,J58T60,services_other,v1_rule_based
SAU_J61,SAU,J61,services_other,v1_rule_based
SAU_J62_63,SAU,J62_63,services_other,v1_rule_based
SAU_K,SAU,K,services_other,v1_rule_based
SAU_L,SAU,L,services_other,v1_rule_based
SAU_M,SAU,M,services_other,v1_rule_based
SAU_N,SAU,N,services_other,v1_rule_based
SAU_O,SAU,O,services_other,v1_rule_based
SAU_P,SAU,P,services_other,v1_rule_based
SAU_Q,SAU,Q,services_other,v1_rule_based
SAU_R,SAU,R,services_other,v1_rule_based
SAU_S,SAU,S,services_other,v1_rule_based
SAU_T,SAU,T,services_other,v1_rule_based
SEN_A01,SEN,A01,energy_primary,v1_rule_based
SEN_A02,SEN,A02,energy_primary,v1_rule_based
SEN_A03,SEN,A03,energy_primary,v1_rule_based
SEN_B05,SEN,B05,energy_primary,v1_rule_based
SEN_B06,SEN,B06,energy_primary,v1_rule_based
SEN_B07,SEN,B07,energy_primary,v1_rule_based
SEN_B08,SEN,B08,energy_primary,v1_rule_based
SEN_B09,SEN,B09,energy_primary,v1_rule_based
SEN_C10T12,SEN,C10T12,retail_consumer,v1_rule_based
SEN_C13T15,SEN,C13T15,retail_consumer,v1_rule_based
SEN_C16,SEN,C16,manufacturing_other,v1_rule_based
SEN_C17_18,SEN,C17_18,manufacturing_other,v1_rule_based
SEN_C19,SEN,C19,manufacturing_other,v1_rule_based
SEN_C20,SEN,C20,manufacturing_other,v1_rule_based
SEN_C21,SEN,C21,pharma,v1_rule_based
SEN_C22,SEN,C22,manufacturing_other,v1_rule_based
SEN_C23,SEN,C23,manufacturing_other,v1_rule_based
SEN_C24A,SEN,C24A,steel_aluminum,v1_rule_based
SEN_C24B,SEN,C24B,steel_aluminum,v1_rule_based
SEN_C25,SEN,C25,steel_aluminum,v1_rule_based
SEN_C26,SEN,C26,manufacturing_other,v1_rule_based
SEN_C27,SEN,C27,manufacturing_other,v1_rule_based
SEN_C28,SEN,C28,manufacturing_other,v1_rule_based
SEN_C29,SEN,C29,manufacturing_other,v1_rule_based
SEN_C301,SEN,C301,manufacturing_other,v1_rule_based
SEN_C302T309,SEN,C302T309,manufacturing_other,v1_rule_based
SEN_C31T33,SEN,C31T33,retail_consumer,v1_rule_based
SEN_D,SEN,D,energy_primary,v1_rule_based
SEN_E,SEN,E,energy_primary,v1_rule_based
SEN_F,SEN,F,services_other,v1_rule_based
SEN_G,SEN,G,retail_consumer,v1_rule_based
SEN_H49,SEN,H49,services_other,v1_rule_based
SEN_H50,SEN,H50,services_other,v1_rule_based
SEN_H51,SEN,H51,services_other,v1_rule_based
SEN_H52,SEN,H52,services_other,v1_rule_based
SEN_H53,SEN,H53,services_other,v1_rule_based
SEN_I,SEN,I,retail_consumer,v1_rule_based
SEN_J58T60,SEN,J58T60,services_other,v1_rule_based
SEN_J61,SEN,J61,services_other,v1_rule_based
SEN_J62_63,SEN,J62_63,services_other,v1_rule_based
SEN_K,SEN,K,services_other,v1_rule_based
SEN_L,SEN,L,services_other,v1_rule_based
SEN_M,SEN,M,services_other,v1_rule_based
SEN_N,SEN,N,services_other,v1_rule_based
SEN_O,SEN,O,services_other,v1_rule_based
SEN_P,SEN,P,services_other,v1_rule_based
SEN_Q,SEN,Q,services_other,v1_rule_based
SEN_R,SEN,R,services_other,v1_rule_based
SEN_S,SEN,S,services_other,v1_rule_based
SEN_T,SEN,T,services_other,v1_rule_based
SGP_A01,SGP,A01,energy_primary,v1_rule_based
SGP_A02,SGP,A02,energy_primary,v1_rule_based
SGP_A03,SGP,A03,energy_primary,v1_rule_based
SGP_B05,SGP,B05,energy_primary,v1_rule_based
SGP_B06,SGP,B06,energy_primary,v1_rule_based
SGP_B07,SGP,B07,energy_primary,v1_rule_based
SGP_B08,SGP,B08,energy_primary,v1_rule_based
SGP_B09,SGP,B09,energy_primary,v1_rule_based
SGP_C10T12,SGP,C10T12,retail_consumer,v1_rule_based
SGP_C13T15,SGP,C13T15,retail_consumer,v1_rule_based
SGP_C16,SGP,C16,manufacturing_other,v1_rule_based
SGP_C17_18,SGP,C17_18,manufacturing_other,v1_rule_based
SGP_C19,SGP,C19,manufacturing_other,v1_rule_based
SGP_C20,SGP,C20,manufacturing_other,v1_rule_based
SGP_C21,SGP,C21,pharma,v1_rule_based
SGP_C22,SGP,C22,manufacturing_other,v1_rule_based
SGP_C23,SGP,C23,manufacturing_other,v1_rule_based
SGP_C24A,SGP,C24A,steel_aluminum,v1_rule_based
SGP_C24B,SGP,C24B,steel_aluminum,v1_rule_based
SGP_C25,SGP,C25,steel_aluminum,v1_rule_based
SGP_C26,SGP,C26,manufacturing_other,v1_rule_based
SGP_C27,SGP,C27,manufacturing_other,v1_rule_based
SGP_C28,SGP,C28,manufacturing_other,v1_rule_based
SGP_C29,SGP,C29,manufacturing_other,v1_rule_based
SGP_C301,SGP,C301,manufacturing_other,v1_rule_based
SGP_C302T309,SGP,C302T309,manufacturing_other,v1_rule_based
SGP_C31T33,SGP,C31T33,retail_consumer,v1_rule_based
SGP_D,SGP,D,energy_primary,v1_rule_based
SGP_E,SGP,E,energy_primary,v1_rule_based
SGP_F,SGP,F,services_other,v1_rule_based
SGP_G,SGP,G,retail_consumer,v1_rule_based
SGP_H49,SGP,H49,services_other,v1_rule_based
SGP_H50,SGP,H50,services_other,v1_rule_based
SGP_H51,SGP,H51,services_other,v1_rule_based
SGP_H52,SGP,H52,services_other,v1_rule_based
SGP_H53,SGP,H53,services_other,v1_rule_based
SGP_I,SGP,I,retail_consumer,v1_rule_based
SGP_J58T60,SGP,J58T60,services_other,v1_rule_based
SGP_J61,SGP,J61,services_other,v1_rule_based
SGP_J62_63,SGP,J62_63,services_other,v1_rule_based
SGP_K,SGP,K,services_other,v1_rule_based
SGP_L,SGP,L,services_other,v1_rule_based
SGP_M,SGP,M,services_other,v1_rule_based
SGP_N,SGP,N,services_other,v1_rule_based
SGP_O,SGP,O,services_other,v1_rule_based
SGP_P,SGP,P,services_other,v1_rule_based
SGP_Q,SGP,Q,services_other,v1_rule_based
SGP_R,SGP,R,services_other,v1_rule_based
SGP_S,SGP,S,services_other,v1_rule_based
SGP_T,SGP,T,services_other,v1_rule_based
STP_A01,STP,A01,energy_primary,v1_rule_based
STP_A02,STP,A02,energy_primary,v1_rule_based
STP_A03,STP,A03,energy_primary,v1_rule_based
STP_B05,STP,B05,energy_primary,v1_rule_based
STP_B06,STP,B06,energy_primary,v1_rule_based
STP_B07,STP,B07,energy_primary,v1_rule_based
STP_B08,STP,B08,energy_primary,v1_rule_based
STP_B09,STP,B09,energy_primary,v1_rule_based
STP_C10T12,STP,C10T12,retail_consumer,v1_rule_based
STP_C13T15,STP,C13T15,retail_consumer,v1_rule_based
STP_C16,STP,C16,manufacturing_other,v1_rule_based
STP_C17_18,STP,C17_18,manufacturing_other,v1_rule_based
STP_C19,STP,C19,manufacturing_other,v1_rule_based
STP_C20,STP,C20,manufacturing_other,v1_rule_based
STP_C21,STP,C21,pharma,v1_rule_based
STP_C22,STP,C22,manufacturing_other,v1_rule_based
STP_C23,STP,C23,manufacturing_other,v1_rule_based
STP_C24A,STP,C24A,steel_aluminum,v1_rule_based
STP_C24B,STP,C24B,steel_aluminum,v1_rule_based
STP_C25,STP,C25,steel_aluminum,v1_rule_based
STP_C26,STP,C26,manufacturing_other,v1_rule_based
STP_C27,STP,C27,manufacturing_other,v1_rule_based
STP_C28,STP,C28,manufacturing_other,v1_rule_based
STP_C29,STP,C29,manufacturing_other,v1_rule_based
STP_C301,STP,C301,manufacturing_other,v1_rule_based
STP_C302T309,STP,C302T309,manufacturing_other,v1_rule_based
STP_C31T33,STP,C31T33,retail_consumer,v1_rule_based
STP_D,STP,D,energy_primary,v1_rule_based
STP_E,STP,E,energy_primary,v1_rule_based
STP_F,STP,F,services_other,v1_rule_based
STP_G,STP,G,retail_consumer,v1_rule_based
STP_H49,STP,H49,services_other,v1_rule_based
STP_H50,STP,H50,services_other,v1_rule_based
STP_H51,STP,H51,services_other,v1_rule_based
STP_H52,STP,H52,services_other,v1_rule_based
STP_H53,STP,H53,services_other,v1_rule_based
STP_I,STP,I,retail_consumer,v1_rule_based
STP_J58T60,STP,J58T60,services_other,v1_rule_based
STP_J61,STP,J61,services_other,v1_rule_based
STP_J62_63,STP,J62_63,services_other,v1_rule_based
STP_K,STP,K,services_other,v1_rule_based
STP_L,STP,L,services_other,v1_rule_based
STP_M,STP,M,services_other,v1_rule_based
STP_N,STP,N,services_other,v1_rule_based
STP_O,STP,O,services_other,v1_rule_based
STP_P,STP,P,services_other,v1_rule_based
STP_Q,STP,Q,services_other,v1_rule_based
STP_R,STP,R,services_other,v1_rule_based
STP_S,STP,S,services_other,v1_rule_based
STP_T,STP,T,services_other,v1_rule_based
SVK_A01,SVK,A01,energy_primary,v1_rule_based
SVK_A02,SVK,A02,energy_primary,v1_rule_based
SVK_A03,SVK,A03,energy_primary,v1_rule_based
SVK_B05,SVK,B05,energy_primary,v1_rule_based
SVK_B06,SVK,B06,energy_primary,v1_rule_based
SVK_B07,SVK,B07,energy_primary,v1_rule_based
SVK_B08,SVK,B08,energy_primary,v1_rule_based
SVK_B09,SVK,B09,energy_primary,v1_rule_based
SVK_C10T12,SVK,C10T12,retail_consumer,v1_rule_based
SVK_C13T15,SVK,C13T15,retail_consumer,v1_rule_based
SVK_C16,SVK,C16,manufacturing_other,v1_rule_based
SVK_C17_18,SVK,C17_18,manufacturing_other,v1_rule_based
SVK_C19,SVK,C19,manufacturing_other,v1_rule_based
SVK_C20,SVK,C20,manufacturing_other,v1_rule_based
SVK_C21,SVK,C21,pharma,v1_rule_based
SVK_C22,SVK,C22,manufacturing_other,v1_rule_based
SVK_C23,SVK,C23,manufacturing_other,v1_rule_based
SVK_C24A,SVK,C24A,steel_aluminum,v1_rule_based
SVK_C24B,SVK,C24B,steel_aluminum,v1_rule_based
SVK_C25,SVK,C25,steel_aluminum,v1_rule_based
SVK_C26,SVK,C26,manufacturing_other,v1_rule_based
SVK_C27,SVK,C27,manufacturing_other,v1_rule_based
SVK_C28,SVK,C28,manufacturing_other,v1_rule_based
SVK_C29,SVK,C29,manufacturing_other,v1_rule_based
SVK_C301,SVK,C301,manufacturing_other,v1_rule_based
SVK_C302T309,SVK,C302T309,manufacturing_other,v1_rule_based
SVK_C31T33,SVK,C31T33,retail_consumer,v1_rule_based
SVK_D,SVK,D,energy_primary,v1_rule_based
SVK_E,SVK,E,energy_primary,v1_rule_based
SVK_F,SVK,F,services_other,v1_rule_based
SVK_G,SVK,G,retail_consumer,v1_rule_based
SVK_H49,SVK,H49,services_other,v1_rule_based
SVK_H50,SVK,H50,services_other,v1_rule_based
SVK_H51,SVK,H51,services_other,v1_rule_based
SVK_H52,SVK,H52,services_other,v1_rule_based
SVK_H53,SVK,H53,services_other,v1_rule_based
SVK_I,SVK,I,retail_consumer,v1_rule_based
SVK_J58T60,SVK,J58T60,services_other,v1_rule_based
SVK_J61,SVK,J61,services_other,v1_rule_based
SVK_J62_63,SVK,J62_63,services_other,v1_rule_based
SVK_K,SVK,K,services_other,v1_rule_based
SVK_L,SVK,L,services_other,v1_rule_based
SVK_M,SVK,M,services_other,v1_rule_based
SVK_N,SVK,N,services_other,v1_rule_based
SVK_O,SVK,O,services_other,v1_rule_based
SVK_P,SVK,P,services_other,v1_rule_based
SVK_Q,SVK,Q,services_other,v1_rule_based
SVK_R,SVK,R,services_other,v1_rule_based
SVK_S,SVK,S,services_other,v1_rule_based
SVK_T,SVK,T,services_other,v1_rule_based
SVN_A01,SVN,A01,energy_primary,v1_rule_based
SVN_A02,SVN,A02,energy_primary,v1_rule_based
SVN_A03,SVN,A03,energy_primary,v1_rule_based
SVN_B05,SVN,B05,energy_primary,v1_rule_based
SVN_B06,SVN,B06,energy_primary,v1_rule_based
SVN_B07,SVN,B07,energy_primary,v1_rule_based
SVN_B08,SVN,B08,energy_primary,v1_rule_based
SVN_B09,SVN,B09,energy_primary,v1_rule_based
SVN_C10T12,SVN,C10T12,retail_consumer,v1_rule_based
SVN_C13T15,SVN,C13T15,retail_consumer,v1_rule_based
SVN_C16,SVN,C16,manufacturing_other,v1_rule_based
SVN_C17_18,SVN,C17_18,manufacturing_other,v1_rule_based
SVN_C19,SVN,C19,manufacturing_other,v1_rule_based
SVN_C20,SVN,C20,manufacturing_other,v1_rule_based
SVN_C21,SVN,C21,pharma,v1_rule_based
SVN_C22,SVN,C22,manufacturing_other,v1_rule_based
SVN_C23,SVN,C23,manufacturing_other,v1_rule_based
SVN_C24A,SVN,C24A,steel_aluminum,v1_rule_based
SVN_C24B,SVN,C24B,steel_aluminum,v1_rule_based
SVN_C25,SVN,C25,steel_aluminum,v1_rule_based
SVN_C26,SVN,C26,manufacturing_other,v1_rule_based
SVN_C27,SVN,C27,manufacturing_other,v1_rule_based
SVN_C28,SVN,C28,manufacturing_other,v1_rule_based
SVN_C29,SVN,C29,manufacturing_other,v1_rule_based
SVN_C301,SVN,C301,manufacturing_other,v1_rule_based
SVN_C302T309,SVN,C302T309,manufacturing_other,v1_rule_based
SVN_C31T33,SVN,C31T33,retail_consumer,v1_rule_based
SVN_D,SVN,D,energy_primary,v1_rule_based
SVN_E,SVN,E,energy_primary,v1_rule_based
SVN_F,SVN,F,services_other,v1_rule_based
SVN_G,SVN,G,retail_consumer,v1_rule_based
SVN_H49,SVN,H49,services_other,v1_rule_based
SVN_H50,SVN,H50,services_other,v1_rule_based
SVN_H51,SVN,H51,services_other,v1_rule_based
SVN_H52,SVN,H52,services_other,v1_rule_based
SVN_H53,SVN,H53,services_other,v1_rule_based
SVN_I,SVN,I,retail_consumer,v1_rule_based
SVN_J58T60,SVN,J58T60,services_other,v1_rule_based
SVN_J61,SVN,J61,services_other,v1_rule_based
SVN_J62_63,SVN,J62_63,services_other,v1_rule_based
SVN_K,SVN,K,services_other,v1_rule_based
SVN_L,SVN,L,services_other,v1_rule_based
SVN_M,SVN,M,services_other,v1_rule_based
SVN_N,SVN,N,services_other,v1_rule_based
SVN_O,SVN,O,services_other,v1_rule_based
SVN_P,SVN,P,services_other,v1_rule_based
SVN_Q,SVN,Q,services_other,v1_rule_based
SVN_R,SVN,R,services_other,v1_rule_based
SVN_S,SVN,S,services_other,v1_rule_based
SVN_T,SVN,T,services_other,v1_rule_based
SWE_A01,SWE,A01,energy_primary,v1_rule_based
SWE_A02,SWE,A02,energy_primary,v1_rule_based
SWE_A03,SWE,A03,energy_primary,v1_rule_based
SWE_B05,SWE,B05,energy_primary,v1_rule_based
SWE_B06,SWE,B06,energy_primary,v1_rule_based
SWE_B07,SWE,B07,energy_primary,v1_rule_based
SWE_B08,SWE,B08,energy_primary,v1_rule_based
SWE_B09,SWE,B09,energy_primary,v1_rule_based
SWE_C10T12,SWE,C10T12,retail_consumer,v1_rule_based
SWE_C13T15,SWE,C13T15,retail_consumer,v1_rule_based
SWE_C16,SWE,C16,manufacturing_other,v1_rule_based
SWE_C17_18,SWE,C17_18,manufacturing_other,v1_rule_based
SWE_C19,SWE,C19,manufacturing_other,v1_rule_based
SWE_C20,SWE,C20,manufacturing_other,v1_rule_based
SWE_C21,SWE,C21,pharma,v1_rule_based
SWE_C22,SWE,C22,manufacturing_other,v1_rule_based
SWE_C23,SWE,C23,manufacturing_other,v1_rule_based
SWE_C24A,SWE,C24A,steel_aluminum,v1_rule_based
SWE_C24B,SWE,C24B,steel_aluminum,v1_rule_based
SWE_C25,SWE,C25,steel_aluminum,v1_rule_based
SWE_C26,SWE,C26,manufacturing_other,v1_rule_based
SWE_C27,SWE,C27,manufacturing_other,v1_rule_based
SWE_C28,SWE,C28,manufacturing_other,v1_rule_based
SWE_C29,SWE,C29,manufacturing_other,v1_rule_based
SWE_C301,SWE,C301,manufacturing_other,v1_rule_based
SWE_C302T309,SWE,C302T309,manufacturing_other,v1_rule_based
SWE_C31T33,SWE,C31T33,retail_consumer,v1_rule_based
SWE_D,SWE,D,energy_primary,v1_rule_based
SWE_E,SWE,E,energy_primary,v1_rule_based
SWE_F,SWE,F,services_other,v1_rule_based
SWE_G,SWE,G,retail_consumer,v1_rule_based
SWE_H49,SWE,H49,services_other,v1_rule_based
SWE_H50,SWE,H50,services_other,v1_rule_based
SWE_H51,SWE,H51,services_other,v1_rule_based
SWE_H52,SWE,H52,services_other,v1_rule_based
SWE_H53,SWE,H53,services_other,v1_rule_based
SWE_I,SWE,I,retail_consumer,v1_rule_based
SWE_J58T60,SWE,J58T60,services_other,v1_rule_based
SWE_J61,SWE,J61,services_other,v1_rule_based
SWE_J62_63,SWE,J62_63,services_other,v1_rule_based
SWE_K,SWE,K,services_other,v1_rule_based
SWE_L,SWE,L,services_other,v1_rule_based
SWE_M,SWE,M,services_other,v1_rule_based
SWE_N,SWE,N,services_other,v1_rule_based
SWE_O,SWE,O,services_other,v1_rule_based
SWE_P,SWE,P,services_other,v1_rule_based
SWE_Q,SWE,Q,services_other,v1_rule_based
SWE_R,SWE,R,services_other,v1_rule_based
SWE_S,SWE,S,services_other,v1_rule_based
SWE_T,SWE,T,services_other,v1_rule_based
THA_A01,THA,A01,energy_primary,v1_rule_based
THA_A02,THA,A02,energy_primary,v1_rule_based
THA_A03,THA,A03,energy_primary,v1_rule_based
THA_B05,THA,B05,energy_primary,v1_rule_based
THA_B06,THA,B06,energy_primary,v1_rule_based
THA_B07,THA,B07,energy_primary,v1_rule_based
THA_B08,THA,B08,energy_primary,v1_rule_based
THA_B09,THA,B09,energy_primary,v1_rule_based
THA_C10T12,THA,C10T12,retail_consumer,v1_rule_based
THA_C13T15,THA,C13T15,retail_consumer,v1_rule_based
THA_C16,THA,C16,manufacturing_other,v1_rule_based
THA_C17_18,THA,C17_18,manufacturing_other,v1_rule_based
THA_C19,THA,C19,manufacturing_other,v1_rule_based
THA_C20,THA,C20,manufacturing_other,v1_rule_based
THA_C21,THA,C21,pharma,v1_rule_based
THA_C22,THA,C22,manufacturing_other,v1_rule_based
THA_C23,THA,C23,manufacturing_other,v1_rule_based
THA_C24A,THA,C24A,steel_aluminum,v1_rule_based
THA_C24B,THA,C24B,steel_aluminum,v1_rule_based
THA_C25,THA,C25,steel_aluminum,v1_rule_based
THA_C26,THA,C26,manufacturing_other,v1_rule_based
THA_C27,THA,C27,manufacturing_other,v1_rule_based
THA_C28,THA,C28,manufacturing_other,v1_rule_based
THA_C29,THA,C29,manufacturing_other,v1_rule_based
THA_C301,THA,C301,manufacturing_other,v1_rule_based
THA_C302T309,THA,C302T309,manufacturing_other,v1_rule_based
THA_C31T33,THA,C31T33,retail_consumer,v1_rule_based
THA_D,THA,D,energy_primary,v1_rule_based
THA_E,THA,E,energy_primary,v1_rule_based
THA_F,THA,F,services_other,v1_rule_based
THA_G,THA,G,retail_consumer,v1_rule_based
THA_H49,THA,H49,services_other,v1_rule_based
THA_H50,THA,H50,services_other,v1_rule_based
THA_H51,THA,H51,services_other,v1_rule_based
THA_H52,THA,H52,services_other,v1_rule_based
THA_H53,THA,H53,services_other,v1_rule_based
THA_I,THA,I,retail_consumer,v1_rule_based
THA_J58T60,THA,J58T60,services_other,v1_rule_based
THA_J61,THA,J61,services_other,v1_rule_based
THA_J62_63,THA,J62_63,services_other,v1_rule_based
THA_K,THA,K,services_other,v1_rule_based
THA_L,THA,L,services_other,v1_rule_based
THA_M,THA,M,services_other,v1_rule_based
THA_N,THA,N,services_other,v1_rule_based
THA_O,THA,O,services_other,v1_rule_based
THA_P,THA,P,services_other,v1_rule_based
THA_Q,THA,Q,services_other,v1_rule_based
THA_R,THA,R,services_other,v1_rule_based
THA_S,THA,S,services_other,v1_rule_based
THA_T,THA,T,services_other,v1_rule_based
TUN_A01,TUN,A01,energy_primary,v1_rule_based
TUN_A02,TUN,A02,energy_primary,v1_rule_based
TUN_A03,TUN,A03,energy_primary,v1_rule_based
TUN_B05,TUN,B05,energy_primary,v1_rule_based
TUN_B06,TUN,B06,energy_primary,v1_rule_based
TUN_B07,TUN,B07,energy_primary,v1_rule_based
TUN_B08,TUN,B08,energy_primary,v1_rule_based
TUN_B09,TUN,B09,energy_primary,v1_rule_based
TUN_C10T12,TUN,C10T12,retail_consumer,v1_rule_based
TUN_C13T15,TUN,C13T15,retail_consumer,v1_rule_based
TUN_C16,TUN,C16,manufacturing_other,v1_rule_based
TUN_C17_18,TUN,C17_18,manufacturing_other,v1_rule_based
TUN_C19,TUN,C19,manufacturing_other,v1_rule_based
TUN_C20,TUN,C20,manufacturing_other,v1_rule_based
TUN_C21,TUN,C21,pharma,v1_rule_based
TUN_C22,TUN,C22,manufacturing_other,v1_rule_based
TUN_C23,TUN,C23,manufacturing_other,v1_rule_based
TUN_C24A,TUN,C24A,steel_aluminum,v1_rule_based
TUN_C24B,TUN,C24B,steel_aluminum,v1_rule_based
TUN_C25,TUN,C25,steel_aluminum,v1_rule_based
TUN_C26,TUN,C26,manufacturing_other,v1_rule_based
TUN_C27,TUN,C27,manufacturing_other,v1_rule_based
TUN_C28,TUN,C28,manufacturing_other,v1_rule_based
TUN_C29,TUN,C29,manufacturing_other,v1_rule_based
TUN_C301,TUN,C301,manufacturing_other,v1_rule_based
TUN_C302T309,TUN,C302T309,manufacturing_other,v1_rule_based
TUN_C31T33,TUN,C31T33,retail_consumer,v1_rule_based
TUN_D,TUN,D,energy_primary,v1_rule_based
TUN_E,TUN,E,energy_primary,v1_rule_based
TUN_F,TUN,F,services_other,v1_rule_based
TUN_G,TUN,G,retail_consumer,v1_rule_based
TUN_H49,TUN,H49,services_other,v1_rule_based
TUN_H50,TUN,H50,services_other,v1_rule_based
TUN_H51,TUN,H51,services_other,v1_rule_based
TUN_H52,TUN,H52,services_other,v1_rule_based
TUN_H53,TUN,H53,services_other,v1_rule_based
TUN_I,TUN,I,retail_consumer,v1_rule_based
TUN_J58T60,TUN,J58T60,services_other,v1_rule_based
TUN_J61,TUN,J61,services_other,v1_rule_based
TUN_J62_63,TUN,J62_63,services_other,v1_rule_based
TUN_K,TUN,K,services_other,v1_rule_based
TUN_L,TUN,L,services_other,v1_rule_based
TUN_M,TUN,M,services_other,v1_rule_based
TUN_N,TUN,N,services_other,v1_rule_based
TUN_O,TUN,O,services_other,v1_rule_based
TUN_P,TUN,P,services_other,v1_rule_based
TUN_Q,TUN,Q,services_other,v1_rule_based
TUN_R,TUN,R,services_other,v1_rule_based
TUN_S,TUN,S,services_other,v1_rule_based
TUN_T,TUN,T,services_other,v1_rule_based
TUR_A01,TUR,A01,energy_primary,v1_rule_based
TUR_A02,TUR,A02,energy_primary,v1_rule_based
TUR_A03,TUR,A03,energy_primary,v1_rule_based
TUR_B05,TUR,B05,energy_primary,v1_rule_based
TUR_B06,TUR,B06,energy_primary,v1_rule_based
TUR_B07,TUR,B07,energy_primary,v1_rule_based
TUR_B08,TUR,B08,energy_primary,v1_rule_based
TUR_B09,TUR,B09,energy_primary,v1_rule_based
TUR_C10T12,TUR,C10T12,retail_consumer,v1_rule_based
TUR_C13T15,TUR,C13T15,retail_consumer,v1_rule_based
TUR_C16,TUR,C16,manufacturing_other,v1_rule_based
TUR_C17_18,TUR,C17_18,manufacturing_other,v1_rule_based
TUR_C19,TUR,C19,manufacturing_other,v1_rule_based
TUR_C20,TUR,C20,manufacturing_other,v1_rule_based
TUR_C21,TUR,C21,pharma,v1_rule_based
TUR_C22,TUR,C22,manufacturing_other,v1_rule_based
TUR_C23,TUR,C23,manufacturing_other,v1_rule_based
TUR_C24A,TUR,C24A,steel_aluminum,v1_rule_based
TUR_C24B,TUR,C24B,steel_aluminum,v1_rule_based
TUR_C25,TUR,C25,steel_aluminum,v1_rule_based
TUR_C26,TUR,C26,manufacturing_other,v1_rule_based
TUR_C27,TUR,C27,manufacturing_other,v1_rule_based
TUR_C28,TUR,C28,manufacturing_other,v1_rule_based
TUR_C29,TUR,C29,manufacturing_other,v1_rule_based
TUR_C301,TUR,C301,manufacturing_other,v1_rule_based
TUR_C302T309,TUR,C302T309,manufacturing_other,v1_rule_based
TUR_C31T33,TUR,C31T33,retail_consumer,v1_rule_based
TUR_D,TUR,D,energy_primary,v1_rule_based
TUR_E,TUR,E,energy_primary,v1_rule_based
TUR_F,TUR,F,services_other,v1_rule_based
TUR_G,TUR,G,retail_consumer,v1_rule_based
TUR_H49,TUR,H49,services_other,v1_rule_based
TUR_H50,TUR,H50,services_other,v1_rule_based
TUR_H51,TUR,H51,services_other,v1_rule_based
TUR_H52,TUR,H52,services_other,v1_rule_based
TUR_H53,TUR,H53,services_other,v1_rule_based
TUR_I,TUR,I,retail_consumer,v1_rule_based
TUR_J58T60,TUR,J58T60,services_other,v1_rule_based
TUR_J61,TUR,J61,services_other,v1_rule_based
TUR_J62_63,TUR,J62_63,services_other,v1_rule_based
TUR_K,TUR,K,services_other,v1_rule_based
TUR_L,TUR,L,services_other,v1_rule_based
TUR_M,TUR,M,services_other,v1_rule_based
TUR_N,TUR,N,services_other,v1_rule_based
TUR_O,TUR,O,services_other,v1_rule_based
TUR_P,TUR,P,services_other,v1_rule_based
TUR_Q,TUR,Q,services_other,v1_rule_based
TUR_R,TUR,R,services_other,v1_rule_based
TUR_S,TUR,S,services_other,v1_rule_based
TUR_T,TUR,T,services_other,v1_rule_based
TWN_A01,TWN,A01,energy_primary,v1_rule_based
TWN_A02,TWN,A02,energy_primary,v1_rule_based
TWN_A03,TWN,A03,energy_primary,v1_rule_based
TWN_B05,TWN,B05,energy_primary,v1_rule_based
TWN_B06,TWN,B06,energy_primary,v1_rule_based
TWN_B07,TWN,B07,energy_primary,v1_rule_based
TWN_B08,TWN,B08,energy_primary,v1_rule_based
TWN_B09,TWN,B09,energy_primary,v1_rule_based
TWN_C10T12,TWN,C10T12,retail_consumer,v1_rule_based
TWN_C13T15,TWN,C13T15,retail_consumer,v1_rule_based
TWN_C16,TWN,C16,manufacturing_other,v1_rule_based
TWN_C17_18,TWN,C17_18,manufacturing_other,v1_rule_based
TWN_C19,TWN,C19,manufacturing_other,v1_rule_based
TWN_C20,TWN,C20,manufacturing_other,v1_rule_based
TWN_C21,TWN,C21,pharma,v1_rule_based
TWN_C22,TWN,C22,manufacturing_other,v1_rule_based
TWN_C23,TWN,C23,manufacturing_other,v1_rule_based
TWN_C24A,TWN,C24A,steel_aluminum,v1_rule_based
TWN_C24B,TWN,C24B,steel_aluminum,v1_rule_based
TWN_C25,TWN,C25,steel_aluminum,v1_rule_based
TWN_C26,TWN,C26,manufacturing_other,v1_rule_based
TWN_C27,TWN,C27,manufacturing_other,v1_rule_based
TWN_C28,TWN,C28,manufacturing_other,v1_rule_based
TWN_C29,TWN,C29,manufacturing_other,v1_rule_based
TWN_C301,TWN,C301,manufacturing_other,v1_rule_based
TWN_C302T309,TWN,C302T309,manufacturing_other,v1_rule_based
TWN_C31T33,TWN,C31T33,retail_consumer,v1_rule_based
TWN_D,TWN,D,energy_primary,v1_rule_based
TWN_E,TWN,E,energy_primary,v1_rule_based
TWN_F,TWN,F,services_other,v1_rule_based
TWN_G,TWN,G,retail_consumer,v1_rule_based
TWN_H49,TWN,H49,services_other,v1_rule_based
TWN_H50,TWN,H50,services_other,v1_rule_based
TWN_H51,TWN,H51,services_other,v1_rule_based
TWN_H52,TWN,H52,services_other,v1_rule_based
TWN_H53,TWN,H53,services_other,v1_rule_based
TWN_I,TWN,I,retail_consumer,v1_rule_based
TWN_J58T60,TWN,J58T60,services_other,v1_rule_based
TWN_J61,TWN,J61,services_other,v1_rule_based
TWN_J62_63,TWN,J62_63,services_other,v1_rule_based
TWN_K,TWN,K,services_other,v1_rule_based
TWN_L,TWN,L,services_other,v1_rule_based
TWN_M,TWN,M,services_other,v1_rule_based
TWN_N,TWN,N,services_other,v1_rule_based
TWN_O,TWN,O,services_other,v1_rule_based
TWN_P,TWN,P,services_other,v1_rule_based
TWN_Q,TWN,Q,services_other,v1_rule_based
TWN_R,TWN,R,services_other,v1_rule_based
TWN_S,TWN,S,services_other,v1_rule_based
TWN_T,TWN,T,services_other,v1_rule_based
UKR_A01,UKR,A01,energy_primary,v1_rule_based
UKR_A02,UKR,A02,energy_primary,v1_rule_based
UKR_A03,UKR,A03,energy_primary,v1_rule_based
UKR_B05,UKR,B05,energy_primary,v1_rule_based
UKR_B06,UKR,B06,energy_primary,v1_rule_based
UKR_B07,UKR,B07,energy_primary,v1_rule_based
UKR_B08,UKR,B08,energy_primary,v1_rule_based
UKR_B09,UKR,B09,energy_primary,v1_rule_based
UKR_C10T12,UKR,C10T12,retail_consumer,v1_rule_based
UKR_C13T15,UKR,C13T15,retail_consumer,v1_rule_based
UKR_C16,UKR,C16,manufacturing_other,v1_rule_based
UKR_C17_18,UKR,C17_18,manufacturing_other,v1_rule_based
UKR_C19,UKR,C19,manufacturing_other,v1_rule_based
UKR_C20,UKR,C20,manufacturing_other,v1_rule_based
UKR_C21,UKR,C21,pharma,v1_rule_based
UKR_C22,UKR,C22,manufacturing_other,v1_rule_based
UKR_C23,UKR,C23,manufacturing_other,v1_rule_based
UKR_C24A,UKR,C24A,steel_aluminum,v1_rule_based
UKR_C24B,UKR,C24B,steel_aluminum,v1_rule_based
UKR_C25,UKR,C25,steel_aluminum,v1_rule_based
UKR_C26,UKR,C26,manufacturing_other,v1_rule_based
UKR_C27,UKR,C27,manufacturing_other,v1_rule_based
UKR_C28,UKR,C28,manufacturing_other,v1_rule_based
UKR_C29,UKR,C29,manufacturing_other,v1_rule_based
UKR_C301,UKR,C301,manufacturing_other,v1_rule_based
UKR_C302T309,UKR,C302T309,manufacturing_other,v1_rule_based
UKR_C31T33,UKR,C31T33,retail_consumer,v1_rule_based
UKR_D,UKR,D,energy_primary,v1_rule_based
UKR_E,UKR,E,energy_primary,v1_rule_based
UKR_F,UKR,F,services_other,v1_rule_based
UKR_G,UKR,G,retail_consumer,v1_rule_based
UKR_H49,UKR,H49,services_other,v1_rule_based
UKR_H50,UKR,H50,services_other,v1_rule_based
UKR_H51,UKR,H51,services_other,v1_rule_based
UKR_H52,UKR,H52,services_other,v1_rule_based
UKR_H53,UKR,H53,services_other,v1_rule_based
UKR_I,UKR,I,retail_consumer,v1_rule_based
UKR_J58T60,UKR,J58T60,services_other,v1_rule_based
UKR_J61,UKR,J61,services_other,v1_rule_based
UKR_J62_63,UKR,J62_63,services_other,v1_rule_based
UKR_K,UKR,K,services_other,v1_rule_based
UKR_L,UKR,L,services_other,v1_rule_based
UKR_M,UKR,M,services_other,v1_rule_based
UKR_N,UKR,N,services_other,v1_rule_based
UKR_O,UKR,O,services_other,v1_rule_based
UKR_P,UKR,P,services_other,v1_rule_based
UKR_Q,UKR,Q,services_other,v1_rule_based
UKR_R,UKR,R,services_other,v1_rule_based
UKR_S,UKR,S,services_other,v1_rule_based
UKR_T,UKR,T,services_other,v1_rule_based
USA_A01,USA,A01,energy_primary,v1_rule_based
USA_A02,USA,A02,energy_primary,v1_rule_based
USA_A03,USA,A03,energy_primary,v1_rule_based
USA_B05,USA,B05,energy_primary,v1_rule_based
USA_B06,USA,B06,energy_primary,v1_rule_based
USA_B07,USA,B07,energy_primary,v1_rule_based
USA_B08,USA,B08,energy_primary,v1_rule_based
USA_B09,USA,B09,energy_primary,v1_rule_based
USA_C10T12,USA,C10T12,retail_consumer,v1_rule_based
USA_C13T15,USA,C13T15,retail_consumer,v1_rule_based
USA_C16,USA,C16,manufacturing_other,v1_rule_based
USA_C17_18,USA,C17_18,manufacturing_other,v1_rule_based
USA_C19,USA,C19,manufacturing_other,v1_rule_based
USA_C20,USA,C20,manufacturing_other,v1_rule_based
USA_C21,USA,C21,pharma,v1_rule_based
USA_C22,USA,C22,manufacturing_other,v1_rule_based
USA_C23,USA,C23,manufacturing_other,v1_rule_based
USA_C24A,USA,C24A,steel_aluminum,v1_rule_based
USA_C24B,USA,C24B,steel_aluminum,v1_rule_based
USA_C25,USA,C25,steel_aluminum,v1_rule_based
USA_C26,USA,C26,manufacturing_other,v1_rule_based
USA_C27,USA,C27,manufacturing_other,v1_rule_based
USA_C28,USA,C28,manufacturing_other,v1_rule_based
USA_C29,USA,C29,manufacturing_other,v1_rule_based
USA_C301,USA,C301,manufacturing_other,v1_rule_based
USA_C302T309,USA,C302T309,manufacturing_other,v1_rule_based
USA_C31T33,USA,C31T33,retail_consumer,v1_rule_based
USA_D,USA,D,energy_primary,v1_rule_based
USA_E,USA,E,energy_primary,v1_rule_based
USA_F,USA,F,services_other,v1_rule_based
USA_G,USA,G,retail_consumer,v1_rule_based
USA_H49,USA,H49,services_other,v1_rule_based
USA_H50,USA,H50,services_other,v1_rule_based
USA_H51,USA,H51,services_other,v1_rule_based
USA_H52,USA,H52,services_other,v1_rule_based
USA_H53,USA,H53,services_other,v1_rule_based
USA_I,USA,I,retail_consumer,v1_rule_based
USA_J58T60,USA,J58T60,services_other,v1_rule_based
USA_J61,USA,J61,services_other,v1_rule_based
USA_J62_63,USA,J62_63,services_other,v1_rule_based
USA_K,USA,K,services_other,v1_rule_based
USA_L,USA,L,services_other,v1_rule_based
USA_M,USA,M,services_other,v1_rule_based
USA_N,USA,N,services_other,v1_rule_based
USA_O,USA,O,services_other,v1_rule_based
USA_P,USA,P,services_other,v1_rule_based
USA_Q,USA,Q,services_other,v1_rule_based
USA_R,USA,R,services_other,v1_rule_based
USA_S,USA,S,services_other,v1_rule_based
USA_T,USA,T,services_other,v1_rule_based
VNM_A01,VNM,A01,energy_primary,v1_rule_based
VNM_A02,VNM,A02,energy_primary,v1_rule_based
VNM_A03,VNM,A03,energy_primary,v1_rule_based
VNM_B05,VNM,B05,energy_primary,v1_rule_based
VNM_B06,VNM,B06,energy_primary,v1_rule_based
VNM_B07,VNM,B07,energy_primary,v1_rule_based
VNM_B08,VNM,B08,energy_primary,v1_rule_based
VNM_B09,VNM,B09,energy_primary,v1_rule_based
VNM_C10T12,VNM,C10T12,retail_consumer,v1_rule_based
VNM_C13T15,VNM,C13T15,retail_consumer,v1_rule_based
VNM_C16,VNM,C16,manufacturing_other,v1_rule_based
VNM_C17_18,VNM,C17_18,manufacturing_other,v1_rule_based
VNM_C19,VNM,C19,manufacturing_other,v1_rule_based
VNM_C20,VNM,C20,manufacturing_other,v1_rule_based
VNM_C21,VNM,C21,pharma,v1_rule_based
VNM_C22,VNM,C22,manufacturing_other,v1_rule_based
VNM_C23,VNM,C23,manufacturing_other,v1_rule_based
VNM_C24A,VNM,C24A,steel_aluminum,v1_rule_based
VNM_C24B,VNM,C24B,steel_aluminum,v1_rule_based
VNM_C25,VNM,C25,steel_aluminum,v1_rule_based
VNM_C26,VNM,C26,manufacturing_other,v1_rule_based
VNM_C27,VNM,C27,manufacturing_other,v1_rule_based
VNM_C28,VNM,C28,manufacturing_other,v1_rule_based
VNM_C29,VNM,C29,manufacturing_other,v1_rule_based
VNM_C301,VNM,C301,manufacturing_other,v1_rule_based
VNM_C302T309,VNM,C302T309,manufacturing_other,v1_rule_based
VNM_C31T33,VNM,C31T33,retail_consumer,v1_rule_based
VNM_D,VNM,D,energy_primary,v1_rule_based
VNM_E,VNM,E,energy_primary,v1_rule_based
VNM_F,VNM,F,services_other,v1_rule_based
VNM_G,VNM,G,retail_consumer,v1_rule_based
VNM_H49,VNM,H49,services_other,v1_rule_based
VNM_H50,VNM,H50,services_other,v1_rule_based
VNM_H51,VNM,H51,services_other,v1_rule_based
VNM_H52,VNM,H52,services_other,v1_rule_based
VNM_H53,VNM,H53,services_other,v1_rule_based
VNM_I,VNM,I,retail_consumer,v1_rule_based
VNM_J58T60,VNM,J58T60,services_other,v1_rule_based
VNM_J61,VNM,J61,services_other,v1_rule_based
VNM_J62_63,VNM,J62_63,services_other,v1_rule_based
VNM_K,VNM,K,services_other,v1_rule_based
VNM_L,VNM,L,services_other,v1_rule_based
VNM_M,VNM,M,services_other,v1_rule_based
VNM_N,VNM,N,services_other,v1_rule_based
VNM_O,VNM,O,services_other,v1_rule_based
VNM_P,VNM,P,services_other,v1_rule_based
VNM_Q,VNM,Q,services_other,v1_rule_based
VNM_R,VNM,R,services_other,v1_rule_based
VNM_S,VNM,S,services_other,v1_rule_based
VNM_T,VNM,T,services_other,v1_rule_based
ZAF_A01,ZAF,A01,energy_primary,v1_rule_based
ZAF_A02,ZAF,A02,energy_primary,v1_rule_based
ZAF_A03,ZAF,A03,energy_primary,v1_rule_based
ZAF_B05,ZAF,B05,energy_primary,v1_rule_based
ZAF_B06,ZAF,B06,energy_primary,v1_rule_based
ZAF_B07,ZAF,B07,energy_primary,v1_rule_based
ZAF_B08,ZAF,B08,energy_primary,v1_rule_based
ZAF_B09,ZAF,B09,energy_primary,v1_rule_based
ZAF_C10T12,ZAF,C10T12,retail_consumer,v1_rule_based
ZAF_C13T15,ZAF,C13T15,retail_consumer,v1_rule_based
ZAF_C16,ZAF,C16,manufacturing_other,v1_rule_based
ZAF_C17_18,ZAF,C17_18,manufacturing_other,v1_rule_based
ZAF_C19,ZAF,C19,manufacturing_other,v1_rule_based
ZAF_C20,ZAF,C20,manufacturing_other,v1_rule_based
ZAF_C21,ZAF,C21,pharma,v1_rule_based
ZAF_C22,ZAF,C22,manufacturing_other,v1_rule_based
ZAF_C23,ZAF,C23,manufacturing_other,v1_rule_based
ZAF_C24A,ZAF,C24A,steel_aluminum,v1_rule_based
ZAF_C24B,ZAF,C24B,steel_aluminum,v1_rule_based
ZAF_C25,ZAF,C25,steel_aluminum,v1_rule_based
ZAF_C26,ZAF,C26,manufacturing_other,v1_rule_based
ZAF_C27,ZAF,C27,manufacturing_other,v1_rule_based
ZAF_C28,ZAF,C28,manufacturing_other,v1_rule_based
ZAF_C29,ZAF,C29,manufacturing_other,v1_rule_based
ZAF_C301,ZAF,C301,manufacturing_other,v1_rule_based
ZAF_C302T309,ZAF,C302T309,manufacturing_other,v1_rule_based
ZAF_C31T33,ZAF,C31T33,retail_consumer,v1_rule_based
ZAF_D,ZAF,D,energy_primary,v1_rule_based
ZAF_E,ZAF,E,energy_primary,v1_rule_based
ZAF_F,ZAF,F,services_other,v1_rule_based
ZAF_G,ZAF,G,retail_consumer,v1_rule_based
ZAF_H49,ZAF,H49,services_other,v1_rule_based
ZAF_H50,ZAF,H50,services_other,v1_rule_based
ZAF_H51,ZAF,H51,services_other,v1_rule_based
ZAF_H52,ZAF,H52,services_other,v1_rule_based
ZAF_H53,ZAF,H53,services_other,v1_rule_based
ZAF_I,ZAF,I,retail_consumer,v1_rule_based
ZAF_J58T60,ZAF,J58T60,services_other,v1_rule_based
ZAF_J61,ZAF,J61,services_other,v1_rule_based
ZAF_J62_63,ZAF,J62_63,services_other,v1_rule_based
ZAF_K,ZAF,K,services_other,v1_rule_based
ZAF_L,ZAF,L,services_other,v1_rule_based
ZAF_M,ZAF,M,services_other,v1_rule_based
ZAF_N,ZAF,N,services_other,v1_rule_based
ZAF_O,ZAF,O,services_other,v1_rule_based
ZAF_P,ZAF,P,services_other,v1_rule_based
ZAF_Q,ZAF,Q,services_other,v1_rule_based
ZAF_R,ZAF,R,services_other,v1_rule_based
ZAF_S,ZAF,S,services_other,v1_rule_based
ZAF_T,ZAF,T,services_other,v1_rule_based
ROW_A01,ROW,A01,energy_primary,v1_rule_based
ROW_A02,ROW,A02,energy_primary,v1_rule_based
ROW_A03,ROW,A03,energy_primary,v1_rule_based
ROW_B05,ROW,B05,energy_primary,v1_rule_based
ROW_B06,ROW,B06,energy_primary,v1_rule_based
ROW_B07,ROW,B07,energy_primary,v1_rule_based
ROW_B08,ROW,B08,energy_primary,v1_rule_based
ROW_B09,ROW,B09,energy_primary,v1_rule_based
ROW_C10T12,ROW,C10T12,retail_consumer,v1_rule_based
ROW_C13T15,ROW,C13T15,retail_consumer,v1_rule_based
ROW_C16,ROW,C16,manufacturing_other,v1_rule_based
ROW_C17_18,ROW,C17_18,manufacturing_other,v1_rule_based
ROW_C19,ROW,C19,manufacturing_other,v1_rule_based
ROW_C20,ROW,C20,manufacturing_other,v1_rule_based
ROW_C21,ROW,C21,pharma,v1_rule_based
ROW_C22,ROW,C22,manufacturing_other,v1_rule_based
ROW_C23,ROW,C23,manufacturing_other,v1_rule_based
ROW_C24A,ROW,C24A,steel_aluminum,v1_rule_based
ROW_C24B,ROW,C24B,steel_aluminum,v1_rule_based
ROW_C25,ROW,C25,steel_aluminum,v1_rule_based
ROW_C26,ROW,C26,manufacturing_other,v1_rule_based
ROW_C27,ROW,C27,manufacturing_other,v1_rule_based
ROW_C28,ROW,C28,manufacturing_other,v1_rule_based
ROW_C29,ROW,C29,manufacturing_other,v1_rule_based
ROW_C301,ROW,C301,manufacturing_other,v1_rule_based
ROW_C302T309,ROW,C302T309,manufacturing_other,v1_rule_based
ROW_C31T33,ROW,C31T33,retail_consumer,v1_rule_based
ROW_D,ROW,D,energy_primary,v1_rule_based
ROW_E,ROW,E,energy_primary,v1_rule_based
ROW_F,ROW,F,services_other,v1_rule_based
ROW_G,ROW,G,retail_consumer,v1_rule_based
ROW_H49,ROW,H49,services_other,v1_rule_based
ROW_H50,ROW,H50,services_other,v1_rule_based
ROW_H51,ROW,H51,services_other,v1_rule_based
ROW_H52,ROW,H52,services_other,v1_rule_based
ROW_H53,ROW,H53,services_other,v1_rule_based
ROW_I,ROW,I,retail_consumer,v1_rule_based
ROW_J58T60,ROW,J58T60,services_other,v1_rule_based
ROW_J61,ROW,J61,services_other,v1_rule_based
ROW_J62_63,ROW,J62_63,services_other,v1_rule_based
ROW_K,ROW,K,services_other,v1_rule_based
ROW_L,ROW,L,services_other,v1_rule_based
ROW_M,ROW,M,services_other,v1_rule_based
ROW_N,ROW,N,services_other,v1_rule_based
ROW_O,ROW,O,services_other,v1_rule_based
ROW_P,ROW,P,services_other,v1_rule_based
ROW_Q,ROW,Q,services_other,v1_rule_based
ROW_R,ROW,R,services_other,v1_rule_based
ROW_S,ROW,S,services_other,v1_rule_based
ROW_T,ROW,T,services_other,v1_rule_based
|