-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathparsed_winoground.jsonl
1600 lines (1600 loc) · 151 KB
/
parsed_winoground.jsonl
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
{"id": 0, "image": "ex_0_img_0", "caption": "an old person kisses a young person"}
{"id": 0, "image": "ex_0_img_0", "caption": "a young person kisses an old person"}
{"id": 0, "image": "ex_0_img_1", "caption": "an old person kisses a young person"}
{"id": 0, "image": "ex_0_img_1", "caption": "a young person kisses an old person"}
{"id": 1, "image": "ex_1_img_0", "caption": "the taller person hugs the shorter person"}
{"id": 1, "image": "ex_1_img_0", "caption": "the shorter person hugs the taller person"}
{"id": 1, "image": "ex_1_img_1", "caption": "the taller person hugs the shorter person"}
{"id": 1, "image": "ex_1_img_1", "caption": "the shorter person hugs the taller person"}
{"id": 2, "image": "ex_2_img_0", "caption": "the masked wrestler hits the unmasked wrestler"}
{"id": 2, "image": "ex_2_img_0", "caption": "the unmasked wrestler hits the masked wrestler"}
{"id": 2, "image": "ex_2_img_1", "caption": "the masked wrestler hits the unmasked wrestler"}
{"id": 2, "image": "ex_2_img_1", "caption": "the unmasked wrestler hits the masked wrestler"}
{"id": 3, "image": "ex_3_img_0", "caption": "a person watches an animal"}
{"id": 3, "image": "ex_3_img_0", "caption": "an animal watches a person"}
{"id": 3, "image": "ex_3_img_1", "caption": "a person watches an animal"}
{"id": 3, "image": "ex_3_img_1", "caption": "an animal watches a person"}
{"id": 4, "image": "ex_4_img_0", "caption": "the person without earrings pays the person with earrings"}
{"id": 4, "image": "ex_4_img_0", "caption": "the person with earrings pays the person without earrings"}
{"id": 4, "image": "ex_4_img_1", "caption": "the person without earrings pays the person with earrings"}
{"id": 4, "image": "ex_4_img_1", "caption": "the person with earrings pays the person without earrings"}
{"id": 5, "image": "ex_5_img_0", "caption": "a bird eats a snake"}
{"id": 5, "image": "ex_5_img_0", "caption": "a snake eats a bird"}
{"id": 5, "image": "ex_5_img_1", "caption": "a bird eats a snake"}
{"id": 5, "image": "ex_5_img_1", "caption": "a snake eats a bird"}
{"id": 6, "image": "ex_6_img_0", "caption": "a plant was harmed by another organism, and that organism broke the plant into pieces"}
{"id": 6, "image": "ex_6_img_0", "caption": "another organism was harmed by a plant, and that plant broke the organism into pieces"}
{"id": 6, "image": "ex_6_img_1", "caption": "a plant was harmed by another organism, and that organism broke the plant into pieces"}
{"id": 6, "image": "ex_6_img_1", "caption": "another organism was harmed by a plant, and that plant broke the organism into pieces"}
{"id": 7, "image": "ex_7_img_0", "caption": "a bottle is in water"}
{"id": 7, "image": "ex_7_img_0", "caption": "water is in a bottle"}
{"id": 7, "image": "ex_7_img_1", "caption": "a bottle is in water"}
{"id": 7, "image": "ex_7_img_1", "caption": "water is in a bottle"}
{"id": 8, "image": "ex_8_img_0", "caption": "a tree smashed into a car"}
{"id": 8, "image": "ex_8_img_0", "caption": "a car smashed into a tree"}
{"id": 8, "image": "ex_8_img_1", "caption": "a tree smashed into a car"}
{"id": 8, "image": "ex_8_img_1", "caption": "a car smashed into a tree"}
{"id": 9, "image": "ex_9_img_0", "caption": "people fall on the leaves"}
{"id": 9, "image": "ex_9_img_0", "caption": "the leaves fall on people"}
{"id": 9, "image": "ex_9_img_1", "caption": "people fall on the leaves"}
{"id": 9, "image": "ex_9_img_1", "caption": "the leaves fall on people"}
{"id": 10, "image": "ex_10_img_0", "caption": "the sail rests below the water"}
{"id": 10, "image": "ex_10_img_0", "caption": "the water rests below the sail"}
{"id": 10, "image": "ex_10_img_1", "caption": "the sail rests below the water"}
{"id": 10, "image": "ex_10_img_1", "caption": "the water rests below the sail"}
{"id": 11, "image": "ex_11_img_0", "caption": "there is a table below someone"}
{"id": 11, "image": "ex_11_img_0", "caption": "there is someone below a table"}
{"id": 11, "image": "ex_11_img_1", "caption": "there is a table below someone"}
{"id": 11, "image": "ex_11_img_1", "caption": "there is someone below a table"}
{"id": 12, "image": "ex_12_img_0", "caption": "the image shows a computer on top of books"}
{"id": 12, "image": "ex_12_img_0", "caption": "the image shows books on top of a computer"}
{"id": 12, "image": "ex_12_img_1", "caption": "the image shows a computer on top of books"}
{"id": 12, "image": "ex_12_img_1", "caption": "the image shows books on top of a computer"}
{"id": 13, "image": "ex_13_img_0", "caption": "a caterpillar with some plants"}
{"id": 13, "image": "ex_13_img_0", "caption": "a plant with some caterpillars"}
{"id": 13, "image": "ex_13_img_1", "caption": "a caterpillar with some plants"}
{"id": 13, "image": "ex_13_img_1", "caption": "a plant with some caterpillars"}
{"id": 14, "image": "ex_14_img_0", "caption": "there is a mug in some grass"}
{"id": 14, "image": "ex_14_img_0", "caption": "there is some grass in a mug"}
{"id": 14, "image": "ex_14_img_1", "caption": "there is a mug in some grass"}
{"id": 14, "image": "ex_14_img_1", "caption": "there is some grass in a mug"}
{"id": 15, "image": "ex_15_img_0", "caption": "there are more skiers than snowboarders"}
{"id": 15, "image": "ex_15_img_0", "caption": "there are more snowboarders than skiers"}
{"id": 15, "image": "ex_15_img_1", "caption": "there are more skiers than snowboarders"}
{"id": 15, "image": "ex_15_img_1", "caption": "there are more snowboarders than skiers"}
{"id": 16, "image": "ex_16_img_0", "caption": "there are fewer forks than spoons"}
{"id": 16, "image": "ex_16_img_0", "caption": "there are fewer spoons than forks"}
{"id": 16, "image": "ex_16_img_1", "caption": "there are fewer forks than spoons"}
{"id": 16, "image": "ex_16_img_1", "caption": "there are fewer spoons than forks"}
{"id": 17, "image": "ex_17_img_0", "caption": "there are more ladybugs than flowers"}
{"id": 17, "image": "ex_17_img_0", "caption": "there are more flowers than ladybugs"}
{"id": 17, "image": "ex_17_img_1", "caption": "there are more ladybugs than flowers"}
{"id": 17, "image": "ex_17_img_1", "caption": "there are more flowers than ladybugs"}
{"id": 18, "image": "ex_18_img_0", "caption": "there is less orange juice than milk"}
{"id": 18, "image": "ex_18_img_0", "caption": "there is less milk than orange juice"}
{"id": 18, "image": "ex_18_img_1", "caption": "there is less orange juice than milk"}
{"id": 18, "image": "ex_18_img_1", "caption": "there is less milk than orange juice"}
{"id": 19, "image": "ex_19_img_0", "caption": "there is more dirt than empty space in the jar"}
{"id": 19, "image": "ex_19_img_0", "caption": "there is more empty space than dirt in the jar"}
{"id": 19, "image": "ex_19_img_1", "caption": "there is more dirt than empty space in the jar"}
{"id": 19, "image": "ex_19_img_1", "caption": "there is more empty space than dirt in the jar"}
{"id": 20, "image": "ex_20_img_0", "caption": "there is a bit less milk chocolate than white chocolate"}
{"id": 20, "image": "ex_20_img_0", "caption": "there is a bit less white chocolate than milk chocolate"}
{"id": 20, "image": "ex_20_img_1", "caption": "there is a bit less milk chocolate than white chocolate"}
{"id": 20, "image": "ex_20_img_1", "caption": "there is a bit less white chocolate than milk chocolate"}
{"id": 21, "image": "ex_21_img_0", "caption": "a person sits and a dog stands"}
{"id": 21, "image": "ex_21_img_0", "caption": "a person stands and a dog sits"}
{"id": 21, "image": "ex_21_img_1", "caption": "a person sits and a dog stands"}
{"id": 21, "image": "ex_21_img_1", "caption": "a person stands and a dog sits"}
{"id": 22, "image": "ex_22_img_0", "caption": "The person with more facial hair lies awake while the other sleeps"}
{"id": 22, "image": "ex_22_img_0", "caption": "The person with more facial hair sleeps while the other lies awake"}
{"id": 22, "image": "ex_22_img_1", "caption": "The person with more facial hair lies awake while the other sleeps"}
{"id": 22, "image": "ex_22_img_1", "caption": "The person with more facial hair sleeps while the other lies awake"}
{"id": 23, "image": "ex_23_img_0", "caption": "the person in the middle is floating and some others are standing"}
{"id": 23, "image": "ex_23_img_0", "caption": "the person in the middle is standing and some others are floating"}
{"id": 23, "image": "ex_23_img_1", "caption": "the person in the middle is floating and some others are standing"}
{"id": 23, "image": "ex_23_img_1", "caption": "the person in the middle is standing and some others are floating"}
{"id": 24, "image": "ex_24_img_0", "caption": "the person closer to the camera weightlifts and the person farther from the camera runs"}
{"id": 24, "image": "ex_24_img_0", "caption": "the person closer to the camera runs and the person farther from the camera weightlifts"}
{"id": 24, "image": "ex_24_img_1", "caption": "the person closer to the camera weightlifts and the person farther from the camera runs"}
{"id": 24, "image": "ex_24_img_1", "caption": "the person closer to the camera runs and the person farther from the camera weightlifts"}
{"id": 25, "image": "ex_25_img_0", "caption": "the person with the white collared shirt waters the plant while the other holds it"}
{"id": 25, "image": "ex_25_img_0", "caption": "the person with the white collared shirt holds the plant while the other waters it"}
{"id": 25, "image": "ex_25_img_1", "caption": "the person with the white collared shirt waters the plant while the other holds it"}
{"id": 25, "image": "ex_25_img_1", "caption": "the person with the white collared shirt holds the plant while the other waters it"}
{"id": 26, "image": "ex_26_img_0", "caption": "the taller person chops food and the shorter person eats food"}
{"id": 26, "image": "ex_26_img_0", "caption": "the taller person eats food and the shorter person chops food"}
{"id": 26, "image": "ex_26_img_1", "caption": "the taller person chops food and the shorter person eats food"}
{"id": 26, "image": "ex_26_img_1", "caption": "the taller person eats food and the shorter person chops food"}
{"id": 27, "image": "ex_27_img_0", "caption": "the person with the ponytail packs stuff and other buys it"}
{"id": 27, "image": "ex_27_img_0", "caption": "the person with the ponytail buys stuff and other packs it"}
{"id": 27, "image": "ex_27_img_1", "caption": "the person with the ponytail packs stuff and other buys it"}
{"id": 27, "image": "ex_27_img_1", "caption": "the person with the ponytail buys stuff and other packs it"}
{"id": 28, "image": "ex_28_img_0", "caption": "a person walking in a field of yellow flowers with a red dress"}
{"id": 28, "image": "ex_28_img_0", "caption": "a person walking in a field of red flowers with a yellow dress"}
{"id": 28, "image": "ex_28_img_1", "caption": "a person walking in a field of yellow flowers with a red dress"}
{"id": 28, "image": "ex_28_img_1", "caption": "a person walking in a field of red flowers with a yellow dress"}
{"id": 29, "image": "ex_29_img_0", "caption": "a brown dog is on a white couch"}
{"id": 29, "image": "ex_29_img_0", "caption": "a white dog is on a brown couch"}
{"id": 29, "image": "ex_29_img_1", "caption": "a brown dog is on a white couch"}
{"id": 29, "image": "ex_29_img_1", "caption": "a white dog is on a brown couch"}
{"id": 30, "image": "ex_30_img_0", "caption": "a blue bird is next to a red berry"}
{"id": 30, "image": "ex_30_img_0", "caption": "a red bird is next to a blue berry"}
{"id": 30, "image": "ex_30_img_1", "caption": "a blue bird is next to a red berry"}
{"id": 30, "image": "ex_30_img_1", "caption": "a red bird is next to a blue berry"}
{"id": 31, "image": "ex_31_img_0", "caption": "The red book is above the yellow book and below the blue book"}
{"id": 31, "image": "ex_31_img_0", "caption": "The yellow book is above the blue book and below the red book"}
{"id": 31, "image": "ex_31_img_1", "caption": "The red book is above the yellow book and below the blue book"}
{"id": 31, "image": "ex_31_img_1", "caption": "The yellow book is above the blue book and below the red book"}
{"id": 32, "image": "ex_32_img_0", "caption": "astronauts in blue suits with a red planet in the background"}
{"id": 32, "image": "ex_32_img_0", "caption": "astronauts in red suits with a blue planet in the background"}
{"id": 32, "image": "ex_32_img_1", "caption": "astronauts in blue suits with a red planet in the background"}
{"id": 32, "image": "ex_32_img_1", "caption": "astronauts in red suits with a blue planet in the background"}
{"id": 33, "image": "ex_33_img_0", "caption": "the square table has a round base"}
{"id": 33, "image": "ex_33_img_0", "caption": "the round table has a square base"}
{"id": 33, "image": "ex_33_img_1", "caption": "the square table has a round base"}
{"id": 33, "image": "ex_33_img_1", "caption": "the round table has a square base"}
{"id": 34, "image": "ex_34_img_0", "caption": "pointy bushes are behind rectangular bushes"}
{"id": 34, "image": "ex_34_img_0", "caption": "rectangular bushes are behind pointy bushes"}
{"id": 34, "image": "ex_34_img_1", "caption": "pointy bushes are behind rectangular bushes"}
{"id": 34, "image": "ex_34_img_1", "caption": "rectangular bushes are behind pointy bushes"}
{"id": 35, "image": "ex_35_img_0", "caption": "a circular sign is above a rectangular sign"}
{"id": 35, "image": "ex_35_img_0", "caption": "a rectangular sign is above a circular sign"}
{"id": 35, "image": "ex_35_img_1", "caption": "a circular sign is above a rectangular sign"}
{"id": 35, "image": "ex_35_img_1", "caption": "a rectangular sign is above a circular sign"}
{"id": 36, "image": "ex_36_img_0", "caption": "a wood chess piece rests on metal objects"}
{"id": 36, "image": "ex_36_img_0", "caption": "a metal chess piece rests on wood objects"}
{"id": 36, "image": "ex_36_img_1", "caption": "a wood chess piece rests on metal objects"}
{"id": 36, "image": "ex_36_img_1", "caption": "a metal chess piece rests on wood objects"}
{"id": 37, "image": "ex_37_img_0", "caption": "soft shoes are on a smooth floor"}
{"id": 37, "image": "ex_37_img_0", "caption": "smooth shoes are on a soft floor"}
{"id": 37, "image": "ex_37_img_1", "caption": "soft shoes are on a smooth floor"}
{"id": 37, "image": "ex_37_img_1", "caption": "smooth shoes are on a soft floor"}
{"id": 38, "image": "ex_38_img_0", "caption": "the happy person is on the right and the sad person is on the left"}
{"id": 38, "image": "ex_38_img_0", "caption": "the sad person is on the right and the happy person is on the left"}
{"id": 38, "image": "ex_38_img_1", "caption": "the happy person is on the right and the sad person is on the left"}
{"id": 38, "image": "ex_38_img_1", "caption": "the sad person is on the right and the happy person is on the left"}
{"id": 39, "image": "ex_39_img_0", "caption": "the hurt person is on the left and the helpful person is on the right"}
{"id": 39, "image": "ex_39_img_0", "caption": "the helpful person is on the left and the hurt person is on the right"}
{"id": 39, "image": "ex_39_img_1", "caption": "the hurt person is on the left and the helpful person is on the right"}
{"id": 39, "image": "ex_39_img_1", "caption": "the helpful person is on the left and the hurt person is on the right"}
{"id": 40, "image": "ex_40_img_0", "caption": "the more content person has the healthier food and the less content person has the less healthy food"}
{"id": 40, "image": "ex_40_img_0", "caption": "the less content person has the healthier food and the more content person has the less healthy food"}
{"id": 40, "image": "ex_40_img_1", "caption": "the more content person has the healthier food and the less content person has the less healthy food"}
{"id": 40, "image": "ex_40_img_1", "caption": "the less content person has the healthier food and the more content person has the less healthy food"}
{"id": 41, "image": "ex_41_img_0", "caption": "the orange lollipop is sad and the red lollipop is surprised"}
{"id": 41, "image": "ex_41_img_0", "caption": "the orange lollipop is surprised and the red lollipop is sad"}
{"id": 41, "image": "ex_41_img_1", "caption": "the orange lollipop is sad and the red lollipop is surprised"}
{"id": 41, "image": "ex_41_img_1", "caption": "the orange lollipop is surprised and the red lollipop is sad"}
{"id": 42, "image": "ex_42_img_0", "caption": "the larger person wears yellow and the smaller person does not"}
{"id": 42, "image": "ex_42_img_0", "caption": "the smaller person wears yellow and the larger person does not"}
{"id": 42, "image": "ex_42_img_1", "caption": "the larger person wears yellow and the smaller person does not"}
{"id": 42, "image": "ex_42_img_1", "caption": "the smaller person wears yellow and the larger person does not"}
{"id": 43, "image": "ex_43_img_0", "caption": "a big cat is next to a small dog"}
{"id": 43, "image": "ex_43_img_0", "caption": "a small cat is next to a big dog"}
{"id": 43, "image": "ex_43_img_1", "caption": "a big cat is next to a small dog"}
{"id": 43, "image": "ex_43_img_1", "caption": "a small cat is next to a big dog"}
{"id": 44, "image": "ex_44_img_0", "caption": "the heavy oncoming traffic is contrasted with the light outgoing traffic"}
{"id": 44, "image": "ex_44_img_0", "caption": "the light oncoming traffic is contrasted with the heavy outgoing traffic"}
{"id": 44, "image": "ex_44_img_1", "caption": "the heavy oncoming traffic is contrasted with the light outgoing traffic"}
{"id": 44, "image": "ex_44_img_1", "caption": "the light oncoming traffic is contrasted with the heavy outgoing traffic"}
{"id": 45, "image": "ex_45_img_0", "caption": "a cold drink on a hot day"}
{"id": 45, "image": "ex_45_img_0", "caption": "a hot drink on a cold day"}
{"id": 45, "image": "ex_45_img_1", "caption": "a cold drink on a hot day"}
{"id": 45, "image": "ex_45_img_1", "caption": "a hot drink on a cold day"}
{"id": 46, "image": "ex_46_img_0", "caption": "a person is drinking now and eating later"}
{"id": 46, "image": "ex_46_img_0", "caption": "a person is drinking later and eating now"}
{"id": 46, "image": "ex_46_img_1", "caption": "a person is drinking now and eating later"}
{"id": 46, "image": "ex_46_img_1", "caption": "a person is drinking later and eating now"}
{"id": 47, "image": "ex_47_img_0", "caption": "the sailboat sails close but the beach is far away"}
{"id": 47, "image": "ex_47_img_0", "caption": "the sailboat sails far away but the beach is close"}
{"id": 47, "image": "ex_47_img_1", "caption": "the sailboat sails close but the beach is far away"}
{"id": 47, "image": "ex_47_img_1", "caption": "the sailboat sails far away but the beach is close"}
{"id": 48, "image": "ex_48_img_0", "caption": "the passenger is riding inattentive to the road and the driver is driving attentive to the road"}
{"id": 48, "image": "ex_48_img_0", "caption": "the passenger is riding attentive to the road and the driver is driving inattentive to the road"}
{"id": 48, "image": "ex_48_img_1", "caption": "the passenger is riding inattentive to the road and the driver is driving attentive to the road"}
{"id": 48, "image": "ex_48_img_1", "caption": "the passenger is riding attentive to the road and the driver is driving inattentive to the road"}
{"id": 49, "image": "ex_49_img_0", "caption": "it wears a hat but the person doesn't"}
{"id": 49, "image": "ex_49_img_0", "caption": "the person wears a hat but it doesn't"}
{"id": 49, "image": "ex_49_img_1", "caption": "it wears a hat but the person doesn't"}
{"id": 49, "image": "ex_49_img_1", "caption": "the person wears a hat but it doesn't"}
{"id": 50, "image": "ex_50_img_0", "caption": "the person with green legs is running quite slowly and the red legged one runs faster"}
{"id": 50, "image": "ex_50_img_0", "caption": "the person with green legs is running faster and the red legged one runs quite slowly"}
{"id": 50, "image": "ex_50_img_1", "caption": "the person with green legs is running quite slowly and the red legged one runs faster"}
{"id": 50, "image": "ex_50_img_1", "caption": "the person with green legs is running faster and the red legged one runs quite slowly"}
{"id": 51, "image": "ex_51_img_0", "caption": "a person is in the water and close to the sand"}
{"id": 51, "image": "ex_51_img_0", "caption": "a person is close to the water and in the sand"}
{"id": 51, "image": "ex_51_img_1", "caption": "a person is in the water and close to the sand"}
{"id": 51, "image": "ex_51_img_1", "caption": "a person is close to the water and in the sand"}
{"id": 52, "image": "ex_52_img_0", "caption": "a frog is above rocks which are under the water"}
{"id": 52, "image": "ex_52_img_0", "caption": "a frog is under rocks which are above the water"}
{"id": 52, "image": "ex_52_img_1", "caption": "a frog is above rocks which are under the water"}
{"id": 52, "image": "ex_52_img_1", "caption": "a frog is under rocks which are above the water"}
{"id": 53, "image": "ex_53_img_0", "caption": "driving off the road and on the unpaved terrain"}
{"id": 53, "image": "ex_53_img_0", "caption": "driving on the road and off the unpaved terrain"}
{"id": 53, "image": "ex_53_img_1", "caption": "driving off the road and on the unpaved terrain"}
{"id": 53, "image": "ex_53_img_1", "caption": "driving on the road and off the unpaved terrain"}
{"id": 54, "image": "ex_54_img_0", "caption": "someone is in a helicopter with a car"}
{"id": 54, "image": "ex_54_img_0", "caption": "someone is with a helicopter in a car"}
{"id": 54, "image": "ex_54_img_1", "caption": "someone is in a helicopter with a car"}
{"id": 54, "image": "ex_54_img_1", "caption": "someone is with a helicopter in a car"}
{"id": 55, "image": "ex_55_img_0", "caption": "the green one can fit inside the blue one and the blue one can fit outside the green one"}
{"id": 55, "image": "ex_55_img_0", "caption": "the green one can fit outside the blue one and the blue one can fit inside the green one"}
{"id": 55, "image": "ex_55_img_1", "caption": "the green one can fit inside the blue one and the blue one can fit outside the green one"}
{"id": 55, "image": "ex_55_img_1", "caption": "the green one can fit outside the blue one and the blue one can fit inside the green one"}
{"id": 56, "image": "ex_56_img_0", "caption": "jumping away from the photographer and towards the others"}
{"id": 56, "image": "ex_56_img_0", "caption": "jumping towards the photographer and away from the others"}
{"id": 56, "image": "ex_56_img_1", "caption": "jumping away from the photographer and towards the others"}
{"id": 56, "image": "ex_56_img_1", "caption": "jumping towards the photographer and away from the others"}
{"id": 57, "image": "ex_57_img_0", "caption": "someone bakes the dough before the dough is eaten"}
{"id": 57, "image": "ex_57_img_0", "caption": "the dough is eaten before someone bakes the dough"}
{"id": 57, "image": "ex_57_img_1", "caption": "someone bakes the dough before the dough is eaten"}
{"id": 57, "image": "ex_57_img_1", "caption": "the dough is eaten before someone bakes the dough"}
{"id": 58, "image": "ex_58_img_0", "caption": "it hatched before it was eaten"}
{"id": 58, "image": "ex_58_img_0", "caption": "it was eaten before it hatched"}
{"id": 58, "image": "ex_58_img_1", "caption": "it hatched before it was eaten"}
{"id": 58, "image": "ex_58_img_1", "caption": "it was eaten before it hatched"}
{"id": 59, "image": "ex_59_img_0", "caption": "there are three bananas and two apples"}
{"id": 59, "image": "ex_59_img_0", "caption": "there are two bananas and three apples"}
{"id": 59, "image": "ex_59_img_1", "caption": "there are three bananas and two apples"}
{"id": 59, "image": "ex_59_img_1", "caption": "there are two bananas and three apples"}
{"id": 60, "image": "ex_60_img_0", "caption": "someone has loaded their plate with one of the toast slices and two of the eggs"}
{"id": 60, "image": "ex_60_img_0", "caption": "someone has loaded their plate with two of the toast slices and one of the eggs"}
{"id": 60, "image": "ex_60_img_1", "caption": "someone has loaded their plate with one of the toast slices and two of the eggs"}
{"id": 60, "image": "ex_60_img_1", "caption": "someone has loaded their plate with two of the toast slices and one of the eggs"}
{"id": 61, "image": "ex_61_img_0", "caption": "there are three people and two windows"}
{"id": 61, "image": "ex_61_img_0", "caption": "there are two people and three windows"}
{"id": 61, "image": "ex_61_img_1", "caption": "there are three people and two windows"}
{"id": 61, "image": "ex_61_img_1", "caption": "there are two people and three windows"}
{"id": 62, "image": "ex_62_img_0", "caption": "there are 50 stars on the right flag and 5 stars on the left flag"}
{"id": 62, "image": "ex_62_img_0", "caption": "there are 5 stars on the right flag and 50 stars on the left flag"}
{"id": 62, "image": "ex_62_img_1", "caption": "there are 50 stars on the right flag and 5 stars on the left flag"}
{"id": 62, "image": "ex_62_img_1", "caption": "there are 5 stars on the right flag and 50 stars on the left flag"}
{"id": 63, "image": "ex_63_img_0", "caption": "no people wear blue shirts and six people wear white shirts"}
{"id": 63, "image": "ex_63_img_0", "caption": "six people wear blue shirts and no people wear white shirts"}
{"id": 63, "image": "ex_63_img_1", "caption": "no people wear blue shirts and six people wear white shirts"}
{"id": 63, "image": "ex_63_img_1", "caption": "six people wear blue shirts and no people wear white shirts"}
{"id": 64, "image": "ex_64_img_0", "caption": "the dog's leg is on the person's torso"}
{"id": 64, "image": "ex_64_img_0", "caption": "the person's leg is on the dog's torso"}
{"id": 64, "image": "ex_64_img_1", "caption": "the dog's leg is on the person's torso"}
{"id": 64, "image": "ex_64_img_1", "caption": "the person's leg is on the dog's torso"}
{"id": 65, "image": "ex_65_img_0", "caption": "the animal's eyes are bigger than the person's"}
{"id": 65, "image": "ex_65_img_0", "caption": "the person's eyes are bigger than the animal's"}
{"id": 65, "image": "ex_65_img_1", "caption": "the animal's eyes are bigger than the person's"}
{"id": 65, "image": "ex_65_img_1", "caption": "the person's eyes are bigger than the animal's"}
{"id": 66, "image": "ex_66_img_0", "caption": "the taller person's arm is around the shorter person's shoulder"}
{"id": 66, "image": "ex_66_img_0", "caption": "the shorter person's arm is around the taller person's shoulder"}
{"id": 66, "image": "ex_66_img_1", "caption": "the taller person's arm is around the shorter person's shoulder"}
{"id": 66, "image": "ex_66_img_1", "caption": "the shorter person's arm is around the taller person's shoulder"}
{"id": 67, "image": "ex_67_img_0", "caption": "the person in a brown coat looks back and the person in a black coat looks forward"}
{"id": 67, "image": "ex_67_img_0", "caption": "the person in a black coat looks back and the person in a brown coat looks forward"}
{"id": 67, "image": "ex_67_img_1", "caption": "the person in a brown coat looks back and the person in a black coat looks forward"}
{"id": 67, "image": "ex_67_img_1", "caption": "the person in a black coat looks back and the person in a brown coat looks forward"}
{"id": 68, "image": "ex_68_img_0", "caption": "it ran away while they pursued"}
{"id": 68, "image": "ex_68_img_0", "caption": "they ran away while it pursued"}
{"id": 68, "image": "ex_68_img_1", "caption": "it ran away while they pursued"}
{"id": 68, "image": "ex_68_img_1", "caption": "they ran away while it pursued"}
{"id": 69, "image": "ex_69_img_0", "caption": "almost everyone is in a boat and one is swimming"}
{"id": 69, "image": "ex_69_img_0", "caption": "one is in a boat and almost everyone is swimming"}
{"id": 69, "image": "ex_69_img_1", "caption": "almost everyone is in a boat and one is swimming"}
{"id": 69, "image": "ex_69_img_1", "caption": "one is in a boat and almost everyone is swimming"}
{"id": 70, "image": "ex_70_img_0", "caption": "the person with the lighter shoes is holding an emoji and the person with the darker shoes isn't"}
{"id": 70, "image": "ex_70_img_0", "caption": "the person with the darker shoes is holding an emoji and the person with the lighter shoes isn't"}
{"id": 70, "image": "ex_70_img_1", "caption": "the person with the lighter shoes is holding an emoji and the person with the darker shoes isn't"}
{"id": 70, "image": "ex_70_img_1", "caption": "the person with the darker shoes is holding an emoji and the person with the lighter shoes isn't"}
{"id": 71, "image": "ex_71_img_0", "caption": "the person wearing neutral colors poses and the person wearing brighter colors takes a picture"}
{"id": 71, "image": "ex_71_img_0", "caption": "the person wearing brighter colors poses and the person wearing neutral colors takes a picture"}
{"id": 71, "image": "ex_71_img_1", "caption": "the person wearing neutral colors poses and the person wearing brighter colors takes a picture"}
{"id": 71, "image": "ex_71_img_1", "caption": "the person wearing brighter colors poses and the person wearing neutral colors takes a picture"}
{"id": 72, "image": "ex_72_img_0", "caption": "it's a fire truck"}
{"id": 72, "image": "ex_72_img_0", "caption": "it's a truck fire"}
{"id": 72, "image": "ex_72_img_1", "caption": "it's a fire truck"}
{"id": 72, "image": "ex_72_img_1", "caption": "it's a truck fire"}
{"id": 73, "image": "ex_73_img_0", "caption": "watching the present"}
{"id": 73, "image": "ex_73_img_0", "caption": "presenting the watch"}
{"id": 73, "image": "ex_73_img_1", "caption": "watching the present"}
{"id": 73, "image": "ex_73_img_1", "caption": "presenting the watch"}
{"id": 74, "image": "ex_74_img_0", "caption": "walking out on a rock"}
{"id": 74, "image": "ex_74_img_0", "caption": "rocking out on a walk"}
{"id": 74, "image": "ex_74_img_1", "caption": "walking out on a rock"}
{"id": 74, "image": "ex_74_img_1", "caption": "rocking out on a walk"}
{"id": 75, "image": "ex_75_img_0", "caption": "the kid with the magnifying glass looks at them"}
{"id": 75, "image": "ex_75_img_0", "caption": "the kid looks at them with the magnifying glass"}
{"id": 75, "image": "ex_75_img_1", "caption": "the kid with the magnifying glass looks at them"}
{"id": 75, "image": "ex_75_img_1", "caption": "the kid looks at them with the magnifying glass"}
{"id": 76, "image": "ex_76_img_0", "caption": "the person with the kids is sitting"}
{"id": 76, "image": "ex_76_img_0", "caption": "the person is sitting with the kids"}
{"id": 76, "image": "ex_76_img_1", "caption": "the person with the kids is sitting"}
{"id": 76, "image": "ex_76_img_1", "caption": "the person is sitting with the kids"}
{"id": 77, "image": "ex_77_img_0", "caption": "the people with shoes are touching each other"}
{"id": 77, "image": "ex_77_img_0", "caption": "the people are touching each other with shoes"}
{"id": 77, "image": "ex_77_img_1", "caption": "the people with shoes are touching each other"}
{"id": 77, "image": "ex_77_img_1", "caption": "the people are touching each other with shoes"}
{"id": 78, "image": "ex_78_img_0", "caption": "someone with an apple is hurt by a tree"}
{"id": 78, "image": "ex_78_img_0", "caption": "someone is hurt by a tree with an apple"}
{"id": 78, "image": "ex_78_img_1", "caption": "someone with an apple is hurt by a tree"}
{"id": 78, "image": "ex_78_img_1", "caption": "someone is hurt by a tree with an apple"}
{"id": 79, "image": "ex_79_img_0", "caption": "the person that is on the table is eating the food"}
{"id": 79, "image": "ex_79_img_0", "caption": "the person is eating the food that is on the table"}
{"id": 79, "image": "ex_79_img_1", "caption": "the person that is on the table is eating the food"}
{"id": 79, "image": "ex_79_img_1", "caption": "the person is eating the food that is on the table"}
{"id": 80, "image": "ex_80_img_0", "caption": "the watering can is larger than the pot"}
{"id": 80, "image": "ex_80_img_0", "caption": "the pot is larger than the watering can"}
{"id": 80, "image": "ex_80_img_1", "caption": "the watering can is larger than the pot"}
{"id": 80, "image": "ex_80_img_1", "caption": "the pot is larger than the watering can"}
{"id": 81, "image": "ex_81_img_0", "caption": "they hold a suitcase handle with their left hand and they hold a passport with their right hand"}
{"id": 81, "image": "ex_81_img_0", "caption": "they hold a passport with their left hand and they hold a suitcase handle with their right hand"}
{"id": 81, "image": "ex_81_img_1", "caption": "they hold a suitcase handle with their left hand and they hold a passport with their right hand"}
{"id": 81, "image": "ex_81_img_1", "caption": "they hold a passport with their left hand and they hold a suitcase handle with their right hand"}
{"id": 82, "image": "ex_82_img_0", "caption": "the person with the patterned shirt is curly-haired and the other is straight-haired"}
{"id": 82, "image": "ex_82_img_0", "caption": "the person with the patterned shirt is straight-haired and the other is curly-haired"}
{"id": 82, "image": "ex_82_img_1", "caption": "the person with the patterned shirt is curly-haired and the other is straight-haired"}
{"id": 82, "image": "ex_82_img_1", "caption": "the person with the patterned shirt is straight-haired and the other is curly-haired"}
{"id": 83, "image": "ex_83_img_0", "caption": "a diagram showing movement from right to left"}
{"id": 83, "image": "ex_83_img_0", "caption": "a diagram showing movement from left to right"}
{"id": 83, "image": "ex_83_img_1", "caption": "a diagram showing movement from right to left"}
{"id": 83, "image": "ex_83_img_1", "caption": "a diagram showing movement from left to right"}
{"id": 84, "image": "ex_84_img_0", "caption": "the flip flops are too big for these feet"}
{"id": 84, "image": "ex_84_img_0", "caption": "the feet are too big for these flip flops"}
{"id": 84, "image": "ex_84_img_1", "caption": "the flip flops are too big for these feet"}
{"id": 84, "image": "ex_84_img_1", "caption": "the feet are too big for these flip flops"}
{"id": 85, "image": "ex_85_img_0", "caption": "the person who is wearing a crown is kissing a frog"}
{"id": 85, "image": "ex_85_img_0", "caption": "the person is kissing a frog who is wearing a crown"}
{"id": 85, "image": "ex_85_img_1", "caption": "the person who is wearing a crown is kissing a frog"}
{"id": 85, "image": "ex_85_img_1", "caption": "the person is kissing a frog who is wearing a crown"}
{"id": 86, "image": "ex_86_img_0", "caption": "a dog sitting on a couch with a person lying on the floor"}
{"id": 86, "image": "ex_86_img_0", "caption": "a person lying on a couch with a dog sitting on the floor"}
{"id": 86, "image": "ex_86_img_1", "caption": "a dog sitting on a couch with a person lying on the floor"}
{"id": 86, "image": "ex_86_img_1", "caption": "a person lying on a couch with a dog sitting on the floor"}
{"id": 87, "image": "ex_87_img_0", "caption": "The uncaged bird has an opened cage door"}
{"id": 87, "image": "ex_87_img_0", "caption": "The caged bird has an unopened cage door"}
{"id": 87, "image": "ex_87_img_1", "caption": "The uncaged bird has an opened cage door"}
{"id": 87, "image": "ex_87_img_1", "caption": "The caged bird has an unopened cage door"}
{"id": 88, "image": "ex_88_img_0", "caption": "meat with potatoes"}
{"id": 88, "image": "ex_88_img_0", "caption": "potatoes with meat"}
{"id": 88, "image": "ex_88_img_1", "caption": "meat with potatoes"}
{"id": 88, "image": "ex_88_img_1", "caption": "potatoes with meat"}
{"id": 89, "image": "ex_89_img_0", "caption": "the person in pink was close to not winning"}
{"id": 89, "image": "ex_89_img_0", "caption": "the person in pink was not close to winning"}
{"id": 89, "image": "ex_89_img_1", "caption": "the person in pink was close to not winning"}
{"id": 89, "image": "ex_89_img_1", "caption": "the person in pink was not close to winning"}
{"id": 90, "image": "ex_90_img_0", "caption": "two humans and one wheel"}
{"id": 90, "image": "ex_90_img_0", "caption": "two wheels and one human"}
{"id": 90, "image": "ex_90_img_1", "caption": "two humans and one wheel"}
{"id": 90, "image": "ex_90_img_1", "caption": "two wheels and one human"}
{"id": 91, "image": "ex_91_img_0", "caption": "clothing on lines"}
{"id": 91, "image": "ex_91_img_0", "caption": "lines on clothing"}
{"id": 91, "image": "ex_91_img_1", "caption": "clothing on lines"}
{"id": 91, "image": "ex_91_img_1", "caption": "lines on clothing"}
{"id": 92, "image": "ex_92_img_0", "caption": "someone talks on the phone angrily while another person sits happily"}
{"id": 92, "image": "ex_92_img_0", "caption": "someone talks on the phone happily while another person sits angrily"}
{"id": 92, "image": "ex_92_img_1", "caption": "someone talks on the phone angrily while another person sits happily"}
{"id": 92, "image": "ex_92_img_1", "caption": "someone talks on the phone happily while another person sits angrily"}
{"id": 93, "image": "ex_93_img_0", "caption": "two boats and one direction down the stream"}
{"id": 93, "image": "ex_93_img_0", "caption": "one boat and two directions down the stream"}
{"id": 93, "image": "ex_93_img_1", "caption": "two boats and one direction down the stream"}
{"id": 93, "image": "ex_93_img_1", "caption": "one boat and two directions down the stream"}
{"id": 94, "image": "ex_94_img_0", "caption": "The dog rides without a visible tongue"}
{"id": 94, "image": "ex_94_img_0", "caption": "The dog rides with a visible tongue out"}
{"id": 94, "image": "ex_94_img_1", "caption": "The dog rides without a visible tongue"}
{"id": 94, "image": "ex_94_img_1", "caption": "The dog rides with a visible tongue out"}
{"id": 95, "image": "ex_95_img_0", "caption": "handing a hammer"}
{"id": 95, "image": "ex_95_img_0", "caption": "hammering a hand"}
{"id": 95, "image": "ex_95_img_1", "caption": "handing a hammer"}
{"id": 95, "image": "ex_95_img_1", "caption": "hammering a hand"}
{"id": 96, "image": "ex_96_img_0", "caption": "leaves its shedding"}
{"id": 96, "image": "ex_96_img_0", "caption": "shedding its leaves"}
{"id": 96, "image": "ex_96_img_1", "caption": "leaves its shedding"}
{"id": 96, "image": "ex_96_img_1", "caption": "shedding its leaves"}
{"id": 97, "image": "ex_97_img_0", "caption": "they are using no bait but still got fish"}
{"id": 97, "image": "ex_97_img_0", "caption": "they are using bait but still got no fish"}
{"id": 97, "image": "ex_97_img_1", "caption": "they are using no bait but still got fish"}
{"id": 97, "image": "ex_97_img_1", "caption": "they are using bait but still got no fish"}
{"id": 98, "image": "ex_98_img_0", "caption": "someone on the ground is spraying water towards a vehicle"}
{"id": 98, "image": "ex_98_img_0", "caption": "someone is on a vehicle spraying water towards the ground"}
{"id": 98, "image": "ex_98_img_1", "caption": "someone on the ground is spraying water towards a vehicle"}
{"id": 98, "image": "ex_98_img_1", "caption": "someone is on a vehicle spraying water towards the ground"}
{"id": 99, "image": "ex_99_img_0", "caption": "the dog wears as a hat what someone would normally bite"}
{"id": 99, "image": "ex_99_img_0", "caption": "the dog bites what someone would normally wear as a hat"}
{"id": 99, "image": "ex_99_img_1", "caption": "the dog wears as a hat what someone would normally bite"}
{"id": 99, "image": "ex_99_img_1", "caption": "the dog bites what someone would normally wear as a hat"}
{"id": 100, "image": "ex_100_img_0", "caption": "the happy one is on the left and the upset one is on the right"}
{"id": 100, "image": "ex_100_img_0", "caption": "the upset one is on the left and the happy one is on the right"}
{"id": 100, "image": "ex_100_img_1", "caption": "the happy one is on the left and the upset one is on the right"}
{"id": 100, "image": "ex_100_img_1", "caption": "the upset one is on the left and the happy one is on the right"}
{"id": 101, "image": "ex_101_img_0", "caption": "fake mustache and real hair on head"}
{"id": 101, "image": "ex_101_img_0", "caption": "real mustache and fake hair on head"}
{"id": 101, "image": "ex_101_img_1", "caption": "fake mustache and real hair on head"}
{"id": 101, "image": "ex_101_img_1", "caption": "real mustache and fake hair on head"}
{"id": 102, "image": "ex_102_img_0", "caption": "real cat with toy baby"}
{"id": 102, "image": "ex_102_img_0", "caption": "toy cat with real baby"}
{"id": 102, "image": "ex_102_img_1", "caption": "real cat with toy baby"}
{"id": 102, "image": "ex_102_img_1", "caption": "toy cat with real baby"}
{"id": 103, "image": "ex_103_img_0", "caption": "the lion is loud and the lionness is quiet"}
{"id": 103, "image": "ex_103_img_0", "caption": "the lion is quiet and the lionness is loud"}
{"id": 103, "image": "ex_103_img_1", "caption": "the lion is loud and the lionness is quiet"}
{"id": 103, "image": "ex_103_img_1", "caption": "the lion is quiet and the lionness is loud"}
{"id": 104, "image": "ex_104_img_0", "caption": "there is a pink couch with green pillows"}
{"id": 104, "image": "ex_104_img_0", "caption": "there is a green couch with pink pillows"}
{"id": 104, "image": "ex_104_img_1", "caption": "there is a pink couch with green pillows"}
{"id": 104, "image": "ex_104_img_1", "caption": "there is a green couch with pink pillows"}
{"id": 105, "image": "ex_105_img_0", "caption": "light colored dog with dark colored cat"}
{"id": 105, "image": "ex_105_img_0", "caption": "dark colored dog with light colored cat"}
{"id": 105, "image": "ex_105_img_1", "caption": "light colored dog with dark colored cat"}
{"id": 105, "image": "ex_105_img_1", "caption": "dark colored dog with light colored cat"}
{"id": 106, "image": "ex_106_img_0", "caption": "someone is wearing a black hat and yellow shirt"}
{"id": 106, "image": "ex_106_img_0", "caption": "someone is wearing a yellow hat and black shirt"}
{"id": 106, "image": "ex_106_img_1", "caption": "someone is wearing a black hat and yellow shirt"}
{"id": 106, "image": "ex_106_img_1", "caption": "someone is wearing a yellow hat and black shirt"}
{"id": 107, "image": "ex_107_img_0", "caption": "black socks and orange shoes"}
{"id": 107, "image": "ex_107_img_0", "caption": "orange socks and black shoes"}
{"id": 107, "image": "ex_107_img_1", "caption": "black socks and orange shoes"}
{"id": 107, "image": "ex_107_img_1", "caption": "orange socks and black shoes"}
{"id": 108, "image": "ex_108_img_0", "caption": "red building with white shutters"}
{"id": 108, "image": "ex_108_img_0", "caption": "white building with red shutters"}
{"id": 108, "image": "ex_108_img_1", "caption": "red building with white shutters"}
{"id": 108, "image": "ex_108_img_1", "caption": "white building with red shutters"}
{"id": 109, "image": "ex_109_img_0", "caption": "blue pants and green top"}
{"id": 109, "image": "ex_109_img_0", "caption": "green pants and blue top"}
{"id": 109, "image": "ex_109_img_1", "caption": "blue pants and green top"}
{"id": 109, "image": "ex_109_img_1", "caption": "green pants and blue top"}
{"id": 110, "image": "ex_110_img_0", "caption": "there's one blue and many yellow balls"}
{"id": 110, "image": "ex_110_img_0", "caption": "there's one yellow and many blue balls"}
{"id": 110, "image": "ex_110_img_1", "caption": "there's one blue and many yellow balls"}
{"id": 110, "image": "ex_110_img_1", "caption": "there's one yellow and many blue balls"}
{"id": 111, "image": "ex_111_img_0", "caption": "there are more silver coins than gold coins"}
{"id": 111, "image": "ex_111_img_0", "caption": "there are more gold coins than silver coins"}
{"id": 111, "image": "ex_111_img_1", "caption": "there are more silver coins than gold coins"}
{"id": 111, "image": "ex_111_img_1", "caption": "there are more gold coins than silver coins"}
{"id": 112, "image": "ex_112_img_0", "caption": "the red team kicking the ball directly next to the blue team"}
{"id": 112, "image": "ex_112_img_0", "caption": "the blue team kicking the ball directly next to the red team"}
{"id": 112, "image": "ex_112_img_1", "caption": "the red team kicking the ball directly next to the blue team"}
{"id": 112, "image": "ex_112_img_1", "caption": "the blue team kicking the ball directly next to the red team"}
{"id": 113, "image": "ex_113_img_0", "caption": "black dog wearing a brown sweater"}
{"id": 113, "image": "ex_113_img_0", "caption": "brown dog wearing a black sweater"}
{"id": 113, "image": "ex_113_img_1", "caption": "black dog wearing a brown sweater"}
{"id": 113, "image": "ex_113_img_1", "caption": "brown dog wearing a black sweater"}
{"id": 114, "image": "ex_114_img_0", "caption": "one green apple surrounded by a bunch of red apples"}
{"id": 114, "image": "ex_114_img_0", "caption": "one red apple surrounded by a bunch of green apples"}
{"id": 114, "image": "ex_114_img_1", "caption": "one green apple surrounded by a bunch of red apples"}
{"id": 114, "image": "ex_114_img_1", "caption": "one red apple surrounded by a bunch of green apples"}
{"id": 115, "image": "ex_115_img_0", "caption": "person in white is reading the orange book"}
{"id": 115, "image": "ex_115_img_0", "caption": "person in orange is reading the white book"}
{"id": 115, "image": "ex_115_img_1", "caption": "person in white is reading the orange book"}
{"id": 115, "image": "ex_115_img_1", "caption": "person in orange is reading the white book"}
{"id": 116, "image": "ex_116_img_0", "caption": "the children are being quiet while the adult is loud"}
{"id": 116, "image": "ex_116_img_0", "caption": "the children are being loud while the adult is quiet"}
{"id": 116, "image": "ex_116_img_1", "caption": "the children are being quiet while the adult is loud"}
{"id": 116, "image": "ex_116_img_1", "caption": "the children are being loud while the adult is quiet"}
{"id": 117, "image": "ex_117_img_0", "caption": "the circular mirror is on the left and the rectangular mirror is on the right"}
{"id": 117, "image": "ex_117_img_0", "caption": "the rectangular mirror is on the left and the circular mirror is on the right"}
{"id": 117, "image": "ex_117_img_1", "caption": "the circular mirror is on the left and the rectangular mirror is on the right"}
{"id": 117, "image": "ex_117_img_1", "caption": "the rectangular mirror is on the left and the circular mirror is on the right"}
{"id": 118, "image": "ex_118_img_0", "caption": "circular food on heart-shaped wood"}
{"id": 118, "image": "ex_118_img_0", "caption": "heart-shaped food on circular wood"}
{"id": 118, "image": "ex_118_img_1", "caption": "circular food on heart-shaped wood"}
{"id": 118, "image": "ex_118_img_1", "caption": "heart-shaped food on circular wood"}
{"id": 119, "image": "ex_119_img_0", "caption": "the dress on the left is long and the dress on the right is short"}
{"id": 119, "image": "ex_119_img_0", "caption": "the dress on the left is short and the dress on the right is long"}
{"id": 119, "image": "ex_119_img_1", "caption": "the dress on the left is long and the dress on the right is short"}
{"id": 119, "image": "ex_119_img_1", "caption": "the dress on the left is short and the dress on the right is long"}
{"id": 120, "image": "ex_120_img_0", "caption": "the balloon in the middle has less air and the other balloons have more air"}
{"id": 120, "image": "ex_120_img_0", "caption": "the balloon in the middle has more air and the other balloons have less air"}
{"id": 120, "image": "ex_120_img_1", "caption": "the balloon in the middle has less air and the other balloons have more air"}
{"id": 120, "image": "ex_120_img_1", "caption": "the balloon in the middle has more air and the other balloons have less air"}
{"id": 121, "image": "ex_121_img_0", "caption": "the pool has no people and the area around it has a lot of people"}
{"id": 121, "image": "ex_121_img_0", "caption": "the pool has a lot of people and the area around it has no people"}
{"id": 121, "image": "ex_121_img_1", "caption": "the pool has no people and the area around it has a lot of people"}
{"id": 121, "image": "ex_121_img_1", "caption": "the pool has a lot of people and the area around it has no people"}
{"id": 122, "image": "ex_122_img_0", "caption": "big fish beside a small person"}
{"id": 122, "image": "ex_122_img_0", "caption": "small fish beside a big person"}
{"id": 122, "image": "ex_122_img_1", "caption": "big fish beside a small person"}
{"id": 122, "image": "ex_122_img_1", "caption": "small fish beside a big person"}
{"id": 123, "image": "ex_123_img_0", "caption": "the train is moving fast while the person is still"}
{"id": 123, "image": "ex_123_img_0", "caption": "the train is still while the person is moving fast"}
{"id": 123, "image": "ex_123_img_1", "caption": "the train is moving fast while the person is still"}
{"id": 123, "image": "ex_123_img_1", "caption": "the train is still while the person is moving fast"}
{"id": 124, "image": "ex_124_img_0", "caption": "they're enjoying hot water on a cold day"}
{"id": 124, "image": "ex_124_img_0", "caption": "they're enjoying cold water on a hot day"}
{"id": 124, "image": "ex_124_img_1", "caption": "they're enjoying hot water on a cold day"}
{"id": 124, "image": "ex_124_img_1", "caption": "they're enjoying cold water on a hot day"}
{"id": 125, "image": "ex_125_img_0", "caption": "concrete floors with wood walls"}
{"id": 125, "image": "ex_125_img_0", "caption": "wood floors with concrete walls"}
{"id": 125, "image": "ex_125_img_1", "caption": "concrete floors with wood walls"}
{"id": 125, "image": "ex_125_img_1", "caption": "wood floors with concrete walls"}
{"id": 126, "image": "ex_126_img_0", "caption": "the person on the left has curly hair and the person on the right has straight hair"}
{"id": 126, "image": "ex_126_img_0", "caption": "the person on the left has straight hair and the person on the right has curly hair"}
{"id": 126, "image": "ex_126_img_1", "caption": "the person on the left has curly hair and the person on the right has straight hair"}
{"id": 126, "image": "ex_126_img_1", "caption": "the person on the left has straight hair and the person on the right has curly hair"}
{"id": 127, "image": "ex_127_img_0", "caption": "there's a metal bottle with a plastic lid"}
{"id": 127, "image": "ex_127_img_0", "caption": "there's a plastic bottle with a metal lid"}
{"id": 127, "image": "ex_127_img_1", "caption": "there's a metal bottle with a plastic lid"}
{"id": 127, "image": "ex_127_img_1", "caption": "there's a plastic bottle with a metal lid"}
{"id": 128, "image": "ex_128_img_0", "caption": "the fruit is heavy while the junk food is light"}
{"id": 128, "image": "ex_128_img_0", "caption": "the fruit is light while the junk food is heavy"}
{"id": 128, "image": "ex_128_img_1", "caption": "the fruit is heavy while the junk food is light"}
{"id": 128, "image": "ex_128_img_1", "caption": "the fruit is light while the junk food is heavy"}
{"id": 129, "image": "ex_129_img_0", "caption": "the car is sitting upside down while the person is standing rightside up"}
{"id": 129, "image": "ex_129_img_0", "caption": "the car is sitting rightside up while the person is standing upside down"}
{"id": 129, "image": "ex_129_img_1", "caption": "the car is sitting upside down while the person is standing rightside up"}
{"id": 129, "image": "ex_129_img_1", "caption": "the car is sitting rightside up while the person is standing upside down"}
{"id": 130, "image": "ex_130_img_0", "caption": "the cup on the left is filled first and the cup on the right is filled second"}
{"id": 130, "image": "ex_130_img_0", "caption": "the cup on the left is filled second and the cup on the right is filled first"}
{"id": 130, "image": "ex_130_img_1", "caption": "the cup on the left is filled first and the cup on the right is filled second"}
{"id": 130, "image": "ex_130_img_1", "caption": "the cup on the left is filled second and the cup on the right is filled first"}
{"id": 131, "image": "ex_131_img_0", "caption": "milk cow"}
{"id": 131, "image": "ex_131_img_0", "caption": "cow milk"}
{"id": 131, "image": "ex_131_img_1", "caption": "milk cow"}
{"id": 131, "image": "ex_131_img_1", "caption": "cow milk"}
{"id": 132, "image": "ex_132_img_0", "caption": "there is a clock wall"}
{"id": 132, "image": "ex_132_img_0", "caption": "there is a wall clock"}
{"id": 132, "image": "ex_132_img_1", "caption": "there is a clock wall"}
{"id": 132, "image": "ex_132_img_1", "caption": "there is a wall clock"}
{"id": 133, "image": "ex_133_img_0", "caption": "there is a split banana"}
{"id": 133, "image": "ex_133_img_0", "caption": "there is a banana split"}
{"id": 133, "image": "ex_133_img_1", "caption": "there is a split banana"}
{"id": 133, "image": "ex_133_img_1", "caption": "there is a banana split"}
{"id": 134, "image": "ex_134_img_0", "caption": "there are two people and a bunch of horses"}
{"id": 134, "image": "ex_134_img_0", "caption": "there are a bunch of people and two horses"}
{"id": 134, "image": "ex_134_img_1", "caption": "there are two people and a bunch of horses"}
{"id": 134, "image": "ex_134_img_1", "caption": "there are a bunch of people and two horses"}
{"id": 135, "image": "ex_135_img_0", "caption": "three white and two brown eggs"}
{"id": 135, "image": "ex_135_img_0", "caption": "two white and three brown eggs"}
{"id": 135, "image": "ex_135_img_1", "caption": "three white and two brown eggs"}
{"id": 135, "image": "ex_135_img_1", "caption": "two white and three brown eggs"}
{"id": 136, "image": "ex_136_img_0", "caption": "the plastic is in the fish"}
{"id": 136, "image": "ex_136_img_0", "caption": "the fish is in the plastic"}
{"id": 136, "image": "ex_136_img_1", "caption": "the plastic is in the fish"}
{"id": 136, "image": "ex_136_img_1", "caption": "the fish is in the plastic"}
{"id": 137, "image": "ex_137_img_0", "caption": "the dog's paw is on the cat's face"}
{"id": 137, "image": "ex_137_img_0", "caption": "the cat's paw is on the dog's face"}
{"id": 137, "image": "ex_137_img_1", "caption": "the dog's paw is on the cat's face"}
{"id": 137, "image": "ex_137_img_1", "caption": "the cat's paw is on the dog's face"}
{"id": 138, "image": "ex_138_img_0", "caption": "the computer's screen is on and the phone's screen is off"}
{"id": 138, "image": "ex_138_img_0", "caption": "the phone's screen is on and the computer's screen is off"}
{"id": 138, "image": "ex_138_img_1", "caption": "the computer's screen is on and the phone's screen is off"}
{"id": 138, "image": "ex_138_img_1", "caption": "the phone's screen is on and the computer's screen is off"}
{"id": 139, "image": "ex_139_img_0", "caption": "the dog is in the driver's seat and the person is in the passenger's seat"}
{"id": 139, "image": "ex_139_img_0", "caption": "the dog is in the passenger's seat and the person is in the driver's seat"}
{"id": 139, "image": "ex_139_img_1", "caption": "the dog is in the driver's seat and the person is in the passenger's seat"}
{"id": 139, "image": "ex_139_img_1", "caption": "the dog is in the passenger's seat and the person is in the driver's seat"}
{"id": 140, "image": "ex_140_img_0", "caption": "there are more trees than people"}
{"id": 140, "image": "ex_140_img_0", "caption": "there are more people than trees"}
{"id": 140, "image": "ex_140_img_1", "caption": "there are more trees than people"}
{"id": 140, "image": "ex_140_img_1", "caption": "there are more people than trees"}
{"id": 141, "image": "ex_141_img_0", "caption": "there are more computers than people"}
{"id": 141, "image": "ex_141_img_0", "caption": "there are more people than computers"}
{"id": 141, "image": "ex_141_img_1", "caption": "there are more computers than people"}
{"id": 141, "image": "ex_141_img_1", "caption": "there are more people than computers"}
{"id": 142, "image": "ex_142_img_0", "caption": "there is more wood than metal"}
{"id": 142, "image": "ex_142_img_0", "caption": "there is more metal than wood"}
{"id": 142, "image": "ex_142_img_1", "caption": "there is more wood than metal"}
{"id": 142, "image": "ex_142_img_1", "caption": "there is more metal than wood"}
{"id": 143, "image": "ex_143_img_0", "caption": "there are more hats than people"}
{"id": 143, "image": "ex_143_img_0", "caption": "there are more people than hats"}
{"id": 143, "image": "ex_143_img_1", "caption": "there are more hats than people"}
{"id": 143, "image": "ex_143_img_1", "caption": "there are more people than hats"}
{"id": 144, "image": "ex_144_img_0", "caption": "there are more people than stools"}
{"id": 144, "image": "ex_144_img_0", "caption": "there are more stools than people"}
{"id": 144, "image": "ex_144_img_1", "caption": "there are more people than stools"}
{"id": 144, "image": "ex_144_img_1", "caption": "there are more stools than people"}
{"id": 145, "image": "ex_145_img_0", "caption": "there is more red wine than white wine"}
{"id": 145, "image": "ex_145_img_0", "caption": "there is more white wine than red wine"}
{"id": 145, "image": "ex_145_img_1", "caption": "there is more red wine than white wine"}
{"id": 145, "image": "ex_145_img_1", "caption": "there is more white wine than red wine"}
{"id": 146, "image": "ex_146_img_0", "caption": "there's more milk than coffee"}
{"id": 146, "image": "ex_146_img_0", "caption": "there's more coffee than milk"}
{"id": 146, "image": "ex_146_img_1", "caption": "there's more milk than coffee"}
{"id": 146, "image": "ex_146_img_1", "caption": "there's more coffee than milk"}
{"id": 147, "image": "ex_147_img_0", "caption": "there's more cereal in the bowl than milk"}
{"id": 147, "image": "ex_147_img_0", "caption": "there's more milk in the bowl than cereal"}
{"id": 147, "image": "ex_147_img_1", "caption": "there's more cereal in the bowl than milk"}
{"id": 147, "image": "ex_147_img_1", "caption": "there's more milk in the bowl than cereal"}
{"id": 148, "image": "ex_148_img_0", "caption": "boat sail"}
{"id": 148, "image": "ex_148_img_0", "caption": "sail boat"}
{"id": 148, "image": "ex_148_img_1", "caption": "boat sail"}
{"id": 148, "image": "ex_148_img_1", "caption": "sail boat"}
{"id": 149, "image": "ex_149_img_0", "caption": "boat house"}
{"id": 149, "image": "ex_149_img_0", "caption": "house boat"}
{"id": 149, "image": "ex_149_img_1", "caption": "boat house"}
{"id": 149, "image": "ex_149_img_1", "caption": "house boat"}
{"id": 150, "image": "ex_150_img_0", "caption": "check a rip"}
{"id": 150, "image": "ex_150_img_0", "caption": "rip a check"}
{"id": 150, "image": "ex_150_img_1", "caption": "check a rip"}
{"id": 150, "image": "ex_150_img_1", "caption": "rip a check"}
{"id": 151, "image": "ex_151_img_0", "caption": "dress the display"}
{"id": 151, "image": "ex_151_img_0", "caption": "display the dress"}
{"id": 151, "image": "ex_151_img_1", "caption": "dress the display"}
{"id": 151, "image": "ex_151_img_1", "caption": "display the dress"}
{"id": 152, "image": "ex_152_img_0", "caption": "spoon holding honey"}
{"id": 152, "image": "ex_152_img_0", "caption": "honey holding spoon"}
{"id": 152, "image": "ex_152_img_1", "caption": "spoon holding honey"}
{"id": 152, "image": "ex_152_img_1", "caption": "honey holding spoon"}
{"id": 153, "image": "ex_153_img_0", "caption": "books holding up a person"}
{"id": 153, "image": "ex_153_img_0", "caption": "a person holding up books"}
{"id": 153, "image": "ex_153_img_1", "caption": "books holding up a person"}
{"id": 153, "image": "ex_153_img_1", "caption": "a person holding up books"}
{"id": 154, "image": "ex_154_img_0", "caption": "a dog is using a wheelchair next to a person"}
{"id": 154, "image": "ex_154_img_0", "caption": "a person is using a wheelchair next to a dog"}
{"id": 154, "image": "ex_154_img_1", "caption": "a dog is using a wheelchair next to a person"}
{"id": 154, "image": "ex_154_img_1", "caption": "a person is using a wheelchair next to a dog"}
{"id": 155, "image": "ex_155_img_0", "caption": "some plants surrounding a lightbulb"}
{"id": 155, "image": "ex_155_img_0", "caption": "a lightbulb surrounding some plants"}
{"id": 155, "image": "ex_155_img_1", "caption": "some plants surrounding a lightbulb"}
{"id": 155, "image": "ex_155_img_1", "caption": "a lightbulb surrounding some plants"}
{"id": 156, "image": "ex_156_img_0", "caption": "a more lightly-colored dog is holding a toy next to a black dog"}
{"id": 156, "image": "ex_156_img_0", "caption": "a black dog is holding a toy next to a more lightly-colored dog"}
{"id": 156, "image": "ex_156_img_1", "caption": "a more lightly-colored dog is holding a toy next to a black dog"}
{"id": 156, "image": "ex_156_img_1", "caption": "a black dog is holding a toy next to a more lightly-colored dog"}
{"id": 157, "image": "ex_157_img_0", "caption": "the flowers are taller than the people"}
{"id": 157, "image": "ex_157_img_0", "caption": "the people are taller than the flowers"}
{"id": 157, "image": "ex_157_img_1", "caption": "the flowers are taller than the people"}
{"id": 157, "image": "ex_157_img_1", "caption": "the people are taller than the flowers"}
{"id": 158, "image": "ex_158_img_0", "caption": "there's a human in a stroller next to a dog"}
{"id": 158, "image": "ex_158_img_0", "caption": "there's a dog in a stroller next to a human"}
{"id": 158, "image": "ex_158_img_1", "caption": "there's a human in a stroller next to a dog"}
{"id": 158, "image": "ex_158_img_1", "caption": "there's a dog in a stroller next to a human"}
{"id": 159, "image": "ex_159_img_0", "caption": "a person is casting a shadow beside a ball"}
{"id": 159, "image": "ex_159_img_0", "caption": "a ball is casting a shadow beside a person"}
{"id": 159, "image": "ex_159_img_1", "caption": "a person is casting a shadow beside a ball"}
{"id": 159, "image": "ex_159_img_1", "caption": "a ball is casting a shadow beside a person"}
{"id": 160, "image": "ex_160_img_0", "caption": "its tail is shorter than its body"}
{"id": 160, "image": "ex_160_img_0", "caption": "its body is shorter than its tail"}
{"id": 160, "image": "ex_160_img_1", "caption": "its tail is shorter than its body"}
{"id": 160, "image": "ex_160_img_1", "caption": "its body is shorter than its tail"}
{"id": 161, "image": "ex_161_img_0", "caption": "the child is throwing the adult the ball"}
{"id": 161, "image": "ex_161_img_0", "caption": "the adult is throwing the child the ball"}
{"id": 161, "image": "ex_161_img_1", "caption": "the child is throwing the adult the ball"}
{"id": 161, "image": "ex_161_img_1", "caption": "the adult is throwing the child the ball"}
{"id": 162, "image": "ex_162_img_0", "caption": "a person underneath lights"}
{"id": 162, "image": "ex_162_img_0", "caption": "lights underneath a person"}
{"id": 162, "image": "ex_162_img_1", "caption": "a person underneath lights"}
{"id": 162, "image": "ex_162_img_1", "caption": "lights underneath a person"}
{"id": 163, "image": "ex_163_img_0", "caption": "some green on the ball"}
{"id": 163, "image": "ex_163_img_0", "caption": "the ball on some green"}
{"id": 163, "image": "ex_163_img_1", "caption": "some green on the ball"}
{"id": 163, "image": "ex_163_img_1", "caption": "the ball on some green"}
{"id": 164, "image": "ex_164_img_0", "caption": "mind in the clouds"}
{"id": 164, "image": "ex_164_img_0", "caption": "clouds in the mind"}
{"id": 164, "image": "ex_164_img_1", "caption": "mind in the clouds"}
{"id": 164, "image": "ex_164_img_1", "caption": "clouds in the mind"}
{"id": 165, "image": "ex_165_img_0", "caption": "there's a phone on a map"}
{"id": 165, "image": "ex_165_img_0", "caption": "there's a map on a phone"}
{"id": 165, "image": "ex_165_img_1", "caption": "there's a phone on a map"}
{"id": 165, "image": "ex_165_img_1", "caption": "there's a map on a phone"}
{"id": 166, "image": "ex_166_img_0", "caption": "a person on a rock next to a dog"}
{"id": 166, "image": "ex_166_img_0", "caption": "a dog on a rock next to a person"}
{"id": 166, "image": "ex_166_img_1", "caption": "a person on a rock next to a dog"}
{"id": 166, "image": "ex_166_img_1", "caption": "a dog on a rock next to a person"}
{"id": 167, "image": "ex_167_img_0", "caption": "an adult is flexing beside a child"}
{"id": 167, "image": "ex_167_img_0", "caption": "a child is flexing beside an adult"}
{"id": 167, "image": "ex_167_img_1", "caption": "an adult is flexing beside a child"}
{"id": 167, "image": "ex_167_img_1", "caption": "a child is flexing beside an adult"}
{"id": 168, "image": "ex_168_img_0", "caption": "the person is looking at the dog"}
{"id": 168, "image": "ex_168_img_0", "caption": "the dog is looking at the person"}
{"id": 168, "image": "ex_168_img_1", "caption": "the person is looking at the dog"}
{"id": 168, "image": "ex_168_img_1", "caption": "the dog is looking at the person"}
{"id": 169, "image": "ex_169_img_0", "caption": "a cat is underneath a red blanket"}
{"id": 169, "image": "ex_169_img_0", "caption": "a red blanket is underneath a cat"}
{"id": 169, "image": "ex_169_img_1", "caption": "a cat is underneath a red blanket"}
{"id": 169, "image": "ex_169_img_1", "caption": "a red blanket is underneath a cat"}
{"id": 170, "image": "ex_170_img_0", "caption": "the person is bigger than the house"}
{"id": 170, "image": "ex_170_img_0", "caption": "the house is bigger than the person"}
{"id": 170, "image": "ex_170_img_1", "caption": "the person is bigger than the house"}
{"id": 170, "image": "ex_170_img_1", "caption": "the house is bigger than the person"}
{"id": 171, "image": "ex_171_img_0", "caption": "the person is underneath the car"}
{"id": 171, "image": "ex_171_img_0", "caption": "the car is underneath the person"}
{"id": 171, "image": "ex_171_img_1", "caption": "the person is underneath the car"}
{"id": 171, "image": "ex_171_img_1", "caption": "the car is underneath the person"}
{"id": 172, "image": "ex_172_img_0", "caption": "the water is filled with plastic"}
{"id": 172, "image": "ex_172_img_0", "caption": "the plastic is filled with water"}
{"id": 172, "image": "ex_172_img_1", "caption": "the water is filled with plastic"}
{"id": 172, "image": "ex_172_img_1", "caption": "the plastic is filled with water"}
{"id": 173, "image": "ex_173_img_0", "caption": "an apple is on a target"}
{"id": 173, "image": "ex_173_img_0", "caption": "a target is on an apple"}
{"id": 173, "image": "ex_173_img_1", "caption": "an apple is on a target"}
{"id": 173, "image": "ex_173_img_1", "caption": "a target is on an apple"}
{"id": 174, "image": "ex_174_img_0", "caption": "plant made out of a light bulb"}
{"id": 174, "image": "ex_174_img_0", "caption": "light bulb made out of a plant"}
{"id": 174, "image": "ex_174_img_1", "caption": "plant made out of a light bulb"}
{"id": 174, "image": "ex_174_img_1", "caption": "light bulb made out of a plant"}
{"id": 175, "image": "ex_175_img_0", "caption": "parent pointing at child"}
{"id": 175, "image": "ex_175_img_0", "caption": "child pointing at parent"}
{"id": 175, "image": "ex_175_img_1", "caption": "parent pointing at child"}
{"id": 175, "image": "ex_175_img_1", "caption": "child pointing at parent"}
{"id": 176, "image": "ex_176_img_0", "caption": "the person reached the base before the ball"}
{"id": 176, "image": "ex_176_img_0", "caption": "the ball reached the base before the person"}
{"id": 176, "image": "ex_176_img_1", "caption": "the person reached the base before the ball"}
{"id": 176, "image": "ex_176_img_1", "caption": "the ball reached the base before the person"}
{"id": 177, "image": "ex_177_img_0", "caption": "ice being dumped on top of fish"}
{"id": 177, "image": "ex_177_img_0", "caption": "fish being dumped on top of ice"}
{"id": 177, "image": "ex_177_img_1", "caption": "ice being dumped on top of fish"}
{"id": 177, "image": "ex_177_img_1", "caption": "fish being dumped on top of ice"}
{"id": 178, "image": "ex_178_img_0", "caption": "an adult kisses a child"}
{"id": 178, "image": "ex_178_img_0", "caption": "a child kisses an adult"}
{"id": 178, "image": "ex_178_img_1", "caption": "an adult kisses a child"}
{"id": 178, "image": "ex_178_img_1", "caption": "a child kisses an adult"}
{"id": 179, "image": "ex_179_img_0", "caption": "there's a dog in a mask and a person beside it"}
{"id": 179, "image": "ex_179_img_0", "caption": "there's a dog and a person in a mask beside it"}
{"id": 179, "image": "ex_179_img_1", "caption": "there's a dog in a mask and a person beside it"}
{"id": 179, "image": "ex_179_img_1", "caption": "there's a dog and a person in a mask beside it"}
{"id": 180, "image": "ex_180_img_0", "caption": "the baby on the phone is next to an adult"}
{"id": 180, "image": "ex_180_img_0", "caption": "the baby is next to an adult on the phone"}
{"id": 180, "image": "ex_180_img_1", "caption": "the baby on the phone is next to an adult"}
{"id": 180, "image": "ex_180_img_1", "caption": "the baby is next to an adult on the phone"}
{"id": 181, "image": "ex_181_img_0", "caption": "the person on the left has their arms up and the person on the right has their arms down"}
{"id": 181, "image": "ex_181_img_0", "caption": "the person on the right has their arms up and the person on the left has their arms down"}
{"id": 181, "image": "ex_181_img_1", "caption": "the person on the left has their arms up and the person on the right has their arms down"}
{"id": 181, "image": "ex_181_img_1", "caption": "the person on the right has their arms up and the person on the left has their arms down"}
{"id": 182, "image": "ex_182_img_0", "caption": "the person on the left is holding the phone and the person on the right is staring at it"}
{"id": 182, "image": "ex_182_img_0", "caption": "the person on the right is holding the phone and the person on the left is staring at it"}
{"id": 182, "image": "ex_182_img_1", "caption": "the person on the left is holding the phone and the person on the right is staring at it"}
{"id": 182, "image": "ex_182_img_1", "caption": "the person on the right is holding the phone and the person on the left is staring at it"}
{"id": 183, "image": "ex_183_img_0", "caption": "the orange on the left is moldy while the orange on the right is fresh"}
{"id": 183, "image": "ex_183_img_0", "caption": "the orange on the right is moldy while the orange on the left is fresh"}
{"id": 183, "image": "ex_183_img_1", "caption": "the orange on the left is moldy while the orange on the right is fresh"}
{"id": 183, "image": "ex_183_img_1", "caption": "the orange on the right is moldy while the orange on the left is fresh"}
{"id": 184, "image": "ex_184_img_0", "caption": "a pink scoop of ice cream on top and a blue scoop on bottom"}
{"id": 184, "image": "ex_184_img_0", "caption": "a pink scoop of ice cream on bottom and a blue scoop on top"}
{"id": 184, "image": "ex_184_img_1", "caption": "a pink scoop of ice cream on top and a blue scoop on bottom"}
{"id": 184, "image": "ex_184_img_1", "caption": "a pink scoop of ice cream on bottom and a blue scoop on top"}
{"id": 185, "image": "ex_185_img_0", "caption": "the glasses on the right are fuller than the glasses on the left"}
{"id": 185, "image": "ex_185_img_0", "caption": "the glasses on the left are fuller than the glasses on the right"}
{"id": 185, "image": "ex_185_img_1", "caption": "the glasses on the right are fuller than the glasses on the left"}
{"id": 185, "image": "ex_185_img_1", "caption": "the glasses on the left are fuller than the glasses on the right"}
{"id": 186, "image": "ex_186_img_0", "caption": "the person on the left is blowing bubbles and the person on the right is watching"}
{"id": 186, "image": "ex_186_img_0", "caption": "the person on the right is blowing bubbles and the person on the left is watching"}
{"id": 186, "image": "ex_186_img_1", "caption": "the person on the left is blowing bubbles and the person on the right is watching"}
{"id": 186, "image": "ex_186_img_1", "caption": "the person on the right is blowing bubbles and the person on the left is watching"}
{"id": 187, "image": "ex_187_img_0", "caption": "there's more foam on the left than on the right"}
{"id": 187, "image": "ex_187_img_0", "caption": "there's more foam on the right than on the left"}
{"id": 187, "image": "ex_187_img_1", "caption": "there's more foam on the left than on the right"}
{"id": 187, "image": "ex_187_img_1", "caption": "there's more foam on the right than on the left"}
{"id": 188, "image": "ex_188_img_0", "caption": "a fish is jumping from left to right"}
{"id": 188, "image": "ex_188_img_0", "caption": "a fish is jumping from right to left"}
{"id": 188, "image": "ex_188_img_1", "caption": "a fish is jumping from left to right"}
{"id": 188, "image": "ex_188_img_1", "caption": "a fish is jumping from right to left"}
{"id": 189, "image": "ex_189_img_0", "caption": "they worked out then they drank water"}
{"id": 189, "image": "ex_189_img_0", "caption": "they drank water then they worked out"}
{"id": 189, "image": "ex_189_img_1", "caption": "they worked out then they drank water"}
{"id": 189, "image": "ex_189_img_1", "caption": "they drank water then they worked out"}
{"id": 190, "image": "ex_190_img_0", "caption": "the shrimp are peeled then the shrimp are cooked"}
{"id": 190, "image": "ex_190_img_0", "caption": "the shrimp are cooked then the shrimp are peeled"}
{"id": 190, "image": "ex_190_img_1", "caption": "the shrimp are peeled then the shrimp are cooked"}
{"id": 190, "image": "ex_190_img_1", "caption": "the shrimp are cooked then the shrimp are peeled"}
{"id": 191, "image": "ex_191_img_0", "caption": "the coffee is poured before it is ground"}
{"id": 191, "image": "ex_191_img_0", "caption": "it is ground before the coffee is poured"}
{"id": 191, "image": "ex_191_img_1", "caption": "the coffee is poured before it is ground"}
{"id": 191, "image": "ex_191_img_1", "caption": "it is ground before the coffee is poured"}
{"id": 192, "image": "ex_192_img_0", "caption": "the potato is washed and then it is cut"}
{"id": 192, "image": "ex_192_img_0", "caption": "the potato is cut and then it is washed"}
{"id": 192, "image": "ex_192_img_1", "caption": "the potato is washed and then it is cut"}
{"id": 192, "image": "ex_192_img_1", "caption": "the potato is cut and then it is washed"}
{"id": 193, "image": "ex_193_img_0", "caption": "the banana is peeled then it is sliced"}
{"id": 193, "image": "ex_193_img_0", "caption": "the banana is sliced then it is peeled"}
{"id": 193, "image": "ex_193_img_1", "caption": "the banana is peeled then it is sliced"}
{"id": 193, "image": "ex_193_img_1", "caption": "the banana is sliced then it is peeled"}
{"id": 194, "image": "ex_194_img_0", "caption": "the dog is swimming and the person is standing"}
{"id": 194, "image": "ex_194_img_0", "caption": "the dog is standing and the person is swimming"}
{"id": 194, "image": "ex_194_img_1", "caption": "the dog is swimming and the person is standing"}
{"id": 194, "image": "ex_194_img_1", "caption": "the dog is standing and the person is swimming"}
{"id": 195, "image": "ex_195_img_0", "caption": "the person is jumping while the cat is sitting"}
{"id": 195, "image": "ex_195_img_0", "caption": "the person is sitting while the cat is jumping"}
{"id": 195, "image": "ex_195_img_1", "caption": "the person is jumping while the cat is sitting"}
{"id": 195, "image": "ex_195_img_1", "caption": "the person is sitting while the cat is jumping"}
{"id": 196, "image": "ex_196_img_0", "caption": "a cat is lying down and a person is stretching"}
{"id": 196, "image": "ex_196_img_0", "caption": "a cat is stretching and a person is lying down"}
{"id": 196, "image": "ex_196_img_1", "caption": "a cat is lying down and a person is stretching"}
{"id": 196, "image": "ex_196_img_1", "caption": "a cat is stretching and a person is lying down"}
{"id": 197, "image": "ex_197_img_0", "caption": "some people are standing but more are sitting"}
{"id": 197, "image": "ex_197_img_0", "caption": "some people are sitting but more are standing"}
{"id": 197, "image": "ex_197_img_1", "caption": "some people are standing but more are sitting"}
{"id": 197, "image": "ex_197_img_1", "caption": "some people are sitting but more are standing"}
{"id": 198, "image": "ex_198_img_0", "caption": "The kid throws the pancake and the adult sees it"}
{"id": 198, "image": "ex_198_img_0", "caption": "The kids see the pancake and the adult throws it"}
{"id": 198, "image": "ex_198_img_1", "caption": "The kid throws the pancake and the adult sees it"}
{"id": 198, "image": "ex_198_img_1", "caption": "The kids see the pancake and the adult throws it"}
{"id": 199, "image": "ex_199_img_0", "caption": "painting gray walls white"}
{"id": 199, "image": "ex_199_img_0", "caption": "painting white walls gray"}
{"id": 199, "image": "ex_199_img_1", "caption": "painting gray walls white"}
{"id": 199, "image": "ex_199_img_1", "caption": "painting white walls gray"}
{"id": 200, "image": "ex_200_img_0", "caption": "a shorter person wearing blue standing next to a taller person"}
{"id": 200, "image": "ex_200_img_0", "caption": "a taller person wearing blue standing next to a shorter person"}
{"id": 200, "image": "ex_200_img_1", "caption": "a shorter person wearing blue standing next to a taller person"}
{"id": 200, "image": "ex_200_img_1", "caption": "a taller person wearing blue standing next to a shorter person"}
{"id": 201, "image": "ex_201_img_0", "caption": "a person wearing a bear mask in blue on the left hand side of a person wearing a panda mask with glasses in pink"}
{"id": 201, "image": "ex_201_img_0", "caption": "a person wearing a panda mask with glasses in blue on the left hand side of a person wearing a bear mask in pink"}
{"id": 201, "image": "ex_201_img_1", "caption": "a person wearing a bear mask in blue on the left hand side of a person wearing a panda mask with glasses in pink"}
{"id": 201, "image": "ex_201_img_1", "caption": "a person wearing a panda mask with glasses in blue on the left hand side of a person wearing a bear mask in pink"}
{"id": 202, "image": "ex_202_img_0", "caption": "a car containing many a box"}
{"id": 202, "image": "ex_202_img_0", "caption": "a box containing many a car"}
{"id": 202, "image": "ex_202_img_1", "caption": "a car containing many a box"}
{"id": 202, "image": "ex_202_img_1", "caption": "a box containing many a car"}
{"id": 203, "image": "ex_203_img_0", "caption": "left is red and right is blue"}
{"id": 203, "image": "ex_203_img_0", "caption": "left is blue and right is red"}
{"id": 203, "image": "ex_203_img_1", "caption": "left is red and right is blue"}
{"id": 203, "image": "ex_203_img_1", "caption": "left is blue and right is red"}
{"id": 204, "image": "ex_204_img_0", "caption": "many a table tennis racket, just one ball"}
{"id": 204, "image": "ex_204_img_0", "caption": "just one table tennis racket, many a ball"}
{"id": 204, "image": "ex_204_img_1", "caption": "many a table tennis racket, just one ball"}
{"id": 204, "image": "ex_204_img_1", "caption": "just one table tennis racket, many a ball"}
{"id": 205, "image": "ex_205_img_0", "caption": "four lions, no tigers"}
{"id": 205, "image": "ex_205_img_0", "caption": "no lions, four tigers"}
{"id": 205, "image": "ex_205_img_1", "caption": "four lions, no tigers"}
{"id": 205, "image": "ex_205_img_1", "caption": "no lions, four tigers"}
{"id": 206, "image": "ex_206_img_0", "caption": "a small spherical object is heavier than a big spherical object"}
{"id": 206, "image": "ex_206_img_0", "caption": "a big spherical object is heavier than a small spherical object"}
{"id": 206, "image": "ex_206_img_1", "caption": "a small spherical object is heavier than a big spherical object"}
{"id": 206, "image": "ex_206_img_1", "caption": "a big spherical object is heavier than a small spherical object"}
{"id": 207, "image": "ex_207_img_0", "caption": "an older person blocking a younger person"}
{"id": 207, "image": "ex_207_img_0", "caption": "a younger person blocking an older person"}
{"id": 207, "image": "ex_207_img_1", "caption": "an older person blocking a younger person"}
{"id": 207, "image": "ex_207_img_1", "caption": "a younger person blocking an older person"}
{"id": 208, "image": "ex_208_img_0", "caption": "white land and black water"}
{"id": 208, "image": "ex_208_img_0", "caption": "black land and white water"}
{"id": 208, "image": "ex_208_img_1", "caption": "white land and black water"}
{"id": 208, "image": "ex_208_img_1", "caption": "black land and white water"}
{"id": 209, "image": "ex_209_img_0", "caption": "the cube is smaller than the shape whose lateral faces meet at a vertex"}
{"id": 209, "image": "ex_209_img_0", "caption": "the shape whose lateral faces meet at a vertex is smaller than the cube"}
{"id": 209, "image": "ex_209_img_1", "caption": "the cube is smaller than the shape whose lateral faces meet at a vertex"}
{"id": 209, "image": "ex_209_img_1", "caption": "the shape whose lateral faces meet at a vertex is smaller than the cube"}
{"id": 210, "image": "ex_210_img_0", "caption": "more bicycles than cars"}
{"id": 210, "image": "ex_210_img_0", "caption": "more cars than bicycles"}
{"id": 210, "image": "ex_210_img_1", "caption": "more bicycles than cars"}
{"id": 210, "image": "ex_210_img_1", "caption": "more cars than bicycles"}
{"id": 211, "image": "ex_211_img_0", "caption": "there are more apples than pears"}
{"id": 211, "image": "ex_211_img_0", "caption": "there are more pears than apples"}
{"id": 211, "image": "ex_211_img_1", "caption": "there are more apples than pears"}
{"id": 211, "image": "ex_211_img_1", "caption": "there are more pears than apples"}
{"id": 212, "image": "ex_212_img_0", "caption": "there is more love than hate"}
{"id": 212, "image": "ex_212_img_0", "caption": "there is more hate than love"}
{"id": 212, "image": "ex_212_img_1", "caption": "there is more love than hate"}
{"id": 212, "image": "ex_212_img_1", "caption": "there is more hate than love"}
{"id": 213, "image": "ex_213_img_0", "caption": "more water than oil"}
{"id": 213, "image": "ex_213_img_0", "caption": "more oil than water"}
{"id": 213, "image": "ex_213_img_1", "caption": "more water than oil"}
{"id": 213, "image": "ex_213_img_1", "caption": "more oil than water"}
{"id": 214, "image": "ex_214_img_0", "caption": "a person cries while another person wearing jewelry above their shoulders consoles"}
{"id": 214, "image": "ex_214_img_0", "caption": "a person consoles while another person wearing jewelry above their shoulders cries"}
{"id": 214, "image": "ex_214_img_1", "caption": "a person cries while another person wearing jewelry above their shoulders consoles"}
{"id": 214, "image": "ex_214_img_1", "caption": "a person consoles while another person wearing jewelry above their shoulders cries"}
{"id": 215, "image": "ex_215_img_0", "caption": "a person with long hair eating a meat-based product while a person with short hair snacks on some fries"}
{"id": 215, "image": "ex_215_img_0", "caption": "a person with short hair eating a meat-based product while a person with long hair snacks on some fries"}
{"id": 215, "image": "ex_215_img_1", "caption": "a person with long hair eating a meat-based product while a person with short hair snacks on some fries"}
{"id": 215, "image": "ex_215_img_1", "caption": "a person with short hair eating a meat-based product while a person with long hair snacks on some fries"}
{"id": 216, "image": "ex_216_img_0", "caption": "water below the boat"}
{"id": 216, "image": "ex_216_img_0", "caption": "boat below the water"}
{"id": 216, "image": "ex_216_img_1", "caption": "water below the boat"}
{"id": 216, "image": "ex_216_img_1", "caption": "boat below the water"}
{"id": 217, "image": "ex_217_img_0", "caption": "the one in front is faster than the other one"}
{"id": 217, "image": "ex_217_img_0", "caption": "the other one is faster than the one in front"}
{"id": 217, "image": "ex_217_img_1", "caption": "the one in front is faster than the other one"}
{"id": 217, "image": "ex_217_img_1", "caption": "the other one is faster than the one in front"}
{"id": 218, "image": "ex_218_img_0", "caption": "You can catch more flies with honey than you can with vinegar"}
{"id": 218, "image": "ex_218_img_0", "caption": "You can catch more flies with vinegar than you can with honey"}
{"id": 218, "image": "ex_218_img_1", "caption": "You can catch more flies with honey than you can with vinegar"}
{"id": 218, "image": "ex_218_img_1", "caption": "You can catch more flies with vinegar than you can with honey"}
{"id": 219, "image": "ex_219_img_0", "caption": "It starts with \"A\" and ends with \"Z\""}
{"id": 219, "image": "ex_219_img_0", "caption": "It starts with \"Z\" and ends with \"A\""}
{"id": 219, "image": "ex_219_img_1", "caption": "It starts with \"A\" and ends with \"Z\""}
{"id": 219, "image": "ex_219_img_1", "caption": "It starts with \"Z\" and ends with \"A\""}
{"id": 220, "image": "ex_220_img_0", "caption": "a shadow within the line"}
{"id": 220, "image": "ex_220_img_0", "caption": "a line within the shadow"}
{"id": 220, "image": "ex_220_img_1", "caption": "a shadow within the line"}
{"id": 220, "image": "ex_220_img_1", "caption": "a line within the shadow"}
{"id": 221, "image": "ex_221_img_0", "caption": "the brave in the face of fear"}
{"id": 221, "image": "ex_221_img_0", "caption": "fear in the face of the brave"}
{"id": 221, "image": "ex_221_img_1", "caption": "the brave in the face of fear"}
{"id": 221, "image": "ex_221_img_1", "caption": "fear in the face of the brave"}
{"id": 222, "image": "ex_222_img_0", "caption": "I need my strength back"}
{"id": 222, "image": "ex_222_img_0", "caption": "I need my back strength"}
{"id": 222, "image": "ex_222_img_1", "caption": "I need my strength back"}
{"id": 222, "image": "ex_222_img_1", "caption": "I need my back strength"}
{"id": 223, "image": "ex_223_img_0", "caption": "the one in the middle is taller than the ones on the side are"}
{"id": 223, "image": "ex_223_img_0", "caption": "the ones on the side are taller than the one in the middle is"}
{"id": 223, "image": "ex_223_img_1", "caption": "the one in the middle is taller than the ones on the side are"}
{"id": 223, "image": "ex_223_img_1", "caption": "the ones on the side are taller than the one in the middle is"}
{"id": 224, "image": "ex_224_img_0", "caption": "fish flying"}
{"id": 224, "image": "ex_224_img_0", "caption": "fly fishing"}
{"id": 224, "image": "ex_224_img_1", "caption": "fish flying"}
{"id": 224, "image": "ex_224_img_1", "caption": "fly fishing"}
{"id": 225, "image": "ex_225_img_0", "caption": "the red car is behind the blue car"}
{"id": 225, "image": "ex_225_img_0", "caption": "the blue car is behind the red car"}
{"id": 225, "image": "ex_225_img_1", "caption": "the red car is behind the blue car"}
{"id": 225, "image": "ex_225_img_1", "caption": "the blue car is behind the red car"}
{"id": 226, "image": "ex_226_img_0", "caption": "the driver wearing a shirt is in front of the other person wearing a sleeveless top"}
{"id": 226, "image": "ex_226_img_0", "caption": "the driver wearing a sleeveless top is in front of the other person wearing a shirt"}
{"id": 226, "image": "ex_226_img_1", "caption": "the driver wearing a shirt is in front of the other person wearing a sleeveless top"}
{"id": 226, "image": "ex_226_img_1", "caption": "the driver wearing a sleeveless top is in front of the other person wearing a shirt"}
{"id": 227, "image": "ex_227_img_0", "caption": "an object that rolls is on some wood"}
{"id": 227, "image": "ex_227_img_0", "caption": "some wood is on an object that rolls"}
{"id": 227, "image": "ex_227_img_1", "caption": "an object that rolls is on some wood"}
{"id": 227, "image": "ex_227_img_1", "caption": "some wood is on an object that rolls"}
{"id": 228, "image": "ex_228_img_0", "caption": "a cat viewing a human on a screen"}
{"id": 228, "image": "ex_228_img_0", "caption": "a human viewing a cat on a screen"}
{"id": 228, "image": "ex_228_img_1", "caption": "a cat viewing a human on a screen"}
{"id": 228, "image": "ex_228_img_1", "caption": "a human viewing a cat on a screen"}
{"id": 229, "image": "ex_229_img_0", "caption": "a normal person wishing they were a superhero"}
{"id": 229, "image": "ex_229_img_0", "caption": "a superhero wishing they were a normal person"}
{"id": 229, "image": "ex_229_img_1", "caption": "a normal person wishing they were a superhero"}
{"id": 229, "image": "ex_229_img_1", "caption": "a superhero wishing they were a normal person"}
{"id": 230, "image": "ex_230_img_0", "caption": "a mike in the right hand while raising the left"}
{"id": 230, "image": "ex_230_img_0", "caption": "a mike in the left hand while raising the right"}
{"id": 230, "image": "ex_230_img_1", "caption": "a mike in the right hand while raising the left"}
{"id": 230, "image": "ex_230_img_1", "caption": "a mike in the left hand while raising the right"}
{"id": 231, "image": "ex_231_img_0", "caption": "a person with long hair behind a person with a beard"}
{"id": 231, "image": "ex_231_img_0", "caption": "a person with a beard behind a person with long hair"}
{"id": 231, "image": "ex_231_img_1", "caption": "a person with long hair behind a person with a beard"}
{"id": 231, "image": "ex_231_img_1", "caption": "a person with a beard behind a person with long hair"}
{"id": 232, "image": "ex_232_img_0", "caption": "the person with hair to their shoulders has brown eyes and the other person's are blue"}
{"id": 232, "image": "ex_232_img_0", "caption": "the person with hair to their shoulders has blue eyes and the other person's are brown"}
{"id": 232, "image": "ex_232_img_1", "caption": "the person with hair to their shoulders has brown eyes and the other person's are blue"}
{"id": 232, "image": "ex_232_img_1", "caption": "the person with hair to their shoulders has blue eyes and the other person's are brown"}
{"id": 233, "image": "ex_233_img_0", "caption": "a human being on a device that intercepts the sun's rays"}
{"id": 233, "image": "ex_233_img_0", "caption": "a device that intercepts the sun's rays on a human being"}
{"id": 233, "image": "ex_233_img_1", "caption": "a human being on a device that intercepts the sun's rays"}
{"id": 233, "image": "ex_233_img_1", "caption": "a device that intercepts the sun's rays on a human being"}
{"id": 234, "image": "ex_234_img_0", "caption": "more humans than phones"}
{"id": 234, "image": "ex_234_img_0", "caption": "more phones than humans"}
{"id": 234, "image": "ex_234_img_1", "caption": "more humans than phones"}
{"id": 234, "image": "ex_234_img_1", "caption": "more phones than humans"}
{"id": 235, "image": "ex_235_img_0", "caption": "a person is in the tube"}
{"id": 235, "image": "ex_235_img_0", "caption": "a tube is in the person"}
{"id": 235, "image": "ex_235_img_1", "caption": "a person is in the tube"}
{"id": 235, "image": "ex_235_img_1", "caption": "a tube is in the person"}
{"id": 236, "image": "ex_236_img_0", "caption": "the person's head is above the rest of their body"}
{"id": 236, "image": "ex_236_img_0", "caption": "the rest of their body is above the person's head"}
{"id": 236, "image": "ex_236_img_1", "caption": "the person's head is above the rest of their body"}
{"id": 236, "image": "ex_236_img_1", "caption": "the rest of their body is above the person's head"}
{"id": 237, "image": "ex_237_img_0", "caption": "person overboard"}
{"id": 237, "image": "ex_237_img_0", "caption": "person over board"}
{"id": 237, "image": "ex_237_img_1", "caption": "person overboard"}
{"id": 237, "image": "ex_237_img_1", "caption": "person over board"}
{"id": 238, "image": "ex_238_img_0", "caption": "more red buttons than blue"}
{"id": 238, "image": "ex_238_img_0", "caption": "more blue buttons than red"}
{"id": 238, "image": "ex_238_img_1", "caption": "more red buttons than blue"}
{"id": 238, "image": "ex_238_img_1", "caption": "more blue buttons than red"}
{"id": 239, "image": "ex_239_img_0", "caption": "the object at the top left is purple and the one at the bottom right of the group is red"}
{"id": 239, "image": "ex_239_img_0", "caption": "the object at the bottom right is purple and the one at the top left of the group is red"}
{"id": 239, "image": "ex_239_img_1", "caption": "the object at the top left is purple and the one at the bottom right of the group is red"}
{"id": 239, "image": "ex_239_img_1", "caption": "the object at the bottom right is purple and the one at the top left of the group is red"}
{"id": 240, "image": "ex_240_img_0", "caption": "flat at the bottom and pointy on top"}
{"id": 240, "image": "ex_240_img_0", "caption": "flat on top and pointy at the bottom"}
{"id": 240, "image": "ex_240_img_1", "caption": "flat at the bottom and pointy on top"}
{"id": 240, "image": "ex_240_img_1", "caption": "flat on top and pointy at the bottom"}
{"id": 241, "image": "ex_241_img_0", "caption": "seat numbers increasing from left to right"}
{"id": 241, "image": "ex_241_img_0", "caption": "seat numbers increasing from right to left"}
{"id": 241, "image": "ex_241_img_1", "caption": "seat numbers increasing from left to right"}
{"id": 241, "image": "ex_241_img_1", "caption": "seat numbers increasing from right to left"}
{"id": 242, "image": "ex_242_img_0", "caption": "the number on the right is larger than the number on the left"}
{"id": 242, "image": "ex_242_img_0", "caption": "the number on the left is larger than the number on the right"}
{"id": 242, "image": "ex_242_img_1", "caption": "the number on the right is larger than the number on the left"}
{"id": 242, "image": "ex_242_img_1", "caption": "the number on the left is larger than the number on the right"}
{"id": 243, "image": "ex_243_img_0", "caption": "more hair on the person's face than on their head"}
{"id": 243, "image": "ex_243_img_0", "caption": "more hair on the person's head than on their face"}
{"id": 243, "image": "ex_243_img_1", "caption": "more hair on the person's face than on their head"}
{"id": 243, "image": "ex_243_img_1", "caption": "more hair on the person's head than on their face"}
{"id": 244, "image": "ex_244_img_0", "caption": "the knife on the left and the fork on the right"}
{"id": 244, "image": "ex_244_img_0", "caption": "the knife on the right and the fork on the left"}
{"id": 244, "image": "ex_244_img_1", "caption": "the knife on the left and the fork on the right"}
{"id": 244, "image": "ex_244_img_1", "caption": "the knife on the right and the fork on the left"}
{"id": 245, "image": "ex_245_img_0", "caption": "food on their eyes"}
{"id": 245, "image": "ex_245_img_0", "caption": "eyes on their food"}
{"id": 245, "image": "ex_245_img_1", "caption": "food on their eyes"}
{"id": 245, "image": "ex_245_img_1", "caption": "eyes on their food"}
{"id": 246, "image": "ex_246_img_0", "caption": "cars of bits"}
{"id": 246, "image": "ex_246_img_0", "caption": "bits of cars"}
{"id": 246, "image": "ex_246_img_1", "caption": "cars of bits"}
{"id": 246, "image": "ex_246_img_1", "caption": "bits of cars"}
{"id": 247, "image": "ex_247_img_0", "caption": "a person on top of the world"}
{"id": 247, "image": "ex_247_img_0", "caption": "the world on top of a person"}
{"id": 247, "image": "ex_247_img_1", "caption": "a person on top of the world"}
{"id": 247, "image": "ex_247_img_1", "caption": "the world on top of a person"}
{"id": 248, "image": "ex_248_img_0", "caption": "two people; the one on the right has curly hair and the one on the left doesn't"}
{"id": 248, "image": "ex_248_img_0", "caption": "two people; the one on the left has curly hair and the one on the right doesn't"}
{"id": 248, "image": "ex_248_img_1", "caption": "two people; the one on the right has curly hair and the one on the left doesn't"}
{"id": 248, "image": "ex_248_img_1", "caption": "two people; the one on the left has curly hair and the one on the right doesn't"}
{"id": 249, "image": "ex_249_img_0", "caption": "first the cream, then the jam"}
{"id": 249, "image": "ex_249_img_0", "caption": "first the jam, then the cream"}
{"id": 249, "image": "ex_249_img_1", "caption": "first the cream, then the jam"}
{"id": 249, "image": "ex_249_img_1", "caption": "first the jam, then the cream"}