File size: 18,975 Bytes
5c8ef86
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
{
    "4859": {
        "(motion, 101105)": "man sitting on the ground playing wii",
        "(static, 101106)": "man in white and light blue t - shirt"
    },
    "678": {
        "(motion, 14720)": "the man crouching inside the plane",
        "(static, 14721)": "the man wearing white hat"
    },
    "162": {
        "(motion, 2908)": "the man resting his face on his hands",
        "(static, 2909)": "the man with a plastic bag between his feet"
    },
    "3052": {
        "(motion, 63901)": "person looking at a book",
        "(static, 63902)": "person wearing a hat and backpack"
    },
    "2355": {
        "(motion, 49522)": "the cat sitting in the chair",
        "(static, 49523)": "cat on left side"
    },
    "3408": {
        "(motion, 71397)": "a man bending and judging a tennis match",
        "(static, 71398)": "a man wearing a red shirt and black pants"
    },
    "834": {
        "(motion, 17983)": "a giraffe who is eating hay out of a feeder",
        "(static, 17984)": "the giraffe on the right side of the pole"
    },
    "328": {
        "(motion, 6730)": "person bending over",
        "(static, 6731)": "big person in blue cap"
    },
    "1646": {
        "(motion, 35169)": "person about to hit a ball",
        "(static, 35170)": "person wearing shirt and pants"
    },
    "4400": {
        "(motion, 91825)": "boy sitting on his skateboard and looking at another boy",
        "(static, 91826)": "boy wearing dark t - shirt and jeans"
    },
    "3683": {
        "(motion, 77184)": "a man dishing up food",
        "(static, 77185)": "a man in military camo and a black hat on the right"
    },
    "3788": {
        "(motion, 79367)": "a black cat sitting and starring",
        "(static, 79368)": "a cat with a heart shaped tag"
    },
    "4701": {
        "(motion, 97795)": "person whose tie is being pulled by another person",
        "(static, 97796)": "person in blue shirt with a red undone tie"
    },
    "1211": {
        "(motion, 26003)": "person putting arm around another person",
        "(static, 26004)": "person with backpack"
    },
    "2138": {
        "(motion, 45446)": "a person sleeping on the top bunk",
        "(static, 45447)": "a person in a green shirt and brown shorts"
    },
    "3510": {
        "(motion, 73478)": "personn sitting in a train compartment and reading book",
        "(static, 73479)": "person in striped shirt"
    },
    "899": {
        "(motion, 19308)": "a man serving soup",
        "(static, 19309)": "a man with tattoo on his arm"
    },
    "293": {
        "(motion, 5939)": "a lady laughing and looking at another lady",
        "(static, 5940)": "a lady with dark hair and a dark shirt"
    },
    "3196": {
        "(motion, 67017)": "person holding a pen",
        "(static, 67018)": "person in a brown suit"
    },
    "1939": {
        "(motion, 41076)": "a person sitting cross legged on the beach",
        "(static, 41077)": "person in khakis and a white shirt with yellow flowers"
    },
    "2659": {
        "(motion, 56121)": "person helping another cross a stream",
        "(static, 56122)": "person in white dress"
    },
    "2849": {
        "(motion, 59798)": "person looking down drinking a glass of wine",
        "(static, 59799)": "person on the right side not wearing glasses"
    },
    "756": {
        "(motion, 16375)": "the woman about to pick up a slice of pizza",
        "(static, 16376)": "a woman with a flower shirt"
    },
    "4573": {
        "(motion, 95258)": "person reaching for another person with the frisbee",
        "(static, 95259)": "person with blue and white striped shirt on"
    },
    "4514": {
        "(motion, 94061)": "person running behind",
        "(static, 94062)": "person in dark brown top and jeans"
    },
    "304": {
        "(motion, 6165)": "person resting her head in hand and crossing one's legs",
        "(static, 6166)": "the person in pink jacket"
    },
    "3465": {
        "(motion, 72753)": "person sitting on a love seat and watching others play wii",
        "(static, 72754)": "person in a black shirt and white shorts"
    },
    "1092": {
        "(motion, 23796)": "a bear standing up with its mouth open",
        "(static, 23797)": "a bear on the right"
    },
    "2025": {
        "(motion, 42838)": "the person leading the horse",
        "(static, 42839)": "the person in gray top and jeans"
    },
    "1701": {
        "(motion, 36094)": "giraffe biting off of a tree",
        "(static, 36095)": "tall giraffe on the right"
    },
    "2958": {
        "(motion, 62137)": "person playing with dog",
        "(static, 62138)": "balding person wearing brown hoodie"
    },
    "4793": {
        "(motion, 99824)": "the girl eating and looking at her plate",
        "(static, 99825)": "the girl wearing a pink shirt"
    },
    "1247": {
        "(motion, 26624)": "the person holding the bat",
        "(static, 26625)": "the person in white t - shirt and grey pants"
    },
    "1841": {
        "(motion, 38888)": "person resting hands on other people's shoulders",
        "(static, 38889)": "tallest person wearing bright suit"
    },
    "4404": {
        "(motion, 91907)": "a elephant whose trunk pointing to the floor , may be touching",
        "(static, 91908)": "elephant more on the right side of the picture"
    },
    "4536": {
        "(motion, 94448)": "a person reaching for the microwave looking at the camera",
        "(static, 94449)": "person in black t shirt"
    },
    "2787": {
        "(motion, 58740)": "a giraffe snacking on the tree",
        "(static, 58741)": "a giraffe on the right"
    },
    "3377": {
        "(motion, 70765)": "a zebra resting its head on another zebra ' s back",
        "(static, 70766)": "a zebra on the left"
    },
    "3889": {
        "(motion, 81051)": "a man holding a basket of pastries",
        "(static, 81052)": "a man wearing grey hoodie"
    },
    "2194": {
        "(motion, 46507)": "standing dog",
        "(static, 46508)": "a black and white dog with a blue collar tag"
    },
    "508": {
        "(motion, 11146)": "person being held by another person",
        "(static, 11147)": "person dressed in a red suit and blue cap"
    },
    "2312": {
        "(motion, 48847)": "a bird standing on a table",
        "(static, 48848)": "a bird on the left"
    },
    "3948": {
        "(motion, 82190)": "the woman who is squinting in one eye",
        "(static, 82191)": "a blue eyed brown haired woman not wearing glasses"
    },
    "1388": {
        "(motion, 29353)": "person holding another person while watching giraffe drink water",
        "(static, 29354)": "person in brown shirt with bag"
    },
    "2690": {
        "(motion, 56849)": "a man about to kick a ball",
        "(static, 56850)": "a man in all white with number 23 on his chest"
    },
    "1109": {
        "(motion, 24043)": "man holding the ktie",
        "(static, 24044)": "man on the right"
    },
    "1374": {
        "(motion, 29120)": "person arranging pansts of another person",
        "(static, 29121)": "the person with in the black tuxedo and glasses in his head"
    },
    "3475": {
        "(motion, 72951)": "woman holding the horse",
        "(static, 72952)": "a woman wearing spectacles with violet shirt and flourecent colour waist vest"
    },
    "1333": {
        "(motion, 28225)": "a person holding another person",
        "(static, 28226)": "a person in a pink and orange flannel shirt"
    },
    "2068": {
        "(motion, 43909)": "person standing and playing wii",
        "(static, 43910)": "person wearing black t - shirt"
    },
    "2824": {
        "(motion, 59394)": "person standing besides a table crossing arms",
        "(static, 59395)": "person with glasses and long hair"
    },
    "2294": {
        "(motion, 48483)": "a person sitting on bike holding another person",
        "(static, 48484)": "a person with a helmet on the head"
    },
    "2446": {
        "(motion, 51355)": "an elephant that has it ' s trunk pointing towards the water",
        "(static, 51356)": "elephant on the left"
    },
    "2686": {
        "(motion, 56783)": "a man staring at another man",
        "(static, 56784)": "a man in an orange tie"
    },
    "4558": {
        "(motion, 94950)": "a zebra facing the camera",
        "(static, 94951)": "a small zebra beside a larger zebra"
    },
    "1499": {
        "(motion, 32051)": "a man resting on a metal fence",
        "(static, 32052)": "a man in white shirt and polka dot tie"
    },
    "4303": {
        "(motion, 89833)": "a man throwing a banana",
        "(static, 89834)": "a man in bike gear on the right of the picture"
    },
    "1376": {
        "(motion, 29146)": "a man sitting down with his hands together",
        "(static, 29147)": "a man with a purple shirt and khaki pants "
    },
    "3544": {
        "(motion, 74100)": "the man holding a riding crop",
        "(static, 74101)": "man in black shirt and slacks on the left"
    },
    "1858": {
        "(motion, 39103)": "a bull standing",
        "(static, 39104)": "a white and brown bull on the left of the picture"
    },
    "434": {
        "(motion, 9561)": "the man looking down",
        "(static, 9562)": "the man on the left"
    },
    "3024": {
        "(motion, 63345)": "a baseball player sliding into a base",
        "(static, 63346)": "baseball player wearing the number 12"
    },
    "513": {
        "(motion, 11239)": "a man riding on a skateboard as his picture is being taken",
        "(static, 11240)": "a man in a purple t - shirt and ripped jeans"
    },
    "693": {
        "(motion, 14989)": "a person standing",
        "(static, 14990)": "a small person"
    },
    "2523": {
        "(motion, 53103)": "a baseball player sliding into home plate and getting tagged by the catcher",
        "(static, 53104)": "a la dodgers player on the right of the picture"
    },
    "4987": {
        "(motion, 104145)": "a girl punching out her arm while playing an interactive video game",
        "(static, 104146)": "girl wearing grey and white stripes and sweatpants"
    },
    "4041": {
        "(motion, 84159)": "soccer player about to kick soccer ball",
        "(static, 84160)": "soccer player wearing black t - shirt and black gloves"
    },
    "2105": {
        "(motion, 44674)": "a baseball player holding his arm up to catch a ball",
        "(static, 44675)": "a baseball player wearing helmet and vest"
    },
    "135": {
        "(motion, 2353)": "dog resting it ' s head on a table",
        "(static, 2354)": "golden dog"
    },
    "3613": {
        "(motion, 75580)": "person talking to another person while crossing legs",
        "(static, 75581)": "person with long sleeve shirt, jeans and cap"
    },
    "1722": {
        "(motion, 36451)": "person pulling another person's tie",
        "(static, 36452)": "blonde person in black dress"
    },
    "1607": {
        "(motion, 34281)": "a person reading a book to another person he ' s holding",
        "(static, 34282)": "a bald person wearing a beige t - shirt and gray jeans"
    },
    "2761": {
        "(motion, 58225)": "girl propping her chin on her hand",
        "(static, 58226)": "girl in a pink shirt near window"
    },
    "2454": {
        "(motion, 51492)": "a man looking at laptop",
        "(static, 51493)": "the man with glasses and painted fingernails"
    },
    "1603": {
        "(motion, 34234)": "person eating a donut",
        "(static, 34235)": "person with the black beanie"
    },
    "4794": {
        "(motion, 99868)": "a duck that is looking straight ahead",
        "(static, 99869)": "the duck on the right side"
    },
    "2485": {
        "(motion, 52246)": "a person reaching across the net",
        "(static, 52247)": "tallest person in a grey shirt and shorts"
    },
    "3280": {
        "(motion, 68799)": "a boy walking towards his skate board",
        "(static, 68800)": "a boy in a striped shirt"
    },
    "3336": {
        "(motion, 69882)": "person holding a piece of chocolate cake",
        "(static, 69883)": "person wearing a purple dress"
    },
    "3118": {
        "(motion, 65349)": "giraffe stretching its neck straight up",
        "(static, 65350)": "taller giraffe"
    },
    "4494": {
        "(motion, 93729)": "man touching the frisbee",
        "(static, 93730)": "a man in a white shirt"
    },
    "3004": {
        "(motion, 62940)": "person crouching to catch a ball",
        "(static, 62941)": "person in a red uniform and helmet"
    },
    "127": {
        "(motion, 2256)": "a person holding a plate",
        "(static, 2257)": "the person in the purple coat"
    },
    "3389": {
        "(motion, 70905)": "person waving",
        "(static, 70906)": "person in black sneakers"
    },
    "2568": {
        "(motion, 54256)": "person looking at phone",
        "(static, 54257)": "blonde person on the right"
    },
    "2283": {
        "(motion, 48251)": "the cook holding a plate",
        "(static, 48252)": "middle cook of three cooks"
    },
    "1530": {
        "(motion, 32639)": "person petting the cat",
        "(static, 32640)": "person with sleeves rolled up"
    },
    "4251": {
        "(motion, 88833)": "a person reading a book",
        "(static, 88834)": "person in a striped jacket "
    },
    "2540": {
        "(motion, 53539)": "a man reaching out his right arm holding a controller",
        "(static, 53540)": "a man in red shirt and black jeans"
    },
    "2870": {
        "(motion, 60169)": "a person watching horse riding",
        "(static, 60170)": "a person in a white jacket and beige pants"
    },
    "4946": {
        "(motion, 103092)": "a man about to hit a ball",
        "(static, 103093)": "a man in red shirt and blue vest"
    },
    "113": {
        "(motion, 1973)": "person holding phone",
        "(static, 1974)": "person with a black shirt and brown coat"
    },
    "711": {
        "(motion, 15398)": "girl crouching and holding an umbrella",
        "(static, 15399)": "girl wearing light green socks on the left"
    },
    "3209": {
        "(motion, 67236)": "the person that is sliding into home , getting tagged out by the catcher",
        "(static, 67237)": "the person in the white vest over the blue shirt"
    },
    "3620": {
        "(motion, 75711)": "person petting a horse",
        "(static, 75712)": "a person in white t - shirt"
    },
    "4382": {
        "(motion, 91559)": "horse being hugged by a person",
        "(static, 91560)": "white and brown horse"
    },
    "2861": {
        "(motion, 60004)": "a man playing tennis",
        "(static, 60005)": "a man wearing a blue shirt and white shorts"
    },
    "3954": {
        "(motion, 82306)": "a person putting gloves on",
        "(static, 82307)": "person with dark blue jumper"
    },
    "1984": {
        "(motion, 42076)": "a person being held by another person",
        "(static, 42077)": "little person on pink skiis with yellow parka on"
    },
    "2069": {
        "(motion, 43945)": "a person helping another person ski",
        "(static, 43946)": "a big person in white jumper and backpack"
    },
    "2016": {
        "(motion, 42686)": "person putting food in the oven",
        "(static, 42687)": "person in green t - shirt"
    },
    "1153": {
        "(motion, 25076)": "a giraffe , with head lowered , crosses in front of another giraffe",
        "(static, 25077)": "giraffe in the middle"
    },
    "3614": {
        "(motion, 75583)": "a man in explaining something on a tablet",
        "(static, 75584)": "a man with a blue cap and striped shirt"
    },
    "198": {
        "(motion, 3830)": "a giraffe bending down to eat grass",
        "(static, 3831)": "giraffe in front"
    },
    "3012": {
        "(motion, 63097)": "person standing with hands on hips",
        "(static, 63098)": "person in a white collared shirt and jeans"
    },
    "4247": {
        "(motion, 88808)": "man pointing toward another man",
        "(static, 88809)": "man in plaid shirt"
    },
    "2205": {
        "(motion, 46674)": "person bending over",
        "(static, 46675)": "person in red shirt and cap"
    },
    "4831": {
        "(motion, 100694)": "person holding bat in hands",
        "(static, 100695)": "person wearing light blue shirt and glass"
    },
    "4534": {
        "(motion, 94419)": "the bird not drinking",
        "(static, 94420)": "the bird on the left"
    },
    "638": {
        "(motion, 13717)": "person sitting on another person's lap and holding the remote controller",
        "(static, 13718)": "small person in red shirt"
    },
    "1419": {
        "(motion, 30082)": "person squatting on the ground to catch a ball",
        "(static, 30083)": "person in red and white wearing glove"
    },
    "1992": {
        "(motion, 42197)": "a person reaching for a cupcake",
        "(static, 42198)": "a person in a blue vest"
    },
    "542": {
        "(motion, 11877)": "man receiving food",
        "(static, 11878)": "a black man in a black shirt"
    },
    "2223": {
        "(motion, 47051)": "person sitting a chair holding a protest sign",
        "(static, 47052)": "old person in grey t - shirt and blue jeans"
    },
    "4865": {
        "(motion, 101219)": "person being held by another person",
        "(static, 101220)": "a young person wearing a yellow shirt"
    },
    "751": {
        "(motion, 16247)": "person holding a painting brush",
        "(static, 16248)": "person wearing white top and cap"
    },
    "3540": {
        "(motion, 74039)": "a man swinging a bat",
        "(static, 74040)": "a man in a blue baseball shirt and white pants"
    },
    "3765": {
        "(motion, 78908)": "person sitting",
        "(static, 78909)": "person wearing white shirt and red shoes"
    },
    "2879": {
        "(motion, 60471)": "bear standing against the fence",
        "(static, 60472)": "a small bear on the right"
    },
    "4529": {
        "(motion, 94312)": "kid holding out left arm playing wii",
        "(static, 94313)": "kid in a green and red sweatshirt"
    },
    "2131": {
        "(motion, 45308)": "man putting both hands behind his head",
        "(static, 45309)": "a man with the pool noodle"
    },
    "1306": {
        "(motion, 27841)": "a cow eating grass",
        "(static, 27842)": "the cow on the right"
    },
    "3508": {
        "(motion, 73469)": "a person standing and playing a video game",
        "(static, 73470)": "a little person dressed in brown"
    },
    "4165": {
        "(motion, 87036)": "a child holding feathers",
        "(static, 87037)": "a child wearing green t - shirt"
    },
    "4126": {
        "(motion, 86073)": "a person standing and reading a book",
        "(static, 86074)": "a person in a suit"
    },
    "388": {
        "(motion, 8339)": "a man holding up an umbrella in the rain for a man who is fixing a tire",
        "(static, 8340)": "a man wearing glasses in a red jacket"
    }
}