Hash :
9193a909
Author :
Date :
2021-05-26T15:07:54
Tests: Add Genshin Impact trace Test: angle_perftests --gtest_filter="*genshin_impact*" Bug: b/181794064 Bug: angleproject:6023 Bug: angleproject:6024 Change-Id: Ic0debb1e284d672b8ab179ac24cd711c9e5d7e9d Reviewed-on: https://chromium-review.googlesource.com/c/angle/angle/+/2921069 Reviewed-by: Jamie Madill <jmadill@chromium.org> Reviewed-by: Tim Van Patten <timvp@google.com> Commit-Queue: Tim Van Patten <timvp@google.com>
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 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277
# GENERATED FILE - DO NOT EDIT.
# Generated by gen_restricted_traces.py using data from restricted_traces.json
#
# Copyright 2020 The ANGLE Project Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
#
# A list of all restricted trace tests, paired with their context.
# Can be consumed by tests/BUILD.gn.
angle_restricted_traces = [
[
"aliexpress",
1,
[
"aliexpress/aliexpress_capture_context1_frame001.cpp",
"aliexpress/aliexpress_capture_context1_frame002.cpp",
"aliexpress/aliexpress_capture_context1_frame003.cpp",
"aliexpress/aliexpress_capture_context1_frame004.cpp",
"aliexpress/aliexpress_capture_context1_frame005.cpp",
"aliexpress/aliexpress_capture_context1_frame006.cpp",
"aliexpress/aliexpress_capture_context1_frame007.cpp",
"aliexpress/aliexpress_capture_context1_frame008.cpp",
"aliexpress/aliexpress_capture_context1_frame009.cpp",
"aliexpress/aliexpress_capture_context1_frame010.cpp",
],
],
[
"among_us",
1,
[
"among_us/among_us_capture_context1_frame001.cpp",
"among_us/among_us_capture_context1_frame002.cpp",
"among_us/among_us_capture_context1_frame003.cpp",
"among_us/among_us_capture_context1_frame004.cpp",
"among_us/among_us_capture_context1_frame005.cpp",
"among_us/among_us_capture_context1_frame006.cpp",
"among_us/among_us_capture_context1_frame007.cpp",
"among_us/among_us_capture_context1_frame008.cpp",
"among_us/among_us_capture_context1_frame009.cpp",
"among_us/among_us_capture_context1_frame010.cpp",
],
],
[
"angry_birds_2_1500",
1,
[
"angry_birds_2_1500/angry_birds_2_1500_capture_context1_frame001.cpp",
"angry_birds_2_1500/angry_birds_2_1500_capture_context1_frame002.cpp",
"angry_birds_2_1500/angry_birds_2_1500_capture_context1_frame003.cpp",
"angry_birds_2_1500/angry_birds_2_1500_capture_context1_frame004.cpp",
"angry_birds_2_1500/angry_birds_2_1500_capture_context1_frame005.cpp",
"angry_birds_2_1500/angry_birds_2_1500_capture_context1_frame006.cpp",
"angry_birds_2_1500/angry_birds_2_1500_capture_context1_frame007.cpp",
"angry_birds_2_1500/angry_birds_2_1500_capture_context1_frame008.cpp",
"angry_birds_2_1500/angry_birds_2_1500_capture_context1_frame009.cpp",
"angry_birds_2_1500/angry_birds_2_1500_capture_context1_frame010.cpp",
"angry_birds_2_1500/angry_birds_2_1500_capture_context1_frame011.cpp",
],
],
[
"arena_of_valor",
1,
[
"arena_of_valor/arena_of_valor_capture_context1_frame001.cpp",
"arena_of_valor/arena_of_valor_capture_context1_frame002.cpp",
"arena_of_valor/arena_of_valor_capture_context1_frame003.cpp",
"arena_of_valor/arena_of_valor_capture_context1_frame004.cpp",
"arena_of_valor/arena_of_valor_capture_context1_frame005.cpp",
"arena_of_valor/arena_of_valor_capture_context1_frame006.cpp",
"arena_of_valor/arena_of_valor_capture_context1_frame007.cpp",
"arena_of_valor/arena_of_valor_capture_context1_frame008.cpp",
"arena_of_valor/arena_of_valor_capture_context1_frame009.cpp",
"arena_of_valor/arena_of_valor_capture_context1_frame010.cpp",
],
],
[
"asphalt_8",
1,
[
"asphalt_8/asphalt_8_capture_context1_frame001.cpp",
"asphalt_8/asphalt_8_capture_context1_frame002.cpp",
"asphalt_8/asphalt_8_capture_context1_frame003.cpp",
"asphalt_8/asphalt_8_capture_context1_frame004.cpp",
"asphalt_8/asphalt_8_capture_context1_frame005.cpp",
"asphalt_8/asphalt_8_capture_context1_frame006.cpp",
"asphalt_8/asphalt_8_capture_context1_frame007.cpp",
"asphalt_8/asphalt_8_capture_context1_frame008.cpp",
"asphalt_8/asphalt_8_capture_context1_frame009.cpp",
"asphalt_8/asphalt_8_capture_context1_frame010.cpp",
],
],
[
"avakin_life",
1,
[
"avakin_life/avakin_life_capture_context1_frame001.cpp",
"avakin_life/avakin_life_capture_context1_frame002.cpp",
"avakin_life/avakin_life_capture_context1_frame003.cpp",
"avakin_life/avakin_life_capture_context1_frame004.cpp",
"avakin_life/avakin_life_capture_context1_frame005.cpp",
"avakin_life/avakin_life_capture_context1_frame006.cpp",
"avakin_life/avakin_life_capture_context1_frame007.cpp",
"avakin_life/avakin_life_capture_context1_frame008.cpp",
"avakin_life/avakin_life_capture_context1_frame009.cpp",
"avakin_life/avakin_life_capture_context1_frame010.cpp",
],
],
[
"aztec_ruins",
1,
[
"aztec_ruins/aztec_ruins_capture_context1_frame001.cpp",
"aztec_ruins/aztec_ruins_capture_context1_frame002.cpp",
"aztec_ruins/aztec_ruins_capture_context1_frame003.cpp",
"aztec_ruins/aztec_ruins_capture_context1_frame004.cpp",
"aztec_ruins/aztec_ruins_capture_context1_frame005.cpp",
"aztec_ruins/aztec_ruins_capture_context1_frame006.cpp",
"aztec_ruins/aztec_ruins_capture_context1_frame007.cpp",
"aztec_ruins/aztec_ruins_capture_context1_frame008.cpp",
"aztec_ruins/aztec_ruins_capture_context1_frame009.cpp",
"aztec_ruins/aztec_ruins_capture_context1_frame010.cpp",
],
],
[
"brawl_stars",
1,
[
"brawl_stars/brawl_stars_capture_context1_frame001.cpp",
"brawl_stars/brawl_stars_capture_context1_frame002.cpp",
"brawl_stars/brawl_stars_capture_context1_frame003.cpp",
"brawl_stars/brawl_stars_capture_context1_frame004.cpp",
"brawl_stars/brawl_stars_capture_context1_frame005.cpp",
"brawl_stars/brawl_stars_capture_context1_frame006.cpp",
"brawl_stars/brawl_stars_capture_context1_frame007.cpp",
"brawl_stars/brawl_stars_capture_context1_frame008.cpp",
"brawl_stars/brawl_stars_capture_context1_frame009.cpp",
"brawl_stars/brawl_stars_capture_context1_frame010.cpp",
],
],
[
"bubble_shooter",
5,
[
"bubble_shooter/bubble_shooter_capture_context5_frame001.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame002.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame003.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame004.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame005.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame006.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame007.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame008.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame009.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame010.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame011.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame012.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame013.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame014.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame015.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame016.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame017.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame018.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame019.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame020.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame021.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame022.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame023.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame024.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame025.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame026.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame027.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame028.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame029.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame030.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame031.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame032.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame033.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame034.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame035.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame036.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame037.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame038.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame039.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame040.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame041.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame042.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame043.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame044.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame045.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame046.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame047.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame048.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame049.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame050.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame051.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame052.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame053.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame054.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame055.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame056.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame057.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame058.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame059.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame060.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame061.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame062.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame063.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame064.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame065.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame066.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame067.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame068.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame069.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame070.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame071.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame072.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame073.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame074.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame075.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame076.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame077.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame078.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame079.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame080.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame081.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame082.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame083.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame084.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame085.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame086.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame087.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame088.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame089.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame090.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame091.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame092.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame093.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame094.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame095.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame096.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame097.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame098.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame099.cpp",
"bubble_shooter/bubble_shooter_capture_context5_frame100.cpp",
],
],
[
"bus_simulator_indonesia",
1,
[
"bus_simulator_indonesia/bus_simulator_indonesia_capture_context1_frame001.cpp",
"bus_simulator_indonesia/bus_simulator_indonesia_capture_context1_frame002.cpp",
"bus_simulator_indonesia/bus_simulator_indonesia_capture_context1_frame003.cpp",
"bus_simulator_indonesia/bus_simulator_indonesia_capture_context1_frame004.cpp",
"bus_simulator_indonesia/bus_simulator_indonesia_capture_context1_frame005.cpp",
"bus_simulator_indonesia/bus_simulator_indonesia_capture_context1_frame006.cpp",
"bus_simulator_indonesia/bus_simulator_indonesia_capture_context1_frame007.cpp",
"bus_simulator_indonesia/bus_simulator_indonesia_capture_context1_frame008.cpp",
"bus_simulator_indonesia/bus_simulator_indonesia_capture_context1_frame009.cpp",
"bus_simulator_indonesia/bus_simulator_indonesia_capture_context1_frame010.cpp",
],
],
[
"call_break_offline_card_game",
2,
[
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame001.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame002.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame003.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame004.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame005.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame006.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame007.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame008.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame009.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame010.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame011.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame012.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame013.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame014.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame015.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame016.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame017.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame018.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame019.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame020.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame021.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame022.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame023.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame024.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame025.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame026.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame027.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame028.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame029.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame030.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame031.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame032.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame033.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame034.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame035.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame036.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame037.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame038.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame039.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame040.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame041.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame042.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame043.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame044.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame045.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame046.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame047.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame048.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame049.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame050.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame051.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame052.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame053.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame054.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame055.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame056.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame057.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame058.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame059.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame060.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame061.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame062.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame063.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame064.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame065.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame066.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame067.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame068.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame069.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame070.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame071.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame072.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame073.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame074.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame075.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame076.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame077.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame078.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame079.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame080.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame081.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame082.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame083.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame084.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame085.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame086.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame087.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame088.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame089.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame090.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame091.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame092.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame093.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame094.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame095.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame096.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame097.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame098.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame099.cpp",
"call_break_offline_card_game/call_break_offline_card_game_capture_context2_frame100.cpp",
],
],
[
"candy_crush_500",
1,
[
"candy_crush_500/candy_crush_500_capture_context1_frame001.cpp",
"candy_crush_500/candy_crush_500_capture_context1_frame002.cpp",
"candy_crush_500/candy_crush_500_capture_context1_frame003.cpp",
"candy_crush_500/candy_crush_500_capture_context1_frame004.cpp",
"candy_crush_500/candy_crush_500_capture_context1_frame005.cpp",
"candy_crush_500/candy_crush_500_capture_context1_frame006.cpp",
"candy_crush_500/candy_crush_500_capture_context1_frame007.cpp",
"candy_crush_500/candy_crush_500_capture_context1_frame008.cpp",
"candy_crush_500/candy_crush_500_capture_context1_frame009.cpp",
"candy_crush_500/candy_crush_500_capture_context1_frame010.cpp",
"candy_crush_500/candy_crush_500_capture_context1_frame011.cpp",
],
],
[
"candy_crush_soda_saga",
2,
[
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame001.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame002.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame003.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame004.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame005.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame006.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame007.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame008.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame009.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame010.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame011.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame012.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame013.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame014.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame015.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame016.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame017.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame018.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame019.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame020.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame021.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame022.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame023.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame024.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame025.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame026.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame027.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame028.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame029.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame030.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame031.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame032.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame033.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame034.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame035.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame036.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame037.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame038.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame039.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame040.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame041.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame042.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame043.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame044.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame045.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame046.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame047.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame048.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame049.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame050.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame051.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame052.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame053.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame054.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame055.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame056.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame057.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame058.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame059.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame060.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame061.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame062.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame063.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame064.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame065.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame066.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame067.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame068.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame069.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame070.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame071.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame072.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame073.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame074.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame075.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame076.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame077.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame078.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame079.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame080.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame081.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame082.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame083.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame084.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame085.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame086.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame087.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame088.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame089.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame090.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame091.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame092.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame093.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame094.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame095.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame096.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame097.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame098.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame099.cpp",
"candy_crush_soda_saga/candy_crush_soda_saga_capture_context2_frame100.cpp",
],
],
[
"car_parking_multiplayer",
1,
[
"car_parking_multiplayer/car_parking_multiplayer_capture_context1_frame001.cpp",
"car_parking_multiplayer/car_parking_multiplayer_capture_context1_frame002.cpp",
"car_parking_multiplayer/car_parking_multiplayer_capture_context1_frame003.cpp",
"car_parking_multiplayer/car_parking_multiplayer_capture_context1_frame004.cpp",
"car_parking_multiplayer/car_parking_multiplayer_capture_context1_frame005.cpp",
"car_parking_multiplayer/car_parking_multiplayer_capture_context1_frame006.cpp",
"car_parking_multiplayer/car_parking_multiplayer_capture_context1_frame007.cpp",
"car_parking_multiplayer/car_parking_multiplayer_capture_context1_frame008.cpp",
"car_parking_multiplayer/car_parking_multiplayer_capture_context1_frame009.cpp",
"car_parking_multiplayer/car_parking_multiplayer_capture_context1_frame010.cpp",
],
],
[
"clash_of_clans",
1,
[
"clash_of_clans/clash_of_clans_capture_context1_frame001.cpp",
"clash_of_clans/clash_of_clans_capture_context1_frame002.cpp",
"clash_of_clans/clash_of_clans_capture_context1_frame003.cpp",
"clash_of_clans/clash_of_clans_capture_context1_frame004.cpp",
"clash_of_clans/clash_of_clans_capture_context1_frame005.cpp",
"clash_of_clans/clash_of_clans_capture_context1_frame006.cpp",
"clash_of_clans/clash_of_clans_capture_context1_frame007.cpp",
"clash_of_clans/clash_of_clans_capture_context1_frame008.cpp",
"clash_of_clans/clash_of_clans_capture_context1_frame009.cpp",
"clash_of_clans/clash_of_clans_capture_context1_frame010.cpp",
],
],
[
"clash_royale",
1,
[
"clash_royale/clash_royale_capture_context1_frame001.cpp",
"clash_royale/clash_royale_capture_context1_frame002.cpp",
"clash_royale/clash_royale_capture_context1_frame003.cpp",
"clash_royale/clash_royale_capture_context1_frame004.cpp",
"clash_royale/clash_royale_capture_context1_frame005.cpp",
"clash_royale/clash_royale_capture_context1_frame006.cpp",
"clash_royale/clash_royale_capture_context1_frame007.cpp",
"clash_royale/clash_royale_capture_context1_frame008.cpp",
"clash_royale/clash_royale_capture_context1_frame009.cpp",
"clash_royale/clash_royale_capture_context1_frame010.cpp",
],
],
[
"cod_mobile",
1,
[
"cod_mobile/cod_mobile_capture_context1_frame001.cpp",
"cod_mobile/cod_mobile_capture_context1_frame002.cpp",
"cod_mobile/cod_mobile_capture_context1_frame003.cpp",
"cod_mobile/cod_mobile_capture_context1_frame004.cpp",
"cod_mobile/cod_mobile_capture_context1_frame005.cpp",
"cod_mobile/cod_mobile_capture_context1_frame006.cpp",
"cod_mobile/cod_mobile_capture_context1_frame007.cpp",
"cod_mobile/cod_mobile_capture_context1_frame008.cpp",
"cod_mobile/cod_mobile_capture_context1_frame009.cpp",
"cod_mobile/cod_mobile_capture_context1_frame010.cpp",
],
],
[
"coin_master",
1,
[
"coin_master/coin_master_capture_context1_frame001.cpp",
"coin_master/coin_master_capture_context1_frame002.cpp",
"coin_master/coin_master_capture_context1_frame003.cpp",
"coin_master/coin_master_capture_context1_frame004.cpp",
"coin_master/coin_master_capture_context1_frame005.cpp",
"coin_master/coin_master_capture_context1_frame006.cpp",
"coin_master/coin_master_capture_context1_frame007.cpp",
"coin_master/coin_master_capture_context1_frame008.cpp",
"coin_master/coin_master_capture_context1_frame009.cpp",
"coin_master/coin_master_capture_context1_frame010.cpp",
],
],
[
"command_and_conquer_rivals",
2,
[
"command_and_conquer_rivals/command_and_conquer_rivals_capture_context2_frame001.cpp",
"command_and_conquer_rivals/command_and_conquer_rivals_capture_context2_frame002.cpp",
"command_and_conquer_rivals/command_and_conquer_rivals_capture_context2_frame003.cpp",
"command_and_conquer_rivals/command_and_conquer_rivals_capture_context2_frame004.cpp",
"command_and_conquer_rivals/command_and_conquer_rivals_capture_context2_frame005.cpp",
"command_and_conquer_rivals/command_and_conquer_rivals_capture_context2_frame006.cpp",
"command_and_conquer_rivals/command_and_conquer_rivals_capture_context2_frame007.cpp",
"command_and_conquer_rivals/command_and_conquer_rivals_capture_context2_frame008.cpp",
"command_and_conquer_rivals/command_and_conquer_rivals_capture_context2_frame009.cpp",
"command_and_conquer_rivals/command_and_conquer_rivals_capture_context2_frame010.cpp",
],
],
[
"cookie_run_kingdom",
2,
[
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame001.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame002.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame003.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame004.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame005.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame006.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame007.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame008.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame009.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame010.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame011.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame012.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame013.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame014.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame015.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame016.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame017.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame018.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame019.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame020.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame021.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame022.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame023.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame024.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame025.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame026.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame027.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame028.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame029.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame030.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame031.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame032.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame033.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame034.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame035.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame036.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame037.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame038.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame039.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame040.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame041.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame042.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame043.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame044.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame045.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame046.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame047.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame048.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame049.cpp",
"cookie_run_kingdom/cookie_run_kingdom_capture_context2_frame050.cpp",
],
],
[
"disney_tsum_tsum",
3,
[
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame001.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame002.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame003.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame004.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame005.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame006.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame007.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame008.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame009.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame010.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame011.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame012.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame013.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame014.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame015.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame016.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame017.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame018.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame019.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame020.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame021.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame022.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame023.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame024.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame025.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame026.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame027.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame028.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame029.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame030.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame031.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame032.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame033.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame034.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame035.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame036.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame037.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame038.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame039.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame040.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame041.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame042.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame043.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame044.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame045.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame046.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame047.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame048.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame049.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame050.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame051.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame052.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame053.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame054.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame055.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame056.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame057.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame058.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame059.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame060.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame061.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame062.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame063.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame064.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame065.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame066.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame067.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame068.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame069.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame070.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame071.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame072.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame073.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame074.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame075.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame076.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame077.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame078.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame079.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame080.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame081.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame082.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame083.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame084.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame085.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame086.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame087.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame088.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame089.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame090.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame091.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame092.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame093.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame094.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame095.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame096.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame097.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame098.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame099.cpp",
"disney_tsum_tsum/disney_tsum_tsum_capture_context3_frame100.cpp",
],
],
[
"dr_driving",
3,
[
"dr_driving/dr_driving_capture_context3_frame001.cpp",
"dr_driving/dr_driving_capture_context3_frame002.cpp",
"dr_driving/dr_driving_capture_context3_frame003.cpp",
"dr_driving/dr_driving_capture_context3_frame004.cpp",
"dr_driving/dr_driving_capture_context3_frame005.cpp",
"dr_driving/dr_driving_capture_context3_frame006.cpp",
"dr_driving/dr_driving_capture_context3_frame007.cpp",
"dr_driving/dr_driving_capture_context3_frame008.cpp",
"dr_driving/dr_driving_capture_context3_frame009.cpp",
"dr_driving/dr_driving_capture_context3_frame010.cpp",
"dr_driving/dr_driving_capture_context3_frame011.cpp",
"dr_driving/dr_driving_capture_context3_frame012.cpp",
"dr_driving/dr_driving_capture_context3_frame013.cpp",
"dr_driving/dr_driving_capture_context3_frame014.cpp",
"dr_driving/dr_driving_capture_context3_frame015.cpp",
"dr_driving/dr_driving_capture_context3_frame016.cpp",
"dr_driving/dr_driving_capture_context3_frame017.cpp",
"dr_driving/dr_driving_capture_context3_frame018.cpp",
"dr_driving/dr_driving_capture_context3_frame019.cpp",
"dr_driving/dr_driving_capture_context3_frame020.cpp",
"dr_driving/dr_driving_capture_context3_frame021.cpp",
"dr_driving/dr_driving_capture_context3_frame022.cpp",
"dr_driving/dr_driving_capture_context3_frame023.cpp",
"dr_driving/dr_driving_capture_context3_frame024.cpp",
"dr_driving/dr_driving_capture_context3_frame025.cpp",
"dr_driving/dr_driving_capture_context3_frame026.cpp",
"dr_driving/dr_driving_capture_context3_frame027.cpp",
"dr_driving/dr_driving_capture_context3_frame028.cpp",
"dr_driving/dr_driving_capture_context3_frame029.cpp",
"dr_driving/dr_driving_capture_context3_frame030.cpp",
"dr_driving/dr_driving_capture_context3_frame031.cpp",
"dr_driving/dr_driving_capture_context3_frame032.cpp",
"dr_driving/dr_driving_capture_context3_frame033.cpp",
"dr_driving/dr_driving_capture_context3_frame034.cpp",
"dr_driving/dr_driving_capture_context3_frame035.cpp",
"dr_driving/dr_driving_capture_context3_frame036.cpp",
"dr_driving/dr_driving_capture_context3_frame037.cpp",
"dr_driving/dr_driving_capture_context3_frame038.cpp",
"dr_driving/dr_driving_capture_context3_frame039.cpp",
"dr_driving/dr_driving_capture_context3_frame040.cpp",
"dr_driving/dr_driving_capture_context3_frame041.cpp",
"dr_driving/dr_driving_capture_context3_frame042.cpp",
"dr_driving/dr_driving_capture_context3_frame043.cpp",
"dr_driving/dr_driving_capture_context3_frame044.cpp",
"dr_driving/dr_driving_capture_context3_frame045.cpp",
"dr_driving/dr_driving_capture_context3_frame046.cpp",
"dr_driving/dr_driving_capture_context3_frame047.cpp",
"dr_driving/dr_driving_capture_context3_frame048.cpp",
"dr_driving/dr_driving_capture_context3_frame049.cpp",
"dr_driving/dr_driving_capture_context3_frame050.cpp",
],
],
[
"dragon_ball_legends",
1,
[
"dragon_ball_legends/dragon_ball_legends_capture_context1_frame001.cpp",
"dragon_ball_legends/dragon_ball_legends_capture_context1_frame002.cpp",
"dragon_ball_legends/dragon_ball_legends_capture_context1_frame003.cpp",
"dragon_ball_legends/dragon_ball_legends_capture_context1_frame004.cpp",
"dragon_ball_legends/dragon_ball_legends_capture_context1_frame005.cpp",
"dragon_ball_legends/dragon_ball_legends_capture_context1_frame006.cpp",
"dragon_ball_legends/dragon_ball_legends_capture_context1_frame007.cpp",
"dragon_ball_legends/dragon_ball_legends_capture_context1_frame008.cpp",
"dragon_ball_legends/dragon_ball_legends_capture_context1_frame009.cpp",
"dragon_ball_legends/dragon_ball_legends_capture_context1_frame010.cpp",
],
],
[
"dragon_raja",
1,
[
"dragon_raja/dragon_raja_capture_context1_frame001.cpp",
"dragon_raja/dragon_raja_capture_context1_frame002.cpp",
"dragon_raja/dragon_raja_capture_context1_frame003.cpp",
"dragon_raja/dragon_raja_capture_context1_frame004.cpp",
"dragon_raja/dragon_raja_capture_context1_frame005.cpp",
"dragon_raja/dragon_raja_capture_context1_frame006.cpp",
"dragon_raja/dragon_raja_capture_context1_frame007.cpp",
"dragon_raja/dragon_raja_capture_context1_frame008.cpp",
"dragon_raja/dragon_raja_capture_context1_frame009.cpp",
"dragon_raja/dragon_raja_capture_context1_frame010.cpp",
"dragon_raja/dragon_raja_capture_context1_frame011.cpp",
],
],
[
"efootball_pes_2021",
1,
[
"efootball_pes_2021/efootball_pes_2021_capture_context1_frame001.cpp",
"efootball_pes_2021/efootball_pes_2021_capture_context1_frame002.cpp",
"efootball_pes_2021/efootball_pes_2021_capture_context1_frame003.cpp",
"efootball_pes_2021/efootball_pes_2021_capture_context1_frame004.cpp",
"efootball_pes_2021/efootball_pes_2021_capture_context1_frame005.cpp",
"efootball_pes_2021/efootball_pes_2021_capture_context1_frame006.cpp",
"efootball_pes_2021/efootball_pes_2021_capture_context1_frame007.cpp",
"efootball_pes_2021/efootball_pes_2021_capture_context1_frame008.cpp",
"efootball_pes_2021/efootball_pes_2021_capture_context1_frame009.cpp",
"efootball_pes_2021/efootball_pes_2021_capture_context1_frame010.cpp",
],
],
[
"egypt_1500",
1,
[
"egypt_1500/egypt_1500_capture_context1_frame001.cpp",
"egypt_1500/egypt_1500_capture_context1_frame002.cpp",
"egypt_1500/egypt_1500_capture_context1_frame003.cpp",
"egypt_1500/egypt_1500_capture_context1_frame004.cpp",
"egypt_1500/egypt_1500_capture_context1_frame005.cpp",
"egypt_1500/egypt_1500_capture_context1_frame006.cpp",
"egypt_1500/egypt_1500_capture_context1_frame007.cpp",
"egypt_1500/egypt_1500_capture_context1_frame008.cpp",
"egypt_1500/egypt_1500_capture_context1_frame009.cpp",
"egypt_1500/egypt_1500_capture_context1_frame010.cpp",
"egypt_1500/egypt_1500_capture_context1_frame011.cpp",
],
],
[
"eight_ball_pool",
1,
[
"eight_ball_pool/eight_ball_pool_capture_context1_frame001.cpp",
"eight_ball_pool/eight_ball_pool_capture_context1_frame002.cpp",
"eight_ball_pool/eight_ball_pool_capture_context1_frame003.cpp",
"eight_ball_pool/eight_ball_pool_capture_context1_frame004.cpp",
"eight_ball_pool/eight_ball_pool_capture_context1_frame005.cpp",
"eight_ball_pool/eight_ball_pool_capture_context1_frame006.cpp",
"eight_ball_pool/eight_ball_pool_capture_context1_frame007.cpp",
"eight_ball_pool/eight_ball_pool_capture_context1_frame008.cpp",
"eight_ball_pool/eight_ball_pool_capture_context1_frame009.cpp",
"eight_ball_pool/eight_ball_pool_capture_context1_frame010.cpp",
],
],
[
"extreme_car_driving_simulator",
1,
[
"extreme_car_driving_simulator/extreme_car_driving_simulator_capture_context1_frame001.cpp",
"extreme_car_driving_simulator/extreme_car_driving_simulator_capture_context1_frame002.cpp",
"extreme_car_driving_simulator/extreme_car_driving_simulator_capture_context1_frame003.cpp",
"extreme_car_driving_simulator/extreme_car_driving_simulator_capture_context1_frame004.cpp",
"extreme_car_driving_simulator/extreme_car_driving_simulator_capture_context1_frame005.cpp",
"extreme_car_driving_simulator/extreme_car_driving_simulator_capture_context1_frame006.cpp",
"extreme_car_driving_simulator/extreme_car_driving_simulator_capture_context1_frame007.cpp",
"extreme_car_driving_simulator/extreme_car_driving_simulator_capture_context1_frame008.cpp",
"extreme_car_driving_simulator/extreme_car_driving_simulator_capture_context1_frame009.cpp",
"extreme_car_driving_simulator/extreme_car_driving_simulator_capture_context1_frame010.cpp",
],
],
[
"fallout_shelter_online",
1,
[
"fallout_shelter_online/fallout_shelter_online_capture_context1_frame001.cpp",
"fallout_shelter_online/fallout_shelter_online_capture_context1_frame002.cpp",
"fallout_shelter_online/fallout_shelter_online_capture_context1_frame003.cpp",
"fallout_shelter_online/fallout_shelter_online_capture_context1_frame004.cpp",
"fallout_shelter_online/fallout_shelter_online_capture_context1_frame005.cpp",
"fallout_shelter_online/fallout_shelter_online_capture_context1_frame006.cpp",
"fallout_shelter_online/fallout_shelter_online_capture_context1_frame007.cpp",
"fallout_shelter_online/fallout_shelter_online_capture_context1_frame008.cpp",
"fallout_shelter_online/fallout_shelter_online_capture_context1_frame009.cpp",
"fallout_shelter_online/fallout_shelter_online_capture_context1_frame010.cpp",
],
],
[
"fate_grand_order",
1,
[
"fate_grand_order/fate_grand_order_capture_context1_frame001.cpp",
"fate_grand_order/fate_grand_order_capture_context1_frame002.cpp",
"fate_grand_order/fate_grand_order_capture_context1_frame003.cpp",
"fate_grand_order/fate_grand_order_capture_context1_frame004.cpp",
"fate_grand_order/fate_grand_order_capture_context1_frame005.cpp",
"fate_grand_order/fate_grand_order_capture_context1_frame006.cpp",
"fate_grand_order/fate_grand_order_capture_context1_frame007.cpp",
"fate_grand_order/fate_grand_order_capture_context1_frame008.cpp",
"fate_grand_order/fate_grand_order_capture_context1_frame009.cpp",
"fate_grand_order/fate_grand_order_capture_context1_frame010.cpp",
],
],
[
"fifa_mobile",
1,
[
"fifa_mobile/fifa_mobile_capture_context1_frame001.cpp",
"fifa_mobile/fifa_mobile_capture_context1_frame002.cpp",
"fifa_mobile/fifa_mobile_capture_context1_frame003.cpp",
"fifa_mobile/fifa_mobile_capture_context1_frame004.cpp",
"fifa_mobile/fifa_mobile_capture_context1_frame005.cpp",
"fifa_mobile/fifa_mobile_capture_context1_frame006.cpp",
"fifa_mobile/fifa_mobile_capture_context1_frame007.cpp",
"fifa_mobile/fifa_mobile_capture_context1_frame008.cpp",
"fifa_mobile/fifa_mobile_capture_context1_frame009.cpp",
"fifa_mobile/fifa_mobile_capture_context1_frame010.cpp",
],
],
[
"free_fire",
1,
[
"free_fire/free_fire_capture_context1_frame001.cpp",
"free_fire/free_fire_capture_context1_frame002.cpp",
"free_fire/free_fire_capture_context1_frame003.cpp",
"free_fire/free_fire_capture_context1_frame004.cpp",
"free_fire/free_fire_capture_context1_frame005.cpp",
"free_fire/free_fire_capture_context1_frame006.cpp",
"free_fire/free_fire_capture_context1_frame007.cpp",
"free_fire/free_fire_capture_context1_frame008.cpp",
"free_fire/free_fire_capture_context1_frame009.cpp",
"free_fire/free_fire_capture_context1_frame010.cpp",
],
],
[
"gardenscapes",
1,
[
"gardenscapes/gardenscapes_capture_context1_frame001.cpp",
"gardenscapes/gardenscapes_capture_context1_frame002.cpp",
"gardenscapes/gardenscapes_capture_context1_frame003.cpp",
"gardenscapes/gardenscapes_capture_context1_frame004.cpp",
"gardenscapes/gardenscapes_capture_context1_frame005.cpp",
"gardenscapes/gardenscapes_capture_context1_frame006.cpp",
"gardenscapes/gardenscapes_capture_context1_frame007.cpp",
"gardenscapes/gardenscapes_capture_context1_frame008.cpp",
"gardenscapes/gardenscapes_capture_context1_frame009.cpp",
"gardenscapes/gardenscapes_capture_context1_frame010.cpp",
"gardenscapes/gardenscapes_capture_context1_frame011.cpp",
"gardenscapes/gardenscapes_capture_context1_frame012.cpp",
"gardenscapes/gardenscapes_capture_context1_frame013.cpp",
"gardenscapes/gardenscapes_capture_context1_frame014.cpp",
"gardenscapes/gardenscapes_capture_context1_frame015.cpp",
"gardenscapes/gardenscapes_capture_context1_frame016.cpp",
"gardenscapes/gardenscapes_capture_context1_frame017.cpp",
"gardenscapes/gardenscapes_capture_context1_frame018.cpp",
"gardenscapes/gardenscapes_capture_context1_frame019.cpp",
"gardenscapes/gardenscapes_capture_context1_frame020.cpp",
"gardenscapes/gardenscapes_capture_context1_frame021.cpp",
"gardenscapes/gardenscapes_capture_context1_frame022.cpp",
"gardenscapes/gardenscapes_capture_context1_frame023.cpp",
"gardenscapes/gardenscapes_capture_context1_frame024.cpp",
"gardenscapes/gardenscapes_capture_context1_frame025.cpp",
"gardenscapes/gardenscapes_capture_context1_frame026.cpp",
"gardenscapes/gardenscapes_capture_context1_frame027.cpp",
"gardenscapes/gardenscapes_capture_context1_frame028.cpp",
"gardenscapes/gardenscapes_capture_context1_frame029.cpp",
"gardenscapes/gardenscapes_capture_context1_frame030.cpp",
],
],
[
"genshin_impact",
3,
[
"genshin_impact/genshin_impact_capture_context3_frame001.cpp",
"genshin_impact/genshin_impact_capture_context3_frame002.cpp",
"genshin_impact/genshin_impact_capture_context3_frame003.cpp",
"genshin_impact/genshin_impact_capture_context3_frame004.cpp",
"genshin_impact/genshin_impact_capture_context3_frame005.cpp",
"genshin_impact/genshin_impact_capture_context3_frame006.cpp",
"genshin_impact/genshin_impact_capture_context3_frame007.cpp",
"genshin_impact/genshin_impact_capture_context3_frame008.cpp",
"genshin_impact/genshin_impact_capture_context3_frame009.cpp",
"genshin_impact/genshin_impact_capture_context3_frame010.cpp",
"genshin_impact/genshin_impact_capture_context3_frame011.cpp",
"genshin_impact/genshin_impact_capture_context3_frame012.cpp",
"genshin_impact/genshin_impact_capture_context3_frame013.cpp",
"genshin_impact/genshin_impact_capture_context3_frame014.cpp",
"genshin_impact/genshin_impact_capture_context3_frame015.cpp",
"genshin_impact/genshin_impact_capture_context3_frame016.cpp",
"genshin_impact/genshin_impact_capture_context3_frame017.cpp",
"genshin_impact/genshin_impact_capture_context3_frame018.cpp",
"genshin_impact/genshin_impact_capture_context3_frame019.cpp",
"genshin_impact/genshin_impact_capture_context3_frame020.cpp",
"genshin_impact/genshin_impact_capture_context3_frame021.cpp",
"genshin_impact/genshin_impact_capture_context3_frame022.cpp",
"genshin_impact/genshin_impact_capture_context3_frame023.cpp",
"genshin_impact/genshin_impact_capture_context3_frame024.cpp",
"genshin_impact/genshin_impact_capture_context3_frame025.cpp",
"genshin_impact/genshin_impact_capture_context3_frame026.cpp",
"genshin_impact/genshin_impact_capture_context3_frame027.cpp",
"genshin_impact/genshin_impact_capture_context3_frame028.cpp",
"genshin_impact/genshin_impact_capture_context3_frame029.cpp",
"genshin_impact/genshin_impact_capture_context3_frame030.cpp",
"genshin_impact/genshin_impact_capture_context3_frame031.cpp",
"genshin_impact/genshin_impact_capture_context3_frame032.cpp",
"genshin_impact/genshin_impact_capture_context3_frame033.cpp",
"genshin_impact/genshin_impact_capture_context3_frame034.cpp",
"genshin_impact/genshin_impact_capture_context3_frame035.cpp",
"genshin_impact/genshin_impact_capture_context3_frame036.cpp",
"genshin_impact/genshin_impact_capture_context3_frame037.cpp",
"genshin_impact/genshin_impact_capture_context3_frame038.cpp",
"genshin_impact/genshin_impact_capture_context3_frame039.cpp",
"genshin_impact/genshin_impact_capture_context3_frame040.cpp",
"genshin_impact/genshin_impact_capture_context3_frame041.cpp",
"genshin_impact/genshin_impact_capture_context3_frame042.cpp",
"genshin_impact/genshin_impact_capture_context3_frame043.cpp",
"genshin_impact/genshin_impact_capture_context3_frame044.cpp",
"genshin_impact/genshin_impact_capture_context3_frame045.cpp",
"genshin_impact/genshin_impact_capture_context3_frame046.cpp",
"genshin_impact/genshin_impact_capture_context3_frame047.cpp",
"genshin_impact/genshin_impact_capture_context3_frame048.cpp",
"genshin_impact/genshin_impact_capture_context3_frame049.cpp",
"genshin_impact/genshin_impact_capture_context3_frame050.cpp",
"genshin_impact/genshin_impact_capture_context3_frame051.cpp",
"genshin_impact/genshin_impact_capture_context3_frame052.cpp",
"genshin_impact/genshin_impact_capture_context3_frame053.cpp",
"genshin_impact/genshin_impact_capture_context3_frame054.cpp",
"genshin_impact/genshin_impact_capture_context3_frame055.cpp",
"genshin_impact/genshin_impact_capture_context3_frame056.cpp",
"genshin_impact/genshin_impact_capture_context3_frame057.cpp",
"genshin_impact/genshin_impact_capture_context3_frame058.cpp",
"genshin_impact/genshin_impact_capture_context3_frame059.cpp",
"genshin_impact/genshin_impact_capture_context3_frame060.cpp",
"genshin_impact/genshin_impact_capture_context3_frame061.cpp",
"genshin_impact/genshin_impact_capture_context3_frame062.cpp",
"genshin_impact/genshin_impact_capture_context3_frame063.cpp",
"genshin_impact/genshin_impact_capture_context3_frame064.cpp",
"genshin_impact/genshin_impact_capture_context3_frame065.cpp",
"genshin_impact/genshin_impact_capture_context3_frame066.cpp",
"genshin_impact/genshin_impact_capture_context3_frame067.cpp",
"genshin_impact/genshin_impact_capture_context3_frame068.cpp",
"genshin_impact/genshin_impact_capture_context3_frame069.cpp",
"genshin_impact/genshin_impact_capture_context3_frame070.cpp",
"genshin_impact/genshin_impact_capture_context3_frame071.cpp",
"genshin_impact/genshin_impact_capture_context3_frame072.cpp",
"genshin_impact/genshin_impact_capture_context3_frame073.cpp",
"genshin_impact/genshin_impact_capture_context3_frame074.cpp",
"genshin_impact/genshin_impact_capture_context3_frame075.cpp",
"genshin_impact/genshin_impact_capture_context3_frame076.cpp",
"genshin_impact/genshin_impact_capture_context3_frame077.cpp",
"genshin_impact/genshin_impact_capture_context3_frame078.cpp",
"genshin_impact/genshin_impact_capture_context3_frame079.cpp",
"genshin_impact/genshin_impact_capture_context3_frame080.cpp",
"genshin_impact/genshin_impact_capture_context3_frame081.cpp",
"genshin_impact/genshin_impact_capture_context3_frame082.cpp",
"genshin_impact/genshin_impact_capture_context3_frame083.cpp",
"genshin_impact/genshin_impact_capture_context3_frame084.cpp",
"genshin_impact/genshin_impact_capture_context3_frame085.cpp",
"genshin_impact/genshin_impact_capture_context3_frame086.cpp",
"genshin_impact/genshin_impact_capture_context3_frame087.cpp",
"genshin_impact/genshin_impact_capture_context3_frame088.cpp",
"genshin_impact/genshin_impact_capture_context3_frame089.cpp",
"genshin_impact/genshin_impact_capture_context3_frame090.cpp",
"genshin_impact/genshin_impact_capture_context3_frame091.cpp",
"genshin_impact/genshin_impact_capture_context3_frame092.cpp",
"genshin_impact/genshin_impact_capture_context3_frame093.cpp",
"genshin_impact/genshin_impact_capture_context3_frame094.cpp",
"genshin_impact/genshin_impact_capture_context3_frame095.cpp",
"genshin_impact/genshin_impact_capture_context3_frame096.cpp",
"genshin_impact/genshin_impact_capture_context3_frame097.cpp",
"genshin_impact/genshin_impact_capture_context3_frame098.cpp",
"genshin_impact/genshin_impact_capture_context3_frame099.cpp",
"genshin_impact/genshin_impact_capture_context3_frame100.cpp",
],
],
[
"google_maps",
1,
[
"google_maps/google_maps_capture_context1_frame001.cpp",
"google_maps/google_maps_capture_context1_frame002.cpp",
"google_maps/google_maps_capture_context1_frame003.cpp",
"google_maps/google_maps_capture_context1_frame004.cpp",
"google_maps/google_maps_capture_context1_frame005.cpp",
"google_maps/google_maps_capture_context1_frame006.cpp",
"google_maps/google_maps_capture_context1_frame007.cpp",
"google_maps/google_maps_capture_context1_frame008.cpp",
"google_maps/google_maps_capture_context1_frame009.cpp",
"google_maps/google_maps_capture_context1_frame010.cpp",
"google_maps/google_maps_capture_context1_frame011.cpp",
"google_maps/google_maps_capture_context1_frame012.cpp",
"google_maps/google_maps_capture_context1_frame013.cpp",
"google_maps/google_maps_capture_context1_frame014.cpp",
"google_maps/google_maps_capture_context1_frame015.cpp",
"google_maps/google_maps_capture_context1_frame016.cpp",
"google_maps/google_maps_capture_context1_frame017.cpp",
"google_maps/google_maps_capture_context1_frame018.cpp",
"google_maps/google_maps_capture_context1_frame019.cpp",
"google_maps/google_maps_capture_context1_frame020.cpp",
"google_maps/google_maps_capture_context1_frame021.cpp",
"google_maps/google_maps_capture_context1_frame022.cpp",
"google_maps/google_maps_capture_context1_frame023.cpp",
"google_maps/google_maps_capture_context1_frame024.cpp",
"google_maps/google_maps_capture_context1_frame025.cpp",
"google_maps/google_maps_capture_context1_frame026.cpp",
"google_maps/google_maps_capture_context1_frame027.cpp",
"google_maps/google_maps_capture_context1_frame028.cpp",
"google_maps/google_maps_capture_context1_frame029.cpp",
"google_maps/google_maps_capture_context1_frame030.cpp",
"google_maps/google_maps_capture_context1_frame031.cpp",
"google_maps/google_maps_capture_context1_frame032.cpp",
"google_maps/google_maps_capture_context1_frame033.cpp",
"google_maps/google_maps_capture_context1_frame034.cpp",
"google_maps/google_maps_capture_context1_frame035.cpp",
"google_maps/google_maps_capture_context1_frame036.cpp",
"google_maps/google_maps_capture_context1_frame037.cpp",
"google_maps/google_maps_capture_context1_frame038.cpp",
"google_maps/google_maps_capture_context1_frame039.cpp",
"google_maps/google_maps_capture_context1_frame040.cpp",
"google_maps/google_maps_capture_context1_frame041.cpp",
"google_maps/google_maps_capture_context1_frame042.cpp",
"google_maps/google_maps_capture_context1_frame043.cpp",
"google_maps/google_maps_capture_context1_frame044.cpp",
"google_maps/google_maps_capture_context1_frame045.cpp",
"google_maps/google_maps_capture_context1_frame046.cpp",
"google_maps/google_maps_capture_context1_frame047.cpp",
"google_maps/google_maps_capture_context1_frame048.cpp",
"google_maps/google_maps_capture_context1_frame049.cpp",
"google_maps/google_maps_capture_context1_frame050.cpp",
"google_maps/google_maps_capture_context1_frame051.cpp",
"google_maps/google_maps_capture_context1_frame052.cpp",
"google_maps/google_maps_capture_context1_frame053.cpp",
"google_maps/google_maps_capture_context1_frame054.cpp",
"google_maps/google_maps_capture_context1_frame055.cpp",
"google_maps/google_maps_capture_context1_frame056.cpp",
"google_maps/google_maps_capture_context1_frame057.cpp",
"google_maps/google_maps_capture_context1_frame058.cpp",
"google_maps/google_maps_capture_context1_frame059.cpp",
"google_maps/google_maps_capture_context1_frame060.cpp",
"google_maps/google_maps_capture_context1_frame061.cpp",
"google_maps/google_maps_capture_context1_frame062.cpp",
"google_maps/google_maps_capture_context1_frame063.cpp",
"google_maps/google_maps_capture_context1_frame064.cpp",
"google_maps/google_maps_capture_context1_frame065.cpp",
"google_maps/google_maps_capture_context1_frame066.cpp",
"google_maps/google_maps_capture_context1_frame067.cpp",
"google_maps/google_maps_capture_context1_frame068.cpp",
"google_maps/google_maps_capture_context1_frame069.cpp",
"google_maps/google_maps_capture_context1_frame070.cpp",
"google_maps/google_maps_capture_context1_frame071.cpp",
"google_maps/google_maps_capture_context1_frame072.cpp",
"google_maps/google_maps_capture_context1_frame073.cpp",
"google_maps/google_maps_capture_context1_frame074.cpp",
"google_maps/google_maps_capture_context1_frame075.cpp",
"google_maps/google_maps_capture_context1_frame076.cpp",
"google_maps/google_maps_capture_context1_frame077.cpp",
"google_maps/google_maps_capture_context1_frame078.cpp",
"google_maps/google_maps_capture_context1_frame079.cpp",
"google_maps/google_maps_capture_context1_frame080.cpp",
"google_maps/google_maps_capture_context1_frame081.cpp",
"google_maps/google_maps_capture_context1_frame082.cpp",
"google_maps/google_maps_capture_context1_frame083.cpp",
"google_maps/google_maps_capture_context1_frame084.cpp",
"google_maps/google_maps_capture_context1_frame085.cpp",
"google_maps/google_maps_capture_context1_frame086.cpp",
"google_maps/google_maps_capture_context1_frame087.cpp",
"google_maps/google_maps_capture_context1_frame088.cpp",
"google_maps/google_maps_capture_context1_frame089.cpp",
"google_maps/google_maps_capture_context1_frame090.cpp",
"google_maps/google_maps_capture_context1_frame091.cpp",
"google_maps/google_maps_capture_context1_frame092.cpp",
"google_maps/google_maps_capture_context1_frame093.cpp",
"google_maps/google_maps_capture_context1_frame094.cpp",
"google_maps/google_maps_capture_context1_frame095.cpp",
"google_maps/google_maps_capture_context1_frame096.cpp",
"google_maps/google_maps_capture_context1_frame097.cpp",
"google_maps/google_maps_capture_context1_frame098.cpp",
"google_maps/google_maps_capture_context1_frame099.cpp",
"google_maps/google_maps_capture_context1_frame100.cpp",
"google_maps/google_maps_capture_context1_frame101.cpp",
"google_maps/google_maps_capture_context1_frame102.cpp",
"google_maps/google_maps_capture_context1_frame103.cpp",
"google_maps/google_maps_capture_context1_frame104.cpp",
"google_maps/google_maps_capture_context1_frame105.cpp",
"google_maps/google_maps_capture_context1_frame106.cpp",
"google_maps/google_maps_capture_context1_frame107.cpp",
"google_maps/google_maps_capture_context1_frame108.cpp",
"google_maps/google_maps_capture_context1_frame109.cpp",
"google_maps/google_maps_capture_context1_frame110.cpp",
"google_maps/google_maps_capture_context1_frame111.cpp",
"google_maps/google_maps_capture_context1_frame112.cpp",
"google_maps/google_maps_capture_context1_frame113.cpp",
"google_maps/google_maps_capture_context1_frame114.cpp",
"google_maps/google_maps_capture_context1_frame115.cpp",
"google_maps/google_maps_capture_context1_frame116.cpp",
"google_maps/google_maps_capture_context1_frame117.cpp",
"google_maps/google_maps_capture_context1_frame118.cpp",
"google_maps/google_maps_capture_context1_frame119.cpp",
"google_maps/google_maps_capture_context1_frame120.cpp",
"google_maps/google_maps_capture_context1_frame121.cpp",
"google_maps/google_maps_capture_context1_frame122.cpp",
"google_maps/google_maps_capture_context1_frame123.cpp",
"google_maps/google_maps_capture_context1_frame124.cpp",
"google_maps/google_maps_capture_context1_frame125.cpp",
"google_maps/google_maps_capture_context1_frame126.cpp",
"google_maps/google_maps_capture_context1_frame127.cpp",
"google_maps/google_maps_capture_context1_frame128.cpp",
"google_maps/google_maps_capture_context1_frame129.cpp",
"google_maps/google_maps_capture_context1_frame130.cpp",
"google_maps/google_maps_capture_context1_frame131.cpp",
"google_maps/google_maps_capture_context1_frame132.cpp",
"google_maps/google_maps_capture_context1_frame133.cpp",
"google_maps/google_maps_capture_context1_frame134.cpp",
"google_maps/google_maps_capture_context1_frame135.cpp",
"google_maps/google_maps_capture_context1_frame136.cpp",
"google_maps/google_maps_capture_context1_frame137.cpp",
"google_maps/google_maps_capture_context1_frame138.cpp",
"google_maps/google_maps_capture_context1_frame139.cpp",
"google_maps/google_maps_capture_context1_frame140.cpp",
"google_maps/google_maps_capture_context1_frame141.cpp",
"google_maps/google_maps_capture_context1_frame142.cpp",
"google_maps/google_maps_capture_context1_frame143.cpp",
"google_maps/google_maps_capture_context1_frame144.cpp",
"google_maps/google_maps_capture_context1_frame145.cpp",
"google_maps/google_maps_capture_context1_frame146.cpp",
"google_maps/google_maps_capture_context1_frame147.cpp",
"google_maps/google_maps_capture_context1_frame148.cpp",
"google_maps/google_maps_capture_context1_frame149.cpp",
"google_maps/google_maps_capture_context1_frame150.cpp",
"google_maps/google_maps_capture_context1_frame151.cpp",
"google_maps/google_maps_capture_context1_frame152.cpp",
"google_maps/google_maps_capture_context1_frame153.cpp",
"google_maps/google_maps_capture_context1_frame154.cpp",
"google_maps/google_maps_capture_context1_frame155.cpp",
"google_maps/google_maps_capture_context1_frame156.cpp",
"google_maps/google_maps_capture_context1_frame157.cpp",
"google_maps/google_maps_capture_context1_frame158.cpp",
"google_maps/google_maps_capture_context1_frame159.cpp",
"google_maps/google_maps_capture_context1_frame160.cpp",
"google_maps/google_maps_capture_context1_frame161.cpp",
"google_maps/google_maps_capture_context1_frame162.cpp",
"google_maps/google_maps_capture_context1_frame163.cpp",
"google_maps/google_maps_capture_context1_frame164.cpp",
"google_maps/google_maps_capture_context1_frame165.cpp",
"google_maps/google_maps_capture_context1_frame166.cpp",
"google_maps/google_maps_capture_context1_frame167.cpp",
"google_maps/google_maps_capture_context1_frame168.cpp",
"google_maps/google_maps_capture_context1_frame169.cpp",
"google_maps/google_maps_capture_context1_frame170.cpp",
"google_maps/google_maps_capture_context1_frame171.cpp",
"google_maps/google_maps_capture_context1_frame172.cpp",
"google_maps/google_maps_capture_context1_frame173.cpp",
"google_maps/google_maps_capture_context1_frame174.cpp",
"google_maps/google_maps_capture_context1_frame175.cpp",
"google_maps/google_maps_capture_context1_frame176.cpp",
"google_maps/google_maps_capture_context1_frame177.cpp",
"google_maps/google_maps_capture_context1_frame178.cpp",
"google_maps/google_maps_capture_context1_frame179.cpp",
"google_maps/google_maps_capture_context1_frame180.cpp",
"google_maps/google_maps_capture_context1_frame181.cpp",
"google_maps/google_maps_capture_context1_frame182.cpp",
"google_maps/google_maps_capture_context1_frame183.cpp",
"google_maps/google_maps_capture_context1_frame184.cpp",
"google_maps/google_maps_capture_context1_frame185.cpp",
"google_maps/google_maps_capture_context1_frame186.cpp",
"google_maps/google_maps_capture_context1_frame187.cpp",
"google_maps/google_maps_capture_context1_frame188.cpp",
"google_maps/google_maps_capture_context1_frame189.cpp",
"google_maps/google_maps_capture_context1_frame190.cpp",
"google_maps/google_maps_capture_context1_frame191.cpp",
"google_maps/google_maps_capture_context1_frame192.cpp",
"google_maps/google_maps_capture_context1_frame193.cpp",
"google_maps/google_maps_capture_context1_frame194.cpp",
"google_maps/google_maps_capture_context1_frame195.cpp",
"google_maps/google_maps_capture_context1_frame196.cpp",
"google_maps/google_maps_capture_context1_frame197.cpp",
"google_maps/google_maps_capture_context1_frame198.cpp",
"google_maps/google_maps_capture_context1_frame199.cpp",
"google_maps/google_maps_capture_context1_frame200.cpp",
"google_maps/google_maps_capture_context1_frame201.cpp",
"google_maps/google_maps_capture_context1_frame202.cpp",
"google_maps/google_maps_capture_context1_frame203.cpp",
"google_maps/google_maps_capture_context1_frame204.cpp",
"google_maps/google_maps_capture_context1_frame205.cpp",
"google_maps/google_maps_capture_context1_frame206.cpp",
"google_maps/google_maps_capture_context1_frame207.cpp",
"google_maps/google_maps_capture_context1_frame208.cpp",
"google_maps/google_maps_capture_context1_frame209.cpp",
"google_maps/google_maps_capture_context1_frame210.cpp",
"google_maps/google_maps_capture_context1_frame211.cpp",
"google_maps/google_maps_capture_context1_frame212.cpp",
"google_maps/google_maps_capture_context1_frame213.cpp",
"google_maps/google_maps_capture_context1_frame214.cpp",
"google_maps/google_maps_capture_context1_frame215.cpp",
"google_maps/google_maps_capture_context1_frame216.cpp",
"google_maps/google_maps_capture_context1_frame217.cpp",
"google_maps/google_maps_capture_context1_frame218.cpp",
"google_maps/google_maps_capture_context1_frame219.cpp",
"google_maps/google_maps_capture_context1_frame220.cpp",
"google_maps/google_maps_capture_context1_frame221.cpp",
"google_maps/google_maps_capture_context1_frame222.cpp",
"google_maps/google_maps_capture_context1_frame223.cpp",
"google_maps/google_maps_capture_context1_frame224.cpp",
"google_maps/google_maps_capture_context1_frame225.cpp",
"google_maps/google_maps_capture_context1_frame226.cpp",
"google_maps/google_maps_capture_context1_frame227.cpp",
"google_maps/google_maps_capture_context1_frame228.cpp",
"google_maps/google_maps_capture_context1_frame229.cpp",
"google_maps/google_maps_capture_context1_frame230.cpp",
"google_maps/google_maps_capture_context1_frame231.cpp",
"google_maps/google_maps_capture_context1_frame232.cpp",
"google_maps/google_maps_capture_context1_frame233.cpp",
"google_maps/google_maps_capture_context1_frame234.cpp",
"google_maps/google_maps_capture_context1_frame235.cpp",
"google_maps/google_maps_capture_context1_frame236.cpp",
"google_maps/google_maps_capture_context1_frame237.cpp",
"google_maps/google_maps_capture_context1_frame238.cpp",
"google_maps/google_maps_capture_context1_frame239.cpp",
"google_maps/google_maps_capture_context1_frame240.cpp",
"google_maps/google_maps_capture_context1_frame241.cpp",
"google_maps/google_maps_capture_context1_frame242.cpp",
"google_maps/google_maps_capture_context1_frame243.cpp",
"google_maps/google_maps_capture_context1_frame244.cpp",
"google_maps/google_maps_capture_context1_frame245.cpp",
"google_maps/google_maps_capture_context1_frame246.cpp",
"google_maps/google_maps_capture_context1_frame247.cpp",
"google_maps/google_maps_capture_context1_frame248.cpp",
"google_maps/google_maps_capture_context1_frame249.cpp",
"google_maps/google_maps_capture_context1_frame250.cpp",
"google_maps/google_maps_capture_context1_frame251.cpp",
"google_maps/google_maps_capture_context1_frame252.cpp",
"google_maps/google_maps_capture_context1_frame253.cpp",
"google_maps/google_maps_capture_context1_frame254.cpp",
"google_maps/google_maps_capture_context1_frame255.cpp",
"google_maps/google_maps_capture_context1_frame256.cpp",
"google_maps/google_maps_capture_context1_frame257.cpp",
"google_maps/google_maps_capture_context1_frame258.cpp",
"google_maps/google_maps_capture_context1_frame259.cpp",
"google_maps/google_maps_capture_context1_frame260.cpp",
"google_maps/google_maps_capture_context1_frame261.cpp",
"google_maps/google_maps_capture_context1_frame262.cpp",
"google_maps/google_maps_capture_context1_frame263.cpp",
"google_maps/google_maps_capture_context1_frame264.cpp",
"google_maps/google_maps_capture_context1_frame265.cpp",
"google_maps/google_maps_capture_context1_frame266.cpp",
"google_maps/google_maps_capture_context1_frame267.cpp",
"google_maps/google_maps_capture_context1_frame268.cpp",
"google_maps/google_maps_capture_context1_frame269.cpp",
"google_maps/google_maps_capture_context1_frame270.cpp",
"google_maps/google_maps_capture_context1_frame271.cpp",
"google_maps/google_maps_capture_context1_frame272.cpp",
"google_maps/google_maps_capture_context1_frame273.cpp",
"google_maps/google_maps_capture_context1_frame274.cpp",
"google_maps/google_maps_capture_context1_frame275.cpp",
"google_maps/google_maps_capture_context1_frame276.cpp",
"google_maps/google_maps_capture_context1_frame277.cpp",
"google_maps/google_maps_capture_context1_frame278.cpp",
"google_maps/google_maps_capture_context1_frame279.cpp",
"google_maps/google_maps_capture_context1_frame280.cpp",
"google_maps/google_maps_capture_context1_frame281.cpp",
"google_maps/google_maps_capture_context1_frame282.cpp",
"google_maps/google_maps_capture_context1_frame283.cpp",
"google_maps/google_maps_capture_context1_frame284.cpp",
"google_maps/google_maps_capture_context1_frame285.cpp",
"google_maps/google_maps_capture_context1_frame286.cpp",
"google_maps/google_maps_capture_context1_frame287.cpp",
"google_maps/google_maps_capture_context1_frame288.cpp",
"google_maps/google_maps_capture_context1_frame289.cpp",
"google_maps/google_maps_capture_context1_frame290.cpp",
"google_maps/google_maps_capture_context1_frame291.cpp",
"google_maps/google_maps_capture_context1_frame292.cpp",
"google_maps/google_maps_capture_context1_frame293.cpp",
"google_maps/google_maps_capture_context1_frame294.cpp",
"google_maps/google_maps_capture_context1_frame295.cpp",
"google_maps/google_maps_capture_context1_frame296.cpp",
"google_maps/google_maps_capture_context1_frame297.cpp",
"google_maps/google_maps_capture_context1_frame298.cpp",
"google_maps/google_maps_capture_context1_frame299.cpp",
"google_maps/google_maps_capture_context1_frame300.cpp",
],
],
[
"happy_color",
1,
[
"happy_color/happy_color_capture_context1_frame001.cpp",
"happy_color/happy_color_capture_context1_frame002.cpp",
"happy_color/happy_color_capture_context1_frame003.cpp",
"happy_color/happy_color_capture_context1_frame004.cpp",
"happy_color/happy_color_capture_context1_frame005.cpp",
"happy_color/happy_color_capture_context1_frame006.cpp",
"happy_color/happy_color_capture_context1_frame007.cpp",
"happy_color/happy_color_capture_context1_frame008.cpp",
"happy_color/happy_color_capture_context1_frame009.cpp",
"happy_color/happy_color_capture_context1_frame010.cpp",
],
],
[
"hay_day",
1,
[
"hay_day/hay_day_capture_context1_frame001.cpp",
"hay_day/hay_day_capture_context1_frame002.cpp",
"hay_day/hay_day_capture_context1_frame003.cpp",
"hay_day/hay_day_capture_context1_frame004.cpp",
"hay_day/hay_day_capture_context1_frame005.cpp",
"hay_day/hay_day_capture_context1_frame006.cpp",
"hay_day/hay_day_capture_context1_frame007.cpp",
"hay_day/hay_day_capture_context1_frame008.cpp",
"hay_day/hay_day_capture_context1_frame009.cpp",
"hay_day/hay_day_capture_context1_frame010.cpp",
],
],
[
"hearthstone",
1,
[
"hearthstone/hearthstone_capture_context1_frame001.cpp",
"hearthstone/hearthstone_capture_context1_frame002.cpp",
"hearthstone/hearthstone_capture_context1_frame003.cpp",
"hearthstone/hearthstone_capture_context1_frame004.cpp",
"hearthstone/hearthstone_capture_context1_frame005.cpp",
"hearthstone/hearthstone_capture_context1_frame006.cpp",
"hearthstone/hearthstone_capture_context1_frame007.cpp",
"hearthstone/hearthstone_capture_context1_frame008.cpp",
"hearthstone/hearthstone_capture_context1_frame009.cpp",
"hearthstone/hearthstone_capture_context1_frame010.cpp",
],
],
[
"higgs_domino_island",
2,
[
"higgs_domino_island/higgs_domino_island_capture_context2_frame001.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame002.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame003.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame004.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame005.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame006.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame007.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame008.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame009.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame010.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame011.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame012.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame013.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame014.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame015.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame016.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame017.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame018.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame019.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame020.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame021.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame022.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame023.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame024.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame025.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame026.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame027.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame028.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame029.cpp",
"higgs_domino_island/higgs_domino_island_capture_context2_frame030.cpp",
],
],
[
"hill_climb_racing",
1,
[
"hill_climb_racing/hill_climb_racing_capture_context1_frame001.cpp",
"hill_climb_racing/hill_climb_racing_capture_context1_frame002.cpp",
"hill_climb_racing/hill_climb_racing_capture_context1_frame003.cpp",
"hill_climb_racing/hill_climb_racing_capture_context1_frame004.cpp",
"hill_climb_racing/hill_climb_racing_capture_context1_frame005.cpp",
"hill_climb_racing/hill_climb_racing_capture_context1_frame006.cpp",
"hill_climb_racing/hill_climb_racing_capture_context1_frame007.cpp",
"hill_climb_racing/hill_climb_racing_capture_context1_frame008.cpp",
"hill_climb_racing/hill_climb_racing_capture_context1_frame009.cpp",
"hill_climb_racing/hill_climb_racing_capture_context1_frame010.cpp",
],
],
[
"homescapes",
1,
[
"homescapes/homescapes_capture_context1_frame001.cpp",
"homescapes/homescapes_capture_context1_frame002.cpp",
"homescapes/homescapes_capture_context1_frame003.cpp",
"homescapes/homescapes_capture_context1_frame004.cpp",
"homescapes/homescapes_capture_context1_frame005.cpp",
"homescapes/homescapes_capture_context1_frame006.cpp",
"homescapes/homescapes_capture_context1_frame007.cpp",
"homescapes/homescapes_capture_context1_frame008.cpp",
"homescapes/homescapes_capture_context1_frame009.cpp",
"homescapes/homescapes_capture_context1_frame010.cpp",
],
],
[
"idle_heroes",
2,
[
"idle_heroes/idle_heroes_capture_context2_frame001.cpp",
"idle_heroes/idle_heroes_capture_context2_frame002.cpp",
"idle_heroes/idle_heroes_capture_context2_frame003.cpp",
"idle_heroes/idle_heroes_capture_context2_frame004.cpp",
"idle_heroes/idle_heroes_capture_context2_frame005.cpp",
"idle_heroes/idle_heroes_capture_context2_frame006.cpp",
"idle_heroes/idle_heroes_capture_context2_frame007.cpp",
"idle_heroes/idle_heroes_capture_context2_frame008.cpp",
"idle_heroes/idle_heroes_capture_context2_frame009.cpp",
"idle_heroes/idle_heroes_capture_context2_frame010.cpp",
"idle_heroes/idle_heroes_capture_context2_frame011.cpp",
"idle_heroes/idle_heroes_capture_context2_frame012.cpp",
"idle_heroes/idle_heroes_capture_context2_frame013.cpp",
"idle_heroes/idle_heroes_capture_context2_frame014.cpp",
"idle_heroes/idle_heroes_capture_context2_frame015.cpp",
"idle_heroes/idle_heroes_capture_context2_frame016.cpp",
"idle_heroes/idle_heroes_capture_context2_frame017.cpp",
"idle_heroes/idle_heroes_capture_context2_frame018.cpp",
"idle_heroes/idle_heroes_capture_context2_frame019.cpp",
"idle_heroes/idle_heroes_capture_context2_frame020.cpp",
"idle_heroes/idle_heroes_capture_context2_frame021.cpp",
"idle_heroes/idle_heroes_capture_context2_frame022.cpp",
"idle_heroes/idle_heroes_capture_context2_frame023.cpp",
"idle_heroes/idle_heroes_capture_context2_frame024.cpp",
"idle_heroes/idle_heroes_capture_context2_frame025.cpp",
"idle_heroes/idle_heroes_capture_context2_frame026.cpp",
"idle_heroes/idle_heroes_capture_context2_frame027.cpp",
"idle_heroes/idle_heroes_capture_context2_frame028.cpp",
"idle_heroes/idle_heroes_capture_context2_frame029.cpp",
"idle_heroes/idle_heroes_capture_context2_frame030.cpp",
"idle_heroes/idle_heroes_capture_context2_frame031.cpp",
"idle_heroes/idle_heroes_capture_context2_frame032.cpp",
"idle_heroes/idle_heroes_capture_context2_frame033.cpp",
"idle_heroes/idle_heroes_capture_context2_frame034.cpp",
"idle_heroes/idle_heroes_capture_context2_frame035.cpp",
"idle_heroes/idle_heroes_capture_context2_frame036.cpp",
"idle_heroes/idle_heroes_capture_context2_frame037.cpp",
"idle_heroes/idle_heroes_capture_context2_frame038.cpp",
"idle_heroes/idle_heroes_capture_context2_frame039.cpp",
"idle_heroes/idle_heroes_capture_context2_frame040.cpp",
"idle_heroes/idle_heroes_capture_context2_frame041.cpp",
"idle_heroes/idle_heroes_capture_context2_frame042.cpp",
"idle_heroes/idle_heroes_capture_context2_frame043.cpp",
"idle_heroes/idle_heroes_capture_context2_frame044.cpp",
"idle_heroes/idle_heroes_capture_context2_frame045.cpp",
"idle_heroes/idle_heroes_capture_context2_frame046.cpp",
"idle_heroes/idle_heroes_capture_context2_frame047.cpp",
"idle_heroes/idle_heroes_capture_context2_frame048.cpp",
"idle_heroes/idle_heroes_capture_context2_frame049.cpp",
"idle_heroes/idle_heroes_capture_context2_frame050.cpp",
"idle_heroes/idle_heroes_capture_context2_frame051.cpp",
"idle_heroes/idle_heroes_capture_context2_frame052.cpp",
"idle_heroes/idle_heroes_capture_context2_frame053.cpp",
"idle_heroes/idle_heroes_capture_context2_frame054.cpp",
"idle_heroes/idle_heroes_capture_context2_frame055.cpp",
"idle_heroes/idle_heroes_capture_context2_frame056.cpp",
"idle_heroes/idle_heroes_capture_context2_frame057.cpp",
"idle_heroes/idle_heroes_capture_context2_frame058.cpp",
"idle_heroes/idle_heroes_capture_context2_frame059.cpp",
"idle_heroes/idle_heroes_capture_context2_frame060.cpp",
"idle_heroes/idle_heroes_capture_context2_frame061.cpp",
"idle_heroes/idle_heroes_capture_context2_frame062.cpp",
"idle_heroes/idle_heroes_capture_context2_frame063.cpp",
"idle_heroes/idle_heroes_capture_context2_frame064.cpp",
"idle_heroes/idle_heroes_capture_context2_frame065.cpp",
"idle_heroes/idle_heroes_capture_context2_frame066.cpp",
"idle_heroes/idle_heroes_capture_context2_frame067.cpp",
"idle_heroes/idle_heroes_capture_context2_frame068.cpp",
"idle_heroes/idle_heroes_capture_context2_frame069.cpp",
"idle_heroes/idle_heroes_capture_context2_frame070.cpp",
"idle_heroes/idle_heroes_capture_context2_frame071.cpp",
"idle_heroes/idle_heroes_capture_context2_frame072.cpp",
"idle_heroes/idle_heroes_capture_context2_frame073.cpp",
"idle_heroes/idle_heroes_capture_context2_frame074.cpp",
"idle_heroes/idle_heroes_capture_context2_frame075.cpp",
"idle_heroes/idle_heroes_capture_context2_frame076.cpp",
"idle_heroes/idle_heroes_capture_context2_frame077.cpp",
"idle_heroes/idle_heroes_capture_context2_frame078.cpp",
"idle_heroes/idle_heroes_capture_context2_frame079.cpp",
"idle_heroes/idle_heroes_capture_context2_frame080.cpp",
"idle_heroes/idle_heroes_capture_context2_frame081.cpp",
"idle_heroes/idle_heroes_capture_context2_frame082.cpp",
"idle_heroes/idle_heroes_capture_context2_frame083.cpp",
"idle_heroes/idle_heroes_capture_context2_frame084.cpp",
"idle_heroes/idle_heroes_capture_context2_frame085.cpp",
"idle_heroes/idle_heroes_capture_context2_frame086.cpp",
"idle_heroes/idle_heroes_capture_context2_frame087.cpp",
"idle_heroes/idle_heroes_capture_context2_frame088.cpp",
"idle_heroes/idle_heroes_capture_context2_frame089.cpp",
"idle_heroes/idle_heroes_capture_context2_frame090.cpp",
"idle_heroes/idle_heroes_capture_context2_frame091.cpp",
"idle_heroes/idle_heroes_capture_context2_frame092.cpp",
"idle_heroes/idle_heroes_capture_context2_frame093.cpp",
"idle_heroes/idle_heroes_capture_context2_frame094.cpp",
"idle_heroes/idle_heroes_capture_context2_frame095.cpp",
"idle_heroes/idle_heroes_capture_context2_frame096.cpp",
"idle_heroes/idle_heroes_capture_context2_frame097.cpp",
"idle_heroes/idle_heroes_capture_context2_frame098.cpp",
"idle_heroes/idle_heroes_capture_context2_frame099.cpp",
"idle_heroes/idle_heroes_capture_context2_frame100.cpp",
"idle_heroes/idle_heroes_capture_context2_frame101.cpp",
"idle_heroes/idle_heroes_capture_context2_frame102.cpp",
"idle_heroes/idle_heroes_capture_context2_frame103.cpp",
"idle_heroes/idle_heroes_capture_context2_frame104.cpp",
"idle_heroes/idle_heroes_capture_context2_frame105.cpp",
"idle_heroes/idle_heroes_capture_context2_frame106.cpp",
"idle_heroes/idle_heroes_capture_context2_frame107.cpp",
"idle_heroes/idle_heroes_capture_context2_frame108.cpp",
"idle_heroes/idle_heroes_capture_context2_frame109.cpp",
"idle_heroes/idle_heroes_capture_context2_frame110.cpp",
"idle_heroes/idle_heroes_capture_context2_frame111.cpp",
"idle_heroes/idle_heroes_capture_context2_frame112.cpp",
"idle_heroes/idle_heroes_capture_context2_frame113.cpp",
"idle_heroes/idle_heroes_capture_context2_frame114.cpp",
"idle_heroes/idle_heroes_capture_context2_frame115.cpp",
"idle_heroes/idle_heroes_capture_context2_frame116.cpp",
"idle_heroes/idle_heroes_capture_context2_frame117.cpp",
"idle_heroes/idle_heroes_capture_context2_frame118.cpp",
"idle_heroes/idle_heroes_capture_context2_frame119.cpp",
"idle_heroes/idle_heroes_capture_context2_frame120.cpp",
"idle_heroes/idle_heroes_capture_context2_frame121.cpp",
"idle_heroes/idle_heroes_capture_context2_frame122.cpp",
"idle_heroes/idle_heroes_capture_context2_frame123.cpp",
"idle_heroes/idle_heroes_capture_context2_frame124.cpp",
"idle_heroes/idle_heroes_capture_context2_frame125.cpp",
"idle_heroes/idle_heroes_capture_context2_frame126.cpp",
"idle_heroes/idle_heroes_capture_context2_frame127.cpp",
"idle_heroes/idle_heroes_capture_context2_frame128.cpp",
"idle_heroes/idle_heroes_capture_context2_frame129.cpp",
"idle_heroes/idle_heroes_capture_context2_frame130.cpp",
"idle_heroes/idle_heroes_capture_context2_frame131.cpp",
"idle_heroes/idle_heroes_capture_context2_frame132.cpp",
"idle_heroes/idle_heroes_capture_context2_frame133.cpp",
"idle_heroes/idle_heroes_capture_context2_frame134.cpp",
"idle_heroes/idle_heroes_capture_context2_frame135.cpp",
"idle_heroes/idle_heroes_capture_context2_frame136.cpp",
"idle_heroes/idle_heroes_capture_context2_frame137.cpp",
"idle_heroes/idle_heroes_capture_context2_frame138.cpp",
"idle_heroes/idle_heroes_capture_context2_frame139.cpp",
"idle_heroes/idle_heroes_capture_context2_frame140.cpp",
"idle_heroes/idle_heroes_capture_context2_frame141.cpp",
"idle_heroes/idle_heroes_capture_context2_frame142.cpp",
"idle_heroes/idle_heroes_capture_context2_frame143.cpp",
"idle_heroes/idle_heroes_capture_context2_frame144.cpp",
"idle_heroes/idle_heroes_capture_context2_frame145.cpp",
"idle_heroes/idle_heroes_capture_context2_frame146.cpp",
"idle_heroes/idle_heroes_capture_context2_frame147.cpp",
"idle_heroes/idle_heroes_capture_context2_frame148.cpp",
"idle_heroes/idle_heroes_capture_context2_frame149.cpp",
"idle_heroes/idle_heroes_capture_context2_frame150.cpp",
"idle_heroes/idle_heroes_capture_context2_frame151.cpp",
"idle_heroes/idle_heroes_capture_context2_frame152.cpp",
"idle_heroes/idle_heroes_capture_context2_frame153.cpp",
"idle_heroes/idle_heroes_capture_context2_frame154.cpp",
"idle_heroes/idle_heroes_capture_context2_frame155.cpp",
"idle_heroes/idle_heroes_capture_context2_frame156.cpp",
"idle_heroes/idle_heroes_capture_context2_frame157.cpp",
"idle_heroes/idle_heroes_capture_context2_frame158.cpp",
"idle_heroes/idle_heroes_capture_context2_frame159.cpp",
"idle_heroes/idle_heroes_capture_context2_frame160.cpp",
"idle_heroes/idle_heroes_capture_context2_frame161.cpp",
"idle_heroes/idle_heroes_capture_context2_frame162.cpp",
"idle_heroes/idle_heroes_capture_context2_frame163.cpp",
"idle_heroes/idle_heroes_capture_context2_frame164.cpp",
"idle_heroes/idle_heroes_capture_context2_frame165.cpp",
"idle_heroes/idle_heroes_capture_context2_frame166.cpp",
"idle_heroes/idle_heroes_capture_context2_frame167.cpp",
"idle_heroes/idle_heroes_capture_context2_frame168.cpp",
"idle_heroes/idle_heroes_capture_context2_frame169.cpp",
"idle_heroes/idle_heroes_capture_context2_frame170.cpp",
"idle_heroes/idle_heroes_capture_context2_frame171.cpp",
"idle_heroes/idle_heroes_capture_context2_frame172.cpp",
"idle_heroes/idle_heroes_capture_context2_frame173.cpp",
"idle_heroes/idle_heroes_capture_context2_frame174.cpp",
"idle_heroes/idle_heroes_capture_context2_frame175.cpp",
"idle_heroes/idle_heroes_capture_context2_frame176.cpp",
"idle_heroes/idle_heroes_capture_context2_frame177.cpp",
"idle_heroes/idle_heroes_capture_context2_frame178.cpp",
"idle_heroes/idle_heroes_capture_context2_frame179.cpp",
"idle_heroes/idle_heroes_capture_context2_frame180.cpp",
"idle_heroes/idle_heroes_capture_context2_frame181.cpp",
"idle_heroes/idle_heroes_capture_context2_frame182.cpp",
"idle_heroes/idle_heroes_capture_context2_frame183.cpp",
"idle_heroes/idle_heroes_capture_context2_frame184.cpp",
"idle_heroes/idle_heroes_capture_context2_frame185.cpp",
"idle_heroes/idle_heroes_capture_context2_frame186.cpp",
"idle_heroes/idle_heroes_capture_context2_frame187.cpp",
"idle_heroes/idle_heroes_capture_context2_frame188.cpp",
"idle_heroes/idle_heroes_capture_context2_frame189.cpp",
"idle_heroes/idle_heroes_capture_context2_frame190.cpp",
"idle_heroes/idle_heroes_capture_context2_frame191.cpp",
"idle_heroes/idle_heroes_capture_context2_frame192.cpp",
"idle_heroes/idle_heroes_capture_context2_frame193.cpp",
"idle_heroes/idle_heroes_capture_context2_frame194.cpp",
"idle_heroes/idle_heroes_capture_context2_frame195.cpp",
"idle_heroes/idle_heroes_capture_context2_frame196.cpp",
"idle_heroes/idle_heroes_capture_context2_frame197.cpp",
"idle_heroes/idle_heroes_capture_context2_frame198.cpp",
"idle_heroes/idle_heroes_capture_context2_frame199.cpp",
"idle_heroes/idle_heroes_capture_context2_frame200.cpp",
"idle_heroes/idle_heroes_capture_context2_frame201.cpp",
"idle_heroes/idle_heroes_capture_context2_frame202.cpp",
"idle_heroes/idle_heroes_capture_context2_frame203.cpp",
"idle_heroes/idle_heroes_capture_context2_frame204.cpp",
"idle_heroes/idle_heroes_capture_context2_frame205.cpp",
"idle_heroes/idle_heroes_capture_context2_frame206.cpp",
"idle_heroes/idle_heroes_capture_context2_frame207.cpp",
"idle_heroes/idle_heroes_capture_context2_frame208.cpp",
"idle_heroes/idle_heroes_capture_context2_frame209.cpp",
"idle_heroes/idle_heroes_capture_context2_frame210.cpp",
"idle_heroes/idle_heroes_capture_context2_frame211.cpp",
"idle_heroes/idle_heroes_capture_context2_frame212.cpp",
"idle_heroes/idle_heroes_capture_context2_frame213.cpp",
"idle_heroes/idle_heroes_capture_context2_frame214.cpp",
"idle_heroes/idle_heroes_capture_context2_frame215.cpp",
"idle_heroes/idle_heroes_capture_context2_frame216.cpp",
"idle_heroes/idle_heroes_capture_context2_frame217.cpp",
"idle_heroes/idle_heroes_capture_context2_frame218.cpp",
"idle_heroes/idle_heroes_capture_context2_frame219.cpp",
"idle_heroes/idle_heroes_capture_context2_frame220.cpp",
"idle_heroes/idle_heroes_capture_context2_frame221.cpp",
"idle_heroes/idle_heroes_capture_context2_frame222.cpp",
"idle_heroes/idle_heroes_capture_context2_frame223.cpp",
"idle_heroes/idle_heroes_capture_context2_frame224.cpp",
"idle_heroes/idle_heroes_capture_context2_frame225.cpp",
"idle_heroes/idle_heroes_capture_context2_frame226.cpp",
"idle_heroes/idle_heroes_capture_context2_frame227.cpp",
"idle_heroes/idle_heroes_capture_context2_frame228.cpp",
"idle_heroes/idle_heroes_capture_context2_frame229.cpp",
"idle_heroes/idle_heroes_capture_context2_frame230.cpp",
"idle_heroes/idle_heroes_capture_context2_frame231.cpp",
"idle_heroes/idle_heroes_capture_context2_frame232.cpp",
"idle_heroes/idle_heroes_capture_context2_frame233.cpp",
"idle_heroes/idle_heroes_capture_context2_frame234.cpp",
"idle_heroes/idle_heroes_capture_context2_frame235.cpp",
"idle_heroes/idle_heroes_capture_context2_frame236.cpp",
"idle_heroes/idle_heroes_capture_context2_frame237.cpp",
"idle_heroes/idle_heroes_capture_context2_frame238.cpp",
"idle_heroes/idle_heroes_capture_context2_frame239.cpp",
"idle_heroes/idle_heroes_capture_context2_frame240.cpp",
"idle_heroes/idle_heroes_capture_context2_frame241.cpp",
"idle_heroes/idle_heroes_capture_context2_frame242.cpp",
"idle_heroes/idle_heroes_capture_context2_frame243.cpp",
"idle_heroes/idle_heroes_capture_context2_frame244.cpp",
"idle_heroes/idle_heroes_capture_context2_frame245.cpp",
"idle_heroes/idle_heroes_capture_context2_frame246.cpp",
"idle_heroes/idle_heroes_capture_context2_frame247.cpp",
"idle_heroes/idle_heroes_capture_context2_frame248.cpp",
"idle_heroes/idle_heroes_capture_context2_frame249.cpp",
"idle_heroes/idle_heroes_capture_context2_frame250.cpp",
"idle_heroes/idle_heroes_capture_context2_frame251.cpp",
"idle_heroes/idle_heroes_capture_context2_frame252.cpp",
"idle_heroes/idle_heroes_capture_context2_frame253.cpp",
"idle_heroes/idle_heroes_capture_context2_frame254.cpp",
"idle_heroes/idle_heroes_capture_context2_frame255.cpp",
"idle_heroes/idle_heroes_capture_context2_frame256.cpp",
"idle_heroes/idle_heroes_capture_context2_frame257.cpp",
"idle_heroes/idle_heroes_capture_context2_frame258.cpp",
"idle_heroes/idle_heroes_capture_context2_frame259.cpp",
"idle_heroes/idle_heroes_capture_context2_frame260.cpp",
"idle_heroes/idle_heroes_capture_context2_frame261.cpp",
"idle_heroes/idle_heroes_capture_context2_frame262.cpp",
"idle_heroes/idle_heroes_capture_context2_frame263.cpp",
"idle_heroes/idle_heroes_capture_context2_frame264.cpp",
"idle_heroes/idle_heroes_capture_context2_frame265.cpp",
"idle_heroes/idle_heroes_capture_context2_frame266.cpp",
"idle_heroes/idle_heroes_capture_context2_frame267.cpp",
"idle_heroes/idle_heroes_capture_context2_frame268.cpp",
"idle_heroes/idle_heroes_capture_context2_frame269.cpp",
"idle_heroes/idle_heroes_capture_context2_frame270.cpp",
"idle_heroes/idle_heroes_capture_context2_frame271.cpp",
"idle_heroes/idle_heroes_capture_context2_frame272.cpp",
"idle_heroes/idle_heroes_capture_context2_frame273.cpp",
"idle_heroes/idle_heroes_capture_context2_frame274.cpp",
"idle_heroes/idle_heroes_capture_context2_frame275.cpp",
"idle_heroes/idle_heroes_capture_context2_frame276.cpp",
"idle_heroes/idle_heroes_capture_context2_frame277.cpp",
"idle_heroes/idle_heroes_capture_context2_frame278.cpp",
"idle_heroes/idle_heroes_capture_context2_frame279.cpp",
"idle_heroes/idle_heroes_capture_context2_frame280.cpp",
"idle_heroes/idle_heroes_capture_context2_frame281.cpp",
"idle_heroes/idle_heroes_capture_context2_frame282.cpp",
"idle_heroes/idle_heroes_capture_context2_frame283.cpp",
"idle_heroes/idle_heroes_capture_context2_frame284.cpp",
"idle_heroes/idle_heroes_capture_context2_frame285.cpp",
"idle_heroes/idle_heroes_capture_context2_frame286.cpp",
"idle_heroes/idle_heroes_capture_context2_frame287.cpp",
"idle_heroes/idle_heroes_capture_context2_frame288.cpp",
"idle_heroes/idle_heroes_capture_context2_frame289.cpp",
"idle_heroes/idle_heroes_capture_context2_frame290.cpp",
"idle_heroes/idle_heroes_capture_context2_frame291.cpp",
"idle_heroes/idle_heroes_capture_context2_frame292.cpp",
"idle_heroes/idle_heroes_capture_context2_frame293.cpp",
"idle_heroes/idle_heroes_capture_context2_frame294.cpp",
"idle_heroes/idle_heroes_capture_context2_frame295.cpp",
"idle_heroes/idle_heroes_capture_context2_frame296.cpp",
"idle_heroes/idle_heroes_capture_context2_frame297.cpp",
"idle_heroes/idle_heroes_capture_context2_frame298.cpp",
"idle_heroes/idle_heroes_capture_context2_frame299.cpp",
"idle_heroes/idle_heroes_capture_context2_frame300.cpp",
"idle_heroes/idle_heroes_capture_context2_frame301.cpp",
"idle_heroes/idle_heroes_capture_context2_frame302.cpp",
"idle_heroes/idle_heroes_capture_context2_frame303.cpp",
"idle_heroes/idle_heroes_capture_context2_frame304.cpp",
"idle_heroes/idle_heroes_capture_context2_frame305.cpp",
"idle_heroes/idle_heroes_capture_context2_frame306.cpp",
"idle_heroes/idle_heroes_capture_context2_frame307.cpp",
"idle_heroes/idle_heroes_capture_context2_frame308.cpp",
"idle_heroes/idle_heroes_capture_context2_frame309.cpp",
"idle_heroes/idle_heroes_capture_context2_frame310.cpp",
"idle_heroes/idle_heroes_capture_context2_frame311.cpp",
"idle_heroes/idle_heroes_capture_context2_frame312.cpp",
"idle_heroes/idle_heroes_capture_context2_frame313.cpp",
"idle_heroes/idle_heroes_capture_context2_frame314.cpp",
"idle_heroes/idle_heroes_capture_context2_frame315.cpp",
"idle_heroes/idle_heroes_capture_context2_frame316.cpp",
"idle_heroes/idle_heroes_capture_context2_frame317.cpp",
"idle_heroes/idle_heroes_capture_context2_frame318.cpp",
"idle_heroes/idle_heroes_capture_context2_frame319.cpp",
"idle_heroes/idle_heroes_capture_context2_frame320.cpp",
"idle_heroes/idle_heroes_capture_context2_frame321.cpp",
"idle_heroes/idle_heroes_capture_context2_frame322.cpp",
"idle_heroes/idle_heroes_capture_context2_frame323.cpp",
"idle_heroes/idle_heroes_capture_context2_frame324.cpp",
"idle_heroes/idle_heroes_capture_context2_frame325.cpp",
"idle_heroes/idle_heroes_capture_context2_frame326.cpp",
"idle_heroes/idle_heroes_capture_context2_frame327.cpp",
"idle_heroes/idle_heroes_capture_context2_frame328.cpp",
"idle_heroes/idle_heroes_capture_context2_frame329.cpp",
"idle_heroes/idle_heroes_capture_context2_frame330.cpp",
"idle_heroes/idle_heroes_capture_context2_frame331.cpp",
"idle_heroes/idle_heroes_capture_context2_frame332.cpp",
"idle_heroes/idle_heroes_capture_context2_frame333.cpp",
"idle_heroes/idle_heroes_capture_context2_frame334.cpp",
"idle_heroes/idle_heroes_capture_context2_frame335.cpp",
"idle_heroes/idle_heroes_capture_context2_frame336.cpp",
"idle_heroes/idle_heroes_capture_context2_frame337.cpp",
"idle_heroes/idle_heroes_capture_context2_frame338.cpp",
"idle_heroes/idle_heroes_capture_context2_frame339.cpp",
"idle_heroes/idle_heroes_capture_context2_frame340.cpp",
"idle_heroes/idle_heroes_capture_context2_frame341.cpp",
"idle_heroes/idle_heroes_capture_context2_frame342.cpp",
"idle_heroes/idle_heroes_capture_context2_frame343.cpp",
"idle_heroes/idle_heroes_capture_context2_frame344.cpp",
"idle_heroes/idle_heroes_capture_context2_frame345.cpp",
"idle_heroes/idle_heroes_capture_context2_frame346.cpp",
"idle_heroes/idle_heroes_capture_context2_frame347.cpp",
"idle_heroes/idle_heroes_capture_context2_frame348.cpp",
"idle_heroes/idle_heroes_capture_context2_frame349.cpp",
"idle_heroes/idle_heroes_capture_context2_frame350.cpp",
"idle_heroes/idle_heroes_capture_context2_frame351.cpp",
"idle_heroes/idle_heroes_capture_context2_frame352.cpp",
"idle_heroes/idle_heroes_capture_context2_frame353.cpp",
"idle_heroes/idle_heroes_capture_context2_frame354.cpp",
"idle_heroes/idle_heroes_capture_context2_frame355.cpp",
"idle_heroes/idle_heroes_capture_context2_frame356.cpp",
"idle_heroes/idle_heroes_capture_context2_frame357.cpp",
"idle_heroes/idle_heroes_capture_context2_frame358.cpp",
"idle_heroes/idle_heroes_capture_context2_frame359.cpp",
"idle_heroes/idle_heroes_capture_context2_frame360.cpp",
"idle_heroes/idle_heroes_capture_context2_frame361.cpp",
"idle_heroes/idle_heroes_capture_context2_frame362.cpp",
"idle_heroes/idle_heroes_capture_context2_frame363.cpp",
"idle_heroes/idle_heroes_capture_context2_frame364.cpp",
"idle_heroes/idle_heroes_capture_context2_frame365.cpp",
"idle_heroes/idle_heroes_capture_context2_frame366.cpp",
"idle_heroes/idle_heroes_capture_context2_frame367.cpp",
"idle_heroes/idle_heroes_capture_context2_frame368.cpp",
"idle_heroes/idle_heroes_capture_context2_frame369.cpp",
"idle_heroes/idle_heroes_capture_context2_frame370.cpp",
"idle_heroes/idle_heroes_capture_context2_frame371.cpp",
"idle_heroes/idle_heroes_capture_context2_frame372.cpp",
"idle_heroes/idle_heroes_capture_context2_frame373.cpp",
"idle_heroes/idle_heroes_capture_context2_frame374.cpp",
"idle_heroes/idle_heroes_capture_context2_frame375.cpp",
"idle_heroes/idle_heroes_capture_context2_frame376.cpp",
"idle_heroes/idle_heroes_capture_context2_frame377.cpp",
"idle_heroes/idle_heroes_capture_context2_frame378.cpp",
"idle_heroes/idle_heroes_capture_context2_frame379.cpp",
"idle_heroes/idle_heroes_capture_context2_frame380.cpp",
"idle_heroes/idle_heroes_capture_context2_frame381.cpp",
"idle_heroes/idle_heroes_capture_context2_frame382.cpp",
"idle_heroes/idle_heroes_capture_context2_frame383.cpp",
"idle_heroes/idle_heroes_capture_context2_frame384.cpp",
"idle_heroes/idle_heroes_capture_context2_frame385.cpp",
"idle_heroes/idle_heroes_capture_context2_frame386.cpp",
"idle_heroes/idle_heroes_capture_context2_frame387.cpp",
"idle_heroes/idle_heroes_capture_context2_frame388.cpp",
"idle_heroes/idle_heroes_capture_context2_frame389.cpp",
"idle_heroes/idle_heroes_capture_context2_frame390.cpp",
"idle_heroes/idle_heroes_capture_context2_frame391.cpp",
"idle_heroes/idle_heroes_capture_context2_frame392.cpp",
"idle_heroes/idle_heroes_capture_context2_frame393.cpp",
"idle_heroes/idle_heroes_capture_context2_frame394.cpp",
"idle_heroes/idle_heroes_capture_context2_frame395.cpp",
"idle_heroes/idle_heroes_capture_context2_frame396.cpp",
"idle_heroes/idle_heroes_capture_context2_frame397.cpp",
"idle_heroes/idle_heroes_capture_context2_frame398.cpp",
"idle_heroes/idle_heroes_capture_context2_frame399.cpp",
"idle_heroes/idle_heroes_capture_context2_frame400.cpp",
"idle_heroes/idle_heroes_capture_context2_frame401.cpp",
"idle_heroes/idle_heroes_capture_context2_frame402.cpp",
"idle_heroes/idle_heroes_capture_context2_frame403.cpp",
"idle_heroes/idle_heroes_capture_context2_frame404.cpp",
"idle_heroes/idle_heroes_capture_context2_frame405.cpp",
"idle_heroes/idle_heroes_capture_context2_frame406.cpp",
"idle_heroes/idle_heroes_capture_context2_frame407.cpp",
"idle_heroes/idle_heroes_capture_context2_frame408.cpp",
"idle_heroes/idle_heroes_capture_context2_frame409.cpp",
"idle_heroes/idle_heroes_capture_context2_frame410.cpp",
"idle_heroes/idle_heroes_capture_context2_frame411.cpp",
"idle_heroes/idle_heroes_capture_context2_frame412.cpp",
"idle_heroes/idle_heroes_capture_context2_frame413.cpp",
"idle_heroes/idle_heroes_capture_context2_frame414.cpp",
"idle_heroes/idle_heroes_capture_context2_frame415.cpp",
"idle_heroes/idle_heroes_capture_context2_frame416.cpp",
"idle_heroes/idle_heroes_capture_context2_frame417.cpp",
"idle_heroes/idle_heroes_capture_context2_frame418.cpp",
"idle_heroes/idle_heroes_capture_context2_frame419.cpp",
"idle_heroes/idle_heroes_capture_context2_frame420.cpp",
"idle_heroes/idle_heroes_capture_context2_frame421.cpp",
"idle_heroes/idle_heroes_capture_context2_frame422.cpp",
"idle_heroes/idle_heroes_capture_context2_frame423.cpp",
"idle_heroes/idle_heroes_capture_context2_frame424.cpp",
"idle_heroes/idle_heroes_capture_context2_frame425.cpp",
"idle_heroes/idle_heroes_capture_context2_frame426.cpp",
"idle_heroes/idle_heroes_capture_context2_frame427.cpp",
"idle_heroes/idle_heroes_capture_context2_frame428.cpp",
"idle_heroes/idle_heroes_capture_context2_frame429.cpp",
"idle_heroes/idle_heroes_capture_context2_frame430.cpp",
"idle_heroes/idle_heroes_capture_context2_frame431.cpp",
"idle_heroes/idle_heroes_capture_context2_frame432.cpp",
"idle_heroes/idle_heroes_capture_context2_frame433.cpp",
"idle_heroes/idle_heroes_capture_context2_frame434.cpp",
"idle_heroes/idle_heroes_capture_context2_frame435.cpp",
"idle_heroes/idle_heroes_capture_context2_frame436.cpp",
"idle_heroes/idle_heroes_capture_context2_frame437.cpp",
"idle_heroes/idle_heroes_capture_context2_frame438.cpp",
"idle_heroes/idle_heroes_capture_context2_frame439.cpp",
"idle_heroes/idle_heroes_capture_context2_frame440.cpp",
"idle_heroes/idle_heroes_capture_context2_frame441.cpp",
"idle_heroes/idle_heroes_capture_context2_frame442.cpp",
"idle_heroes/idle_heroes_capture_context2_frame443.cpp",
"idle_heroes/idle_heroes_capture_context2_frame444.cpp",
"idle_heroes/idle_heroes_capture_context2_frame445.cpp",
"idle_heroes/idle_heroes_capture_context2_frame446.cpp",
"idle_heroes/idle_heroes_capture_context2_frame447.cpp",
"idle_heroes/idle_heroes_capture_context2_frame448.cpp",
"idle_heroes/idle_heroes_capture_context2_frame449.cpp",
"idle_heroes/idle_heroes_capture_context2_frame450.cpp",
"idle_heroes/idle_heroes_capture_context2_frame451.cpp",
"idle_heroes/idle_heroes_capture_context2_frame452.cpp",
"idle_heroes/idle_heroes_capture_context2_frame453.cpp",
"idle_heroes/idle_heroes_capture_context2_frame454.cpp",
"idle_heroes/idle_heroes_capture_context2_frame455.cpp",
"idle_heroes/idle_heroes_capture_context2_frame456.cpp",
"idle_heroes/idle_heroes_capture_context2_frame457.cpp",
"idle_heroes/idle_heroes_capture_context2_frame458.cpp",
"idle_heroes/idle_heroes_capture_context2_frame459.cpp",
"idle_heroes/idle_heroes_capture_context2_frame460.cpp",
"idle_heroes/idle_heroes_capture_context2_frame461.cpp",
"idle_heroes/idle_heroes_capture_context2_frame462.cpp",
"idle_heroes/idle_heroes_capture_context2_frame463.cpp",
"idle_heroes/idle_heroes_capture_context2_frame464.cpp",
"idle_heroes/idle_heroes_capture_context2_frame465.cpp",
"idle_heroes/idle_heroes_capture_context2_frame466.cpp",
"idle_heroes/idle_heroes_capture_context2_frame467.cpp",
"idle_heroes/idle_heroes_capture_context2_frame468.cpp",
"idle_heroes/idle_heroes_capture_context2_frame469.cpp",
"idle_heroes/idle_heroes_capture_context2_frame470.cpp",
"idle_heroes/idle_heroes_capture_context2_frame471.cpp",
"idle_heroes/idle_heroes_capture_context2_frame472.cpp",
"idle_heroes/idle_heroes_capture_context2_frame473.cpp",
"idle_heroes/idle_heroes_capture_context2_frame474.cpp",
"idle_heroes/idle_heroes_capture_context2_frame475.cpp",
"idle_heroes/idle_heroes_capture_context2_frame476.cpp",
"idle_heroes/idle_heroes_capture_context2_frame477.cpp",
"idle_heroes/idle_heroes_capture_context2_frame478.cpp",
"idle_heroes/idle_heroes_capture_context2_frame479.cpp",
"idle_heroes/idle_heroes_capture_context2_frame480.cpp",
"idle_heroes/idle_heroes_capture_context2_frame481.cpp",
"idle_heroes/idle_heroes_capture_context2_frame482.cpp",
"idle_heroes/idle_heroes_capture_context2_frame483.cpp",
"idle_heroes/idle_heroes_capture_context2_frame484.cpp",
"idle_heroes/idle_heroes_capture_context2_frame485.cpp",
"idle_heroes/idle_heroes_capture_context2_frame486.cpp",
"idle_heroes/idle_heroes_capture_context2_frame487.cpp",
"idle_heroes/idle_heroes_capture_context2_frame488.cpp",
"idle_heroes/idle_heroes_capture_context2_frame489.cpp",
"idle_heroes/idle_heroes_capture_context2_frame490.cpp",
"idle_heroes/idle_heroes_capture_context2_frame491.cpp",
"idle_heroes/idle_heroes_capture_context2_frame492.cpp",
"idle_heroes/idle_heroes_capture_context2_frame493.cpp",
"idle_heroes/idle_heroes_capture_context2_frame494.cpp",
"idle_heroes/idle_heroes_capture_context2_frame495.cpp",
"idle_heroes/idle_heroes_capture_context2_frame496.cpp",
"idle_heroes/idle_heroes_capture_context2_frame497.cpp",
"idle_heroes/idle_heroes_capture_context2_frame498.cpp",
"idle_heroes/idle_heroes_capture_context2_frame499.cpp",
"idle_heroes/idle_heroes_capture_context2_frame500.cpp",
"idle_heroes/idle_heroes_capture_context2_frame501.cpp",
"idle_heroes/idle_heroes_capture_context2_frame502.cpp",
"idle_heroes/idle_heroes_capture_context2_frame503.cpp",
"idle_heroes/idle_heroes_capture_context2_frame504.cpp",
"idle_heroes/idle_heroes_capture_context2_frame505.cpp",
"idle_heroes/idle_heroes_capture_context2_frame506.cpp",
"idle_heroes/idle_heroes_capture_context2_frame507.cpp",
"idle_heroes/idle_heroes_capture_context2_frame508.cpp",
"idle_heroes/idle_heroes_capture_context2_frame509.cpp",
"idle_heroes/idle_heroes_capture_context2_frame510.cpp",
"idle_heroes/idle_heroes_capture_context2_frame511.cpp",
"idle_heroes/idle_heroes_capture_context2_frame512.cpp",
"idle_heroes/idle_heroes_capture_context2_frame513.cpp",
"idle_heroes/idle_heroes_capture_context2_frame514.cpp",
"idle_heroes/idle_heroes_capture_context2_frame515.cpp",
"idle_heroes/idle_heroes_capture_context2_frame516.cpp",
"idle_heroes/idle_heroes_capture_context2_frame517.cpp",
"idle_heroes/idle_heroes_capture_context2_frame518.cpp",
"idle_heroes/idle_heroes_capture_context2_frame519.cpp",
"idle_heroes/idle_heroes_capture_context2_frame520.cpp",
"idle_heroes/idle_heroes_capture_context2_frame521.cpp",
"idle_heroes/idle_heroes_capture_context2_frame522.cpp",
"idle_heroes/idle_heroes_capture_context2_frame523.cpp",
"idle_heroes/idle_heroes_capture_context2_frame524.cpp",
"idle_heroes/idle_heroes_capture_context2_frame525.cpp",
"idle_heroes/idle_heroes_capture_context2_frame526.cpp",
"idle_heroes/idle_heroes_capture_context2_frame527.cpp",
"idle_heroes/idle_heroes_capture_context2_frame528.cpp",
"idle_heroes/idle_heroes_capture_context2_frame529.cpp",
"idle_heroes/idle_heroes_capture_context2_frame530.cpp",
"idle_heroes/idle_heroes_capture_context2_frame531.cpp",
"idle_heroes/idle_heroes_capture_context2_frame532.cpp",
"idle_heroes/idle_heroes_capture_context2_frame533.cpp",
"idle_heroes/idle_heroes_capture_context2_frame534.cpp",
"idle_heroes/idle_heroes_capture_context2_frame535.cpp",
"idle_heroes/idle_heroes_capture_context2_frame536.cpp",
"idle_heroes/idle_heroes_capture_context2_frame537.cpp",
"idle_heroes/idle_heroes_capture_context2_frame538.cpp",
"idle_heroes/idle_heroes_capture_context2_frame539.cpp",
"idle_heroes/idle_heroes_capture_context2_frame540.cpp",
"idle_heroes/idle_heroes_capture_context2_frame541.cpp",
"idle_heroes/idle_heroes_capture_context2_frame542.cpp",
"idle_heroes/idle_heroes_capture_context2_frame543.cpp",
"idle_heroes/idle_heroes_capture_context2_frame544.cpp",
"idle_heroes/idle_heroes_capture_context2_frame545.cpp",
"idle_heroes/idle_heroes_capture_context2_frame546.cpp",
"idle_heroes/idle_heroes_capture_context2_frame547.cpp",
"idle_heroes/idle_heroes_capture_context2_frame548.cpp",
"idle_heroes/idle_heroes_capture_context2_frame549.cpp",
"idle_heroes/idle_heroes_capture_context2_frame550.cpp",
"idle_heroes/idle_heroes_capture_context2_frame551.cpp",
"idle_heroes/idle_heroes_capture_context2_frame552.cpp",
"idle_heroes/idle_heroes_capture_context2_frame553.cpp",
"idle_heroes/idle_heroes_capture_context2_frame554.cpp",
"idle_heroes/idle_heroes_capture_context2_frame555.cpp",
"idle_heroes/idle_heroes_capture_context2_frame556.cpp",
"idle_heroes/idle_heroes_capture_context2_frame557.cpp",
"idle_heroes/idle_heroes_capture_context2_frame558.cpp",
"idle_heroes/idle_heroes_capture_context2_frame559.cpp",
"idle_heroes/idle_heroes_capture_context2_frame560.cpp",
"idle_heroes/idle_heroes_capture_context2_frame561.cpp",
"idle_heroes/idle_heroes_capture_context2_frame562.cpp",
"idle_heroes/idle_heroes_capture_context2_frame563.cpp",
"idle_heroes/idle_heroes_capture_context2_frame564.cpp",
"idle_heroes/idle_heroes_capture_context2_frame565.cpp",
"idle_heroes/idle_heroes_capture_context2_frame566.cpp",
"idle_heroes/idle_heroes_capture_context2_frame567.cpp",
"idle_heroes/idle_heroes_capture_context2_frame568.cpp",
"idle_heroes/idle_heroes_capture_context2_frame569.cpp",
"idle_heroes/idle_heroes_capture_context2_frame570.cpp",
"idle_heroes/idle_heroes_capture_context2_frame571.cpp",
"idle_heroes/idle_heroes_capture_context2_frame572.cpp",
"idle_heroes/idle_heroes_capture_context2_frame573.cpp",
"idle_heroes/idle_heroes_capture_context2_frame574.cpp",
"idle_heroes/idle_heroes_capture_context2_frame575.cpp",
"idle_heroes/idle_heroes_capture_context2_frame576.cpp",
"idle_heroes/idle_heroes_capture_context2_frame577.cpp",
"idle_heroes/idle_heroes_capture_context2_frame578.cpp",
"idle_heroes/idle_heroes_capture_context2_frame579.cpp",
"idle_heroes/idle_heroes_capture_context2_frame580.cpp",
"idle_heroes/idle_heroes_capture_context2_frame581.cpp",
"idle_heroes/idle_heroes_capture_context2_frame582.cpp",
"idle_heroes/idle_heroes_capture_context2_frame583.cpp",
"idle_heroes/idle_heroes_capture_context2_frame584.cpp",
"idle_heroes/idle_heroes_capture_context2_frame585.cpp",
"idle_heroes/idle_heroes_capture_context2_frame586.cpp",
"idle_heroes/idle_heroes_capture_context2_frame587.cpp",
"idle_heroes/idle_heroes_capture_context2_frame588.cpp",
"idle_heroes/idle_heroes_capture_context2_frame589.cpp",
"idle_heroes/idle_heroes_capture_context2_frame590.cpp",
"idle_heroes/idle_heroes_capture_context2_frame591.cpp",
"idle_heroes/idle_heroes_capture_context2_frame592.cpp",
"idle_heroes/idle_heroes_capture_context2_frame593.cpp",
"idle_heroes/idle_heroes_capture_context2_frame594.cpp",
"idle_heroes/idle_heroes_capture_context2_frame595.cpp",
"idle_heroes/idle_heroes_capture_context2_frame596.cpp",
"idle_heroes/idle_heroes_capture_context2_frame597.cpp",
"idle_heroes/idle_heroes_capture_context2_frame598.cpp",
"idle_heroes/idle_heroes_capture_context2_frame599.cpp",
"idle_heroes/idle_heroes_capture_context2_frame600.cpp",
"idle_heroes/idle_heroes_capture_context2_frame601.cpp",
"idle_heroes/idle_heroes_capture_context2_frame602.cpp",
"idle_heroes/idle_heroes_capture_context2_frame603.cpp",
"idle_heroes/idle_heroes_capture_context2_frame604.cpp",
"idle_heroes/idle_heroes_capture_context2_frame605.cpp",
"idle_heroes/idle_heroes_capture_context2_frame606.cpp",
"idle_heroes/idle_heroes_capture_context2_frame607.cpp",
"idle_heroes/idle_heroes_capture_context2_frame608.cpp",
"idle_heroes/idle_heroes_capture_context2_frame609.cpp",
"idle_heroes/idle_heroes_capture_context2_frame610.cpp",
"idle_heroes/idle_heroes_capture_context2_frame611.cpp",
"idle_heroes/idle_heroes_capture_context2_frame612.cpp",
"idle_heroes/idle_heroes_capture_context2_frame613.cpp",
"idle_heroes/idle_heroes_capture_context2_frame614.cpp",
"idle_heroes/idle_heroes_capture_context2_frame615.cpp",
"idle_heroes/idle_heroes_capture_context2_frame616.cpp",
"idle_heroes/idle_heroes_capture_context2_frame617.cpp",
"idle_heroes/idle_heroes_capture_context2_frame618.cpp",
"idle_heroes/idle_heroes_capture_context2_frame619.cpp",
"idle_heroes/idle_heroes_capture_context2_frame620.cpp",
"idle_heroes/idle_heroes_capture_context2_frame621.cpp",
"idle_heroes/idle_heroes_capture_context2_frame622.cpp",
"idle_heroes/idle_heroes_capture_context2_frame623.cpp",
"idle_heroes/idle_heroes_capture_context2_frame624.cpp",
"idle_heroes/idle_heroes_capture_context2_frame625.cpp",
"idle_heroes/idle_heroes_capture_context2_frame626.cpp",
"idle_heroes/idle_heroes_capture_context2_frame627.cpp",
"idle_heroes/idle_heroes_capture_context2_frame628.cpp",
"idle_heroes/idle_heroes_capture_context2_frame629.cpp",
"idle_heroes/idle_heroes_capture_context2_frame630.cpp",
"idle_heroes/idle_heroes_capture_context2_frame631.cpp",
"idle_heroes/idle_heroes_capture_context2_frame632.cpp",
"idle_heroes/idle_heroes_capture_context2_frame633.cpp",
"idle_heroes/idle_heroes_capture_context2_frame634.cpp",
"idle_heroes/idle_heroes_capture_context2_frame635.cpp",
"idle_heroes/idle_heroes_capture_context2_frame636.cpp",
"idle_heroes/idle_heroes_capture_context2_frame637.cpp",
"idle_heroes/idle_heroes_capture_context2_frame638.cpp",
"idle_heroes/idle_heroes_capture_context2_frame639.cpp",
"idle_heroes/idle_heroes_capture_context2_frame640.cpp",
"idle_heroes/idle_heroes_capture_context2_frame641.cpp",
"idle_heroes/idle_heroes_capture_context2_frame642.cpp",
"idle_heroes/idle_heroes_capture_context2_frame643.cpp",
"idle_heroes/idle_heroes_capture_context2_frame644.cpp",
"idle_heroes/idle_heroes_capture_context2_frame645.cpp",
"idle_heroes/idle_heroes_capture_context2_frame646.cpp",
"idle_heroes/idle_heroes_capture_context2_frame647.cpp",
"idle_heroes/idle_heroes_capture_context2_frame648.cpp",
"idle_heroes/idle_heroes_capture_context2_frame649.cpp",
"idle_heroes/idle_heroes_capture_context2_frame650.cpp",
"idle_heroes/idle_heroes_capture_context2_frame651.cpp",
"idle_heroes/idle_heroes_capture_context2_frame652.cpp",
"idle_heroes/idle_heroes_capture_context2_frame653.cpp",
"idle_heroes/idle_heroes_capture_context2_frame654.cpp",
"idle_heroes/idle_heroes_capture_context2_frame655.cpp",
"idle_heroes/idle_heroes_capture_context2_frame656.cpp",
"idle_heroes/idle_heroes_capture_context2_frame657.cpp",
"idle_heroes/idle_heroes_capture_context2_frame658.cpp",
"idle_heroes/idle_heroes_capture_context2_frame659.cpp",
"idle_heroes/idle_heroes_capture_context2_frame660.cpp",
"idle_heroes/idle_heroes_capture_context2_frame661.cpp",
"idle_heroes/idle_heroes_capture_context2_frame662.cpp",
"idle_heroes/idle_heroes_capture_context2_frame663.cpp",
"idle_heroes/idle_heroes_capture_context2_frame664.cpp",
"idle_heroes/idle_heroes_capture_context2_frame665.cpp",
"idle_heroes/idle_heroes_capture_context2_frame666.cpp",
"idle_heroes/idle_heroes_capture_context2_frame667.cpp",
"idle_heroes/idle_heroes_capture_context2_frame668.cpp",
"idle_heroes/idle_heroes_capture_context2_frame669.cpp",
"idle_heroes/idle_heroes_capture_context2_frame670.cpp",
"idle_heroes/idle_heroes_capture_context2_frame671.cpp",
"idle_heroes/idle_heroes_capture_context2_frame672.cpp",
"idle_heroes/idle_heroes_capture_context2_frame673.cpp",
"idle_heroes/idle_heroes_capture_context2_frame674.cpp",
"idle_heroes/idle_heroes_capture_context2_frame675.cpp",
"idle_heroes/idle_heroes_capture_context2_frame676.cpp",
"idle_heroes/idle_heroes_capture_context2_frame677.cpp",
"idle_heroes/idle_heroes_capture_context2_frame678.cpp",
"idle_heroes/idle_heroes_capture_context2_frame679.cpp",
"idle_heroes/idle_heroes_capture_context2_frame680.cpp",
"idle_heroes/idle_heroes_capture_context2_frame681.cpp",
"idle_heroes/idle_heroes_capture_context2_frame682.cpp",
"idle_heroes/idle_heroes_capture_context2_frame683.cpp",
"idle_heroes/idle_heroes_capture_context2_frame684.cpp",
"idle_heroes/idle_heroes_capture_context2_frame685.cpp",
"idle_heroes/idle_heroes_capture_context2_frame686.cpp",
"idle_heroes/idle_heroes_capture_context2_frame687.cpp",
"idle_heroes/idle_heroes_capture_context2_frame688.cpp",
"idle_heroes/idle_heroes_capture_context2_frame689.cpp",
"idle_heroes/idle_heroes_capture_context2_frame690.cpp",
"idle_heroes/idle_heroes_capture_context2_frame691.cpp",
"idle_heroes/idle_heroes_capture_context2_frame692.cpp",
"idle_heroes/idle_heroes_capture_context2_frame693.cpp",
"idle_heroes/idle_heroes_capture_context2_frame694.cpp",
"idle_heroes/idle_heroes_capture_context2_frame695.cpp",
"idle_heroes/idle_heroes_capture_context2_frame696.cpp",
"idle_heroes/idle_heroes_capture_context2_frame697.cpp",
"idle_heroes/idle_heroes_capture_context2_frame698.cpp",
"idle_heroes/idle_heroes_capture_context2_frame699.cpp",
"idle_heroes/idle_heroes_capture_context2_frame700.cpp",
"idle_heroes/idle_heroes_capture_context2_frame701.cpp",
"idle_heroes/idle_heroes_capture_context2_frame702.cpp",
"idle_heroes/idle_heroes_capture_context2_frame703.cpp",
"idle_heroes/idle_heroes_capture_context2_frame704.cpp",
"idle_heroes/idle_heroes_capture_context2_frame705.cpp",
"idle_heroes/idle_heroes_capture_context2_frame706.cpp",
"idle_heroes/idle_heroes_capture_context2_frame707.cpp",
"idle_heroes/idle_heroes_capture_context2_frame708.cpp",
"idle_heroes/idle_heroes_capture_context2_frame709.cpp",
"idle_heroes/idle_heroes_capture_context2_frame710.cpp",
"idle_heroes/idle_heroes_capture_context2_frame711.cpp",
"idle_heroes/idle_heroes_capture_context2_frame712.cpp",
"idle_heroes/idle_heroes_capture_context2_frame713.cpp",
"idle_heroes/idle_heroes_capture_context2_frame714.cpp",
"idle_heroes/idle_heroes_capture_context2_frame715.cpp",
"idle_heroes/idle_heroes_capture_context2_frame716.cpp",
"idle_heroes/idle_heroes_capture_context2_frame717.cpp",
"idle_heroes/idle_heroes_capture_context2_frame718.cpp",
"idle_heroes/idle_heroes_capture_context2_frame719.cpp",
"idle_heroes/idle_heroes_capture_context2_frame720.cpp",
"idle_heroes/idle_heroes_capture_context2_frame721.cpp",
"idle_heroes/idle_heroes_capture_context2_frame722.cpp",
"idle_heroes/idle_heroes_capture_context2_frame723.cpp",
"idle_heroes/idle_heroes_capture_context2_frame724.cpp",
"idle_heroes/idle_heroes_capture_context2_frame725.cpp",
"idle_heroes/idle_heroes_capture_context2_frame726.cpp",
"idle_heroes/idle_heroes_capture_context2_frame727.cpp",
"idle_heroes/idle_heroes_capture_context2_frame728.cpp",
"idle_heroes/idle_heroes_capture_context2_frame729.cpp",
"idle_heroes/idle_heroes_capture_context2_frame730.cpp",
"idle_heroes/idle_heroes_capture_context2_frame731.cpp",
"idle_heroes/idle_heroes_capture_context2_frame732.cpp",
"idle_heroes/idle_heroes_capture_context2_frame733.cpp",
"idle_heroes/idle_heroes_capture_context2_frame734.cpp",
"idle_heroes/idle_heroes_capture_context2_frame735.cpp",
"idle_heroes/idle_heroes_capture_context2_frame736.cpp",
"idle_heroes/idle_heroes_capture_context2_frame737.cpp",
"idle_heroes/idle_heroes_capture_context2_frame738.cpp",
"idle_heroes/idle_heroes_capture_context2_frame739.cpp",
"idle_heroes/idle_heroes_capture_context2_frame740.cpp",
"idle_heroes/idle_heroes_capture_context2_frame741.cpp",
"idle_heroes/idle_heroes_capture_context2_frame742.cpp",
"idle_heroes/idle_heroes_capture_context2_frame743.cpp",
"idle_heroes/idle_heroes_capture_context2_frame744.cpp",
"idle_heroes/idle_heroes_capture_context2_frame745.cpp",
"idle_heroes/idle_heroes_capture_context2_frame746.cpp",
"idle_heroes/idle_heroes_capture_context2_frame747.cpp",
"idle_heroes/idle_heroes_capture_context2_frame748.cpp",
"idle_heroes/idle_heroes_capture_context2_frame749.cpp",
"idle_heroes/idle_heroes_capture_context2_frame750.cpp",
"idle_heroes/idle_heroes_capture_context2_frame751.cpp",
"idle_heroes/idle_heroes_capture_context2_frame752.cpp",
"idle_heroes/idle_heroes_capture_context2_frame753.cpp",
"idle_heroes/idle_heroes_capture_context2_frame754.cpp",
"idle_heroes/idle_heroes_capture_context2_frame755.cpp",
"idle_heroes/idle_heroes_capture_context2_frame756.cpp",
"idle_heroes/idle_heroes_capture_context2_frame757.cpp",
"idle_heroes/idle_heroes_capture_context2_frame758.cpp",
"idle_heroes/idle_heroes_capture_context2_frame759.cpp",
"idle_heroes/idle_heroes_capture_context2_frame760.cpp",
"idle_heroes/idle_heroes_capture_context2_frame761.cpp",
"idle_heroes/idle_heroes_capture_context2_frame762.cpp",
"idle_heroes/idle_heroes_capture_context2_frame763.cpp",
"idle_heroes/idle_heroes_capture_context2_frame764.cpp",
"idle_heroes/idle_heroes_capture_context2_frame765.cpp",
"idle_heroes/idle_heroes_capture_context2_frame766.cpp",
"idle_heroes/idle_heroes_capture_context2_frame767.cpp",
"idle_heroes/idle_heroes_capture_context2_frame768.cpp",
"idle_heroes/idle_heroes_capture_context2_frame769.cpp",
"idle_heroes/idle_heroes_capture_context2_frame770.cpp",
"idle_heroes/idle_heroes_capture_context2_frame771.cpp",
"idle_heroes/idle_heroes_capture_context2_frame772.cpp",
"idle_heroes/idle_heroes_capture_context2_frame773.cpp",
"idle_heroes/idle_heroes_capture_context2_frame774.cpp",
"idle_heroes/idle_heroes_capture_context2_frame775.cpp",
"idle_heroes/idle_heroes_capture_context2_frame776.cpp",
"idle_heroes/idle_heroes_capture_context2_frame777.cpp",
"idle_heroes/idle_heroes_capture_context2_frame778.cpp",
"idle_heroes/idle_heroes_capture_context2_frame779.cpp",
"idle_heroes/idle_heroes_capture_context2_frame780.cpp",
"idle_heroes/idle_heroes_capture_context2_frame781.cpp",
"idle_heroes/idle_heroes_capture_context2_frame782.cpp",
"idle_heroes/idle_heroes_capture_context2_frame783.cpp",
"idle_heroes/idle_heroes_capture_context2_frame784.cpp",
"idle_heroes/idle_heroes_capture_context2_frame785.cpp",
"idle_heroes/idle_heroes_capture_context2_frame786.cpp",
"idle_heroes/idle_heroes_capture_context2_frame787.cpp",
"idle_heroes/idle_heroes_capture_context2_frame788.cpp",
"idle_heroes/idle_heroes_capture_context2_frame789.cpp",
"idle_heroes/idle_heroes_capture_context2_frame790.cpp",
"idle_heroes/idle_heroes_capture_context2_frame791.cpp",
"idle_heroes/idle_heroes_capture_context2_frame792.cpp",
"idle_heroes/idle_heroes_capture_context2_frame793.cpp",
"idle_heroes/idle_heroes_capture_context2_frame794.cpp",
"idle_heroes/idle_heroes_capture_context2_frame795.cpp",
"idle_heroes/idle_heroes_capture_context2_frame796.cpp",
"idle_heroes/idle_heroes_capture_context2_frame797.cpp",
"idle_heroes/idle_heroes_capture_context2_frame798.cpp",
"idle_heroes/idle_heroes_capture_context2_frame799.cpp",
"idle_heroes/idle_heroes_capture_context2_frame800.cpp",
"idle_heroes/idle_heroes_capture_context2_frame801.cpp",
"idle_heroes/idle_heroes_capture_context2_frame802.cpp",
"idle_heroes/idle_heroes_capture_context2_frame803.cpp",
"idle_heroes/idle_heroes_capture_context2_frame804.cpp",
"idle_heroes/idle_heroes_capture_context2_frame805.cpp",
"idle_heroes/idle_heroes_capture_context2_frame806.cpp",
"idle_heroes/idle_heroes_capture_context2_frame807.cpp",
"idle_heroes/idle_heroes_capture_context2_frame808.cpp",
"idle_heroes/idle_heroes_capture_context2_frame809.cpp",
"idle_heroes/idle_heroes_capture_context2_frame810.cpp",
"idle_heroes/idle_heroes_capture_context2_frame811.cpp",
"idle_heroes/idle_heroes_capture_context2_frame812.cpp",
"idle_heroes/idle_heroes_capture_context2_frame813.cpp",
"idle_heroes/idle_heroes_capture_context2_frame814.cpp",
"idle_heroes/idle_heroes_capture_context2_frame815.cpp",
"idle_heroes/idle_heroes_capture_context2_frame816.cpp",
"idle_heroes/idle_heroes_capture_context2_frame817.cpp",
"idle_heroes/idle_heroes_capture_context2_frame818.cpp",
"idle_heroes/idle_heroes_capture_context2_frame819.cpp",
"idle_heroes/idle_heroes_capture_context2_frame820.cpp",
"idle_heroes/idle_heroes_capture_context2_frame821.cpp",
"idle_heroes/idle_heroes_capture_context2_frame822.cpp",
"idle_heroes/idle_heroes_capture_context2_frame823.cpp",
"idle_heroes/idle_heroes_capture_context2_frame824.cpp",
"idle_heroes/idle_heroes_capture_context2_frame825.cpp",
"idle_heroes/idle_heroes_capture_context2_frame826.cpp",
"idle_heroes/idle_heroes_capture_context2_frame827.cpp",
"idle_heroes/idle_heroes_capture_context2_frame828.cpp",
"idle_heroes/idle_heroes_capture_context2_frame829.cpp",
"idle_heroes/idle_heroes_capture_context2_frame830.cpp",
"idle_heroes/idle_heroes_capture_context2_frame831.cpp",
"idle_heroes/idle_heroes_capture_context2_frame832.cpp",
"idle_heroes/idle_heroes_capture_context2_frame833.cpp",
"idle_heroes/idle_heroes_capture_context2_frame834.cpp",
"idle_heroes/idle_heroes_capture_context2_frame835.cpp",
"idle_heroes/idle_heroes_capture_context2_frame836.cpp",
"idle_heroes/idle_heroes_capture_context2_frame837.cpp",
"idle_heroes/idle_heroes_capture_context2_frame838.cpp",
"idle_heroes/idle_heroes_capture_context2_frame839.cpp",
"idle_heroes/idle_heroes_capture_context2_frame840.cpp",
"idle_heroes/idle_heroes_capture_context2_frame841.cpp",
"idle_heroes/idle_heroes_capture_context2_frame842.cpp",
"idle_heroes/idle_heroes_capture_context2_frame843.cpp",
"idle_heroes/idle_heroes_capture_context2_frame844.cpp",
"idle_heroes/idle_heroes_capture_context2_frame845.cpp",
"idle_heroes/idle_heroes_capture_context2_frame846.cpp",
"idle_heroes/idle_heroes_capture_context2_frame847.cpp",
"idle_heroes/idle_heroes_capture_context2_frame848.cpp",
"idle_heroes/idle_heroes_capture_context2_frame849.cpp",
"idle_heroes/idle_heroes_capture_context2_frame850.cpp",
"idle_heroes/idle_heroes_capture_context2_frame851.cpp",
"idle_heroes/idle_heroes_capture_context2_frame852.cpp",
"idle_heroes/idle_heroes_capture_context2_frame853.cpp",
"idle_heroes/idle_heroes_capture_context2_frame854.cpp",
"idle_heroes/idle_heroes_capture_context2_frame855.cpp",
"idle_heroes/idle_heroes_capture_context2_frame856.cpp",
"idle_heroes/idle_heroes_capture_context2_frame857.cpp",
"idle_heroes/idle_heroes_capture_context2_frame858.cpp",
"idle_heroes/idle_heroes_capture_context2_frame859.cpp",
"idle_heroes/idle_heroes_capture_context2_frame860.cpp",
"idle_heroes/idle_heroes_capture_context2_frame861.cpp",
"idle_heroes/idle_heroes_capture_context2_frame862.cpp",
"idle_heroes/idle_heroes_capture_context2_frame863.cpp",
"idle_heroes/idle_heroes_capture_context2_frame864.cpp",
"idle_heroes/idle_heroes_capture_context2_frame865.cpp",
"idle_heroes/idle_heroes_capture_context2_frame866.cpp",
"idle_heroes/idle_heroes_capture_context2_frame867.cpp",
"idle_heroes/idle_heroes_capture_context2_frame868.cpp",
"idle_heroes/idle_heroes_capture_context2_frame869.cpp",
"idle_heroes/idle_heroes_capture_context2_frame870.cpp",
"idle_heroes/idle_heroes_capture_context2_frame871.cpp",
"idle_heroes/idle_heroes_capture_context2_frame872.cpp",
"idle_heroes/idle_heroes_capture_context2_frame873.cpp",
"idle_heroes/idle_heroes_capture_context2_frame874.cpp",
"idle_heroes/idle_heroes_capture_context2_frame875.cpp",
"idle_heroes/idle_heroes_capture_context2_frame876.cpp",
"idle_heroes/idle_heroes_capture_context2_frame877.cpp",
"idle_heroes/idle_heroes_capture_context2_frame878.cpp",
"idle_heroes/idle_heroes_capture_context2_frame879.cpp",
"idle_heroes/idle_heroes_capture_context2_frame880.cpp",
"idle_heroes/idle_heroes_capture_context2_frame881.cpp",
"idle_heroes/idle_heroes_capture_context2_frame882.cpp",
"idle_heroes/idle_heroes_capture_context2_frame883.cpp",
"idle_heroes/idle_heroes_capture_context2_frame884.cpp",
"idle_heroes/idle_heroes_capture_context2_frame885.cpp",
"idle_heroes/idle_heroes_capture_context2_frame886.cpp",
"idle_heroes/idle_heroes_capture_context2_frame887.cpp",
"idle_heroes/idle_heroes_capture_context2_frame888.cpp",
"idle_heroes/idle_heroes_capture_context2_frame889.cpp",
"idle_heroes/idle_heroes_capture_context2_frame890.cpp",
"idle_heroes/idle_heroes_capture_context2_frame891.cpp",
"idle_heroes/idle_heroes_capture_context2_frame892.cpp",
"idle_heroes/idle_heroes_capture_context2_frame893.cpp",
"idle_heroes/idle_heroes_capture_context2_frame894.cpp",
"idle_heroes/idle_heroes_capture_context2_frame895.cpp",
"idle_heroes/idle_heroes_capture_context2_frame896.cpp",
"idle_heroes/idle_heroes_capture_context2_frame897.cpp",
"idle_heroes/idle_heroes_capture_context2_frame898.cpp",
"idle_heroes/idle_heroes_capture_context2_frame899.cpp",
"idle_heroes/idle_heroes_capture_context2_frame900.cpp",
"idle_heroes/idle_heroes_capture_context2_frame901.cpp",
"idle_heroes/idle_heroes_capture_context2_frame902.cpp",
"idle_heroes/idle_heroes_capture_context2_frame903.cpp",
"idle_heroes/idle_heroes_capture_context2_frame904.cpp",
"idle_heroes/idle_heroes_capture_context2_frame905.cpp",
"idle_heroes/idle_heroes_capture_context2_frame906.cpp",
"idle_heroes/idle_heroes_capture_context2_frame907.cpp",
"idle_heroes/idle_heroes_capture_context2_frame908.cpp",
"idle_heroes/idle_heroes_capture_context2_frame909.cpp",
"idle_heroes/idle_heroes_capture_context2_frame910.cpp",
"idle_heroes/idle_heroes_capture_context2_frame911.cpp",
"idle_heroes/idle_heroes_capture_context2_frame912.cpp",
"idle_heroes/idle_heroes_capture_context2_frame913.cpp",
"idle_heroes/idle_heroes_capture_context2_frame914.cpp",
"idle_heroes/idle_heroes_capture_context2_frame915.cpp",
"idle_heroes/idle_heroes_capture_context2_frame916.cpp",
"idle_heroes/idle_heroes_capture_context2_frame917.cpp",
"idle_heroes/idle_heroes_capture_context2_frame918.cpp",
"idle_heroes/idle_heroes_capture_context2_frame919.cpp",
"idle_heroes/idle_heroes_capture_context2_frame920.cpp",
"idle_heroes/idle_heroes_capture_context2_frame921.cpp",
"idle_heroes/idle_heroes_capture_context2_frame922.cpp",
"idle_heroes/idle_heroes_capture_context2_frame923.cpp",
"idle_heroes/idle_heroes_capture_context2_frame924.cpp",
"idle_heroes/idle_heroes_capture_context2_frame925.cpp",
"idle_heroes/idle_heroes_capture_context2_frame926.cpp",
"idle_heroes/idle_heroes_capture_context2_frame927.cpp",
"idle_heroes/idle_heroes_capture_context2_frame928.cpp",
"idle_heroes/idle_heroes_capture_context2_frame929.cpp",
"idle_heroes/idle_heroes_capture_context2_frame930.cpp",
"idle_heroes/idle_heroes_capture_context2_frame931.cpp",
"idle_heroes/idle_heroes_capture_context2_frame932.cpp",
"idle_heroes/idle_heroes_capture_context2_frame933.cpp",
"idle_heroes/idle_heroes_capture_context2_frame934.cpp",
"idle_heroes/idle_heroes_capture_context2_frame935.cpp",
"idle_heroes/idle_heroes_capture_context2_frame936.cpp",
"idle_heroes/idle_heroes_capture_context2_frame937.cpp",
"idle_heroes/idle_heroes_capture_context2_frame938.cpp",
"idle_heroes/idle_heroes_capture_context2_frame939.cpp",
"idle_heroes/idle_heroes_capture_context2_frame940.cpp",
"idle_heroes/idle_heroes_capture_context2_frame941.cpp",
"idle_heroes/idle_heroes_capture_context2_frame942.cpp",
"idle_heroes/idle_heroes_capture_context2_frame943.cpp",
"idle_heroes/idle_heroes_capture_context2_frame944.cpp",
"idle_heroes/idle_heroes_capture_context2_frame945.cpp",
"idle_heroes/idle_heroes_capture_context2_frame946.cpp",
"idle_heroes/idle_heroes_capture_context2_frame947.cpp",
"idle_heroes/idle_heroes_capture_context2_frame948.cpp",
"idle_heroes/idle_heroes_capture_context2_frame949.cpp",
"idle_heroes/idle_heroes_capture_context2_frame950.cpp",
"idle_heroes/idle_heroes_capture_context2_frame951.cpp",
"idle_heroes/idle_heroes_capture_context2_frame952.cpp",
"idle_heroes/idle_heroes_capture_context2_frame953.cpp",
"idle_heroes/idle_heroes_capture_context2_frame954.cpp",
"idle_heroes/idle_heroes_capture_context2_frame955.cpp",
"idle_heroes/idle_heroes_capture_context2_frame956.cpp",
"idle_heroes/idle_heroes_capture_context2_frame957.cpp",
"idle_heroes/idle_heroes_capture_context2_frame958.cpp",
"idle_heroes/idle_heroes_capture_context2_frame959.cpp",
"idle_heroes/idle_heroes_capture_context2_frame960.cpp",
"idle_heroes/idle_heroes_capture_context2_frame961.cpp",
"idle_heroes/idle_heroes_capture_context2_frame962.cpp",
"idle_heroes/idle_heroes_capture_context2_frame963.cpp",
"idle_heroes/idle_heroes_capture_context2_frame964.cpp",
"idle_heroes/idle_heroes_capture_context2_frame965.cpp",
"idle_heroes/idle_heroes_capture_context2_frame966.cpp",
"idle_heroes/idle_heroes_capture_context2_frame967.cpp",
"idle_heroes/idle_heroes_capture_context2_frame968.cpp",
"idle_heroes/idle_heroes_capture_context2_frame969.cpp",
"idle_heroes/idle_heroes_capture_context2_frame970.cpp",
"idle_heroes/idle_heroes_capture_context2_frame971.cpp",
"idle_heroes/idle_heroes_capture_context2_frame972.cpp",
"idle_heroes/idle_heroes_capture_context2_frame973.cpp",
"idle_heroes/idle_heroes_capture_context2_frame974.cpp",
"idle_heroes/idle_heroes_capture_context2_frame975.cpp",
"idle_heroes/idle_heroes_capture_context2_frame976.cpp",
"idle_heroes/idle_heroes_capture_context2_frame977.cpp",
"idle_heroes/idle_heroes_capture_context2_frame978.cpp",
"idle_heroes/idle_heroes_capture_context2_frame979.cpp",
"idle_heroes/idle_heroes_capture_context2_frame980.cpp",
"idle_heroes/idle_heroes_capture_context2_frame981.cpp",
"idle_heroes/idle_heroes_capture_context2_frame982.cpp",
"idle_heroes/idle_heroes_capture_context2_frame983.cpp",
"idle_heroes/idle_heroes_capture_context2_frame984.cpp",
"idle_heroes/idle_heroes_capture_context2_frame985.cpp",
"idle_heroes/idle_heroes_capture_context2_frame986.cpp",
"idle_heroes/idle_heroes_capture_context2_frame987.cpp",
"idle_heroes/idle_heroes_capture_context2_frame988.cpp",
"idle_heroes/idle_heroes_capture_context2_frame989.cpp",
"idle_heroes/idle_heroes_capture_context2_frame990.cpp",
"idle_heroes/idle_heroes_capture_context2_frame991.cpp",
"idle_heroes/idle_heroes_capture_context2_frame992.cpp",
"idle_heroes/idle_heroes_capture_context2_frame993.cpp",
"idle_heroes/idle_heroes_capture_context2_frame994.cpp",
"idle_heroes/idle_heroes_capture_context2_frame995.cpp",
"idle_heroes/idle_heroes_capture_context2_frame996.cpp",
"idle_heroes/idle_heroes_capture_context2_frame997.cpp",
"idle_heroes/idle_heroes_capture_context2_frame998.cpp",
"idle_heroes/idle_heroes_capture_context2_frame999.cpp",
],
],
[
"junes_journey",
1,
[
"junes_journey/junes_journey_capture_context1_frame001.cpp",
"junes_journey/junes_journey_capture_context1_frame002.cpp",
"junes_journey/junes_journey_capture_context1_frame003.cpp",
"junes_journey/junes_journey_capture_context1_frame004.cpp",
"junes_journey/junes_journey_capture_context1_frame005.cpp",
"junes_journey/junes_journey_capture_context1_frame006.cpp",
"junes_journey/junes_journey_capture_context1_frame007.cpp",
"junes_journey/junes_journey_capture_context1_frame008.cpp",
"junes_journey/junes_journey_capture_context1_frame009.cpp",
"junes_journey/junes_journey_capture_context1_frame010.cpp",
],
],
[
"kartrider_rush",
1,
[
"kartrider_rush/kartrider_rush_capture_context1_frame001.cpp",
"kartrider_rush/kartrider_rush_capture_context1_frame002.cpp",
"kartrider_rush/kartrider_rush_capture_context1_frame003.cpp",
"kartrider_rush/kartrider_rush_capture_context1_frame004.cpp",
"kartrider_rush/kartrider_rush_capture_context1_frame005.cpp",
"kartrider_rush/kartrider_rush_capture_context1_frame006.cpp",
"kartrider_rush/kartrider_rush_capture_context1_frame007.cpp",
"kartrider_rush/kartrider_rush_capture_context1_frame008.cpp",
"kartrider_rush/kartrider_rush_capture_context1_frame009.cpp",
"kartrider_rush/kartrider_rush_capture_context1_frame010.cpp",
],
],
[
"klondike_adventures",
1,
[
"klondike_adventures/klondike_adventures_capture_context1_frame001.cpp",
"klondike_adventures/klondike_adventures_capture_context1_frame002.cpp",
"klondike_adventures/klondike_adventures_capture_context1_frame003.cpp",
"klondike_adventures/klondike_adventures_capture_context1_frame004.cpp",
"klondike_adventures/klondike_adventures_capture_context1_frame005.cpp",
"klondike_adventures/klondike_adventures_capture_context1_frame006.cpp",
"klondike_adventures/klondike_adventures_capture_context1_frame007.cpp",
"klondike_adventures/klondike_adventures_capture_context1_frame008.cpp",
"klondike_adventures/klondike_adventures_capture_context1_frame009.cpp",
"klondike_adventures/klondike_adventures_capture_context1_frame010.cpp",
],
],
[
"league_of_legends_wild_rift",
1,
[
"league_of_legends_wild_rift/league_of_legends_wild_rift_capture_context1_frame001.cpp",
"league_of_legends_wild_rift/league_of_legends_wild_rift_capture_context1_frame002.cpp",
"league_of_legends_wild_rift/league_of_legends_wild_rift_capture_context1_frame003.cpp",
"league_of_legends_wild_rift/league_of_legends_wild_rift_capture_context1_frame004.cpp",
"league_of_legends_wild_rift/league_of_legends_wild_rift_capture_context1_frame005.cpp",
"league_of_legends_wild_rift/league_of_legends_wild_rift_capture_context1_frame006.cpp",
"league_of_legends_wild_rift/league_of_legends_wild_rift_capture_context1_frame007.cpp",
"league_of_legends_wild_rift/league_of_legends_wild_rift_capture_context1_frame008.cpp",
"league_of_legends_wild_rift/league_of_legends_wild_rift_capture_context1_frame009.cpp",
"league_of_legends_wild_rift/league_of_legends_wild_rift_capture_context1_frame010.cpp",
],
],
[
"lego_legacy",
1,
[
"lego_legacy/lego_legacy_capture_context1_frame001.cpp",
"lego_legacy/lego_legacy_capture_context1_frame002.cpp",
"lego_legacy/lego_legacy_capture_context1_frame003.cpp",
"lego_legacy/lego_legacy_capture_context1_frame004.cpp",
"lego_legacy/lego_legacy_capture_context1_frame005.cpp",
"lego_legacy/lego_legacy_capture_context1_frame006.cpp",
"lego_legacy/lego_legacy_capture_context1_frame007.cpp",
"lego_legacy/lego_legacy_capture_context1_frame008.cpp",
"lego_legacy/lego_legacy_capture_context1_frame009.cpp",
"lego_legacy/lego_legacy_capture_context1_frame010.cpp",
],
],
[
"lineage_m",
1,
[
"lineage_m/lineage_m_capture_context1_frame001.cpp",
"lineage_m/lineage_m_capture_context1_frame002.cpp",
"lineage_m/lineage_m_capture_context1_frame003.cpp",
"lineage_m/lineage_m_capture_context1_frame004.cpp",
"lineage_m/lineage_m_capture_context1_frame005.cpp",
"lineage_m/lineage_m_capture_context1_frame006.cpp",
"lineage_m/lineage_m_capture_context1_frame007.cpp",
"lineage_m/lineage_m_capture_context1_frame008.cpp",
"lineage_m/lineage_m_capture_context1_frame009.cpp",
"lineage_m/lineage_m_capture_context1_frame010.cpp",
],
],
[
"ludo_king",
1,
[
"ludo_king/ludo_king_capture_context1_frame001.cpp",
"ludo_king/ludo_king_capture_context1_frame002.cpp",
"ludo_king/ludo_king_capture_context1_frame003.cpp",
"ludo_king/ludo_king_capture_context1_frame004.cpp",
"ludo_king/ludo_king_capture_context1_frame005.cpp",
"ludo_king/ludo_king_capture_context1_frame006.cpp",
"ludo_king/ludo_king_capture_context1_frame007.cpp",
"ludo_king/ludo_king_capture_context1_frame008.cpp",
"ludo_king/ludo_king_capture_context1_frame009.cpp",
"ludo_king/ludo_king_capture_context1_frame010.cpp",
"ludo_king/ludo_king_capture_context1_frame011.cpp",
"ludo_king/ludo_king_capture_context1_frame012.cpp",
"ludo_king/ludo_king_capture_context1_frame013.cpp",
"ludo_king/ludo_king_capture_context1_frame014.cpp",
"ludo_king/ludo_king_capture_context1_frame015.cpp",
"ludo_king/ludo_king_capture_context1_frame016.cpp",
"ludo_king/ludo_king_capture_context1_frame017.cpp",
"ludo_king/ludo_king_capture_context1_frame018.cpp",
"ludo_king/ludo_king_capture_context1_frame019.cpp",
"ludo_king/ludo_king_capture_context1_frame020.cpp",
"ludo_king/ludo_king_capture_context1_frame021.cpp",
"ludo_king/ludo_king_capture_context1_frame022.cpp",
"ludo_king/ludo_king_capture_context1_frame023.cpp",
"ludo_king/ludo_king_capture_context1_frame024.cpp",
"ludo_king/ludo_king_capture_context1_frame025.cpp",
"ludo_king/ludo_king_capture_context1_frame026.cpp",
"ludo_king/ludo_king_capture_context1_frame027.cpp",
"ludo_king/ludo_king_capture_context1_frame028.cpp",
"ludo_king/ludo_king_capture_context1_frame029.cpp",
"ludo_king/ludo_king_capture_context1_frame030.cpp",
],
],
[
"magic_tiles_3",
1,
[
"magic_tiles_3/magic_tiles_3_capture_context1_frame001.cpp",
"magic_tiles_3/magic_tiles_3_capture_context1_frame002.cpp",
"magic_tiles_3/magic_tiles_3_capture_context1_frame003.cpp",
"magic_tiles_3/magic_tiles_3_capture_context1_frame004.cpp",
"magic_tiles_3/magic_tiles_3_capture_context1_frame005.cpp",
"magic_tiles_3/magic_tiles_3_capture_context1_frame006.cpp",
"magic_tiles_3/magic_tiles_3_capture_context1_frame007.cpp",
"magic_tiles_3/magic_tiles_3_capture_context1_frame008.cpp",
"magic_tiles_3/magic_tiles_3_capture_context1_frame009.cpp",
"magic_tiles_3/magic_tiles_3_capture_context1_frame010.cpp",
],
],
[
"manhattan_10",
1,
[
"manhattan_10/manhattan_10_capture_context1_frame001.cpp",
"manhattan_10/manhattan_10_capture_context1_frame002.cpp",
"manhattan_10/manhattan_10_capture_context1_frame003.cpp",
"manhattan_10/manhattan_10_capture_context1_frame004.cpp",
"manhattan_10/manhattan_10_capture_context1_frame005.cpp",
"manhattan_10/manhattan_10_capture_context1_frame006.cpp",
"manhattan_10/manhattan_10_capture_context1_frame007.cpp",
"manhattan_10/manhattan_10_capture_context1_frame008.cpp",
"manhattan_10/manhattan_10_capture_context1_frame009.cpp",
"manhattan_10/manhattan_10_capture_context1_frame010.cpp",
"manhattan_10/manhattan_10_capture_context1_frame011.cpp",
],
],
[
"manhattan_31",
1,
[
"manhattan_31/manhattan_31_capture_context1_frame001.cpp",
"manhattan_31/manhattan_31_capture_context1_frame002.cpp",
"manhattan_31/manhattan_31_capture_context1_frame003.cpp",
"manhattan_31/manhattan_31_capture_context1_frame004.cpp",
"manhattan_31/manhattan_31_capture_context1_frame005.cpp",
"manhattan_31/manhattan_31_capture_context1_frame006.cpp",
"manhattan_31/manhattan_31_capture_context1_frame007.cpp",
"manhattan_31/manhattan_31_capture_context1_frame008.cpp",
"manhattan_31/manhattan_31_capture_context1_frame009.cpp",
"manhattan_31/manhattan_31_capture_context1_frame010.cpp",
"manhattan_31/manhattan_31_capture_context1_frame011.cpp",
"manhattan_31/manhattan_31_capture_context1_frame012.cpp",
"manhattan_31/manhattan_31_capture_context1_frame013.cpp",
"manhattan_31/manhattan_31_capture_context1_frame014.cpp",
"manhattan_31/manhattan_31_capture_context1_frame015.cpp",
"manhattan_31/manhattan_31_capture_context1_frame016.cpp",
"manhattan_31/manhattan_31_capture_context1_frame017.cpp",
"manhattan_31/manhattan_31_capture_context1_frame018.cpp",
"manhattan_31/manhattan_31_capture_context1_frame019.cpp",
"manhattan_31/manhattan_31_capture_context1_frame020.cpp",
"manhattan_31/manhattan_31_capture_context1_frame021.cpp",
"manhattan_31/manhattan_31_capture_context1_frame022.cpp",
"manhattan_31/manhattan_31_capture_context1_frame023.cpp",
"manhattan_31/manhattan_31_capture_context1_frame024.cpp",
"manhattan_31/manhattan_31_capture_context1_frame025.cpp",
"manhattan_31/manhattan_31_capture_context1_frame026.cpp",
"manhattan_31/manhattan_31_capture_context1_frame027.cpp",
"manhattan_31/manhattan_31_capture_context1_frame028.cpp",
"manhattan_31/manhattan_31_capture_context1_frame029.cpp",
"manhattan_31/manhattan_31_capture_context1_frame030.cpp",
"manhattan_31/manhattan_31_capture_context1_frame031.cpp",
"manhattan_31/manhattan_31_capture_context1_frame032.cpp",
"manhattan_31/manhattan_31_capture_context1_frame033.cpp",
"manhattan_31/manhattan_31_capture_context1_frame034.cpp",
"manhattan_31/manhattan_31_capture_context1_frame035.cpp",
"manhattan_31/manhattan_31_capture_context1_frame036.cpp",
"manhattan_31/manhattan_31_capture_context1_frame037.cpp",
"manhattan_31/manhattan_31_capture_context1_frame038.cpp",
"manhattan_31/manhattan_31_capture_context1_frame039.cpp",
"manhattan_31/manhattan_31_capture_context1_frame040.cpp",
"manhattan_31/manhattan_31_capture_context1_frame041.cpp",
"manhattan_31/manhattan_31_capture_context1_frame042.cpp",
"manhattan_31/manhattan_31_capture_context1_frame043.cpp",
"manhattan_31/manhattan_31_capture_context1_frame044.cpp",
"manhattan_31/manhattan_31_capture_context1_frame045.cpp",
"manhattan_31/manhattan_31_capture_context1_frame046.cpp",
"manhattan_31/manhattan_31_capture_context1_frame047.cpp",
"manhattan_31/manhattan_31_capture_context1_frame048.cpp",
"manhattan_31/manhattan_31_capture_context1_frame049.cpp",
"manhattan_31/manhattan_31_capture_context1_frame050.cpp",
"manhattan_31/manhattan_31_capture_context1_frame051.cpp",
"manhattan_31/manhattan_31_capture_context1_frame052.cpp",
"manhattan_31/manhattan_31_capture_context1_frame053.cpp",
"manhattan_31/manhattan_31_capture_context1_frame054.cpp",
"manhattan_31/manhattan_31_capture_context1_frame055.cpp",
"manhattan_31/manhattan_31_capture_context1_frame056.cpp",
"manhattan_31/manhattan_31_capture_context1_frame057.cpp",
"manhattan_31/manhattan_31_capture_context1_frame058.cpp",
"manhattan_31/manhattan_31_capture_context1_frame059.cpp",
"manhattan_31/manhattan_31_capture_context1_frame060.cpp",
"manhattan_31/manhattan_31_capture_context1_frame061.cpp",
"manhattan_31/manhattan_31_capture_context1_frame062.cpp",
"manhattan_31/manhattan_31_capture_context1_frame063.cpp",
"manhattan_31/manhattan_31_capture_context1_frame064.cpp",
"manhattan_31/manhattan_31_capture_context1_frame065.cpp",
"manhattan_31/manhattan_31_capture_context1_frame066.cpp",
"manhattan_31/manhattan_31_capture_context1_frame067.cpp",
"manhattan_31/manhattan_31_capture_context1_frame068.cpp",
"manhattan_31/manhattan_31_capture_context1_frame069.cpp",
"manhattan_31/manhattan_31_capture_context1_frame070.cpp",
"manhattan_31/manhattan_31_capture_context1_frame071.cpp",
"manhattan_31/manhattan_31_capture_context1_frame072.cpp",
"manhattan_31/manhattan_31_capture_context1_frame073.cpp",
"manhattan_31/manhattan_31_capture_context1_frame074.cpp",
"manhattan_31/manhattan_31_capture_context1_frame075.cpp",
"manhattan_31/manhattan_31_capture_context1_frame076.cpp",
"manhattan_31/manhattan_31_capture_context1_frame077.cpp",
"manhattan_31/manhattan_31_capture_context1_frame078.cpp",
"manhattan_31/manhattan_31_capture_context1_frame079.cpp",
"manhattan_31/manhattan_31_capture_context1_frame080.cpp",
"manhattan_31/manhattan_31_capture_context1_frame081.cpp",
"manhattan_31/manhattan_31_capture_context1_frame082.cpp",
"manhattan_31/manhattan_31_capture_context1_frame083.cpp",
"manhattan_31/manhattan_31_capture_context1_frame084.cpp",
"manhattan_31/manhattan_31_capture_context1_frame085.cpp",
"manhattan_31/manhattan_31_capture_context1_frame086.cpp",
"manhattan_31/manhattan_31_capture_context1_frame087.cpp",
"manhattan_31/manhattan_31_capture_context1_frame088.cpp",
"manhattan_31/manhattan_31_capture_context1_frame089.cpp",
"manhattan_31/manhattan_31_capture_context1_frame090.cpp",
"manhattan_31/manhattan_31_capture_context1_frame091.cpp",
"manhattan_31/manhattan_31_capture_context1_frame092.cpp",
"manhattan_31/manhattan_31_capture_context1_frame093.cpp",
"manhattan_31/manhattan_31_capture_context1_frame094.cpp",
"manhattan_31/manhattan_31_capture_context1_frame095.cpp",
"manhattan_31/manhattan_31_capture_context1_frame096.cpp",
"manhattan_31/manhattan_31_capture_context1_frame097.cpp",
"manhattan_31/manhattan_31_capture_context1_frame098.cpp",
"manhattan_31/manhattan_31_capture_context1_frame099.cpp",
"manhattan_31/manhattan_31_capture_context1_frame100.cpp",
],
],
[
"marvel_contest_of_champions",
1,
[
"marvel_contest_of_champions/marvel_contest_of_champions_capture_context1_frame001.cpp",
"marvel_contest_of_champions/marvel_contest_of_champions_capture_context1_frame002.cpp",
"marvel_contest_of_champions/marvel_contest_of_champions_capture_context1_frame003.cpp",
"marvel_contest_of_champions/marvel_contest_of_champions_capture_context1_frame004.cpp",
"marvel_contest_of_champions/marvel_contest_of_champions_capture_context1_frame005.cpp",
"marvel_contest_of_champions/marvel_contest_of_champions_capture_context1_frame006.cpp",
"marvel_contest_of_champions/marvel_contest_of_champions_capture_context1_frame007.cpp",
"marvel_contest_of_champions/marvel_contest_of_champions_capture_context1_frame008.cpp",
"marvel_contest_of_champions/marvel_contest_of_champions_capture_context1_frame009.cpp",
"marvel_contest_of_champions/marvel_contest_of_champions_capture_context1_frame010.cpp",
],
],
[
"messenger_lite",
1,
[
"messenger_lite/messenger_lite_capture_context1_frame001.cpp",
"messenger_lite/messenger_lite_capture_context1_frame002.cpp",
"messenger_lite/messenger_lite_capture_context1_frame003.cpp",
"messenger_lite/messenger_lite_capture_context1_frame004.cpp",
"messenger_lite/messenger_lite_capture_context1_frame005.cpp",
"messenger_lite/messenger_lite_capture_context1_frame006.cpp",
"messenger_lite/messenger_lite_capture_context1_frame007.cpp",
"messenger_lite/messenger_lite_capture_context1_frame008.cpp",
"messenger_lite/messenger_lite_capture_context1_frame009.cpp",
"messenger_lite/messenger_lite_capture_context1_frame010.cpp",
],
],
[
"minecraft",
1,
[
"minecraft/minecraft_capture_context1_frame001.cpp",
"minecraft/minecraft_capture_context1_frame002.cpp",
"minecraft/minecraft_capture_context1_frame003.cpp",
"minecraft/minecraft_capture_context1_frame004.cpp",
"minecraft/minecraft_capture_context1_frame005.cpp",
"minecraft/minecraft_capture_context1_frame006.cpp",
"minecraft/minecraft_capture_context1_frame007.cpp",
"minecraft/minecraft_capture_context1_frame008.cpp",
"minecraft/minecraft_capture_context1_frame009.cpp",
"minecraft/minecraft_capture_context1_frame010.cpp",
],
],
[
"mobile_legends",
1,
[
"mobile_legends/mobile_legends_capture_context1_frame001.cpp",
"mobile_legends/mobile_legends_capture_context1_frame002.cpp",
"mobile_legends/mobile_legends_capture_context1_frame003.cpp",
"mobile_legends/mobile_legends_capture_context1_frame004.cpp",
"mobile_legends/mobile_legends_capture_context1_frame005.cpp",
"mobile_legends/mobile_legends_capture_context1_frame006.cpp",
"mobile_legends/mobile_legends_capture_context1_frame007.cpp",
"mobile_legends/mobile_legends_capture_context1_frame008.cpp",
"mobile_legends/mobile_legends_capture_context1_frame009.cpp",
"mobile_legends/mobile_legends_capture_context1_frame010.cpp",
],
],
[
"nba2k20_800",
1,
[
"nba2k20_800/nba2k20_800_capture_context1_frame001.cpp",
"nba2k20_800/nba2k20_800_capture_context1_frame002.cpp",
"nba2k20_800/nba2k20_800_capture_context1_frame003.cpp",
"nba2k20_800/nba2k20_800_capture_context1_frame004.cpp",
"nba2k20_800/nba2k20_800_capture_context1_frame005.cpp",
"nba2k20_800/nba2k20_800_capture_context1_frame006.cpp",
"nba2k20_800/nba2k20_800_capture_context1_frame007.cpp",
"nba2k20_800/nba2k20_800_capture_context1_frame008.cpp",
"nba2k20_800/nba2k20_800_capture_context1_frame009.cpp",
"nba2k20_800/nba2k20_800_capture_context1_frame010.cpp",
"nba2k20_800/nba2k20_800_capture_context1_frame011.cpp",
],
],
[
"one_punch_man",
1,
[
"one_punch_man/one_punch_man_capture_context1_frame001.cpp",
"one_punch_man/one_punch_man_capture_context1_frame002.cpp",
"one_punch_man/one_punch_man_capture_context1_frame003.cpp",
"one_punch_man/one_punch_man_capture_context1_frame004.cpp",
"one_punch_man/one_punch_man_capture_context1_frame005.cpp",
"one_punch_man/one_punch_man_capture_context1_frame006.cpp",
"one_punch_man/one_punch_man_capture_context1_frame007.cpp",
"one_punch_man/one_punch_man_capture_context1_frame008.cpp",
"one_punch_man/one_punch_man_capture_context1_frame009.cpp",
"one_punch_man/one_punch_man_capture_context1_frame010.cpp",
],
],
[
"plants_vs_zombies_2",
1,
[
"plants_vs_zombies_2/plants_vs_zombies_2_capture_context1_frame001.cpp",
"plants_vs_zombies_2/plants_vs_zombies_2_capture_context1_frame002.cpp",
"plants_vs_zombies_2/plants_vs_zombies_2_capture_context1_frame003.cpp",
"plants_vs_zombies_2/plants_vs_zombies_2_capture_context1_frame004.cpp",
"plants_vs_zombies_2/plants_vs_zombies_2_capture_context1_frame005.cpp",
"plants_vs_zombies_2/plants_vs_zombies_2_capture_context1_frame006.cpp",
"plants_vs_zombies_2/plants_vs_zombies_2_capture_context1_frame007.cpp",
"plants_vs_zombies_2/plants_vs_zombies_2_capture_context1_frame008.cpp",
"plants_vs_zombies_2/plants_vs_zombies_2_capture_context1_frame009.cpp",
"plants_vs_zombies_2/plants_vs_zombies_2_capture_context1_frame010.cpp",
],
],
[
"pokemon_go",
2,
[
"pokemon_go/pokemon_go_capture_context2_frame001.cpp",
"pokemon_go/pokemon_go_capture_context2_frame002.cpp",
"pokemon_go/pokemon_go_capture_context2_frame003.cpp",
"pokemon_go/pokemon_go_capture_context2_frame004.cpp",
"pokemon_go/pokemon_go_capture_context2_frame005.cpp",
"pokemon_go/pokemon_go_capture_context2_frame006.cpp",
"pokemon_go/pokemon_go_capture_context2_frame007.cpp",
"pokemon_go/pokemon_go_capture_context2_frame008.cpp",
"pokemon_go/pokemon_go_capture_context2_frame009.cpp",
"pokemon_go/pokemon_go_capture_context2_frame010.cpp",
"pokemon_go/pokemon_go_capture_context2_frame011.cpp",
"pokemon_go/pokemon_go_capture_context2_frame012.cpp",
"pokemon_go/pokemon_go_capture_context2_frame013.cpp",
"pokemon_go/pokemon_go_capture_context2_frame014.cpp",
"pokemon_go/pokemon_go_capture_context2_frame015.cpp",
"pokemon_go/pokemon_go_capture_context2_frame016.cpp",
"pokemon_go/pokemon_go_capture_context2_frame017.cpp",
"pokemon_go/pokemon_go_capture_context2_frame018.cpp",
"pokemon_go/pokemon_go_capture_context2_frame019.cpp",
"pokemon_go/pokemon_go_capture_context2_frame020.cpp",
"pokemon_go/pokemon_go_capture_context2_frame021.cpp",
"pokemon_go/pokemon_go_capture_context2_frame022.cpp",
"pokemon_go/pokemon_go_capture_context2_frame023.cpp",
"pokemon_go/pokemon_go_capture_context2_frame024.cpp",
"pokemon_go/pokemon_go_capture_context2_frame025.cpp",
"pokemon_go/pokemon_go_capture_context2_frame026.cpp",
"pokemon_go/pokemon_go_capture_context2_frame027.cpp",
"pokemon_go/pokemon_go_capture_context2_frame028.cpp",
"pokemon_go/pokemon_go_capture_context2_frame029.cpp",
"pokemon_go/pokemon_go_capture_context2_frame030.cpp",
"pokemon_go/pokemon_go_capture_context2_frame031.cpp",
"pokemon_go/pokemon_go_capture_context2_frame032.cpp",
"pokemon_go/pokemon_go_capture_context2_frame033.cpp",
"pokemon_go/pokemon_go_capture_context2_frame034.cpp",
"pokemon_go/pokemon_go_capture_context2_frame035.cpp",
"pokemon_go/pokemon_go_capture_context2_frame036.cpp",
"pokemon_go/pokemon_go_capture_context2_frame037.cpp",
"pokemon_go/pokemon_go_capture_context2_frame038.cpp",
"pokemon_go/pokemon_go_capture_context2_frame039.cpp",
"pokemon_go/pokemon_go_capture_context2_frame040.cpp",
"pokemon_go/pokemon_go_capture_context2_frame041.cpp",
"pokemon_go/pokemon_go_capture_context2_frame042.cpp",
"pokemon_go/pokemon_go_capture_context2_frame043.cpp",
"pokemon_go/pokemon_go_capture_context2_frame044.cpp",
"pokemon_go/pokemon_go_capture_context2_frame045.cpp",
"pokemon_go/pokemon_go_capture_context2_frame046.cpp",
"pokemon_go/pokemon_go_capture_context2_frame047.cpp",
"pokemon_go/pokemon_go_capture_context2_frame048.cpp",
"pokemon_go/pokemon_go_capture_context2_frame049.cpp",
"pokemon_go/pokemon_go_capture_context2_frame050.cpp",
"pokemon_go/pokemon_go_capture_context2_frame051.cpp",
"pokemon_go/pokemon_go_capture_context2_frame052.cpp",
"pokemon_go/pokemon_go_capture_context2_frame053.cpp",
"pokemon_go/pokemon_go_capture_context2_frame054.cpp",
"pokemon_go/pokemon_go_capture_context2_frame055.cpp",
"pokemon_go/pokemon_go_capture_context2_frame056.cpp",
"pokemon_go/pokemon_go_capture_context2_frame057.cpp",
"pokemon_go/pokemon_go_capture_context2_frame058.cpp",
"pokemon_go/pokemon_go_capture_context2_frame059.cpp",
"pokemon_go/pokemon_go_capture_context2_frame060.cpp",
"pokemon_go/pokemon_go_capture_context2_frame061.cpp",
"pokemon_go/pokemon_go_capture_context2_frame062.cpp",
"pokemon_go/pokemon_go_capture_context2_frame063.cpp",
"pokemon_go/pokemon_go_capture_context2_frame064.cpp",
"pokemon_go/pokemon_go_capture_context2_frame065.cpp",
"pokemon_go/pokemon_go_capture_context2_frame066.cpp",
"pokemon_go/pokemon_go_capture_context2_frame067.cpp",
"pokemon_go/pokemon_go_capture_context2_frame068.cpp",
"pokemon_go/pokemon_go_capture_context2_frame069.cpp",
"pokemon_go/pokemon_go_capture_context2_frame070.cpp",
"pokemon_go/pokemon_go_capture_context2_frame071.cpp",
"pokemon_go/pokemon_go_capture_context2_frame072.cpp",
"pokemon_go/pokemon_go_capture_context2_frame073.cpp",
"pokemon_go/pokemon_go_capture_context2_frame074.cpp",
"pokemon_go/pokemon_go_capture_context2_frame075.cpp",
"pokemon_go/pokemon_go_capture_context2_frame076.cpp",
"pokemon_go/pokemon_go_capture_context2_frame077.cpp",
"pokemon_go/pokemon_go_capture_context2_frame078.cpp",
"pokemon_go/pokemon_go_capture_context2_frame079.cpp",
"pokemon_go/pokemon_go_capture_context2_frame080.cpp",
"pokemon_go/pokemon_go_capture_context2_frame081.cpp",
"pokemon_go/pokemon_go_capture_context2_frame082.cpp",
"pokemon_go/pokemon_go_capture_context2_frame083.cpp",
"pokemon_go/pokemon_go_capture_context2_frame084.cpp",
"pokemon_go/pokemon_go_capture_context2_frame085.cpp",
"pokemon_go/pokemon_go_capture_context2_frame086.cpp",
"pokemon_go/pokemon_go_capture_context2_frame087.cpp",
"pokemon_go/pokemon_go_capture_context2_frame088.cpp",
"pokemon_go/pokemon_go_capture_context2_frame089.cpp",
"pokemon_go/pokemon_go_capture_context2_frame090.cpp",
"pokemon_go/pokemon_go_capture_context2_frame091.cpp",
"pokemon_go/pokemon_go_capture_context2_frame092.cpp",
"pokemon_go/pokemon_go_capture_context2_frame093.cpp",
"pokemon_go/pokemon_go_capture_context2_frame094.cpp",
"pokemon_go/pokemon_go_capture_context2_frame095.cpp",
"pokemon_go/pokemon_go_capture_context2_frame096.cpp",
"pokemon_go/pokemon_go_capture_context2_frame097.cpp",
"pokemon_go/pokemon_go_capture_context2_frame098.cpp",
"pokemon_go/pokemon_go_capture_context2_frame099.cpp",
"pokemon_go/pokemon_go_capture_context2_frame100.cpp",
],
],
[
"professional_baseball_spirits",
1,
[
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame001.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame002.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame003.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame004.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame005.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame006.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame007.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame008.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame009.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame010.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame011.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame012.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame013.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame014.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame015.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame016.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame017.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame018.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame019.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame020.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame021.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame022.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame023.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame024.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame025.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame026.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame027.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame028.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame029.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame030.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame031.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame032.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame033.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame034.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame035.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame036.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame037.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame038.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame039.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame040.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame041.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame042.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame043.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame044.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame045.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame046.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame047.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame048.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame049.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame050.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame051.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame052.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame053.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame054.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame055.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame056.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame057.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame058.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame059.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame060.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame061.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame062.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame063.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame064.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame065.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame066.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame067.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame068.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame069.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame070.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame071.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame072.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame073.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame074.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame075.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame076.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame077.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame078.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame079.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame080.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame081.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame082.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame083.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame084.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame085.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame086.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame087.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame088.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame089.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame090.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame091.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame092.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame093.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame094.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame095.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame096.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame097.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame098.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame099.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame100.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame101.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame102.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame103.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame104.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame105.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame106.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame107.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame108.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame109.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame110.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame111.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame112.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame113.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame114.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame115.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame116.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame117.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame118.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame119.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame120.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame121.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame122.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame123.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame124.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame125.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame126.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame127.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame128.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame129.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame130.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame131.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame132.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame133.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame134.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame135.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame136.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame137.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame138.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame139.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame140.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame141.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame142.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame143.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame144.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame145.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame146.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame147.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame148.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame149.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame150.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame151.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame152.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame153.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame154.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame155.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame156.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame157.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame158.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame159.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame160.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame161.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame162.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame163.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame164.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame165.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame166.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame167.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame168.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame169.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame170.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame171.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame172.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame173.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame174.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame175.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame176.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame177.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame178.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame179.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame180.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame181.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame182.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame183.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame184.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame185.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame186.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame187.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame188.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame189.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame190.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame191.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame192.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame193.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame194.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame195.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame196.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame197.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame198.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame199.cpp",
"professional_baseball_spirits/professional_baseball_spirits_capture_context1_frame200.cpp",
],
],
[
"pubg_mobile_lite",
1,
[
"pubg_mobile_lite/pubg_mobile_lite_capture_context1_frame001.cpp",
"pubg_mobile_lite/pubg_mobile_lite_capture_context1_frame002.cpp",
"pubg_mobile_lite/pubg_mobile_lite_capture_context1_frame003.cpp",
"pubg_mobile_lite/pubg_mobile_lite_capture_context1_frame004.cpp",
"pubg_mobile_lite/pubg_mobile_lite_capture_context1_frame005.cpp",
"pubg_mobile_lite/pubg_mobile_lite_capture_context1_frame006.cpp",
"pubg_mobile_lite/pubg_mobile_lite_capture_context1_frame007.cpp",
"pubg_mobile_lite/pubg_mobile_lite_capture_context1_frame008.cpp",
"pubg_mobile_lite/pubg_mobile_lite_capture_context1_frame009.cpp",
"pubg_mobile_lite/pubg_mobile_lite_capture_context1_frame010.cpp",
],
],
[
"ragnarok_m_eternal_love",
1,
[
"ragnarok_m_eternal_love/ragnarok_m_eternal_love_capture_context1_frame001.cpp",
"ragnarok_m_eternal_love/ragnarok_m_eternal_love_capture_context1_frame002.cpp",
"ragnarok_m_eternal_love/ragnarok_m_eternal_love_capture_context1_frame003.cpp",
"ragnarok_m_eternal_love/ragnarok_m_eternal_love_capture_context1_frame004.cpp",
"ragnarok_m_eternal_love/ragnarok_m_eternal_love_capture_context1_frame005.cpp",
"ragnarok_m_eternal_love/ragnarok_m_eternal_love_capture_context1_frame006.cpp",
"ragnarok_m_eternal_love/ragnarok_m_eternal_love_capture_context1_frame007.cpp",
"ragnarok_m_eternal_love/ragnarok_m_eternal_love_capture_context1_frame008.cpp",
"ragnarok_m_eternal_love/ragnarok_m_eternal_love_capture_context1_frame009.cpp",
"ragnarok_m_eternal_love/ragnarok_m_eternal_love_capture_context1_frame010.cpp",
],
],
[
"raid_shadow_legends",
1,
[
"raid_shadow_legends/raid_shadow_legends_capture_context1_frame001.cpp",
"raid_shadow_legends/raid_shadow_legends_capture_context1_frame002.cpp",
"raid_shadow_legends/raid_shadow_legends_capture_context1_frame003.cpp",
"raid_shadow_legends/raid_shadow_legends_capture_context1_frame004.cpp",
"raid_shadow_legends/raid_shadow_legends_capture_context1_frame005.cpp",
"raid_shadow_legends/raid_shadow_legends_capture_context1_frame006.cpp",
"raid_shadow_legends/raid_shadow_legends_capture_context1_frame007.cpp",
"raid_shadow_legends/raid_shadow_legends_capture_context1_frame008.cpp",
"raid_shadow_legends/raid_shadow_legends_capture_context1_frame009.cpp",
"raid_shadow_legends/raid_shadow_legends_capture_context1_frame010.cpp",
],
],
[
"real_commando_secret_mission",
1,
[
"real_commando_secret_mission/real_commando_secret_mission_capture_context1_frame001.cpp",
"real_commando_secret_mission/real_commando_secret_mission_capture_context1_frame002.cpp",
"real_commando_secret_mission/real_commando_secret_mission_capture_context1_frame003.cpp",
"real_commando_secret_mission/real_commando_secret_mission_capture_context1_frame004.cpp",
"real_commando_secret_mission/real_commando_secret_mission_capture_context1_frame005.cpp",
"real_commando_secret_mission/real_commando_secret_mission_capture_context1_frame006.cpp",
"real_commando_secret_mission/real_commando_secret_mission_capture_context1_frame007.cpp",
"real_commando_secret_mission/real_commando_secret_mission_capture_context1_frame008.cpp",
"real_commando_secret_mission/real_commando_secret_mission_capture_context1_frame009.cpp",
"real_commando_secret_mission/real_commando_secret_mission_capture_context1_frame010.cpp",
],
],
[
"real_cricket_20",
1,
[
"real_cricket_20/real_cricket_20_capture_context1_frame001.cpp",
"real_cricket_20/real_cricket_20_capture_context1_frame002.cpp",
"real_cricket_20/real_cricket_20_capture_context1_frame003.cpp",
"real_cricket_20/real_cricket_20_capture_context1_frame004.cpp",
"real_cricket_20/real_cricket_20_capture_context1_frame005.cpp",
"real_cricket_20/real_cricket_20_capture_context1_frame006.cpp",
"real_cricket_20/real_cricket_20_capture_context1_frame007.cpp",
"real_cricket_20/real_cricket_20_capture_context1_frame008.cpp",
"real_cricket_20/real_cricket_20_capture_context1_frame009.cpp",
"real_cricket_20/real_cricket_20_capture_context1_frame010.cpp",
],
],
[
"real_gangster_crime",
1,
[
"real_gangster_crime/real_gangster_crime_capture_context1_frame001.cpp",
"real_gangster_crime/real_gangster_crime_capture_context1_frame002.cpp",
"real_gangster_crime/real_gangster_crime_capture_context1_frame003.cpp",
"real_gangster_crime/real_gangster_crime_capture_context1_frame004.cpp",
"real_gangster_crime/real_gangster_crime_capture_context1_frame005.cpp",
"real_gangster_crime/real_gangster_crime_capture_context1_frame006.cpp",
"real_gangster_crime/real_gangster_crime_capture_context1_frame007.cpp",
"real_gangster_crime/real_gangster_crime_capture_context1_frame008.cpp",
"real_gangster_crime/real_gangster_crime_capture_context1_frame009.cpp",
"real_gangster_crime/real_gangster_crime_capture_context1_frame010.cpp",
],
],
[
"rise_of_kingdoms",
1,
[
"rise_of_kingdoms/rise_of_kingdoms_capture_context1_frame001.cpp",
"rise_of_kingdoms/rise_of_kingdoms_capture_context1_frame002.cpp",
"rise_of_kingdoms/rise_of_kingdoms_capture_context1_frame003.cpp",
"rise_of_kingdoms/rise_of_kingdoms_capture_context1_frame004.cpp",
"rise_of_kingdoms/rise_of_kingdoms_capture_context1_frame005.cpp",
"rise_of_kingdoms/rise_of_kingdoms_capture_context1_frame006.cpp",
"rise_of_kingdoms/rise_of_kingdoms_capture_context1_frame007.cpp",
"rise_of_kingdoms/rise_of_kingdoms_capture_context1_frame008.cpp",
"rise_of_kingdoms/rise_of_kingdoms_capture_context1_frame009.cpp",
"rise_of_kingdoms/rise_of_kingdoms_capture_context1_frame010.cpp",
],
],
[
"romancing_saga",
1,
[
"romancing_saga/romancing_saga_capture_context1_frame001.cpp",
"romancing_saga/romancing_saga_capture_context1_frame002.cpp",
"romancing_saga/romancing_saga_capture_context1_frame003.cpp",
"romancing_saga/romancing_saga_capture_context1_frame004.cpp",
"romancing_saga/romancing_saga_capture_context1_frame005.cpp",
"romancing_saga/romancing_saga_capture_context1_frame006.cpp",
"romancing_saga/romancing_saga_capture_context1_frame007.cpp",
"romancing_saga/romancing_saga_capture_context1_frame008.cpp",
"romancing_saga/romancing_saga_capture_context1_frame009.cpp",
"romancing_saga/romancing_saga_capture_context1_frame010.cpp",
],
],
[
"rope_hero_vice_town",
1,
[
"rope_hero_vice_town/rope_hero_vice_town_capture_context1_frame001.cpp",
"rope_hero_vice_town/rope_hero_vice_town_capture_context1_frame002.cpp",
"rope_hero_vice_town/rope_hero_vice_town_capture_context1_frame003.cpp",
"rope_hero_vice_town/rope_hero_vice_town_capture_context1_frame004.cpp",
"rope_hero_vice_town/rope_hero_vice_town_capture_context1_frame005.cpp",
"rope_hero_vice_town/rope_hero_vice_town_capture_context1_frame006.cpp",
"rope_hero_vice_town/rope_hero_vice_town_capture_context1_frame007.cpp",
"rope_hero_vice_town/rope_hero_vice_town_capture_context1_frame008.cpp",
"rope_hero_vice_town/rope_hero_vice_town_capture_context1_frame009.cpp",
"rope_hero_vice_town/rope_hero_vice_town_capture_context1_frame010.cpp",
],
],
[
"saint_seiya_awakening",
1,
[
"saint_seiya_awakening/saint_seiya_awakening_capture_context1_frame001.cpp",
"saint_seiya_awakening/saint_seiya_awakening_capture_context1_frame002.cpp",
"saint_seiya_awakening/saint_seiya_awakening_capture_context1_frame003.cpp",
"saint_seiya_awakening/saint_seiya_awakening_capture_context1_frame004.cpp",
"saint_seiya_awakening/saint_seiya_awakening_capture_context1_frame005.cpp",
"saint_seiya_awakening/saint_seiya_awakening_capture_context1_frame006.cpp",
"saint_seiya_awakening/saint_seiya_awakening_capture_context1_frame007.cpp",
"saint_seiya_awakening/saint_seiya_awakening_capture_context1_frame008.cpp",
"saint_seiya_awakening/saint_seiya_awakening_capture_context1_frame009.cpp",
"saint_seiya_awakening/saint_seiya_awakening_capture_context1_frame010.cpp",
],
],
[
"sakura_school_simulator",
2,
[
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame001.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame002.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame003.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame004.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame005.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame006.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame007.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame008.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame009.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame010.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame011.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame012.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame013.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame014.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame015.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame016.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame017.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame018.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame019.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame020.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame021.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame022.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame023.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame024.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame025.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame026.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame027.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame028.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame029.cpp",
"sakura_school_simulator/sakura_school_simulator_capture_context2_frame030.cpp",
],
],
[
"shadow_fight_2",
1,
[
"shadow_fight_2/shadow_fight_2_capture_context1_frame001.cpp",
"shadow_fight_2/shadow_fight_2_capture_context1_frame002.cpp",
"shadow_fight_2/shadow_fight_2_capture_context1_frame003.cpp",
"shadow_fight_2/shadow_fight_2_capture_context1_frame004.cpp",
"shadow_fight_2/shadow_fight_2_capture_context1_frame005.cpp",
"shadow_fight_2/shadow_fight_2_capture_context1_frame006.cpp",
"shadow_fight_2/shadow_fight_2_capture_context1_frame007.cpp",
"shadow_fight_2/shadow_fight_2_capture_context1_frame008.cpp",
"shadow_fight_2/shadow_fight_2_capture_context1_frame009.cpp",
"shadow_fight_2/shadow_fight_2_capture_context1_frame010.cpp",
],
],
[
"slingshot_test1",
2,
[
"slingshot_test1/slingshot_test1_capture_context2_frame001.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame002.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame003.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame004.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame005.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame006.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame007.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame008.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame009.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame010.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame011.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame012.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame013.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame014.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame015.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame016.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame017.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame018.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame019.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame020.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame021.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame022.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame023.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame024.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame025.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame026.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame027.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame028.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame029.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame030.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame031.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame032.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame033.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame034.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame035.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame036.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame037.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame038.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame039.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame040.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame041.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame042.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame043.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame044.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame045.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame046.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame047.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame048.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame049.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame050.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame051.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame052.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame053.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame054.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame055.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame056.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame057.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame058.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame059.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame060.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame061.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame062.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame063.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame064.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame065.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame066.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame067.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame068.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame069.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame070.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame071.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame072.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame073.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame074.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame075.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame076.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame077.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame078.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame079.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame080.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame081.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame082.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame083.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame084.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame085.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame086.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame087.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame088.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame089.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame090.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame091.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame092.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame093.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame094.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame095.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame096.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame097.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame098.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame099.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame100.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame101.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame102.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame103.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame104.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame105.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame106.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame107.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame108.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame109.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame110.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame111.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame112.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame113.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame114.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame115.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame116.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame117.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame118.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame119.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame120.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame121.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame122.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame123.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame124.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame125.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame126.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame127.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame128.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame129.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame130.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame131.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame132.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame133.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame134.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame135.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame136.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame137.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame138.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame139.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame140.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame141.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame142.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame143.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame144.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame145.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame146.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame147.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame148.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame149.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame150.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame151.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame152.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame153.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame154.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame155.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame156.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame157.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame158.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame159.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame160.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame161.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame162.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame163.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame164.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame165.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame166.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame167.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame168.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame169.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame170.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame171.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame172.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame173.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame174.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame175.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame176.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame177.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame178.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame179.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame180.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame181.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame182.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame183.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame184.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame185.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame186.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame187.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame188.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame189.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame190.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame191.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame192.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame193.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame194.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame195.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame196.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame197.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame198.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame199.cpp",
"slingshot_test1/slingshot_test1_capture_context2_frame200.cpp",
],
],
[
"slingshot_test2",
2,
[
"slingshot_test2/slingshot_test2_capture_context2_frame001.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame002.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame003.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame004.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame005.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame006.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame007.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame008.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame009.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame010.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame011.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame012.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame013.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame014.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame015.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame016.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame017.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame018.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame019.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame020.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame021.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame022.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame023.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame024.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame025.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame026.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame027.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame028.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame029.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame030.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame031.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame032.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame033.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame034.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame035.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame036.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame037.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame038.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame039.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame040.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame041.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame042.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame043.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame044.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame045.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame046.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame047.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame048.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame049.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame050.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame051.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame052.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame053.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame054.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame055.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame056.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame057.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame058.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame059.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame060.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame061.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame062.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame063.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame064.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame065.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame066.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame067.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame068.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame069.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame070.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame071.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame072.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame073.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame074.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame075.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame076.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame077.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame078.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame079.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame080.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame081.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame082.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame083.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame084.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame085.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame086.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame087.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame088.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame089.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame090.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame091.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame092.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame093.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame094.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame095.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame096.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame097.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame098.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame099.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame100.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame101.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame102.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame103.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame104.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame105.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame106.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame107.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame108.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame109.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame110.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame111.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame112.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame113.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame114.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame115.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame116.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame117.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame118.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame119.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame120.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame121.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame122.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame123.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame124.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame125.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame126.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame127.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame128.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame129.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame130.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame131.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame132.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame133.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame134.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame135.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame136.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame137.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame138.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame139.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame140.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame141.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame142.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame143.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame144.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame145.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame146.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame147.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame148.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame149.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame150.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame151.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame152.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame153.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame154.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame155.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame156.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame157.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame158.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame159.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame160.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame161.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame162.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame163.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame164.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame165.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame166.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame167.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame168.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame169.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame170.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame171.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame172.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame173.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame174.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame175.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame176.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame177.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame178.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame179.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame180.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame181.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame182.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame183.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame184.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame185.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame186.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame187.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame188.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame189.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame190.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame191.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame192.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame193.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame194.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame195.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame196.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame197.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame198.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame199.cpp",
"slingshot_test2/slingshot_test2_capture_context2_frame200.cpp",
],
],
[
"sniper_3d",
1,
[
"sniper_3d/sniper_3d_capture_context1_frame001.cpp",
"sniper_3d/sniper_3d_capture_context1_frame002.cpp",
"sniper_3d/sniper_3d_capture_context1_frame003.cpp",
"sniper_3d/sniper_3d_capture_context1_frame004.cpp",
"sniper_3d/sniper_3d_capture_context1_frame005.cpp",
"sniper_3d/sniper_3d_capture_context1_frame006.cpp",
"sniper_3d/sniper_3d_capture_context1_frame007.cpp",
"sniper_3d/sniper_3d_capture_context1_frame008.cpp",
"sniper_3d/sniper_3d_capture_context1_frame009.cpp",
"sniper_3d/sniper_3d_capture_context1_frame010.cpp",
],
],
[
"standoff_2",
1,
[
"standoff_2/standoff_2_capture_context1_frame001.cpp",
"standoff_2/standoff_2_capture_context1_frame002.cpp",
"standoff_2/standoff_2_capture_context1_frame003.cpp",
"standoff_2/standoff_2_capture_context1_frame004.cpp",
"standoff_2/standoff_2_capture_context1_frame005.cpp",
"standoff_2/standoff_2_capture_context1_frame006.cpp",
"standoff_2/standoff_2_capture_context1_frame007.cpp",
"standoff_2/standoff_2_capture_context1_frame008.cpp",
"standoff_2/standoff_2_capture_context1_frame009.cpp",
"standoff_2/standoff_2_capture_context1_frame010.cpp",
],
],
[
"subway_princess_runner",
2,
[
"subway_princess_runner/subway_princess_runner_capture_context2_frame001.cpp",
"subway_princess_runner/subway_princess_runner_capture_context2_frame002.cpp",
"subway_princess_runner/subway_princess_runner_capture_context2_frame003.cpp",
"subway_princess_runner/subway_princess_runner_capture_context2_frame004.cpp",
"subway_princess_runner/subway_princess_runner_capture_context2_frame005.cpp",
"subway_princess_runner/subway_princess_runner_capture_context2_frame006.cpp",
"subway_princess_runner/subway_princess_runner_capture_context2_frame007.cpp",
"subway_princess_runner/subway_princess_runner_capture_context2_frame008.cpp",
"subway_princess_runner/subway_princess_runner_capture_context2_frame009.cpp",
"subway_princess_runner/subway_princess_runner_capture_context2_frame010.cpp",
],
],
[
"subway_surfers",
1,
[
"subway_surfers/subway_surfers_capture_context1_frame001.cpp",
"subway_surfers/subway_surfers_capture_context1_frame002.cpp",
"subway_surfers/subway_surfers_capture_context1_frame003.cpp",
"subway_surfers/subway_surfers_capture_context1_frame004.cpp",
"subway_surfers/subway_surfers_capture_context1_frame005.cpp",
"subway_surfers/subway_surfers_capture_context1_frame006.cpp",
"subway_surfers/subway_surfers_capture_context1_frame007.cpp",
"subway_surfers/subway_surfers_capture_context1_frame008.cpp",
"subway_surfers/subway_surfers_capture_context1_frame009.cpp",
"subway_surfers/subway_surfers_capture_context1_frame010.cpp",
],
],
[
"summoners_war",
2,
[
"summoners_war/summoners_war_capture_context2_frame001.cpp",
"summoners_war/summoners_war_capture_context2_frame002.cpp",
"summoners_war/summoners_war_capture_context2_frame003.cpp",
"summoners_war/summoners_war_capture_context2_frame004.cpp",
"summoners_war/summoners_war_capture_context2_frame005.cpp",
"summoners_war/summoners_war_capture_context2_frame006.cpp",
"summoners_war/summoners_war_capture_context2_frame007.cpp",
"summoners_war/summoners_war_capture_context2_frame008.cpp",
"summoners_war/summoners_war_capture_context2_frame009.cpp",
"summoners_war/summoners_war_capture_context2_frame010.cpp",
"summoners_war/summoners_war_capture_context2_frame011.cpp",
"summoners_war/summoners_war_capture_context2_frame012.cpp",
"summoners_war/summoners_war_capture_context2_frame013.cpp",
"summoners_war/summoners_war_capture_context2_frame014.cpp",
"summoners_war/summoners_war_capture_context2_frame015.cpp",
"summoners_war/summoners_war_capture_context2_frame016.cpp",
"summoners_war/summoners_war_capture_context2_frame017.cpp",
"summoners_war/summoners_war_capture_context2_frame018.cpp",
"summoners_war/summoners_war_capture_context2_frame019.cpp",
"summoners_war/summoners_war_capture_context2_frame020.cpp",
"summoners_war/summoners_war_capture_context2_frame021.cpp",
"summoners_war/summoners_war_capture_context2_frame022.cpp",
"summoners_war/summoners_war_capture_context2_frame023.cpp",
"summoners_war/summoners_war_capture_context2_frame024.cpp",
"summoners_war/summoners_war_capture_context2_frame025.cpp",
"summoners_war/summoners_war_capture_context2_frame026.cpp",
"summoners_war/summoners_war_capture_context2_frame027.cpp",
"summoners_war/summoners_war_capture_context2_frame028.cpp",
"summoners_war/summoners_war_capture_context2_frame029.cpp",
"summoners_war/summoners_war_capture_context2_frame030.cpp",
"summoners_war/summoners_war_capture_context2_frame031.cpp",
"summoners_war/summoners_war_capture_context2_frame032.cpp",
"summoners_war/summoners_war_capture_context2_frame033.cpp",
"summoners_war/summoners_war_capture_context2_frame034.cpp",
"summoners_war/summoners_war_capture_context2_frame035.cpp",
"summoners_war/summoners_war_capture_context2_frame036.cpp",
"summoners_war/summoners_war_capture_context2_frame037.cpp",
"summoners_war/summoners_war_capture_context2_frame038.cpp",
"summoners_war/summoners_war_capture_context2_frame039.cpp",
"summoners_war/summoners_war_capture_context2_frame040.cpp",
"summoners_war/summoners_war_capture_context2_frame041.cpp",
"summoners_war/summoners_war_capture_context2_frame042.cpp",
"summoners_war/summoners_war_capture_context2_frame043.cpp",
"summoners_war/summoners_war_capture_context2_frame044.cpp",
"summoners_war/summoners_war_capture_context2_frame045.cpp",
"summoners_war/summoners_war_capture_context2_frame046.cpp",
"summoners_war/summoners_war_capture_context2_frame047.cpp",
"summoners_war/summoners_war_capture_context2_frame048.cpp",
"summoners_war/summoners_war_capture_context2_frame049.cpp",
"summoners_war/summoners_war_capture_context2_frame050.cpp",
],
],
[
"talking_tom_hero_dash",
1,
[
"talking_tom_hero_dash/talking_tom_hero_dash_capture_context1_frame001.cpp",
"talking_tom_hero_dash/talking_tom_hero_dash_capture_context1_frame002.cpp",
"talking_tom_hero_dash/talking_tom_hero_dash_capture_context1_frame003.cpp",
"talking_tom_hero_dash/talking_tom_hero_dash_capture_context1_frame004.cpp",
"talking_tom_hero_dash/talking_tom_hero_dash_capture_context1_frame005.cpp",
"talking_tom_hero_dash/talking_tom_hero_dash_capture_context1_frame006.cpp",
"talking_tom_hero_dash/talking_tom_hero_dash_capture_context1_frame007.cpp",
"talking_tom_hero_dash/talking_tom_hero_dash_capture_context1_frame008.cpp",
"talking_tom_hero_dash/talking_tom_hero_dash_capture_context1_frame009.cpp",
"talking_tom_hero_dash/talking_tom_hero_dash_capture_context1_frame010.cpp",
],
],
[
"temple_run_2",
1,
[
"temple_run_2/temple_run_2_capture_context1_frame001.cpp",
"temple_run_2/temple_run_2_capture_context1_frame002.cpp",
"temple_run_2/temple_run_2_capture_context1_frame003.cpp",
"temple_run_2/temple_run_2_capture_context1_frame004.cpp",
"temple_run_2/temple_run_2_capture_context1_frame005.cpp",
"temple_run_2/temple_run_2_capture_context1_frame006.cpp",
"temple_run_2/temple_run_2_capture_context1_frame007.cpp",
"temple_run_2/temple_run_2_capture_context1_frame008.cpp",
"temple_run_2/temple_run_2_capture_context1_frame009.cpp",
"temple_run_2/temple_run_2_capture_context1_frame010.cpp",
],
],
[
"temple_run_300",
1,
[
"temple_run_300/temple_run_300_capture_context1_frame001.cpp",
"temple_run_300/temple_run_300_capture_context1_frame002.cpp",
"temple_run_300/temple_run_300_capture_context1_frame003.cpp",
"temple_run_300/temple_run_300_capture_context1_frame004.cpp",
"temple_run_300/temple_run_300_capture_context1_frame005.cpp",
"temple_run_300/temple_run_300_capture_context1_frame006.cpp",
"temple_run_300/temple_run_300_capture_context1_frame007.cpp",
"temple_run_300/temple_run_300_capture_context1_frame008.cpp",
"temple_run_300/temple_run_300_capture_context1_frame009.cpp",
"temple_run_300/temple_run_300_capture_context1_frame010.cpp",
"temple_run_300/temple_run_300_capture_context1_frame011.cpp",
],
],
[
"trex_200",
1,
[
"trex_200/trex_200_capture_context1_frame001.cpp",
"trex_200/trex_200_capture_context1_frame002.cpp",
"trex_200/trex_200_capture_context1_frame003.cpp",
"trex_200/trex_200_capture_context1_frame004.cpp",
"trex_200/trex_200_capture_context1_frame005.cpp",
"trex_200/trex_200_capture_context1_frame006.cpp",
"trex_200/trex_200_capture_context1_frame007.cpp",
"trex_200/trex_200_capture_context1_frame008.cpp",
"trex_200/trex_200_capture_context1_frame009.cpp",
"trex_200/trex_200_capture_context1_frame010.cpp",
"trex_200/trex_200_capture_context1_frame011.cpp",
],
],
[
"whatsapp",
1,
[
"whatsapp/whatsapp_capture_context1_frame001.cpp",
"whatsapp/whatsapp_capture_context1_frame002.cpp",
"whatsapp/whatsapp_capture_context1_frame003.cpp",
"whatsapp/whatsapp_capture_context1_frame004.cpp",
"whatsapp/whatsapp_capture_context1_frame005.cpp",
"whatsapp/whatsapp_capture_context1_frame006.cpp",
"whatsapp/whatsapp_capture_context1_frame007.cpp",
"whatsapp/whatsapp_capture_context1_frame008.cpp",
"whatsapp/whatsapp_capture_context1_frame009.cpp",
"whatsapp/whatsapp_capture_context1_frame010.cpp",
"whatsapp/whatsapp_capture_context1_frame011.cpp",
"whatsapp/whatsapp_capture_context1_frame012.cpp",
"whatsapp/whatsapp_capture_context1_frame013.cpp",
"whatsapp/whatsapp_capture_context1_frame014.cpp",
"whatsapp/whatsapp_capture_context1_frame015.cpp",
"whatsapp/whatsapp_capture_context1_frame016.cpp",
"whatsapp/whatsapp_capture_context1_frame017.cpp",
"whatsapp/whatsapp_capture_context1_frame018.cpp",
"whatsapp/whatsapp_capture_context1_frame019.cpp",
"whatsapp/whatsapp_capture_context1_frame020.cpp",
"whatsapp/whatsapp_capture_context1_frame021.cpp",
"whatsapp/whatsapp_capture_context1_frame022.cpp",
"whatsapp/whatsapp_capture_context1_frame023.cpp",
"whatsapp/whatsapp_capture_context1_frame024.cpp",
"whatsapp/whatsapp_capture_context1_frame025.cpp",
"whatsapp/whatsapp_capture_context1_frame026.cpp",
"whatsapp/whatsapp_capture_context1_frame027.cpp",
"whatsapp/whatsapp_capture_context1_frame028.cpp",
"whatsapp/whatsapp_capture_context1_frame029.cpp",
"whatsapp/whatsapp_capture_context1_frame030.cpp",
"whatsapp/whatsapp_capture_context1_frame031.cpp",
"whatsapp/whatsapp_capture_context1_frame032.cpp",
"whatsapp/whatsapp_capture_context1_frame033.cpp",
"whatsapp/whatsapp_capture_context1_frame034.cpp",
"whatsapp/whatsapp_capture_context1_frame035.cpp",
"whatsapp/whatsapp_capture_context1_frame036.cpp",
"whatsapp/whatsapp_capture_context1_frame037.cpp",
"whatsapp/whatsapp_capture_context1_frame038.cpp",
"whatsapp/whatsapp_capture_context1_frame039.cpp",
"whatsapp/whatsapp_capture_context1_frame040.cpp",
"whatsapp/whatsapp_capture_context1_frame041.cpp",
"whatsapp/whatsapp_capture_context1_frame042.cpp",
"whatsapp/whatsapp_capture_context1_frame043.cpp",
"whatsapp/whatsapp_capture_context1_frame044.cpp",
"whatsapp/whatsapp_capture_context1_frame045.cpp",
"whatsapp/whatsapp_capture_context1_frame046.cpp",
"whatsapp/whatsapp_capture_context1_frame047.cpp",
"whatsapp/whatsapp_capture_context1_frame048.cpp",
"whatsapp/whatsapp_capture_context1_frame049.cpp",
"whatsapp/whatsapp_capture_context1_frame050.cpp",
"whatsapp/whatsapp_capture_context1_frame051.cpp",
"whatsapp/whatsapp_capture_context1_frame052.cpp",
"whatsapp/whatsapp_capture_context1_frame053.cpp",
"whatsapp/whatsapp_capture_context1_frame054.cpp",
"whatsapp/whatsapp_capture_context1_frame055.cpp",
"whatsapp/whatsapp_capture_context1_frame056.cpp",
"whatsapp/whatsapp_capture_context1_frame057.cpp",
"whatsapp/whatsapp_capture_context1_frame058.cpp",
"whatsapp/whatsapp_capture_context1_frame059.cpp",
"whatsapp/whatsapp_capture_context1_frame060.cpp",
"whatsapp/whatsapp_capture_context1_frame061.cpp",
"whatsapp/whatsapp_capture_context1_frame062.cpp",
"whatsapp/whatsapp_capture_context1_frame063.cpp",
"whatsapp/whatsapp_capture_context1_frame064.cpp",
"whatsapp/whatsapp_capture_context1_frame065.cpp",
"whatsapp/whatsapp_capture_context1_frame066.cpp",
"whatsapp/whatsapp_capture_context1_frame067.cpp",
"whatsapp/whatsapp_capture_context1_frame068.cpp",
"whatsapp/whatsapp_capture_context1_frame069.cpp",
"whatsapp/whatsapp_capture_context1_frame070.cpp",
"whatsapp/whatsapp_capture_context1_frame071.cpp",
"whatsapp/whatsapp_capture_context1_frame072.cpp",
"whatsapp/whatsapp_capture_context1_frame073.cpp",
"whatsapp/whatsapp_capture_context1_frame074.cpp",
"whatsapp/whatsapp_capture_context1_frame075.cpp",
"whatsapp/whatsapp_capture_context1_frame076.cpp",
"whatsapp/whatsapp_capture_context1_frame077.cpp",
"whatsapp/whatsapp_capture_context1_frame078.cpp",
"whatsapp/whatsapp_capture_context1_frame079.cpp",
"whatsapp/whatsapp_capture_context1_frame080.cpp",
"whatsapp/whatsapp_capture_context1_frame081.cpp",
"whatsapp/whatsapp_capture_context1_frame082.cpp",
"whatsapp/whatsapp_capture_context1_frame083.cpp",
"whatsapp/whatsapp_capture_context1_frame084.cpp",
"whatsapp/whatsapp_capture_context1_frame085.cpp",
"whatsapp/whatsapp_capture_context1_frame086.cpp",
"whatsapp/whatsapp_capture_context1_frame087.cpp",
"whatsapp/whatsapp_capture_context1_frame088.cpp",
"whatsapp/whatsapp_capture_context1_frame089.cpp",
"whatsapp/whatsapp_capture_context1_frame090.cpp",
"whatsapp/whatsapp_capture_context1_frame091.cpp",
"whatsapp/whatsapp_capture_context1_frame092.cpp",
"whatsapp/whatsapp_capture_context1_frame093.cpp",
"whatsapp/whatsapp_capture_context1_frame094.cpp",
"whatsapp/whatsapp_capture_context1_frame095.cpp",
"whatsapp/whatsapp_capture_context1_frame096.cpp",
"whatsapp/whatsapp_capture_context1_frame097.cpp",
"whatsapp/whatsapp_capture_context1_frame098.cpp",
"whatsapp/whatsapp_capture_context1_frame099.cpp",
"whatsapp/whatsapp_capture_context1_frame100.cpp",
"whatsapp/whatsapp_capture_context1_frame101.cpp",
"whatsapp/whatsapp_capture_context1_frame102.cpp",
"whatsapp/whatsapp_capture_context1_frame103.cpp",
"whatsapp/whatsapp_capture_context1_frame104.cpp",
"whatsapp/whatsapp_capture_context1_frame105.cpp",
"whatsapp/whatsapp_capture_context1_frame106.cpp",
"whatsapp/whatsapp_capture_context1_frame107.cpp",
"whatsapp/whatsapp_capture_context1_frame108.cpp",
"whatsapp/whatsapp_capture_context1_frame109.cpp",
"whatsapp/whatsapp_capture_context1_frame110.cpp",
"whatsapp/whatsapp_capture_context1_frame111.cpp",
"whatsapp/whatsapp_capture_context1_frame112.cpp",
"whatsapp/whatsapp_capture_context1_frame113.cpp",
"whatsapp/whatsapp_capture_context1_frame114.cpp",
"whatsapp/whatsapp_capture_context1_frame115.cpp",
"whatsapp/whatsapp_capture_context1_frame116.cpp",
"whatsapp/whatsapp_capture_context1_frame117.cpp",
"whatsapp/whatsapp_capture_context1_frame118.cpp",
"whatsapp/whatsapp_capture_context1_frame119.cpp",
"whatsapp/whatsapp_capture_context1_frame120.cpp",
"whatsapp/whatsapp_capture_context1_frame121.cpp",
"whatsapp/whatsapp_capture_context1_frame122.cpp",
"whatsapp/whatsapp_capture_context1_frame123.cpp",
"whatsapp/whatsapp_capture_context1_frame124.cpp",
"whatsapp/whatsapp_capture_context1_frame125.cpp",
"whatsapp/whatsapp_capture_context1_frame126.cpp",
"whatsapp/whatsapp_capture_context1_frame127.cpp",
"whatsapp/whatsapp_capture_context1_frame128.cpp",
"whatsapp/whatsapp_capture_context1_frame129.cpp",
"whatsapp/whatsapp_capture_context1_frame130.cpp",
"whatsapp/whatsapp_capture_context1_frame131.cpp",
"whatsapp/whatsapp_capture_context1_frame132.cpp",
"whatsapp/whatsapp_capture_context1_frame133.cpp",
"whatsapp/whatsapp_capture_context1_frame134.cpp",
"whatsapp/whatsapp_capture_context1_frame135.cpp",
"whatsapp/whatsapp_capture_context1_frame136.cpp",
"whatsapp/whatsapp_capture_context1_frame137.cpp",
"whatsapp/whatsapp_capture_context1_frame138.cpp",
"whatsapp/whatsapp_capture_context1_frame139.cpp",
"whatsapp/whatsapp_capture_context1_frame140.cpp",
"whatsapp/whatsapp_capture_context1_frame141.cpp",
"whatsapp/whatsapp_capture_context1_frame142.cpp",
"whatsapp/whatsapp_capture_context1_frame143.cpp",
"whatsapp/whatsapp_capture_context1_frame144.cpp",
"whatsapp/whatsapp_capture_context1_frame145.cpp",
"whatsapp/whatsapp_capture_context1_frame146.cpp",
"whatsapp/whatsapp_capture_context1_frame147.cpp",
"whatsapp/whatsapp_capture_context1_frame148.cpp",
"whatsapp/whatsapp_capture_context1_frame149.cpp",
"whatsapp/whatsapp_capture_context1_frame150.cpp",
"whatsapp/whatsapp_capture_context1_frame151.cpp",
"whatsapp/whatsapp_capture_context1_frame152.cpp",
"whatsapp/whatsapp_capture_context1_frame153.cpp",
"whatsapp/whatsapp_capture_context1_frame154.cpp",
"whatsapp/whatsapp_capture_context1_frame155.cpp",
"whatsapp/whatsapp_capture_context1_frame156.cpp",
"whatsapp/whatsapp_capture_context1_frame157.cpp",
"whatsapp/whatsapp_capture_context1_frame158.cpp",
"whatsapp/whatsapp_capture_context1_frame159.cpp",
"whatsapp/whatsapp_capture_context1_frame160.cpp",
"whatsapp/whatsapp_capture_context1_frame161.cpp",
"whatsapp/whatsapp_capture_context1_frame162.cpp",
"whatsapp/whatsapp_capture_context1_frame163.cpp",
"whatsapp/whatsapp_capture_context1_frame164.cpp",
"whatsapp/whatsapp_capture_context1_frame165.cpp",
"whatsapp/whatsapp_capture_context1_frame166.cpp",
"whatsapp/whatsapp_capture_context1_frame167.cpp",
"whatsapp/whatsapp_capture_context1_frame168.cpp",
"whatsapp/whatsapp_capture_context1_frame169.cpp",
"whatsapp/whatsapp_capture_context1_frame170.cpp",
"whatsapp/whatsapp_capture_context1_frame171.cpp",
"whatsapp/whatsapp_capture_context1_frame172.cpp",
"whatsapp/whatsapp_capture_context1_frame173.cpp",
"whatsapp/whatsapp_capture_context1_frame174.cpp",
"whatsapp/whatsapp_capture_context1_frame175.cpp",
"whatsapp/whatsapp_capture_context1_frame176.cpp",
"whatsapp/whatsapp_capture_context1_frame177.cpp",
"whatsapp/whatsapp_capture_context1_frame178.cpp",
"whatsapp/whatsapp_capture_context1_frame179.cpp",
"whatsapp/whatsapp_capture_context1_frame180.cpp",
],
],
[
"world_of_tanks_blitz",
1,
[
"world_of_tanks_blitz/world_of_tanks_blitz_capture_context1_frame001.cpp",
"world_of_tanks_blitz/world_of_tanks_blitz_capture_context1_frame002.cpp",
"world_of_tanks_blitz/world_of_tanks_blitz_capture_context1_frame003.cpp",
"world_of_tanks_blitz/world_of_tanks_blitz_capture_context1_frame004.cpp",
"world_of_tanks_blitz/world_of_tanks_blitz_capture_context1_frame005.cpp",
"world_of_tanks_blitz/world_of_tanks_blitz_capture_context1_frame006.cpp",
"world_of_tanks_blitz/world_of_tanks_blitz_capture_context1_frame007.cpp",
"world_of_tanks_blitz/world_of_tanks_blitz_capture_context1_frame008.cpp",
"world_of_tanks_blitz/world_of_tanks_blitz_capture_context1_frame009.cpp",
"world_of_tanks_blitz/world_of_tanks_blitz_capture_context1_frame010.cpp",
],
],
[
"world_war_doh",
1,
[
"world_war_doh/world_war_doh_capture_context1_frame001.cpp",
"world_war_doh/world_war_doh_capture_context1_frame002.cpp",
"world_war_doh/world_war_doh_capture_context1_frame003.cpp",
"world_war_doh/world_war_doh_capture_context1_frame004.cpp",
"world_war_doh/world_war_doh_capture_context1_frame005.cpp",
"world_war_doh/world_war_doh_capture_context1_frame006.cpp",
"world_war_doh/world_war_doh_capture_context1_frame007.cpp",
"world_war_doh/world_war_doh_capture_context1_frame008.cpp",
"world_war_doh/world_war_doh_capture_context1_frame009.cpp",
"world_war_doh/world_war_doh_capture_context1_frame010.cpp",
],
],
[
"worms_zone_io",
1,
[
"worms_zone_io/worms_zone_io_capture_context1_frame001.cpp",
"worms_zone_io/worms_zone_io_capture_context1_frame002.cpp",
"worms_zone_io/worms_zone_io_capture_context1_frame003.cpp",
"worms_zone_io/worms_zone_io_capture_context1_frame004.cpp",
"worms_zone_io/worms_zone_io_capture_context1_frame005.cpp",
"worms_zone_io/worms_zone_io_capture_context1_frame006.cpp",
"worms_zone_io/worms_zone_io_capture_context1_frame007.cpp",
"worms_zone_io/worms_zone_io_capture_context1_frame008.cpp",
"worms_zone_io/worms_zone_io_capture_context1_frame009.cpp",
"worms_zone_io/worms_zone_io_capture_context1_frame010.cpp",
],
],
]