Spaces:
Running
Running
File size: 21,107 Bytes
15d6c34 |
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 |
s8/mug_toast_1 s3/airplane_pass_1 s1/lightbulb_pass_1 s10/camera_takepicture_3 s1/wineglass_toast_1 s1/phone_lift s4/binoculars_see_1 s8/teapot_pass_1 s9/cubemedium_pass_1 s8/elephant_lift s2/gamecontroller_play_1 s6/duck_lift s4/stapler_staple_1 s8/mug_drink_1 s8/train_lift s1/cubesmall_offhand_1 s6/cylindermedium_inspect_1 s8/cylindersmall_lift s3/waterbottle_drink_1 s1/wineglass_offhand_1 s5/scissors_pass_1 s1/cup_lift s8/binoculars_pass_1 s9/hand_pass_1 s7/doorknob_lift s8/spherelarge_pass_1 s10/alarmclock_see_1 s5/waterbottle_shake_1 s5/mouse_use_1 s2/cubesmall_lift s4/cubelarge_inspect_1 s8/apple_eat_1 s3/cylinderlarge_lift_Retake s7/mug_drink_1 s8/knife_pass_1 s1/flute_offhand_1 s7/stapler_pass_1 s6/flute_play_1 s6/stapler_staple_1 s3/gamecontroller_lift s9/spheresmall_pass_1 s9/camera_takepicture_1 s3/apple_offhand_1 s4/binoculars_lift s8/fryingpan_lift s7/camera_pass_1 s10/hand_shake_1 s3/stamp_stamp_1 s6/watch_set_2 s6/wineglass_drink_1 s1/cubelarge_pass_1 s6/hand_inspect_1 s2/torussmall_lift s1/torussmall_pass_1 s3/mug_offhand_1 s1/cylinderlarge_offhand_1 s2/cylindermedium_inspect_1 s4/stamp_stamp_1 s4/mouse_use_1 s8/spheremedium_lift s8/headphones_pass_1 s3/gamecontroller_play_1 s2/stanfordbunny_lift s10/fryingpan_cook_2 s3/wineglass_pass_1 s1/pyramidlarge_offhand_1 s6/toothpaste_pass_1 s1/mug_lift s10/waterbottle_pass_1 s1/flashlight_pass_1 s7/banana_lift s6/waterbottle_drink_1 s1/stamp_offhand_1 s1/camera_takepicture_1 s10/cubesmall_inspect_1 s7/alarmclock_see_1 s7/gamecontroller_pass_1 s8/banana_peel_1 s2/camera_takepicture_2 s2/cubemedium_lift s10/train_pass_1 s10/cylindermedium_pass_1 s6/spherelarge_lift s8/duck_inspect_1 s3/mug_drink_3 s6/hand_pass_1 s3/headphones_use_1 s5/wineglass_drink_1 s10/doorknob_use_2 s6/spheremedium_pass_1 s5/wineglass_toast_1 s5/pyramidmedium_inspect_1 s10/spheremedium_inspect_1 s5/bowl_drink_2 s10/pyramidmedium_pass_1 s9/watch_set_1 s7/pyramidmedium_pass_1 s5/stanfordbunny_pass_1 s8/stanfordbunny_lift s7/waterbottle_open_1_Retake s9/pyramidmedium_lift_Retake s5/cubelarge_pass_1 s2/stapler_staple_1 s2/knife_pass_1 s5/duck_inspect_1 s8/wineglass_pass_1 s5/spherelarge_pass_1 s2/elephant_pass_1 s1/spherelarge_offhand_1 s4/doorknob_use_1 s4/stanfordbunny_pass_1 s5/piggybank_pass_1 s5/banana_peel_2 s10/spheremedium_lift s9/gamecontroller_pass_1 s6/alarmclock_see_1 s9/toruslarge_inspect_1 s1/waterbottle_pass_1 s7/piggybank_use_1 s8/toruslarge_pass_1 s1/hammer_use_1 s6/stapler_offhand_1_Retake s8/toothpaste_pass_1 s10/knife_peel_1 s4/cylindersmall_pass_1 s10/cylinderlarge_inspect_1 s7/flashlight_on_2 s2/cubelarge_lift s8/fryingpan_cook_1 s6/wineglass_lift s1/stapler_lift s4/cup_pass_1 s10/piggybank_use_1 s10/binoculars_see_1 s4/spheremedium_pass_1 s9/bowl_drink_1 s4/piggybank_use_1 s5/cubesmall_inspect_1 s7/stamp_stamp_1 s3/scissors_use_2 s10/torusmedium_inspect_1 s7/hand_inspect_1 s5/cylindermedium_inspect_1 s8/banana_eat_1 s7/binoculars_see_1 s4/spheresmall_pass_1 s4/cylinderlarge_lift s9/waterbottle_shake_1 s4/hand_inspect_1 s7/spherelarge_lift s2/flashlight_on_1 s10/duck_pass_1 s9/bowl_pass_1 s1/mouse_lift s9/watch_pass_1 s2/phone_call_1 s6/cylinderlarge_inspect_1 s3/wineglass_drink_2 s10/toothpaste_pass_1 s10/fryingpan_cook_1 s8/watch_lift s9/pyramidlarge_inspect_1 s2/mouse_use_1 s6/pyramidmedium_pass_1 s4/mouse_pass_1 s6/wineglass_toast_1 s1/watch_lift s9/hand_inspect_1 s1/airplane_lift s9/mouse_lift s6/eyeglasses_clean_1 s4/waterbottle_drink_1 s4/torussmall_lift s6/binoculars_lift s8/bowl_offhand_1 s2/eyeglasses_pass_1 s8/fryingpan_cook_2 s8/spherelarge_lift s1/cylindermedium_pass_1 s1/banana_eat_1 s10/gamecontroller_pass_1 s9/camera_browse_1 s6/eyeglasses_wear_1 s1/stanfordbunny_lift s6/cylindersmall_inspect_1 s6/elephant_pass_1 s3/torusmedium_inspect_1 s8/spheresmall_pass_1 s6/apple_offhand_1_Retake s6/stanfordbunny_pass_1 s6/mug_drink_2 s8/mug_lift s1/binoculars_see_1 s1/torussmall_offhand_1 s9/duck_pass_1 s8/cubemedium_offhand_1 s8/spherelarge_inspect_1 s7/wineglass_pass_1 s9/toothpaste_squeeze_1 s10/scissors_pass_1 s10/torussmall_inspect_1 s4/wineglass_lift s5/binoculars_pass_1 s7/stanfordbunny_pass_1 s1/mug_drink_1 s1/stamp_pass_1 s8/piggybank_use_1 s10/spheremedium_pass_1 s9/torusmedium_pass_1 s3/mouse_lift s1/cylindermedium_inspect_1 s8/cylindermedium_pass_1 s7/cubesmall_pass_1 s6/cylindermedium_lift s7/cup_pour_1 s9/banana_pass_1 s1/camera_browse_1 s3/eyeglasses_clean_1 s1/doorknob_use_fun_1 s1/banana_lift s6/cylindersmall_pass_1 s5/elephant_lift s5/elephant_inspect_1 s9/waterbottle_lift s6/piggybank_lift_Retake s5/camera_takepicture_3 s4/stapler_staple_2 s1/cylindersmall_lift s1/airplane_offhand_1 s9/apple_pass_1 s9/cylindermedium_pass_1 s9/hammer_use_3 s7/cubemedium_pass_1 s6/cubemedium_inspect_1 s2/mug_lift s6/phone_lift s4/spherelarge_inspect_1 s1/elephant_inspect_1 s4/headphones_pass_1 s8/binoculars_see_1 s7/pyramidmedium_inspect_1 s1/toothpaste_lift s4/stamp_lift s8/eyeglasses_pass_1 s7/hand_pass_1 s10/spherelarge_lift s2/stapler_pass_1 s9/banana_peel_1 s2/mug_pass_1 s6/stapler_pass_1 s10/wineglass_drink_1 s10/lightbulb_screw_1 s7/spheresmall_pass_1 s2/stanfordbunny_inspect_1 s7/piggybank_pass_1 s8/mug_pass_1 s10/torussmall_lift s8/cup_pour_1 s5/pyramidlarge_pass_1 s1/binoculars_pass_1 s5/hammer_pass_1 s1/flashlight_offhand_1 s7/elephant_pass_1 s6/hand_lift s1/cubelarge_offhand_1 s9/elephant_lift s8/banana_peel_2 s8/knife_peel_1 s1/teapot_pass_1 s10/headphones_pass_1 s2/toothbrush_lift s9/knife_pass_1 s2/cubemedium_inspect_1 s8/teapot_lift s3/pyramidmedium_pass_1 s2/cylindermedium_lift s4/mug_pass_1 s10/stamp_lift s7/airplane_lift_Retake s10/toruslarge_pass_1 s6/fryingpan_pass_1 s4/train_play_1 s5/pyramidmedium_pass_1 s7/binoculars_pass_1 s1/phone_call_1 s2/spheresmall_inspect_1 s3/apple_lift s6/hammer_use_3 s8/toothbrush_pass_1 s7/spheresmall_inspect_1 s10/flashlight_on_1 s9/elephant_inspect_1 s4/elephant_pass_1 s1/bowl_drink_1 s6/cubemedium_pass_1 s7/eyeglasses_pass_1 s8/airplane_fly_1 s3/alarmclock_lift s4/doorknob_lift s4/fryingpan_cook_2 s4/toothbrush_pass_1 s5/cylinderlarge_pass_1 s2/banana_eat_1 s5/stamp_stamp_1 s1/knife_lift s10/hand_pass_1 s4/bowl_drink_2 s8/cup_pass_1 s5/hammer_use_1 s3/train_lift s2/cup_pass_1 s7/torussmall_pass_1 s8/hand_pass_1 s10/cup_drink_2 s3/toothpaste_lift s2/fryingpan_pass_1 s3/cylindersmall_pass_1 s5/spheremedium_lift s10/apple_eat_1 s4/teapot_pour_2 s4/torussmall_pass_1 s5/toothpaste_pass_1 s7/headphones_pass_1 s5/camera_pass_1 s9/elephant_pass_1 s6/toothpaste_lift s8/flute_pass_1 s4/spheremedium_lift s3/binoculars_see_1 s10/camera_browse_1 s1/banana_pass_1 s1/toruslarge_lift s6/cubelarge_inspect_1 s1/pyramidlarge_pass_1 s2/teapot_pour_1 s3/waterbottle_pass_1 s2/hammer_lift s9/apple_lift s9/waterbottle_pour_1 s4/cubemedium_lift s9/phone_pass_1 s5/cubemedium_lift s4/gamecontroller_pass_1 s9/cubemedium_inspect_1 s3/cup_drink_1 s4/stapler_lift s2/apple_pass_1 s5/mug_toast_1 s5/cylindersmall_inspect_1 s3/cup_lift s1/hammer_pass_1 s10/hammer_lift s5/elephant_pass_1 s1/spheresmall_inspect_1 s3/toothbrush_brush_1 s7/apple_eat_1 s7/pyramidlarge_lift s7/wineglass_drink_1 s7/mug_lift s6/cubesmall_offhand_1 s2/camera_lift s1/cubemedium_lift s10/gamecontroller_lift s9/cylinderlarge_pass_1 s8/cubelarge_inspect_1 s1/scissors_pass_1 s1/train_play_1 s5/stanfordbunny_inspect_1 s4/spheresmall_lift s4/watch_lift s9/cylinderlarge_inspect_1 s2/hand_inspect_1 s8/toothpaste_squeeze_1 s8/toothpaste_squeeze_2 s8/mouse_use_1 s2/teapot_pass_1 s7/cup_pass_1 s9/spheremedium_inspect_1 s10/gamecontroller_play_1 s7/apple_lift s6/eyeglasses_lift s10/flute_pass_1 s9/airplane_fly_1 s5/stamp_pass_1 s5/alarmclock_lift s10/hammer_use_3 s3/cylindersmall_inspect_1 s10/alarmclock_pass_1 s9/waterbottle_drink_1 s10/banana_pass_1 s6/watch_pass_1 s1/banana_peel_2 s8/pyramidmedium_pass_1 s7/cubemedium_lift s6/cup_drink_2 s4/cubelarge_pass_1 s1/bowl_pass_1 s8/wineglass_drink_2 s8/phone_call_1 s8/torusmedium_lift s4/piggybank_pass_1 s9/stamp_pass_1 s10/hammer_use_2 s9/wineglass_pass_1 s8/camera_browse_1 s7/airplane_pass_1 s6/cup_pass_1 s6/airplane_pass_1 s9/torussmall_pass_1 s8/teapot_pour_2 s4/mouse_use_2 s10/flashlight_on_2 s7/pyramidsmall_pass_1 s3/cup_pour_1 s1/piggybank_pass_1 s5/cubesmall_pass_1 s10/airplane_fly_1 s8/cylinderlarge_offhand_1 s6/gamecontroller_play_1 s3/stanfordbunny_pass_1 s7/stanfordbunny_lift s9/banana_peel_2 s2/apple_lift s10/waterbottle_pour_1 s1/alarmclock_pass_1 s1/hammer_use_3 s1/eyeglasses_clean_1 s6/phone_call_1 s7/banana_eat_1 s4/waterbottle_shake_1 s8/waterbottle_pass_1 s6/cylinderlarge_lift s9/hand_shake_1 s6/camera_browse_1 s2/camera_browse_1 s4/phone_pass_1 s1/stamp_lift s7/torussmall_inspect_1 s1/cylindersmall_offhand_1 s7/cylinderlarge_lift s2/duck_inspect_1 s7/spheremedium_pass_1 s8/toruslarge_lift s3/hammer_pass_1 s3/cup_offhand_1 s2/headphones_use_1 s2/train_play_1 s10/scissors_use_1 s5/cubesmall_lift s10/pyramidsmall_inspect_1 s3/mug_drink_4 s1/cubemedium_offhand_1 s6/apple_eat_1 s1/doorknob_use_2 s1/cylinderlarge_lift s2/hand_lift s5/gamecontroller_lift s3/waterbottle_lift s3/apple_pass_1 s10/flute_play_1 s5/spherelarge_inspect_1 s7/doorknob_use_1 s8/torusmedium_pass_1 s4/bowl_pass_1 s10/headphones_lift s6/pyramidlarge_pass_1 s2/mug_toast_1 s4/hammer_use_3 s1/stanfordbunny_inspect_1 s3/alarmclock_pass_1 s8/cylindermedium_inspect_1 s1/elephant_lift s6/waterbottle_pass_1 s8/cubelarge_lift s3/camera_takepicture_1 s5/torussmall_inspect_1 s2/airplane_fly_1 s7/hammer_use_1 s1/spherelarge_lift s1/cubemedium_pass_1 s2/headphones_lift s8/piggybank_lift s1/apple_lift s3/spherelarge_inspect_1 s8/banana_pass_1 s8/stanfordbunny_pass_1 s4/flute_play_1 s6/banana_eat_1 s1/scissors_offhand_1 s1/binoculars_lift s10/cup_lift s7/eyeglasses_lift s3/stapler_lift s7/bowl_drink_1 s1/cup_drink_1 s4/alarmclock_lift s6/headphones_use_1 s4/apple_lift s6/mouse_pass_1 s7/flashlight_lift s5/torusmedium_inspect_1 s10/cup_pour_1 s5/toruslarge_lift s10/cup_drink_1 s7/cylinderlarge_pass_1 s4/wineglass_drink_1 s1/stapler_staple_2 s10/mug_drink_1 s1/flute_pass_1 s8/cylinderlarge_lift s10/piggybank_pass_1 s7/duck_inspect_1 s9/stamp_lift s6/bowl_lift s6/banana_pass_1 s9/cubemedium_lift s7/flute_pass_1 s8/eyeglasses_wear_1 s9/flashlight_lift s9/hammer_use_2 s1/cup_pour_1 s2/piggybank_lift s8/pyramidlarge_inspect_1 s2/teapot_pour_2 s6/pyramidsmall_inspect_2 s1/toothpaste_pass_1 s10/banana_peel_2 s1/wineglass_pass_1 s5/pyramidlarge_inspect_1 s5/cubemedium_inspect_1 s7/knife_chop_1 s6/mug_toast_1 s5/mug_drink_1 s6/banana_peel_1 s7/cylindermedium_pass_1 s10/mug_drink_2 s3/elephant_offhand_1 s4/stapler_pass_1 s1/torussmall_lift s1/duck_lift s5/flute_play_1 s1/airplane_fly_1 s2/headphones_pass_1 s3/lightbulb_screw_1 s8/toothbrush_brush_1 s10/mouse_use_1 s5/flute_play_2 s3/waterbottle_pour_2 s10/airplane_lift s7/eyeglasses_wear_1 s10/stamp_stamp_1 s8/cup_drink_1 s4/alarmclock_pass_1 s3/train_pass_1 s2/hammer_use_2 s1/pyramidsmall_inspect_1 s9/cubesmall_inspect_1 s7/camera_browse_1 s10/spheresmall_pass_1 s1/phone_offhand_1 s6/waterbottle_shake_1 s1/alarmclock_offhand_1 s8/spheresmall_inspect_1 s9/cylindermedium_inspect_1 s6/knife_lift s6/mouse_lift s1/flashlight_lift s9/cubelarge_pass_1 s2/pyramidlarge_pass_1_Retake s7/stanfordbunny_inspect_1 s9/gamecontroller_play_1 s4/hand_pass_1 s3/toothpaste_squeeze_1 s9/duck_lift s5/flashlight_on_1 s5/cup_lift s10/waterbottle_drink_1 s8/cubesmall_pass_1 s10/train_lift s10/spheresmall_inspect_1 s10/cup_pass_1 s1/cubesmall_pass_1 s4/fryingpan_cook_3 s6/elephant_inspect_1 s9/stapler_lift s1/pyramidmedium_offhand_1 s9/pyramidmedium_pass_1 s9/teapot_pour_2 s4/fryingpan_cook_1 s1/eyeglasses_wear_1 s1/gamecontroller_play_1 s3/binoculars_offhand_1 s6/waterbottle_pour_1 s3/cubesmall_inspect_1 s8/pyramidlarge_pass_1 s2/train_pass_1 s10/mouse_lift s10/torusmedium_pass_1 s8/waterbottle_drink_1 s7/cubelarge_lift s5/duck_pass_1 s1/gamecontroller_offhand_1 s2/camera_pass_1 s7/gamecontroller_play_1 s7/toothbrush_pass_1 s8/phone_pass_1 s3/bowl_drink_1 s6/toruslarge_pass_1 s5/spheresmall_inspect_1 s8/flashlight_pass_1 s1/flashlight_on_2 s8/gamecontroller_lift s3/stanfordbunny_lift s8/bowl_pass_1 s4/banana_pass_1 s6/stapler_lift s2/teapot_lift s3/camera_takepicture_2 s8/torussmall_pass_1 s9/camera_pass_1 s4/apple_eat_1 s1/watch_set_1 s5/stanfordbunny_lift s6/spheremedium_inspect_1 s1/eyeglasses_lift s10/headphones_use_1 s3/doorknob_use_1 s10/apple_pass_1 s9/flute_pass_1 s1/toruslarge_inspect_1 s5/duck_lift s9/doorknob_use_2 s10/torussmall_pass_1 s2/doorknob_use_2 s1/pyramidlarge_lift s6/stamp_lift s3/elephant_pass_1 s7/headphones_use_1 s6/cylindermedium_pass_1 s6/stapler_staple_2 s6/piggybank_pass_1 s5/spheremedium_inspect_1 s1/cubemedium_inspect_1 s4/pyramidmedium_pass_1 s7/cylinderlarge_inspect_1 s1/cylindermedium_offhand_1 s6/toothpaste_squeeze_1_Retake s9/stapler_pass_1 s8/flashlight_on_1 s5/cup_drink_2 s8/apple_lift s8/airplane_pass_1 s6/wineglass_pass_1 s4/cylinderlarge_inspect_1 s4/phone_call_1 s5/stapler_pass_1 s8/camera_takepicture_2 s3/mouse_pass_1 s7/pyramidlarge_inspect_1 s10/stapler_staple_2 s9/teapot_pass_1 s5/gamecontroller_play_1 s4/train_lift s8/doorknob_lift s1/watch_offhand_1 s7/mug_drink_2 s4/flashlight_pass_1 s1/mug_offhand_1 s4/camera_takepicture_3 s8/train_pass_1 s7/train_pass_1 s8/gamecontroller_play_1 s1/scissors_use_2 s9/piggybank_pass_1 s6/flute_lift s1/banana_peel_1 s6/bowl_pass_1 s1/mouse_pass_1 s6/cubesmall_lift s5/airplane_lift s3/scissors_pass_1 s2/cylinderlarge_pass_1 s6/watch_set_1 s10/stamp_pass_1 s9/banana_lift s3/toruslarge_lift s10/hammer_use_1 s10/cubesmall_lift s6/teapot_pass_1 s3/pyramidlarge_offhand_1 s8/cylindersmall_inspect_1 s3/cylinderlarge_inspect_1 s7/teapot_pass_1 s9/mouse_pass_1 s3/mug_drink_1 s2/spheremedium_pass_1 s9/waterbottle_pass_1 s2/flute_pass_1 s9/lightbulb_screw_1 s8/cubemedium_pass_1 s7/flashlight_pass_1 s9/eyeglasses_lift s7/cubemedium_inspect_1 s5/waterbottle_lift s6/cup_drink_1 s1/pyramidlarge_inspect_1 s3/airplane_fly_1 s10/pyramidmedium_lift s10/bowl_lift s2/cubelarge_pass_1 s7/stapler_staple_1 s8/flashlight_on_2 s4/cylindersmall_lift s10/stanfordbunny_pass_1 s6/cubemedium_lift s10/stapler_pass_1 s5/apple_pass_1 s7/doorknob_use_2 s4/watch_pass_1 s1/elephant_pass_1 s1/watch_set_2 s2/cylinderlarge_inspect_1 s2/pyramidlarge_inspect_1 s9/eyeglasses_wear_1 s4/phone_lift s1/spheremedium_lift s3/airplane_offhand_1 s6/spheresmall_pass_1 s9/piggybank_lift_Retake s8/cylinderlarge_inspect_1 s5/wineglass_lift s3/train_play_1 s10/knife_chop_1 s9/wineglass_drink_2 s6/hammer_lift s9/cylindersmall_pass_1 s4/bowl_drink_1 s1/mug_toast_1 s1/pyramidmedium_inspect_1 s9/stamp_stamp_1 s10/toothpaste_squeeze_1 s1/spheresmall_lift s3/doorknob_use_2 s7/fryingpan_cook_1 s5/teapot_pass_1 s8/phone_lift s2/cubesmall_inspect_1 s1/toruslarge_pass_1 s6/headphones_pass_1 s8/cylinderlarge_pass_1 s4/toothpaste_pass_1 s4/camera_takepicture_2 s3/camera_offhand_1 s8/cup_offhand_1 s9/spherelarge_pass_1 s10/stanfordbunny_lift s1/spheremedium_offhand_1 s4/torusmedium_lift s9/cylinderlarge_lift s6/hammer_use_1 s4/wineglass_toast_1 s2/cylinderlarge_lift s6/cubesmall_inspect_1 s1/camera_takepicture_2 s3/phone_pass_1 s1/hand_inspect_1 s8/bowl_drink_2 s1/stapler_offhand_1 s1/piggybank_use_1 s1/apple_pass_1 s9/wineglass_drink_1 s10/mug_lift s10/cylinderlarge_lift s2/stamp_stamp_1 s10/stanfordbunny_inspect_1 s4/cubelarge_lift s8/alarmclock_see_1 s5/cubelarge_lift s3/eyeglasses_pass_1 s1/pyramidsmall_pass_1 s2/cylindermedium_pass_1 s8/fryingpan_offhand_1 s1/mug_drink_3 s2/piggybank_pass_1_Retake s8/headphones_lift s9/alarmclock_see_1 s5/toruslarge_pass_1 s1/stapler_staple_1 s1/stanfordbunny_offhand_1 s3/airplane_lift s8/cubemedium_inspect_1 s9/stapler_staple_2 s3/fryingpan_lift s10/spherelarge_inspect_1 s7/pyramidlarge_pass_1 s5/mouse_lift s8/watch_set_2 s3/wineglass_drink_1 s6/spheremedium_lift s2/stapler_staple_2 s9/airplane_pass_1 s6/duck_inspect_1 s10/lightbulb_pass_1 s8/stapler_pass_1 s6/camera_takepicture_3 s10/camera_takepicture_2 s10/mouse_pass_1 s3/cup_drink_2 s5/alarmclock_see_1 s10/elephant_inspect_1 s6/apple_pass_1 s3/gamecontroller_pass_1 s10/cubemedium_pass_1 s5/wineglass_pass_1 s5/waterbottle_pass_1 s10/teapot_pour_2 s6/train_pass_1 s7/hammer_use_2 s8/apple_pass_1 s6/cup_pour_1 s7/wineglass_lift s9/toothbrush_pass_1 s6/doorknob_lift s9/banana_eat_1 s4/cylinderlarge_pass_1 s10/cubelarge_lift s1/camera_lift s1/stanfordbunny_pass_1 s7/watch_pass_1 s9/cup_lift s7/apple_pass_1 s3/piggybank_pass_1 s1/cylindersmall_inspect_1 s4/cup_drink_2 s8/spheremedium_pass_1 s6/waterbottle_open_1 s3/watch_set_1 s8/cubesmall_inspect_1 s3/duck_inspect_1 s7/cylindermedium_inspect_1 s9/cylindersmall_inspect_1 s1/spherelarge_inspect_1 s1/spheresmall_offhand_1 s8/cylindermedium_lift s1/bowl_drink_2 s5/train_pass_1 s4/alarmclock_see_1 s8/flashlight_offhand_1 s2/cup_drink_1 s8/duck_lift s6/cubelarge_pass_1 s6/flute_pass_1 s2/toruslarge_inspect_1 s4/camera_pass_1 s7/train_play_1 s9/mouse_use_1 s5/cylindermedium_pass_1 s3/pyramidsmall_pass_1 s3/eyeglasses_offhand_1 s8/wineglass_toast_1 s7/eyeglasses_clean_1 s5/toothbrush_brush_1 s10/toothpaste_squeeze_2 s1/flute_lift s3/toothbrush_pass_1 s1/bowl_lift s9/bowl_drink_2 s7/banana_peel_2 s8/doorknob_use_2 s8/torussmall_inspect_1 s1/camera_pass_1 s8/hand_inspect_1 s1/watch_pass_1 s10/watch_pass_1 s3/toruslarge_inspect_1 s9/torusmedium_inspect_1 s9/cylindermedium_lift s10/teapot_pass_1 s6/wineglass_drink_2 s7/headphones_lift s10/stapler_staple_1 s2/pyramidmedium_inspect_1 s3/flashlight_pass_1 s1/torusmedium_pass_1 s6/spherelarge_pass_1 s2/phone_pass_1 s2/pyramidmedium_pass_1 s9/stanfordbunny_pass_1 s8/pyramidmedium_inspect_1 s1/toothbrush_lift s7/hammer_pass_1 s8/hand_lift s8/camera_takepicture_3 s8/stamp_lift s8/torusmedium_inspect_1 s7/phone_call_1 s3/pyramidlarge_inspect_1 s6/torussmall_pass_1 s3/mouse_use_1 s6/toruslarge_inspect_1 s3/elephant_lift s1/wineglass_drink_2 s7/lightbulb_pass_1 s8/hammer_pass_1 s6/pyramidmedium_inspect_1 s8/gamecontroller_pass_1 s1/waterbottle_pour_1 s9/toothpaste_lift s9/spherelarge_inspect_1 s8/teapot_pour_1 s4/spheremedium_inspect_1 s6/stamp_stamp_1 s9/hammer_use_1 s1/torusmedium_offhand_1 s1/alarmclock_see_1 s6/phone_pass_1 s5/waterbottle_open_1 s4/cubemedium_pass_1 s6/apple_lift s1/headphones_pass_1 s8/hammer_use_3 s3/piggybank_use_1 s3/wineglass_toast_1 s6/spheresmall_lift s1/camera_takepicture_3_Retake s1/cylindermedium_lift s6/teapot_pour_1 s4/train_pass_1 s7/toruslarge_inspect_1_Retake s8/cubelarge_pass_1 s3/alarmclock_offhand_1 s4/hand_lift s8/mug_drink_2 s5/cup_pass_1 s3/stapler_staple_1 s10/phone_lift s6/torusmedium_inspect_1 s4/cup_drink_1 s2/train_lift s8/stapler_staple_1 s2/apple_eat_1 s6/torusmedium_pass_1 s4/watch_set_1 s3/camera_takepicture_3 s9/spheresmall_inspect_1 s4/cubesmall_pass_1 s6/alarmclock_lift s2/toruslarge_pass_1 s9/pyramidmedium_inspect_1 s3/stanfordbunny_inspect_1 s6/scissors_use_2 s1/stamp_stamp_1 s3/torusmedium_pass_1 s6/eyeglasses_pass_1 s7/cubelarge_inspect_1 s3/stamp_lift s8/mouse_pass_1 s7/elephant_inspect_1 s8/camera_pass_1 s10/bowl_pass_1 s1/waterbottle_lift s8/bowl_lift s3/phone_call_1 s8/phone_offhand_1 s3/eyeglasses_wear_1 s6/bowl_drink_1_Retake s9/torussmall_inspect_1 s1/piggybank_offhand_1 s1/mug_drink_2 s4/airplane_fly_1 s8/cubelarge_offhand_1 s10/camera_pass_1 s4/stanfordbunny_inspect_1 s6/pyramidlarge_inspect_1 s10/wineglass_drink_2 s1/duck_inspect_1 s4/duck_inspect_1 s1/mouse_use_1 s5/eyeglasses_clean_2 s10/camera_takepicture_1 s8/fryingpan_pass_1 s10/cubelarge_inspect_1 s7/hammer_use_3 s5/spherelarge_lift s1/fryingpan_cook_1 s5/cubemedium_pass_1 s3/flute_play_1 s9/headphones_use_1 s1/cylinderlarge_inspect_1 s7/hammer_lift s7/wineglass_toast_1 s4/pyramidmedium_inspect_1 s10/bowl_drink_1_Retake s9/piggybank_use_1 s1/cubesmall_lift s1/fryingpan_cook_2 s1/apple_eat_1 s9/watch_set_2 s9/bowl_lift s10/hand_lift s10/cylindersmall_inspect_1 s1/piggybank_lift s2/toothpaste_squeeze_1 s6/binoculars_see_1 s6/spherelarge_inspect_1 s8/alarmclock_lift s1/cylindersmall_pass_1 s6/pyramidlarge_lift s4/binoculars_pass_1 s10/bowl_drink_2 s5/flute_pass_1 s10/torusmedium_lift s1/duck_pass_1 s2/cubelarge_inspect_1 s8/watch_pass_1 s1/waterbottle_open_1 s9/flute_play_1 s9/airplane_lift s1/mug_drink_4 s4/wineglass_pass_1 s6/camera_pass_1 s4/duck_pass_1 s10/cylindersmall_pass_1 s10/alarmclock_lift_Retake s4/toruslarge_pass_1 s10/wineglass_pass_1 s5/cylindermedium_lift s2/pyramidlarge_lift s3/flute_offhand_1 s8/camera_offhand_1 s2/elephant_inspect_1 s5/mug_pass_1 s3/hammer_use_1 s9/mug_drink_2 s5/wineglass_drink_2 s5/piggybank_lift s9/waterbottle_open_1 s7/alarmclock_lift s1/eyeglasses_offhand_1 s1/flute_play_1 s8/wineglass_lift s7/waterbottle_shake_1 s1/cubelarge_inspect_1 s1/hammer_use_2 s5/doorknob_lift s1/spheremedium_inspect_1 s9/spheremedium_pass_1 s6/knife_peel_1 s4/fryingpan_pass_1 s3/binoculars_lift s7/toruslarge_lift s4/piggybank_lift s3/cubelarge_pass_1 s2/banana_peel_1 s1/alarmclock_lift s5/train_lift s1/cup_pass_1 s1/waterbottle_drink_1 s3/bowl_drink_2 s5/cylinderlarge_inspect_1 s4/headphones_use_1 s3/hand_pass_1 s3/flashlight_on_1 s3/toruslarge_pass_1 s9/flashlight_on_1 s8/mug_offhand_1 s8/cubesmall_lift s10/airplane_pass_1 |