File size: 113,281 Bytes
5c8ef86 |
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 |
{
"003234408d": {
"penguin": {
"9": "1. The penguin is sitting on its belly while looking slightly backward.\n\n2. The penguin is bending forward, inspecting the ground with its beak.\n\n3. The penguin is lying down on its stomach and facing forward.\n\n4. The penguin is resting on its belly with its head turned to the side.\n\n5. The penguin is reclining and facing to the left while lying on its stomach.",
"14": "1. The penguin is sitting still on a rocky surface, facing forward.\n\n2. The penguin is bending over with its head lowered towards the ground.\n\n3. The penguin is resting on its belly, quietly facing left.\n\n4. The penguin is lying down with its head raised, looking ahead.\n\n5. The penguin is lying on its side while facing forward.",
"18": "1. Penguin is resting on the rocky surface, not engaging in any dynamic movement.\n\n2. Penguin is bending down towards another, appearing to interact or communicate directly.\n\n3. Penguin is lying down on the ground, remaining inactive.\n\n4. Penguin is sitting quietly on the rock bed, without any distinct movement.\n\n5. Penguin is lying down on top of the rocky area, staying motionless.",
"31": "1. Penguin is sitting and facing forward on the rocky surface.\n\n2. Penguin is bending forward, interacting with the ground or another penguin.\n\n3. Penguin is lying with its chest flat, appearing to rest quietly.\n\n4. Penguin is huddling, possibly resting or observing its surroundings.\n\n5. Penguin is resting horizontally, seemingly relaxed on the rocky surface."
}
},
"0043f083b5": {
"sedan": {
"4": null,
"6": null,
"10": null,
"17": null
},
"bus": {
"4": null,
"6": null,
"10": null,
"17": null
}
},
"0044fa5fba": {
"giant_panda": {
"2": null,
"7": null,
"8": null,
"13": null
}
},
"005a527edd": {
"ape": {
"5": "1. The ape is holding onto the larger ape's chest while looking forward.\n\n2. The ape is using one hand to grasp its own chin and the other to hold the smaller ape.",
"13": "1. The ape is grasping an object with both hands while raising one hand to its head.\n2. The ape is holding another ape closely and sitting with bent knees.",
"14": null,
"23": null
}
},
"0065b171f9": {
"giant_panda": {
"4": null,
"16": null,
"22": null,
"33": null
}
},
"00917dcfc4": {
"zebra": {
"4": null,
"7": null,
"13": "1. The zebra is standing still and facing forward, appearing attentive to its surroundings.\n\n2. The zebra is nuzzling closely against the side of another zebra, showing a gentle interaction.\n\n3. The zebra is lowering its head toward the ground, likely grazing or investigating the terrain.",
"17": null
}
},
"00a23ccf53": {
"shark": {
"4": null,
"11": null,
"22": null,
"27": null
}
},
"00ad5016a4": {
"airplane": {
"4": null,
"6": null,
"10": null,
"11": null
}
},
"01082ae388": {
"leopard": {
"3": null,
"11": null,
"19": null,
"26": null
}
},
"011ac0a06f": {
"ape": {
"3": null,
"14": null,
"20": null,
"32": null
}
},
"013099c098": {
"giant_panda": {
"4": null,
"7": "1. The giant panda is standing over another panda while leaning forward and directing its gaze downward. \n2. The giant panda is lying on its back in the water, playfully kicking its hind legs upward.",
"8": null,
"13": "1. Giant_panda is standing on four legs, leaning over and engaging with the other giant_panda beneath.\n\n2. Giant_panda is lying on its back, raising one paw towards the other giant_panda, appearing to interact with it physically."
}
},
"0155498c85": {
"motorbike": {
"2": null,
"10": null,
"19": null,
"28": null
},
"person": {
"2": null,
"10": null,
"19": null,
"28": null
}
},
"01694ad9c8": {
"bird": {
"3": null,
"6": null,
"8": null,
"11": null
}
},
"017ac35701": {
"giant_panda": {
"4": null,
"17": null,
"21": null,
"29": null
}
},
"01b80e8e1a": {
"zebra": {
"2": "1. Zebra is walking across the open area, with its head facing forward and legs in motion.\n\n2. Zebra is standing still, with its head angled downwards, appearing to observe the ground.",
"4": null,
"6": null,
"8": "1. The zebra is walking forward with its head lowered, moving steadily across the terrain.\n2. The zebra is standing with its head raised, looking alert and observing its surroundings."
}
},
"01baa5a4e1": {
"frisbee": {
"7": null,
"10": null,
"17": null,
"24": null
}
},
"01c3111683": {
"whale": {
"4": null,
"13": null,
"22": null,
"29": null
}
},
"01c4cb5ffe": {
"snowboard": {
"7": null,
"14": null,
"21": null,
"27": null
},
"person": {
"7": null,
"14": null,
"21": null,
"27": null
}
},
"01c76f0a82": {
"sedan": {
"2": null,
"7": null,
"13": null,
"15": null
},
"plant": {
"2": null,
"7": null,
"13": null,
"15": null
}
},
"01c783268c": {
"ape": {
"5": null,
"10": null,
"22": null,
"27": null
},
"person": {
"5": null,
"10": null,
"22": null,
"27": null
}
},
"01e64dd36a": {
"cow": {
"2": "1. Cow is lying on the ground, facing forward.\n\n2. Cow is standing and facing another cow, appearing to hold a steady posture.\n\n3. Cow is standing and facing sideways, stretching its neck slightly forward.",
"5": "1. The cow is lying on the grass with its legs bent and attempting to stand up.\n2. The cow is standing upright and facing forward, looking ahead.\n3. The cow is standing and leaning slightly forward with its head lowered.",
"8": "1. The cow is kneeling on its front legs, lowering its head towards the ground.\n\n2. The cow is lying flat on the ground, resting motionless.\n\n3. The cow is sitting upright, raising its head slightly above the ground.",
"16": "1. Cow is standing with its head slightly lowered, appearing to graze on the grass.\n\n2. Cow is standing still, looking towards the other cow, with ears perked up."
}
},
"01ed275c6e": {
"giraffe": {
"2": "1. Giraffe is standing still and extending its neck upward.\n\n2. Giraffe is bending its neck down towards the tree, possibly engaging with the bark or branches.",
"6": "1. The giraffe is stretching its neck upwards and nibbling on leaves from a tree.\n\n2. The giraffe is leaning its head against the tree while pushing with its front legs.",
"12": "1. The giraffe is reaching up with its neck to nibble on the leaves of a tall tree.\n\n2. The giraffe is bending its neck and lowering its head to investigate the ground near the tree.",
"14": "1. Giraffe is extending its neck upwards, reaching toward the tree branches.\n\n2. Giraffe is leaning against the tree trunk, appearing to be balancing itself."
}
},
"01ff60d1fa": {
"lizard": {
"2": null,
"15": null,
"20": null,
"28": null
}
},
"020cd28cd2": {
"person": {
"3": null,
"9": null,
"18": null,
"20": null
}
},
"02264db755": {
"fox": {
"6": null,
"14": null,
"19": null,
"33": null
}
},
"0248626d9a": {
"train": {
"2": null,
"7": null,
"8": null,
"14": null
}
},
"02668dbffa": {
"frog": {
"4": null,
"11": null,
"16": null,
"25": null
}
},
"0274193026": {
"skateboard": {
"4": null,
"9": null,
"15": null,
"22": null
},
"person": {
"4": null,
"9": null,
"15": null,
"22": null
}
},
"02d28375aa": {
"fox": {
"9": null,
"11": null,
"20": null,
"31": null
}
},
"031ccc99b1": {
"person": {
"2": "1. The person is reaching forward with one arm while grasping a microphone.\n\n2. The person is holding a microphone with one hand while gesturing forward with the other hand.\n\n3. The person is turning their head to the side while walking away.",
"7": "1. person is facing another person and extending one hand slightly forward as if gesturing.\n\n2. person is holding a microphone with one hand and appears to be speaking.\n\n3. person is standing with one hand in front, possibly holding or adjusting something near their waist.",
"8": "1. The person is turning towards the person holding the microphone, gesturing with their hand.\n2. The person is holding a microphone close to their mouth while looking at the other person.\n3. The person is raising their hand, with fingers slightly spread, appearing to gesture.",
"12": "1. The person is facing another individual and gesturing with their left hand extended outward. \n2. The person is holding a microphone and speaking animatedly while gesturing with the other hand. \n3. The person is standing slightly behind, watching the interaction while keeping both hands to their sides."
}
},
"0321b18c10": {
"elephant": {
"3": null,
"6": null,
"10": null,
"14": null
},
"person": {
"3": null,
"6": null,
"10": "1. The person is seated on an elephant, gripping the handle in front with both hands while leaning slightly forward.\n\n2. The person is sitting on an elephant's back, holding a handle with one hand and extending the other arm outward with legs resting in front.",
"14": null
}
},
"0348a45bca": {
"fish": {
"7": null,
"17": "1. The fish is tilting slightly backward while staying close to the glass surface.\n2. The fish is swimming gently forward with its fins slightly spread out.\n3. The fish is facing downward, moving towards the bottom of the tank.\n4. The fish is positioned vertically, slowly ascending.\n5. The fish is facing left and hovering near a group of other fish.",
"18": null,
"32": null
}
},
"0355e92655": {
"boat": {
"2": null,
"6": null,
"9": null,
"14": null
},
"paddle": {
"2": null,
"6": null,
"9": null,
"14": null
},
"person": {
"2": null,
"6": null,
"9": null,
"14": null
}
},
"0358b938c1": {
"elephant": {
"2": null,
"7": "1. The elephant is standing in the water and extending its trunk forward, possibly exploring the area ahead.\n\n2. The elephant is spraying water from its trunk, directing the stream upwards.",
"9": "1. The elephant is stretching its trunk forward toward the water, possibly preparing to spray or drink.\n\n2. The elephant is raising its trunk and spraying water into the air, creating an arching stream.",
"13": null
}
},
"0368107cf1": {
"person": {
"3": null,
"8": null,
"13": null,
"15": null
}
},
"0379ddf557": {
"skateboard": {
"8": null,
"11": null,
"23": null,
"31": null
},
"person": {
"8": null,
"11": null,
"23": null,
"31": null
}
},
"038b2cc71d": {
"lizard": {
"2": null,
"6": null,
"8": null,
"15": null
}
},
"038c15a5dd": {
"hedgehog": {
"7": null,
"13": null,
"20": null,
"33": null
}
},
"03a06cc98a": {
"giraffe": {
"4": null,
"6": "1. The giraffe is extending its neck downward and nibbling on the hay.\n\n2. The giraffe is reaching upwards with its neck, approaching the branches above.\n\n3. The giraffe is bending its head to the side, seemingly focused on the ground.",
"13": "1. The giraffe is tilting its head upward toward the canopy structure above.\n\n2. The giraffe is actively reaching its head through the fencing to nibble on the foliage.\n\n3. The giraffe is standing with its neck extended, facing forward and peering into the distance.",
"15": "1. Giraffe is bending its neck downward and lowering its head towards the ground.\n\n2. Giraffe is standing upright, extending its neck vertically toward the upper branches of a tree.\n\n3. Giraffe is reaching its neck diagonally upward, appearing to inspect a nearby object mounted on a pole."
}
},
"03a63e187f": {
"lizard": {
"8": null,
"10": null,
"20": null,
"31": null
}
},
"03c95b4dae": {
"elephant": {
"2": "1. The elephant is walking forward, swinging its trunk from side to side.\n\n2. The elephant is moving alongside a person, lifting its trunk slightly while walking.\n\n3. The elephant is stepping forward, lowering its head as it moves.",
"5": null,
"10": null,
"15": "1. The elephant is walking with its trunk swinging and head slightly tilted downward. \n2. The elephant is standing still with its ears flapping forward and trunk lowered toward the ground. \n3. The elephant is playfully tossing sand with its trunk while facing slightly to the left."
}
},
"03e2b57b0e": {
"lizard": {
"4": null,
"8": null,
"15": null,
"26": null
}
},
"04194e1248": {
"lizard": {
"8": null,
"10": null,
"23": null,
"28": null
}
},
"04259896e2": {
"lizard": {
"8": null,
"13": null,
"24": null,
"26": null
}
},
"0444918a5f": {
"truck": {
"2": null,
"8": null,
"12": null,
"17": null
}
},
"04460a7a52": {
"lizard": {
"9": null,
"10": null,
"23": null,
"28": null
}
},
"04474174a4": {
"ape": {
"5": "1. The ape is raising its arm towards the other ape, appearing to reach out.\n\n2. The ape is positioned with its back against the rock wall, appearing to brace itself.",
"11": null,
"25": null,
"31": null
}
},
"0450095513": {
"snail": {
"5": null,
"12": null,
"19": null,
"20": null
}
},
"045f00aed2": {
"others": {
"3": null,
"13": null,
"18": null,
"30": null
},
"person": {
"3": null,
"13": null,
"18": null,
"30": null
},
"tiger": {
"3": null,
"13": null,
"18": null,
"30": null
}
},
"04667fabaa": {
"parrot": {
"8": null,
"11": null,
"18": null,
"32": null
}
},
"04735c5030": {
"cat": {
"2": "1. The cat is crouching on the sofa, appearing ready to pounce or play.\n\n2. The cat is positioned on the sofa, reaching forward with a paw as if engaging with something.",
"6": null,
"8": null,
"12": null
}
},
"04990d1915": {
"sedan": {
"3": null,
"7": null,
"8": null,
"15": null
},
"bus": {
"3": null,
"7": null,
"8": null,
"15": null
},
"truck": {
"3": null,
"7": null,
"8": null,
"15": null
}
},
"04d62d9d98": {
"skateboard": {
"2": null,
"7": null,
"10": null,
"15": null
},
"person": {
"2": null,
"7": null,
"10": null,
"15": null
}
},
"04f21da964": {
"monkey": {
"7": null,
"12": null,
"22": null,
"33": null
}
},
"04fbad476e": {
"parrot": {
"2": null,
"15": null,
"22": null,
"33": null
}
},
"04fe256562": {
"motorbike": {
"4": null,
"8": null,
"12": null,
"16": null
},
"truck": {
"4": null,
"8": null,
"12": null,
"16": null
}
},
"0503bf89c9": {
"hedgehog": {
"2": null,
"8": null,
"16": null,
"27": null
}
},
"0536c9eed0": {
"cat": {
"3": null,
"6": null,
"8": null,
"16": null
}
},
"054acb238f": {
"owl": {
"9": null,
"11": null,
"25": null,
"28": null
}
},
"05579ca250": {
"skateboard": {
"7": null,
"9": null,
"14": null,
"21": null
},
"sedan": {
"7": null,
"9": null,
"14": null,
"21": null
},
"person": {
"7": null,
"9": null,
"14": null,
"21": null
}
},
"056c200404": {
"toilet": {
"5": null,
"9": null,
"13": null,
"17": null
}
},
"05774f3a2c": {
"ape": {
"9": null,
"16": null,
"24": null,
"33": "1. The ape is sitting upright while looking ahead and supporting itself with one hand on the ground.\n\n2. The ape is lying on its back, reaching up with both arms towards the first ape.\n\n3. The ape is resting its head against the chest of the first ape, staying still."
}
},
"058a7592c8": {
"train": {
"4": null,
"9": null,
"13": null,
"17": null
}
},
"05a0a513df": {
"person": {
"3": null,
"7": "1. The person is holding a large flag and waving it back and forth in a rhythmic motion.\n\n2. The person is marching forward in step with the band, swinging their arms in time with the music.",
"11": null,
"17": null
}
},
"05a569d8aa": {
"mouse": {
"4": null,
"7": null,
"8": null,
"12": null
},
"cat": {
"4": null,
"7": null,
"8": null,
"12": null
}
},
"05aa652648": {
"ape": {
"3": null,
"12": null,
"17": null,
"25": null
}
},
"05d7715782": {
"sign": {
"3": null,
"7": null,
"11": null,
"16": null
}
},
"05e0b0f28f": {
"mouse": {
"5": null,
"9": null,
"18": null,
"23": null
},
"person": {
"5": null,
"9": null,
"18": null,
"23": null
}
},
"05fdbbdd7a": {
"umbrella": {
"2": null,
"4": null,
"6": null,
"10": null
}
},
"05ffcfed85": {
"monkey": {
"6": null,
"16": "1. The monkey is hanging with one arm extended upward, gripping a branch while its body swings slightly to the side.\n\n2. The monkey is sitting on a branch, facing left, and holding onto the trunk with both hands.",
"24": null,
"33": null
}
},
"0630391881": {
"tennis_racket": {
"3": null,
"11": null,
"16": null,
"26": null
},
"person": {
"3": null,
"11": null,
"16": null,
"26": null
}
},
"06840b2bbe": {
"snake": {
"4": null,
"6": null,
"9": null,
"12": null
}
},
"068f7dce6f": {
"shark": {
"7": null,
"15": null,
"24": null,
"33": null
}
},
"0693719753": {
"turtle": {
"3": "1. The turtle is climbing over another turtle, extending its neck forward.\n\n2. The turtle is positioned on the ground, slightly raising its head and legs while remaining stationary.",
"11": null,
"15": null,
"26": null
}
},
"06ce2b51fb": {
"paddle": {
"4": null,
"7": null,
"8": null,
"14": null
},
"person": {
"4": null,
"7": null,
"8": null,
"14": null
}
},
"06e224798e": {
"tiger": {
"3": null,
"12": null,
"24": null,
"31": null
}
},
"06ee361788": {
"duck": {
"4": "1. Duck is gliding smoothly through the water, creating ripples.\n \n2. Duck is paddling steadily forward, slightly turning its body to the side.\n\n3. Duck is swimming energetically, causing a noticeable splash behind.",
"7": null,
"10": null,
"13": null
}
},
"06fbb3fa2c": {
"eagle": {
"4": null,
"7": null,
"9": null,
"15": null
}
},
"0700264286": {
"cow": {
"3": null,
"5": "1. The cow is standing alert, its head slightly down as if investigating the ground.\n2. The cow is stationary, with its head angled downward towards the other cow.",
"9": "1. Cow is standing on the hay, facing forward with a slightly lowered head.\n\n2. Cow is standing on the hay, facing to the side with its legs firmly placed on the ground.",
"16": "1. The cow is standing with its head slightly raised, appearing to gaze forward.\n2. The cow is lowering its head towards the ground, possibly sniffing or grazing."
}
},
"070c918ca7": {
"parrot": {
"5": null,
"15": null,
"20": null,
"28": null
}
},
"07129e14a4": {
"parrot": {
"6": null,
"16": null,
"21": null,
"26": null
},
"person": {
"6": null,
"16": null,
"21": null,
"26": null
}
},
"07177017e9": {
"motorbike": {
"2": null,
"5": null,
"9": null,
"12": null
}
},
"07238ffc58": {
"monkey": {
"5": "1. The monkey is sitting on the ground, slightly leaning forward with its hands touching the surface.\n2. The monkey is standing on all fours with its head oriented downward.\n3. The monkey is walking, facing toward the right side of the frame.",
"14": "1. The monkey is sitting on the ground with legs bent, appearing to rest or observe its surroundings.\n\n2. The monkey is standing with arms extended downward, appearing to inspect or interact with the ground.\n\n3. The monkey is walking upright, moving forward with one leg lifted.",
"19": null,
"27": null
}
},
"07353b2a89": {
"sheep": {
"3": null,
"9": null,
"16": null,
"26": null
}
},
"0738493cbf": {
"airplane": {
"4": null,
"7": null,
"8": null,
"12": null
}
},
"075926c651": {
"person": {
"2": "1. The person is holding a microphone close to their mouth, appearing to engage in speaking or singing.\n\n2. The person is seated and playing a piano, using both hands to press the keys.",
"7": null,
"9": null,
"11": null
}
},
"075c701292": {
"duck": {
"8": "1. The duck is flapping its wings energetically while moving forward. \n2. The duck is stretching its neck upwards as it walks briskly. \n3. The duck is waddling forward with its head slightly turned to the side. \n4. The duck is tilting its head downward, pecking at the ground as it advances.",
"12": null,
"24": null,
"33": null
}
},
"0762ea9a30": {
"person": {
"3": null,
"9": null,
"13": null,
"17": null
}
},
"07652ee4af": {
"skateboard": {
"5": null,
"12": null,
"15": null,
"25": null
},
"person": {
"5": null,
"12": null,
"15": null,
"25": null
}
},
"076f206928": {
"zebra": {
"4": null,
"9": null,
"10": null,
"14": null
},
"person": {
"4": null,
"9": null,
"10": null,
"14": null
}
},
"077d32af19": {
"train": {
"5": null,
"8": null,
"10": null,
"15": null
},
"person": {
"5": null,
"8": "1. The person is standing near the railway tracks, facing towards the train.\n\n2. The person is standing next to another person, also facing towards the train.\n\n3. The person is walking away from the train, moving along the fence by the railway.",
"10": null,
"15": null
}
},
"079049275c": {
"mouse": {
"7": null,
"10": null,
"17": null,
"26": null
}
},
"07913cdda7": {
"train": {
"4": null,
"7": null,
"9": null,
"14": null
},
"person": {
"4": null,
"7": "1. The person is standing still and observing the approaching train.\n\n2. The person is walking along the platform while glancing towards the train.",
"9": null,
"14": null
}
},
"07a11a35e8": {
"ape": {
"8": null,
"16": null,
"22": "1. The ape is sitting upright while holding a piece of food near its mouth with one hand.\n2. The ape is moving forward on all fours, facing ahead.",
"28": "1. The ape is sitting while holding a piece of fruit with one hand and appears to be inspecting it closely.\n2. The ape is standing on all fours and looking upwards towards the other ape."
}
},
"07ac33b6df": {
"ape": {
"5": null,
"10": null,
"15": null,
"22": null
}
},
"07c62c3d11": {
"parrot": {
"4": "1. The parrot is perched on a round red ring, gripping the surface securely with its feet.\n\n2. The parrot is standing on a branch, tilting its head slightly as it maintains balance.",
"15": null,
"21": null,
"31": "1. The parrot is perched on a red circular swing, holding onto it with one foot, while slightly tilting its head to one side.\n\n3. The parrot is inside a woven basket structure, partially hidden, but visible through the openings, with its head facing outward."
}
},
"07cc1c7d74": {
"snake": {
"4": null,
"11": null,
"22": null,
"27": null
}
},
"080196ef01": {
"hand": {
"7": null,
"13": null,
"25": null,
"30": null
},
"lizard": {
"7": null,
"13": null,
"25": null,
"30": null
}
},
"081207976e": {
"hat": {
"4": null,
"8": null,
"11": null,
"17": null
}
},
"081ae4fa44": {
"shark": {
"5": null,
"12": "1. The shark is gliding smoothly upwards, weaving through the water with rhythmic tail movements.\n\n2. The shark is swimming gracefully forward, turning its body slightly as it navigates past the rocky terrain.",
"19": null,
"21": null
}
},
"081d8250cb": {
"skateboard": {
"2": null,
"9": null,
"11": null,
"15": null
},
"sedan": {
"2": null,
"9": null,
"11": null,
"15": null
},
"person": {
"2": null,
"9": null,
"11": null,
"15": null
}
},
"082900c5d4": {
"duck": {
"2": null,
"8": null,
"11": "1. The duck is gliding smoothly across the water while turning its head to the side.\n\n2. The duck is paddling forward, creating ripples as it propels itself through the water.\n\n3. The duck is flapping its wings as it propels itself forward, leaving a trail of splashes behind.",
"14": null
}
},
"0860df21e2": {
"frisbee": {
"6": null,
"11": null,
"23": null,
"33": null
}
},
"0866d4c5e3": {
"bird": {
"4": "1. The bird is pecking at the ground, rapidly moving its beak among the dirt and small plants.\n\n2. The bird is hopping forward, its wings slightly outstretched as it moves swiftly.\n\n3. The bird is standing upright, tilting its head to the side as it observes its surroundings.",
"7": null,
"9": "1. The bird is pecking into the ground with its beak angled downward.\n2. The bird is flapping its wings vigorously while facing the ground.\n3. The bird is standing still with its head turned slightly to one side.",
"14": "1. The bird is pecking at the ground with its beak while facing forward.\n2. The bird is scratching the soil with its feet in a backward motion.\n3. The bird is hopping slightly forward while keeping its wings tucked in."
}
},
"0891ac2eb6": {
"person": {
"4": "1. The person is walking on the pebbles while balancing with their arms slightly out to the sides.\n2. The person is seated, rubbing their hands together while looking towards the front.\n3. The person is sitting upright on a lounger and leaning back with their head turned towards the sea.",
"5": null,
"8": null,
"13": "1. The person is bending down and reaching toward an object on the ground.\n2. The person is sitting upright, twisting to the side while adjusting something in their hands.\n3. The person is sitting back and leaning slightly to one side, supporting themselves with an elbow."
}
},
"08931bc458": {
"skateboard": {
"8": null,
"17": null,
"24": null,
"26": null
},
"others": {
"8": null,
"17": null,
"24": null,
"26": null
},
"person": {
"8": null,
"17": null,
"24": null,
"26": null
}
},
"08aa2705d5": {
"snake": {
"9": null,
"12": null,
"18": null,
"30": null
}
},
"08c8450db7": {
"toilet": {
"2": null,
"9": null,
"10": null,
"15": null
}
},
"08d50b926c": {
"turtle": {
"5": null,
"14": null,
"20": null,
"26": null
}
},
"08e1e4de15": {
"monkey": {
"5": "1. the monkey is crouching on a rock and looking to the left.\n2. the monkey is ascending a rock.\n3. the monkey is seated on a rock and looking towards the right.\n4. the monkey is sitting on a higher rock, looking slightly upward.",
"13": null,
"18": "1. The monkey is climbing up a rocky slope using its hands and feet.\n\n2. The monkey is standing on a rock, looking forward with its head raised.\n\n3. The monkey is sitting with its back against the rock, facing slightly sideways.",
"32": "1. Monkey is sitting on a rock, holding its head up, looking into the distance.\n\n2. Monkey is standing on a rock, facing away, appearing still.\n\n3. Monkey is climbing over a rock, with one leg extended upwards.\n\n4. Monkey is standing mid-jump, moving across multiple rocks."
}
},
"08e48c1a48": {
"cow": {
"4": null,
"5": null,
"8": null,
"15": null
}
},
"08f561c65e": {
"person": {
"6": null,
"16": null,
"23": null,
"31": null
},
"giant_panda": {
"6": null,
"16": null,
"23": null,
"31": null
}
},
"08feb87790": {
"sheep": {
"4": null,
"6": null,
"12": null,
"14": null
}
},
"09049f6fe3": {
"mouse": {
"4": null,
"13": null,
"16": null,
"23": null
}
},
"092e4ff450": {
"snake": {
"7": null,
"13": null,
"22": null,
"27": null
}
},
"09338adea8": {
"whale": {
"2": "1. The whale is swimming near the surface, exposing its back and slightly arching as it propels forward.\n\n2. The whale is gliding through the water, moving its tail up and down while facing forward.",
"17": null,
"23": null,
"31": null
}
},
"093c335ccc": {
"frisbee": {
"5": null,
"8": null,
"15": null,
"20": null
},
"person": {
"5": null,
"8": null,
"15": null,
"20": null
}
},
"0970d28339": {
"ape": {
"8": "1. The ape is hanging from a branch while extending its body downward.\n2. The ape is grasping a branch with one hand while looking upward.",
"12": "1. The ape is sitting with its body facing upward and holding onto a branch above.\n2. The ape is reaching out with one arm extended toward a branch while looking at it.",
"22": "1. Ape is gripping a branch with one hand while facing another ape.\n\n2. Ape is seated on a branch, using both hands to hold onto it while looking in an outward direction.",
"30": null
}
},
"0974a213dc": {
"giraffe": {
"4": "1. Giraffe is bending forward, inspecting the ground closely with its neck extended downward.\n\n2. Giraffe is standing still, facing away with its head slightly turned to the side.\n\n3. Giraffe is standing near a tree, looking outward towards the surrounding area.",
"8": "1. The giraffe is lowering its head toward the ground in a bending posture.\n\n2. The giraffe is standing with legs spread and head angled downward.\n\n3. The giraffe is turning its head to the right while standing still.",
"12": null,
"16": "1. The giraffe is bending its neck downward to graze on the ground.\n\n2. The giraffe is lowering its head towards the back of the other giraffe.\n\n3. The giraffe is standing upright and looking to the right."
}
},
"097b471ed8": {
"cat": {
"4": "1. The cat is lying down with its body stretched and facing forward.\n\n2. The cat is nestled against an object, calmly resting with its head slightly tilted.",
"8": "1. The cat is lying down with its front paws extended forward and facing the camera.\n\n2. The cat is seated inside a container, looking outward with its head raised.",
"10": "1. The cat is lying down with its head slightly raised, looking forward.\n\n2. The cat is peeking from behind an object, with its head and one paw visible.",
"15": null
}
},
"0990941758": {
"giant_panda": {
"5": null,
"16": null,
"24": null,
"27": null
}
},
"09a348f4fa": {
"lizard": {
"3": null,
"10": null,
"18": null,
"22": null
}
},
"09a6841288": {
"duck": {
"4": null,
"8": null,
"13": null,
"17": null
}
},
"09c5bad17b": {
"airplane": {
"4": null,
"8": null,
"10": null,
"16": null
}
},
"09c9ce80c7": {
"giant_panda": {
"9": null,
"16": null,
"25": null,
"30": null
}
},
"09ff54fef4": {
"fox": {
"2": null,
"9": null,
"19": "1. The fox is crouching low and peering forward as if getting ready to pounce.\n2. The fox is standing tall, arching its back while turning its head to look backward.",
"24": null
}
},
"0a23765d15": {
"skateboard": {
"4": null,
"6": null,
"10": null,
"16": null
},
"person": {
"4": "1. The person is jumping in the air with arms outstretched while in motion.\n\n2. The person is crouching on a skateboard, moving forward.",
"6": "1. The person is jumping onto a ledge with one foot forward and arms extended for balance.\n\n2. The person is crouching low on a skateboard, preparing to continue forward.",
"10": "1. The person is skateboarding forward with arms stretched to balance.\n\n2. The person is jumping onto a skateboard, tilting slightly forward.",
"16": null
}
},
"0a275e7f12": {
"elephant": {
"2": null,
"8": null,
"12": null,
"17": null
}
},
"0a2f2bd294": {
"motorbike": {
"3": null,
"8": null,
"10": null,
"15": null
}
},
"0a7a2514aa": {
"cat": {
"5": null,
"6": null,
"13": null,
"14": null
},
"lizard": {
"5": null,
"6": null,
"13": null,
"14": null
}
},
"0a7b27fde9": {
"parrot": {
"4": "1. The parrot is rubbing its head against the person's hand while gently nuzzling into the grip.\n\n2. The parrot is perching calmly on the person\u2019s arm while slightly adjusting its footing.",
"10": null,
"19": null,
"32": null
}
},
"0a8c467cc3": {
"fish": {
"9": null,
"16": "1. The fish is darting swiftly to the right, its fins flaring as it propels through the water. \n2. The fish is hovering near the bottom, its mouth opening and closing rhythmically as it nibbles on the substrate. \n3. The fish is gliding in a downward arc, its tail flicking gently to maintain balance.",
"18": null,
"33": null
}
},
"0ac8c560ae": {
"person": {
"5": null,
"8": null,
"12": "1. The person is sitting upright on the elephant, holding onto its back for balance.\n\n2. The person is leaning forward while sitting on the elephant, gripping the sides with both hands.",
"17": null
}
},
"0b1627e896": {
"boat": {
"2": null,
"7": null,
"11": null,
"15": null
}
},
"0b285c47f6": {
"hand": {
"2": null,
"10": null,
"17": null,
"20": null
},
"mouse": {
"2": null,
"10": null,
"17": null,
"20": null
}
},
"0b34ec1d55": {
"ape": {
"8": null,
"14": null,
"21": null,
"33": null
}
},
"0b5b5e8e5a": {
"sedan": {
"5": null,
"7": null,
"12": null,
"17": null
},
"person": {
"5": null,
"7": null,
"12": null,
"17": null
}
},
"0b68535614": {
"hand": {
"5": null,
"10": null,
"24": null,
"33": null
},
"rabbit": {
"5": null,
"10": null,
"24": null,
"33": null
}
},
"0b6f9105fc": {
"rabbit": {
"4": null,
"16": null,
"24": null,
"28": null
}
},
"0b7dbfa3cb": {
"cow": {
"4": null,
"5": null,
"8": null,
"14": null
}
},
"0b9cea51ca": {
"whale": {
"8": null,
"11": null,
"18": null,
"32": null
}
},
"0b9d012be8": {
"camel": {
"2": null,
"10": null,
"18": null,
"27": null
}
},
"0bcfc4177d": {
"truck": {
"2": null,
"6": null,
"11": null,
"14": null
}
},
"0bd37b23c1": {
"motorbike": {
"3": null,
"8": null,
"10": null,
"17": null
}
},
"0bd864064c": {
"eagle": {
"4": null,
"13": null,
"18": null,
"23": null
}
},
"0c11c6bf7b": {
"deer": {
"5": null,
"11": null,
"24": null,
"27": null
}
},
"0c26bc77ac": {
"crocodile": {
"7": null,
"10": null,
"23": null,
"33": null
}
},
"0c3a04798c": {
"fish": {
"3": null,
"6": null,
"12": null,
"17": null
},
"duck": {
"3": null,
"6": null,
"12": null,
"17": null
}
},
"0c44a9d545": {
"tiger": {
"6": null,
"14": null,
"25": null,
"30": null
}
},
"0c817cc390": {
"hedgehog": {
"4": null,
"10": null,
"25": null,
"29": null
},
"dog": {
"4": null,
"10": null,
"25": null,
"29": null
}
},
"0ca839ee9a": {
"ape": {
"3": null,
"14": "1. Ape is lying on its back with arms resting casually, head slightly tilted to the side.\n\n2. Ape is lying closely and holding onto the larger ape with one arm.",
"22": null,
"26": null
}
},
"0cd7ac0ac0": {
"rabbit": {
"6": null,
"11": null,
"19": null,
"22": null
}
},
"0ce06e0121": {
"parrot": {
"6": null,
"11": null,
"25": null,
"33": null
}
},
"0cfe974a89": {
"turtle": {
"2": null,
"17": "1. The turtle is extending its head forward, tilting slightly downward, and appears to be crawling slowly.\n\n2. The turtle is on its back, kicking its legs, and attempting to roll over.",
"24": "1. Turtle is extending its head forward, aligning closely beside the other turtle, possibly touching.\n\n2. Turtle is slightly leaning to one side, its legs splayed out, while remaining mostly stationary.",
"33": "1. The turtle is pushing forward with its head tucked in, moving towards another turtle.\n\n2. The turtle is flipping onto its back while extending its legs upward."
}
},
"0d2fcc0dcd": {
"zebra": {
"4": null,
"9": "1. The zebra is bending its head downward and grazing on the grass.\n\n2. The zebra is standing still while turning its head to the side, appearing attentive to its surroundings.\n\n3. The zebra is walking forward, slightly tilting its head upward.\n\n4. The zebra is lifting its head and sniffing the air, with ears perked up.",
"12": null,
"14": null
}
},
"0d3aad05d2": {
"parachute": {
"4": null,
"8": null,
"16": null,
"26": null
},
"person": {
"4": null,
"8": null,
"16": null,
"26": null
}
},
"0d40b015f4": {
"snowboard": {
"4": null,
"17": null,
"21": null,
"30": null
},
"person": {
"4": null,
"17": null,
"21": null,
"30": null
}
},
"0d97fba242": {
"dog": {
"4": null,
"6": null,
"9": null,
"14": null
},
"person": {
"4": null,
"6": null,
"9": null,
"14": null
}
},
"0d9cc80d7e": {
"person": {
"2": null,
"3": null,
"4": "1. person is standing still, facing the bus.\n\n2. person is walking towards the bus entrance.\n\n3. person is looking towards the bus, slightly turning the head.",
"5": null
}
},
"0dab85b6d3": {
"lizard": {
"3": null,
"13": "1. The lizard is resting on an open hand, extending its legs outward while appearing relaxed.\n2. The lizard is positioned on the surface, raising its head slightly as if observing its surroundings.",
"14": null,
"24": "1. The lizard is crawling forward across the person's hand with its head lifted.\n2. The lizard is positioned with its body curved, climbing on the edge of the container."
}
},
"0db5c427a5": {
"train": {
"3": null,
"8": null,
"13": null,
"15": null
}
},
"0dbaf284f1": {
"cat": {
"3": "1. The cat is stepping over a foot while reaching forward with its front paw.\n\n2. The cat is lowering its head and sniffing at the base of a chair.",
"7": "1. The cat is standing on all fours with its head low and touching an object on the floor.\n\n2. The cat is lowering its head towards the floor while resting near a metallic pole.",
"13": "1. The cat is stepping forward with its front paw extended and head lowered, inspecting the leg in front of it.\n\n2. The cat is crouched down and batting gently with its paw toward an object on the floor.",
"17": "1. The cat is leaning forward with its head down, appearing to nudge a human foot with its nose.\n\n2. The cat is crouching close to the ground, facing forward while its tail is slightly elevated."
}
},
"0de4923598": {
"others": {
"4": null,
"7": null,
"12": null,
"16": null
}
},
"0df28a9101": {
"turtle": {
"4": null,
"8": null,
"18": null,
"26": null
}
},
"0e04f636c4": {
"frog": {
"2": null,
"11": null,
"18": null,
"23": null
}
},
"0e05f0e232": {
"lizard": {
"2": null,
"12": null,
"24": "1. The lizard is curling its body into a loop.\n\n2. The lizard is lying flat on the ground, extending its body with legs spread.",
"31": null
}
},
"0e0930474b": {
"sedan": {
"2": null,
"7": null,
"9": null,
"16": null
},
"person": {
"2": null,
"7": null,
"9": null,
"16": null
}
},
"0e27472bea": {
"hand": {
"3": null,
"13": null,
"18": null,
"29": null
},
"turtle": {
"3": null,
"13": null,
"18": null,
"29": null
}
},
"0e30020549": {
"parrot": {
"2": null,
"11": null,
"19": null,
"21": null
}
},
"0e621feb6c": {
"lizard": {
"9": null,
"12": "1. The lizard is stretching its body forward, its tail flicking slightly behind.\n\n2. The lizard is climbing over a leaf, its head raised while stepping forward.",
"18": null,
"27": "1. Lizard is extending its body forward, appearing to crawl across the surface.\n\n2. Lizard is pushing its body upward, lifting its head and front limbs off the ground."
}
},
"0e803c7d73": {
"hand": {
"3": null,
"7": null,
"9": null,
"13": null
},
"knife": {
"3": null,
"7": null,
"9": null,
"13": null
}
},
"0e9ebe4e3c": {
"truck": {
"4": null,
"5": null,
"9": null,
"11": null
}
},
"0e9f2785ec": {
"umbrella": {
"4": null,
"7": null,
"10": null,
"15": null
},
"person": {
"4": null,
"7": null,
"10": null,
"15": null
}
},
"0ea68d418b": {
"airplane": {
"3": null,
"6": null,
"12": null,
"16": null
},
"others": {
"3": null,
"6": null,
"12": null,
"16": null
}
},
"0eb403a222": {
"hand": {
"4": null,
"6": null,
"11": null,
"15": null
},
"knife": {
"4": null,
"6": null,
"11": null,
"15": null
}
},
"0ee92053d6": {
"person": {
"3": null,
"6": null,
"13": null,
"14": null
}
},
"0eefca067f": {
"giant_panda": {
"2": "1. The giant panda is grasping and eating bamboo with its paw while seated.\n2. The giant panda is lying back and chewing a piece of bamboo.",
"12": null,
"18": "1. Giant_panda is sitting upright, holding bamboo with its paw and appears to be eating it.\n\n2. Giant_panda is lying down, grasping a piece of bamboo in its mouth, interacting with the surrounding vegetation.",
"21": "1. The giant panda is sitting upright, grasping a bamboo stalk with its paw while chewing on it.\n\n2. The giant panda is lying on its back, holding a piece of bamboo close to its mouth with both paws."
}
},
"0f17fa6fcb": {
"duck": {
"2": "1. The duck is paddling forward, creating small ripples in the water as it moves.\n\n2. The duck is flapping its wings energetically, splashing water around it.\n\n3. The duck is turning its head sideways and dipping its beak into the water.",
"16": "1. The duck is gliding smoothly across the water, leaving gentle ripples behind.\n2. The duck is energetically flapping its wings, splashing water around.\n3. The duck is stretching its neck forward, appearing to peck at the water's surface.",
"22": null,
"26": null
}
},
"0f1ac8e9a3": {
"frog": {
"3": null,
"17": null,
"23": null,
"27": null
}
},
"0f202e9852": {
"parrot": {
"3": null,
"5": null,
"9": null,
"12": null
}
},
"0f2ab8b1ff": {
"dolphin": {
"9": null,
"14": null,
"23": null,
"32": null
}
},
"0f51a78756": {
"sheep": {
"7": null,
"11": null,
"14": null,
"25": null
}
},
"0f5fbe16b0": {
"raccoon": {
"2": null,
"12": null,
"23": "1. Raccoon is lying on its back, extending its paws upwards.\n\n2. Raccoon is reaching forward with one paw, leaning towards the other raccoon.",
"30": null
}
},
"0f6072077b": {
"person": {
"3": "1. The person is leaning sideways with one hand resting on the motorcycle while smiling.\n2. The person is sitting on the motorcycle and looking to the side with one hand on her knee.\n3. The person is holding a camera to their face and taking a photograph.",
"7": null,
"9": null,
"16": null
}
},
"0f6b69b2f4": {
"rabbit": {
"8": null,
"14": null,
"19": null,
"29": null
}
},
"0f6c2163de": {
"snail": {
"4": null,
"8": null,
"19": null,
"23": null
}
},
"0f74ec5599": {
"giant_panda": {
"3": null,
"13": null,
"19": null,
"29": null
}
},
"0f9683715b": {
"elephant": {
"3": null,
"6": null,
"13": null,
"16": null
}
},
"0fa7b59356": {
"duck": {
"6": null,
"12": null,
"21": null,
"31": null
}
},
"0fb173695b": {
"paddle": {
"3": null,
"7": null,
"12": null,
"15": null
},
"hat": {
"3": null,
"7": null,
"12": null,
"15": null
},
"person": {
"3": null,
"7": null,
"12": null,
"15": null
}
},
"0fc958cde2": {
"owl": {
"4": null,
"10": null,
"16": null,
"20": null
}
},
"0fe7b1a621": {
"parrot": {
"5": null,
"13": null,
"23": null,
"26": null
}
},
"0ffcdb491c": {
"person": {
"2": null,
"6": null,
"10": null,
"17": null
}
},
"101caff7d4": {
"giant_panda": {
"4": "1. Giant_panda is resting on the ground, bending over, possibly engaging in a nurturing pose.\n\n2. Giant_panda is lying on its back, with its head tilted slightly upwards, showing a relaxed posture.",
"6": null,
"10": null,
"15": "1. The giant panda is sitting and leaning forward while resting its head on its paws.\n\n2. The giant panda is lying on its back with its head turned towards the other panda."
}
},
"1022fe8417": {
"person": {
"2": "1. The person is holding the reins and guiding the horse.\n2. The person is waving an object, possibly a hat, in the air.\n3. The person is clapping their hands rhythmically.",
"8": "1. The person is holding the reins and guiding the horses.\n\n2. The person is sitting, looking towards the front while maintaining an upright posture.\n\n3. The person is standing, facing forward with arms resting by the sides.",
"13": "1. The person is sitting at the front of the carriage, holding the reins and looking forward.\n2. The person is sitting upright, raising one arm with a wave-like motion.\n3. The person is seated comfortably at the back of the carriage, with hands placed on their lap.",
"16": "1. The person is holding the reins with both hands and sitting upright while controlling the horse-drawn carriage.\n\n2. The person is sitting and facing forward while holding onto the side of the carriage.\n\n3. The person is sitting while using both hands to grasp a long stick or whip."
}
},
"1032e80b37": {
"giraffe": {
"4": null,
"7": null,
"11": null,
"17": null
}
},
"103f501680": {
"fish": {
"2": null,
"15": null,
"25": null,
"32": null
}
},
"104e64565f": {
"elephant": {
"2": null,
"8": null,
"12": null,
"15": null
}
},
"104f1ab997": {
"person": {
"2": "1. The person is bending over and reaching towards a boat, appearing to interact with it.\n\n2. The person is bent forward and extending their arm towards the boat, engaging with its edge.\n\n3. The person is standing upright and holding an object with both hands, positioned near their chest.",
"5": null,
"8": null,
"15": "1. The person is standing and adjusting something on their wrist with their hands.\n\n2. The person is bending over and securing objects inside a small boat.\n\n3. The person is holding a phone or device with both hands and appears to be focused on it."
}
},
"106242403f": {
"person": {
"2": null,
"9": null,
"11": null,
"17": null
}
},
"10b31f5431": {
"person": {
"5": "1. The person is riding a bicycle, pedaling forward on the road.\n\n3. The person is skating, bending their knees, and appears to be maintaining balance.\n\n4. The person is skating, holding an object with one hand extended forward.",
"11": "1. The person is walking along the sidewalk, swinging their arms slightly.\n3. The person is riding a bicycle, pedaling steadily while steering.\n4. The person is crouching low and leaning forward, holding onto a skateboard.",
"21": "1. Person is crouching and maneuvering a longboard while descending a road.\n\n2. Person is extending an arm forward, holding a camera or similar device while riding a skateboard.",
"30": "1. The person is gliding forward on a skateboard while standing upright.\n4. The person is crouching low on a skateboard, reaching forward with one arm."
}
},
"10eced835e": {
"giant_panda": {
"4": "1. giant_panda is leaning forward on all fours, appearing to be moving or investigating the ground.\n\n2. giant_panda is sitting upright, using its front paw to grasp and bring an object, possibly food, towards its mouth.",
"5": "1. Giant_panda is bent over, appearing to be inspecting or interacting with the ground.\n\n2. Giant_panda is seated upright, appearing to be holding or grasping something with its paws.",
"10": null,
"11": "1. Giant_panda is turning its head upwards and lifting one arm towards its face.\n\n2. Giant_panda is sitting down with its head turned to the side, surrounded by bamboo leaves."
}
},
"110d26fa3a": {
"shark": {
"5": null,
"12": null,
"16": null,
"24": null
}
},
"1122c1d16a": {
"parrot": {
"7": "1. The parrot is holding onto the cage with its claws while turning its head.\n\n2. The parrot is being held upright with its wings slightly spread.\n\n3. The parrot is lying on its back in the person's hands, showing its chest.\n\n4. The parrot is perched on a person's hand while facing forward.\n\n5. The parrot is sitting inside the cage, with its head turned slightly to the side.",
"15": "1. The parrot is reaching its beak towards a perch and nibbling on it.\n\n2. The parrot is lying on its back, clutching onto fingers with both claws.\n\n3. The parrot is flapping its wings slightly as it rests in a hand.\n\n4. The parrot is pecking gently at the surface it's perched on.\n\n5. The parrot is turning its head and inspecting the ground below.",
"25": null,
"32": null
},
"person": {
"7": null,
"15": null,
"25": null,
"32": null
}
},
"1145b49a5f": {
"rabbit": {
"2": null,
"10": null,
"25": null,
"31": null
}
},
"11485838c2": {
"giraffe": {
"5": "1. Giraffe extends its neck upward, inspecting foliage above the structure.\n\n2. Giraffe bends its neck, lowering its head towards the ground.\n\n3. Giraffe turns its head to the side, appearing to observe surroundings.",
"8": null,
"11": "1. The giraffe is extending its neck upward and appears to be reaching towards an elevated platform.\n2. The giraffe is facing the platform with its neck slightly bent as it seems to be observing the area.\n3. The giraffe is lowering its head and bringing its snout close to the other giraffe's side.",
"17": "1. The giraffe is stretching its neck upward while pressing its mouth against a roof structure.\n\n2. The giraffe is leaning forward and nudging its head against another giraffe.\n\n3. The giraffe is standing with its body turned slightly backward while facing the camera."
}
},
"114e7676ec": {
"surfboard": {
"2": null,
"12": null,
"24": null,
"26": null
},
"person": {
"2": null,
"12": null,
"24": null,
"26": null
}
},
"1157472b95": {
"parrot": {
"3": "1. The parrot is holding a fabric piece with its beak and claw while standing on the branch.\n2. The parrot is perched upright with its beak slightly open, facing forward.",
"10": null,
"25": null,
"30": null
}
},
"115ee1072c": {
"cow": {
"3": null,
"7": null,
"10": null,
"14": null
}
},
"1171141012": {
"turtle": {
"2": null,
"8": null,
"19": null,
"23": null
},
"person": {
"2": null,
"8": null,
"19": null,
"23": null
}
},
"117757b4b8": {
"snail": {
"3": null,
"10": null,
"24": null,
"31": null
}
},
"1178932d2f": {
"motorbike": {
"6": null,
"15": null,
"23": null,
"32": null
},
"person": {
"6": null,
"15": null,
"23": null,
"32": null
}
},
"117cc76bda": {
"whale": {
"3": null,
"12": null,
"24": null,
"27": null
}
},
"1180cbf814": {
"fish": {
"6": null,
"17": null,
"22": null,
"33": null
}
},
"1187bbd0e3": {
"cat": {
"2": null,
"9": null,
"10": null,
"16": null
}
},
"1197e44b26": {
"giant_panda": {
"8": null,
"10": null,
"24": null,
"30": null
}
},
"119cf20728": {
"hand": {
"5": null,
"17": null,
"21": null,
"29": null
},
"lizard": {
"5": null,
"17": null,
"21": null,
"29": null
}
},
"119dd54871": {
"lion": {
"5": null,
"10": null,
"16": null,
"24": null
}
},
"11a0c3b724": {
"mouse": {
"3": null,
"7": null,
"8": null,
"14": null
}
},
"11a6ba8c94": {
"skateboard": {
"5": null,
"16": null,
"21": null,
"28": null
},
"person": {
"5": "1. The person is crouching down while holding a device close to the ground with both hands.\n\n2. The person is using one foot to interact with a skateboard on the ground, with the other leg bent and arms spread for balance.",
"16": "1. The person is crouching down and tying shoelaces.\n\n2. The person is holding a skateboard with one hand and extending one leg while maintaining balance.",
"21": "1. The person is crouching down with one knee bent and resting their arms on their knee.\n\n2. The person is performing a handstand on a skateboard, with one leg extended upwards.",
"28": "1. The person is crouching and adjusting something on the ground with their hands.\n\n2. The person is balancing on a skateboard, performing a maneuver with legs off the board."
}
},
"11c722a456": {
"turtle": {
"9": "1. Turtle is swimming forward, extending its limbs and gliding through the water.\n\n2. Turtle is holding its position near the water surface, with its head slightly elevated as if inspecting its surroundings.",
"17": null,
"20": null,
"28": null
}
},
"11cbcb0b4d": {
"zebra": {
"5": null,
"9": null,
"12": null,
"16": null
}
},
"11ccf5e99d": {
"plant": {
"5": null,
"9": null,
"13": null,
"15": null
},
"person": {
"5": null,
"9": null,
"13": null,
"15": null
}
},
"11ce6f452e": {
"person": {
"4": "1. The person is standing with their hand behind their back, observing the scene.\n\n2. The person is grasping reins and riding the moving carriage.\n\n3. The person is holding onto a pole while standing in the carriage.",
"7": null,
"8": "1. The person is standing with hands on their hips, facing away.\n\n2. The person is holding the reins while sitting on a carriage.\n\n3. The person is gripping a handle and standing on the carriage.",
"16": "1. person is standing with hands on hips, observing something in the distance.\n\n2. person is leaning slightly forward, appearing to interact with the environment or another person.\n\n3. person is holding onto a structure, looking towards the front, possibly engaged in a conversation or observing an event."
}
},
"11feabe596": {
"rabbit": {
"3": null,
"9": null,
"19": null,
"25": null
}
},
"120cb9514d": {
"person": {
"8": null,
"10": "1. The person is extending both arms outward while smiling.\n\n2. The person is walking forward, holding a snowboard in one hand.",
"21": "1. The person is extending an arm forward to embrace another person.\n\n2. The person is holding a snowboard upright on the ground with one hand.\n\n3. The person is leaning forward and wrapping both arms around another person in an embrace.",
"30": null
}
},
"12156b25b3": {
"surfboard": {
"7": null,
"12": null,
"24": null,
"32": null
},
"person": {
"7": null,
"12": null,
"24": null,
"32": null
}
},
"122896672d": {
"skateboard": {
"2": null,
"17": null,
"25": null,
"31": null
},
"others": {
"2": null,
"17": null,
"25": null,
"31": null
},
"person": {
"2": null,
"17": null,
"25": null,
"31": null
}
},
"1233ac8596": {
"dog": {
"4": null,
"7": null,
"11": null,
"17": null
}
},
"1239c87234": {
"lizard": {
"7": null,
"15": null,
"24": null,
"33": null
}
},
"1250423f7c": {
"elephant": {
"5": null,
"8": null,
"13": null,
"14": null
},
"hat": {
"5": null,
"8": null,
"13": null,
"14": null
},
"person": {
"5": null,
"8": null,
"13": null,
"14": null
}
},
"1257a1bc67": {
"snake": {
"8": null,
"12": null,
"16": null,
"24": null
}
},
"125d1b19dd": {
"giant_panda": {
"8": "1. Giant_panda is perched on a tree branch, extending its front leg forward.\n\n2. Giant_panda is climbing along a branch, gripping it with both front paws.",
"11": "1. Giant_panda is perched on a tree branch, leaning forward with its head lowered, appearing to stabilize itself using its limbs.\n\n2. Giant_panda is climbing along a slender branch, reaching outward with its paw, maintaining balance on the narrow surface.",
"20": null,
"31": "1. The giant panda is climbing a tree branch with its head facing downward.\n\n2. The giant panda is balanced on a tree branch, looking toward the side."
}
},
"126d203967": {
"skateboard": {
"7": null,
"15": null,
"24": null,
"28": null
},
"person": {
"7": null,
"15": null,
"24": null,
"28": null
}
},
"1295e19071": {
"airplane": {
"2": null,
"9": null,
"11": null,
"14": null
}
},
"12ad198c54": {
"skateboard": {
"6": null,
"13": null,
"14": null,
"26": null
},
"person": {
"6": null,
"13": null,
"14": null,
"26": null
}
},
"12bddb2bcb": {
"frisbee": {
"5": null,
"13": null,
"19": null,
"21": null
},
"person": {
"5": null,
"13": null,
"19": null,
"21": null
}
},
"12ec9b93ee": {
"giant_panda": {
"3": null,
"11": null,
"25": null,
"31": null
}
},
"12eebedc35": {
"bird": {
"4": null,
"5": null,
"10": null,
"14": null
}
},
"132852e094": {
"fox": {
"3": null,
"11": null,
"16": null,
"19": null
}
},
"1329409f2a": {
"fish": {
"6": null,
"14": null,
"20": null,
"28": null
}
},
"13325cfa14": {
"umbrella": {
"2": null,
"9": null,
"11": null,
"15": null
},
"person": {
"2": null,
"9": null,
"11": null,
"15": null
}
},
"1336440745": {
"mouse": {
"5": null,
"12": null,
"19": null,
"30": null
}
},
"134d06dbf9": {
"cat": {
"5": null,
"8": null,
"13": null,
"15": null
}
},
"135625b53d": {
"hand": {
"6": null,
"9": null,
"14": null,
"25": null
},
"parrot": {
"6": null,
"9": null,
"14": null,
"25": null
}
},
"13870016f9": {
"cow": {
"4": null,
"6": null,
"9": null,
"13": null
},
"person": {
"4": null,
"6": null,
"9": null,
"13": null
}
},
"13960b3c84": {
"giraffe": {
"2": "1. The giraffe is extending its neck forward and touching the ground with its nose. \n2. The giraffe is bending its head downward, nudging the side of another giraffe. \n3. The giraffe is tilting its head and moving toward the nearby rock.",
"6": null,
"11": "1. Giraffe is extending its neck forward, reaching with its head over the ground.\n\n2. Giraffe is standing still, with its head raised and body slightly turned.\n\n3. Giraffe is leaning downwards, inspecting the ground closely.",
"15": "1. Giraffe is standing upright, tilting its head slightly downward.\n\n2. Giraffe is partially turned, displaying a slight body twist.\n\n3. Giraffe is reaching its head over a rock, extending its neck forward."
}
},
"13adaad9d9": {
"giant_panda": {
"7": null,
"15": null,
"24": null,
"33": null
}
},
"13ae097e20": {
"giant_panda": {
"9": null,
"11": null,
"19": null,
"30": null
}
},
"13e3070469": {
"zebra": {
"4": "1. The zebra is lowering its head and grazing on the grass.\n\n2. The zebra is nudging its head against another zebra, displaying playful interaction.\n\n3. The zebra is standing still and looking ahead, with its ears perked up attentively.",
"8": null,
"10": null,
"15": null
}
},
"13f6a8c20d": {
"fish": {
"6": null,
"12": null,
"18": null,
"24": null
}
},
"1416925cf2": {
"truck": {
"4": "1. The truck is being filled with chopped material through a chute from the adjacent harvester.\n\n2. The truck is processing the crop and discharging the chopped material into the adjacent truck.",
"7": null,
"9": "1. The truck is receiving harvested material being discharged from a chute above it.\n2. The truck is actively cutting and directing the harvested material through an elevated chute.",
"11": null
}
},
"142d2621f5": {
"motorbike": {
"2": null,
"6": null,
"9": null,
"12": null
},
"person": {
"2": "1. The person is bending over and touching the ground with one hand.\n\n2. The person is leaning forward and gripping the motorcycle handlebars.",
"6": "1. The person is stepping forward on the muddy ground, appearing to assist with the motorcycle.\n\n2. The person is bent over, pushing on the handlebars of the motorcycle to move it through the mud.",
"9": "1. The person is bending forward and pushing the motorcycle from the side with both hands on the seat area.\n\n2. The person is gripping the handlebars of the motorcycle while leaning over its front.",
"12": "1. The person is bending over and using both hands to push a motorcycle trapped in the mud. \n2. The person is standing with legs apart and gripping the motorcycle handlebars, appearing to assist with balancing."
}
},
"145d5d7c03": {
"giant_panda": {
"6": null,
"16": null,
"19": null,
"32": null
}
},
"145fdc3ac5": {
"lizard": {
"5": null,
"16": null,
"21": null,
"28": null
}
},
"1471274fa7": {
"person": {
"2": null,
"6": null,
"8": null,
"13": null
}
},
"14a6b5a139": {
"fish": {
"8": null,
"17": null,
"23": null,
"26": null
}
},
"14c21cea0d": {
"monkey": {
"7": null,
"14": null,
"25": "1. the monkey is leaning forward with its face close to the ground, looking intently.\n\n2. the monkey is lying down with limbs relaxed on a flat surface.",
"29": null
}
},
"14dae0dc93": {
"umbrella": {
"4": null,
"6": null,
"11": null,
"16": null
},
"person": {
"4": null,
"6": null,
"11": null,
"16": null
}
},
"14f9bd22b5": {
"tiger": {
"9": null,
"10": null,
"18": null,
"31": null
}
},
"14fd28ae99": {
"hand": {
"5": null,
"16": null,
"21": null,
"28": null
},
"parrot": {
"5": null,
"16": null,
"21": null,
"28": null
}
},
"15097d5d4e": {
"hand": {
"7": null,
"12": null,
"16": null,
"26": null
},
"parrot": {
"7": null,
"12": null,
"16": null,
"26": null
}
},
"150ea711f2": {
"whale": {
"9": null,
"10": null,
"22": null,
"30": null
}
},
"1514e3563f": {
"earless_seal": {
"3": null,
"13": null,
"18": null,
"33": null
}
},
"152aaa3a9e": {
"raccoon": {
"3": null,
"13": null,
"23": null,
"32": null
}
},
"152b7d3bd7": {
"giant_panda": {
"7": null,
"13": null,
"18": null,
"23": null
}
},
"15617297cc": {
"surfboard": {
"2": null,
"12": null,
"19": null,
"28": null
},
"person": {
"2": null,
"12": null,
"19": null,
"28": null
}
},
"15abbe0c52": {
"skateboard": {
"4": null,
"10": null,
"14": null,
"25": null
},
"person": {
"4": null,
"10": null,
"14": null,
"25": null
}
},
"15d1fb3de5": {
"owl": {
"8": null,
"16": null,
"20": null,
"27": null
},
"cat": {
"8": null,
"16": null,
"20": null,
"27": null
}
},
"15f67b0fab": {
"skateboard": {
"7": null,
"14": null,
"19": null,
"30": null
},
"person": {
"7": null,
"14": null,
"19": null,
"30": null
}
},
"161eb59aad": {
"giraffe": {
"2": null,
"6": null,
"13": null,
"17": null
},
"cow": {
"2": null,
"6": null,
"13": null,
"17": null
}
},
"16288ea47f": {
"duck": {
"7": "1. The duck is preening its feathers with its beak, moving in a repeated grooming motion.\n\n2. The duck is splashing water with its wings, creating small waves as it flaps energetically.",
"11": "1. Duck is bending its neck downward and interacting with its own feathers.\n\n2. Duck is resting in a shallow container of water, with its body partially submerged.",
"21": "1. The duck is preening its feathers, using its beak to smooth and align them.\n2. The duck is sitting still in the water, occasionally dipping its head under.",
"27": "1. The duck is sitting calmly in a tub, occasionally tilting its head to the side.\n\n2. The duck is splashing water around with its wings, creating small waves."
}
},
"164410ce62": {
"person": {
"4": null,
"5": null,
"10": null,
"13": null
}
},
"165c3c8cd4": {
"person": {
"3": null,
"6": "1. The person is walking past parked motorcycles while reaching forward with one arm.\n2. The person is standing near a motorcycle, holding the handlebars with both hands.\n3. The person is standing with hands behind their back, looking towards the motorcycles.",
"10": "1. The person is walking forward while carrying a bag on their back.\n\n2. The person is adjusting something on the motorcycle with one hand.\n\n3. The person is standing still with arms by their side, watching others.",
"16": "1. the person is walking forward, passing by parked motorcycles.\n\n2. the person is walking in the same direction as another individual, holding a small object in one hand by their side.\n\n3. the person is standing still with hands held behind the back, observing the scene ahead."
}
},
"165c42b41b": {
"motorbike": {
"4": null,
"6": null,
"9": null,
"16": null
},
"person": {
"4": null,
"6": null,
"9": null,
"16": null
}
},
"165ec9e22b": {
"person": {
"7": null,
"10": null,
"16": null,
"23": null
}
},
"1669502269": {
"person": {
"3": null,
"6": null,
"9": null,
"11": null
}
},
"16763cccbb": {
"ape": {
"5": null,
"13": null,
"14": null,
"27": null
}
},
"16adde065e": {
"hat": {
"2": null,
"9": null,
"12": null,
"14": null
},
"cat": {
"2": null,
"9": null,
"12": null,
"14": null
},
"person": {
"2": null,
"9": null,
"12": null,
"14": null
}
},
"16af445362": {
"airplane": {
"3": null,
"7": null,
"11": null,
"17": null
}
},
"16afd538ad": {
"parrot": {
"3": null,
"8": null,
"14": null,
"23": null
}
},
"16c3fa4d5d": {
"sedan": {
"3": null,
"6": null,
"11": null,
"17": null
}
},
"16d1d65c27": {
"monkey": {
"4": null,
"10": null,
"18": null,
"27": null
}
},
"16e8599e94": {
"giant_panda": {
"9": null,
"12": null,
"25": null,
"31": null
}
},
"16fe9fb444": {
"motorbike": {
"2": null,
"5": null,
"10": null,
"11": null
},
"person": {
"2": null,
"5": null,
"10": null,
"11": null
}
},
"1705796b02": {
"train": {
"4": null,
"7": null,
"10": null,
"17": null
}
},
"1724db7671": {
"giant_panda": {
"6": null,
"12": null,
"19": null,
"26": null
}
},
"17418e81ea": {
"shark": {
"6": null,
"15": null,
"22": null,
"26": null
}
},
"175169edbb": {
"ape": {
"5": null,
"11": null,
"18": "1. The ape is leaning forward with its head down, interacting with the ground beneath it.\n\n2. The ape is lying on its back while gripping a bundle of sticks with both hands.",
"26": "1. Ape is leaning forward and appearing to inspect the other ape closely.\n\n2. Ape is lying on its back with one arm raised upward."
}
},
"17622326fd": {
"lizard": {
"9": null,
"15": null,
"24": null,
"33": null
}
},
"17656bae77": {
"elephant": {
"4": null,
"7": null,
"10": null,
"12": null
}
},
"17b0d94172": {
"airplane": {
"3": null,
"4": null,
"7": null,
"9": null
}
},
"17c220e4f6": {
"giant_panda": {
"7": null,
"11": null,
"19": null,
"29": null
}
},
"17c7bcd146": {
"train": {
"3": null,
"8": null,
"10": null,
"15": null
}
},
"17cb4afe89": {
"tiger": {
"6": null,
"11": null,
"21": null,
"30": null
}
},
"17cd79a434": {
"squirrel": {
"2": null,
"13": null,
"19": null,
"27": null
}
},
"17d18604c3": {
"plant": {
"4": null,
"6": null,
"10": null,
"14": null
},
"person": {
"4": "1. The person is reaching out and gripping a branch, appearing to trim or adjust the tree.\n\n2. The person is standing with arms crossed, observing the room.",
"6": "1. The person is sitting and actively trimming a plant in front of them with both hands.\n\n2. The person is standing and crossing their arms across their chest.",
"10": "1. The person is leaning over and looking into a bag on the table.\n\n2. The person is standing with arms crossed, observing the activity around them.",
"14": "1. The person is standing near a table, handling a potted plant with both hands, adjusting its branches. \n\n2. The person is standing with arms crossed, observing the scene ahead."
}
},
"17d8ca1a37": {
"owl": {
"3": null,
"13": null,
"19": null,
"20": null
},
"person": {
"3": null,
"13": null,
"19": null,
"20": null
}
},
"17e33f4330": {
"monkey": {
"9": null,
"14": null,
"19": null,
"33": null
}
},
"17f7a6d805": {
"snail": {
"6": null,
"12": null,
"15": null,
"21": null
}
},
"180abc8378": {
"owl": {
"5": null,
"16": null,
"23": null,
"29": null
},
"person": {
"5": null,
"16": null,
"23": null,
"29": null
}
},
"183ba3d652": {
"motorbike": {
"2": null,
"7": null,
"13": null,
"16": null
},
"hat": {
"2": null,
"7": null,
"13": null,
"16": null
},
"person": {
"2": null,
"7": null,
"13": null,
"16": null
}
},
"185bf64702": {
"zebra": {
"5": null,
"6": null,
"10": null,
"14": null
}
},
"18913cc690": {
"train": {
"3": null,
"5": null,
"9": null,
"16": null
}
},
"1892651815": {
"camel": {
"5": null,
"11": null,
"23": null,
"31": null
}
},
"189ac8208a": {
"giraffe": {
"2": "1. Giraffe is standing while facing away, with its neck extending upwards.\n\n2. Giraffe is stretching its neck towards a feeder, interacting with it by reaching inside with its mouth.",
"5": "1. Giraffe is standing and stretching its neck upward toward the overhead structure.\n\n2. Giraffe is bending its neck downwards, appearing to inspect or eat from the elevated trough.",
"8": "1. The giraffe is standing and facing in the direction of the structure, showing interest in its surroundings.\n\n2. The giraffe is extending its neck to reach towards a bundle of hay, actively engaging with the environment.",
"14": null
}
},
"189b44e92c": {
"zebra": {
"5": null,
"6": null,
"10": null,
"15": null
}
},
"18ac264b76": {
"skateboard": {
"7": null,
"8": null,
"15": null,
"26": null
},
"person": {
"7": null,
"8": null,
"15": null,
"26": null
}
},
"18b245ab49": {
"penguin": {
"3": "1. Penguin is standing upright, slightly leaning forward.\n\n2. Penguin is bending its head downwards, touching or inspecting the snow.\n\n3. Penguin is crouching low, with its head directed towards the ground.\n\n4. Penguin is perched on a slight elevation, facing forward and maintaining an upright stance.",
"5": "1. The penguin is standing upright with its back facing the camera, displaying an alert posture.\n2. The penguin is bent forward, inspecting the ground closely with its beak near the surface.\n3. The penguin is lying on its belly, sliding smoothly across the snow.\n4. The penguin is standing upright, looking down at another penguin beneath it.",
"8": "1. The penguin is standing upright, head tilted slightly downward, as if examining the surface.\n\n2. The penguin is bending forward, extending its neck towards the ground, possibly pecking or inspecting the snow.\n\n3. The penguin is lying on its belly, appearing stationary on the snow.\n\n4. The penguin is standing with both flippers raised slightly, possibly maintaining balance on the uneven surface.",
"14": "1. The penguin is lying on its belly, stretching its flippers as it propels itself forward over the snow.\n\n2. The penguin is bending down, pecking at the snow with its beak.\n\n3. The penguin is standing upright, looking slightly to the side with its beak raised.\n\n4. The penguin is standing still, facing forward while observing its surroundings."
}
},
"18b5cebc34": {
"mouse": {
"3": null,
"13": null,
"19": null,
"20": null
}
},
"18bad52083": {
"parrot": {
"3": "1. The parrot is perched on the edge of a metallic bowl, appearing to be inspecting it closely.\n\n2. The parrot is gripping a wooden perch, with its body angled as if surveying its surroundings.",
"14": "1. The parrot is facing forward while holding its beak open wide above a metal bowl.\n\n2. The parrot is perched on a wooden surface, facing away, and pecking at a wooden perch.",
"20": null,
"31": "1. The parrot is facing forward with its beak open, appearing to call out or vocalize.\n\n2. The parrot is standing upright on a wooden perch, balancing with its claws gripping the surface."
}
},
"18bb5144d5": {
"lizard": {
"6": null,
"14": null,
"23": null,
"32": null
}
},
"18c6f205c5": {
"person": {
"5": "1. The person is standing on the boat and is raising both arms as if signaling a team.\n\n2. The person is vigorously paddling with a steady rhythm using an oar on the right side of the boat.\n\n3. The person is paddling energetically on the left side of the boat, synchronizing with teammates.",
"9": "1. The person is vigorously paddling with a large oar in sync with others on the boat.\n\n2. The person is energetically rowing with an oar, coordinating with the team.\n\n3. The person is standing at the rear, steering the boat with a long paddle.",
"13": null,
"15": null
}
},
"1903f9ea15": {
"bird": {
"3": null,
"7": null,
"10": null,
"17": null
}
},
"1917b209f2": {
"cow": {
"4": null,
"6": null,
"10": "1. The cow is standing with its head lowered, possibly sniffing or inspecting the ground.\n\n2. The cow is standing with its body angled slightly sideways, appearing motionless.",
"16": null
},
"horse": {
"4": null,
"6": null,
"10": null,
"16": null
},
"person": {
"4": null,
"6": null,
"10": null,
"16": null
}
},
"191e74c01d": {
"deer": {
"6": null,
"12": null,
"17": null,
"23": null
}
},
"19367bb94e": {
"fish": {
"6": null,
"13": "1. The fish is swimming forward with its body gently curved and tail fin propelling it through the water.\n2. The fish is facing slightly upward, opening its mouth wide while maneuvering its fins.\n3. The fish is hovering horizontally in the water with its fins extended and barely moving.",
"21": "1. The fish is arching its body upward while propelling forward with a swift motion. \n2. The fish is gliding horizontally along the substrate, gently undulating its fins to maintain its course.",
"26": "1. Fish is hovering near the substrate, swimming gently over the gravel.\n\n2. Fish is gliding forward, maintaining a steady movement across the scene."
}
},
"193ffaa217": {
"person": {
"4": null,
"7": null,
"10": null,
"15": null
}
},
"19696b67d3": {
"cow": {
"3": null,
"7": null,
"10": null,
"16": null
}
},
"197f3ab6f3": {
"giant_panda": {
"6": null,
"10": null,
"18": null,
"33": null
}
},
"1981e763cc": {
"sheep": {
"8": null,
"10": null,
"25": "1. The sheep is lowering its head as if to graze or explore the ground with its nose.\n\n2. The sheep is tilting its head upward, appearing to focus on something above.",
"26": null
}
},
"198afe39ae": {
"surfboard": {
"6": null,
"11": null,
"16": null,
"22": null
},
"person": {
"6": null,
"11": null,
"16": null,
"22": null
}
},
"19a6e62b9b": {
"monkey": {
"7": null,
"13": null,
"15": null,
"25": "1. The monkey is reaching upward, grasping a branch with its paw.\n\n2. The monkey is turning its head toward the side, holding onto a neighboring branch."
}
},
"19b60d5335": {
"hand": {
"2": null,
"12": null,
"23": null,
"26": null
},
"hedgehog": {
"2": null,
"12": null,
"23": null,
"26": null
}
},
"19c00c11f9": {
"surfboard": {
"2": null,
"13": null,
"18": null,
"27": null
},
"person": {
"2": null,
"13": null,
"18": null,
"27": null
}
},
"19e061eb88": {
"boat": {
"3": null,
"6": null,
"9": "1. The boat is being actively sailed with several crew members adjusting sails and managing the rigging.\n\n2. The boat is maneuvering through the water with crew members coordinating at the helm and rigging.",
"14": null
}
},
"19e8bc6178": {
"dog": {
"2": null,
"7": null,
"8": null,
"15": null
}
},
"19ee80dac6": {
"surfboard": {
"6": null,
"12": null,
"25": null,
"26": null
},
"person": {
"6": "1. The person is upright on a surfboard, riding a wave towards the shore.\n3. The person is lying flat on a surfboard, using their arms to paddle through the water.\n4. The person is positioned prone on a surfboard, paddling with both arms.",
"12": "1. Person is standing on a surfboard, moving along the wave.\n\n2. Person is lying prone on a surfboard, paddling with arms.\n\n3. Person is in the water, resting on a surfboard, facing the waves.",
"25": null,
"26": null
}
},
"1a25a9170a": {
"person": {
"7": null,
"10": null,
"23": "1. The person is gripping onto a rope while riding a bucking bull. \n2. The person is walking towards the bull, appearing to approach cautiously.",
"32": null
},
"cow": {
"7": null,
"10": null,
"23": null,
"32": null
}
},
"1a359a6c1a": {
"sheep": {
"4": null,
"13": null,
"19": null,
"26": null
}
},
"1a3e87c566": {
"frog": {
"3": null,
"11": null,
"15": null,
"22": null
}
},
"1a5fe06b00": {
"bus": {
"2": null,
"6": null,
"10": null,
"14": null
}
},
"1a6c0fbd1e": {
"skateboard": {
"5": null,
"12": null,
"17": null,
"25": null
},
"person": {
"5": null,
"12": null,
"17": null,
"25": null
}
},
"1a6f3b5a4b": {
"hand": {
"3": null,
"6": null,
"10": null,
"16": null
},
"sedan": {
"3": null,
"6": null,
"10": null,
"16": null
},
"bike": {
"3": null,
"6": null,
"10": null,
"16": null
}
},
"1a8afbad92": {
"zebra": {
"2": null,
"7": null,
"9": "1. The zebra is leaping forward with its legs extended mid-air in an active run.\n\n2. The zebra is galloping steadily, its legs propelling it forward with rhythmic strides.",
"14": null
}
},
"1a8bdc5842": {
"parrot": {
"6": "1. The parrot is perched on a wooden platform, leaning forward and pecking at the attached object.\n\n2. The parrot is suspending upside down, gripping the rope with its claws and pecking at the object.",
"10": null,
"15": null,
"22": null
}
},
"1a95752aca": {
"duck": {
"5": null,
"10": null,
"15": "1. Duck is tilting its head upward slightly while standing near the water.\n\n2. Duck is extending its neck forward toward a piece of bread held by a hand.",
"25": null
}
},
"1a9c131cb7": {
"ape": {
"9": null,
"11": null,
"21": "1. The ape is leaning forward with its arm extended, appearing to touch or interact with another ape on the ground.\n2. The ape is lying on its back, reaching up towards another ape above it.\n3. The ape is sitting with its hand covering its mouth, looking outward.",
"30": "1. The ape is leaning forward and appears to be watching the ground intently.\n\n2. The ape is lying on the grass with its head raised slightly, observing the surroundings.\n\n3. The ape is seated against the wall, touching its face with one hand in a resting position."
}
},
"1aa3da3ee3": {
"sheep": {
"2": null,
"12": null,
"15": null,
"26": null
}
},
"1ab27ec7ea": {
"deer": {
"3": null,
"4": null,
"7": null,
"9": null
}
},
"1abf16d21d": {
"turtle": {
"6": null,
"13": null,
"16": null,
"20": null
}
},
"1acd0f993b": {
"frisbee": {
"3": null,
"16": null,
"22": null,
"32": null
},
"dog": {
"3": null,
"16": null,
"22": null,
"32": null
},
"person": {
"3": null,
"16": null,
"22": null,
"32": null
}
},
"1ad202e499": {
"lizard": {
"6": null,
"10": null,
"24": null,
"26": null
}
},
"1af8d2395d": {
"airplane": {
"4": null,
"10": null,
"24": null,
"29": null
},
"parachute": {
"4": null,
"10": null,
"24": null,
"29": null
},
"person": {
"4": null,
"10": null,
"24": "1. The person is gripping the straps of the harness with both hands.\n\n2. The person is extending one arm while holding onto the harness with the other hand.",
"29": "1. The person is freefalling with a skydiving harness, arms extended, and mouth open in an expression of excitement.\n\n2. The person is skydiving with arms outstretched while securely holding the harness of the person in front."
}
},
"1afd39a1fa": {
"hand": {
"2": null,
"7": null,
"10": null,
"11": null
},
"motorbike": {
"2": null,
"7": null,
"10": null,
"11": null
}
},
"1b2d31306f": {
"lizard": {
"8": null,
"15": null,
"21": null,
"29": null
}
},
"1b3fa67f0e": {
"airplane": {
"3": null,
"6": null,
"10": null,
"16": null
}
},
"1b43fa74b4": {
"owl": {
"5": null,
"8": null,
"17": null,
"20": null
}
},
"1b73ea9fc2": {
"parrot": {
"3": null,
"6": null,
"10": null,
"15": null
}
},
"1b7e8bb255": {
"skateboard": {
"5": null,
"9": null,
"11": null,
"14": null
},
"hat": {
"5": null,
"9": null,
"11": null,
"14": null
},
"person": {
"5": null,
"9": null,
"11": null,
"14": null
}
},
"1b8680f8cd": {
"tennis_racket": {
"4": null,
"8": null,
"18": null,
"20": null
},
"person": {
"4": "1. The person is swinging a tennis racket in a forward motion toward the ball.\n\n2. The person is standing with arms folded, observing the activity on the court.",
"8": null,
"18": "1. The person is standing near the tennis net with both hands on their hips.\n2. The person is holding a tennis racket in one hand while facing forward on the court.",
"20": "1. person is standing and holding a tennis racket, appearing ready to play or engage in the game. \n\n2. person is sitting on a chair, likely observing or officiating the match."
}
},
"1b883843c0": {
"person": {
"2": "1. The person is cycling on a gravel path while smiling with their mouth open.\n\n2. The person is cycling, leaning forward, and gripping the handlebars securely.",
"6": "1. The person is cycling, gripping the handlebars and facing forward.\n\n2. The person is cycling, leaning forward slightly.",
"9": "1. The person is cycling with one hand on the handlebar and mouth open, appearing to be speaking or shouting.\n\n2. The person is cycling and leaning forward, gripping the handlebar with one hand.",
"16": null
}
},
"1b8898785b": {
"monkey": {
"7": "1. The monkey is hanging by one arm from a horizontal pole, with its body extended downward and legs dangling freely.\n\n2. The monkey is sitting on a wooden beam, using its front limbs to support itself while observing its surroundings.",
"17": "1. Monkey is hanging from a wooden beam using one arm, with its body extended downward and legs slightly spread apart.\n\n2. Monkey is sitting on top of a wooden beam, crouched forward and gripping the surface with both hands.",
"18": null,
"30": null
}
},
"1b88ba1aa4": {
"giant_panda": {
"7": null,
"16": null,
"18": null,
"31": null
}
},
"1b96a498e5": {
"ape": {
"2": null,
"10": null,
"18": null,
"25": null
}
},
"1bbc4c274f": {
"fish": {
"5": null,
"8": null,
"10": null,
"17": null
}
},
"1bd87fe9ab": {
"train": {
"3": null,
"4": null,
"6": null,
"8": null
}
},
"1c4090c75b": {
"whale": {
"2": null,
"12": null,
"22": null,
"30": null
}
},
"1c41934f84": {
"elephant": {
"3": null,
"8": null,
"10": null,
"16": null
}
},
"1c72b04b56": {
"lion": {
"3": null,
"13": null,
"19": null,
"33": null
}
},
"1c87955a3a": {
"crocodile": {
"4": null,
"13": null,
"18": null,
"22": null
},
"turtle": {
"4": null,
"13": null,
"18": null,
"22": null
}
},
"1c9f9eb792": {
"skateboard": {
"2": null,
"12": null,
"18": null,
"31": null
},
"person": {
"2": null,
"12": null,
"18": null,
"31": null
}
},
"1ca240fede": {
"train": {
"5": null,
"8": null,
"11": null,
"14": null
}
},
"1ca5673803": {
"tennis_racket": {
"8": null,
"10": null,
"21": null,
"30": null
},
"person": {
"8": "1. The person is holding a tennis racket with one hand and appears ready to engage in play.\n\n3. The person is standing on the court, appearing to watch the ongoing activity.",
"10": "1. The person is swinging a tennis racket forward, preparing to hit the ball. \n3. The person is focused on the ball, running quickly toward the left side of the court.",
"21": "1. The person is crouching with bent knees, preparing to receive a tennis serve.\n3. The person is holding a tennis racket while preparing to swing forward.",
"30": "1. The person is holding a tennis racket and swinging it forward, stepping towards the tennis court.\n\n3. The person is standing on the court holding a tennis racket, positioned to receive a serve or return the ball."
}
},
"1cada35274": {
"duck": {
"7": null,
"12": null,
"23": null,
"30": null
}
},
"1cb44b920d": {
"eagle": {
"9": "1. The eagle is leaning forward with its beak touching or near the small object in front of it.\n\n2. The eagle is partially hidden and appears to be resting its head on the ground or an object.",
"16": "1. Eagle is bending forward, extending its head towards another eagle, as if interacting closely.\n\n2. Eagle is facing the bending eagle, with its head slightly lifted, engaging in close proximity interaction.",
"22": "1. The eagle is bending down with its beak open, appearing to feed or inspect the smaller object in front.\n\n2. The eagle is positioned upright, seemingly reacting or responding to the actions of the larger adjacent eagle.",
"32": null
}
},
"1cd10e62be": {
"leopard": {
"3": null,
"9": null,
"17": null,
"26": null
}
},
"1d3087d5e5": {
"fish": {
"6": null,
"12": null,
"19": null,
"26": null
}
},
"1d3685150a": {
"sign": {
"4": null,
"7": null,
"10": null,
"15": null
},
"person": {
"4": "1. The person is standing still with arms resting at the sides, observing the surroundings.\n\n3. The person is walking forward while carrying a small decorated item in one hand.",
"7": "1. The person is standing still, facing the elephant while holding hands together in front.\n3. The person is walking forward, glancing back over their shoulder.",
"10": null,
"15": null
}
},
"1d6ff083aa": {
"person": {
"4": "1. The person is crouching and turning their head towards the shelf with books.\n\n2. The person is extending a hand forward, reaching through a doorway.",
"8": "1. The person is crouching down and reaching towards the floor with one hand. \n2. The person is extending their arm forward and grasping a book on the shelf.",
"13": "1. The person is crouched down and reaching towards a book on a low shelf.\n\n2. The person is holding onto the door frame with one hand while stepping forward.",
"15": "1. The person is crouching down with their arms extended forward, appearing to reach or grasp for something.\n\n2. The person is standing upright with one hand resting against their side, while their other hand is slightly bent near their waist."
}
}
} |