-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathlang_annotation_cache.json
7002 lines (7002 loc) · 244 KB
/
lang_annotation_cache.json
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
[
[
"pivot the cobalt unit to your right",
"Guide the sliding door to move on the right",
"Unload the red block from the sliding case",
"Haul the grasped tool into the rolling box",
"use the switch to stop the light source"
],
[
"engage the button stop the LED light",
"Move the block ensuring it goes into the drawer",
"Hook the blue block from the drawer",
"Displace the seized element into the glide almirah",
"execute the closing of the drawer by handling it"
],
[
"Hoist up the pink block kept in the sliding cabinet",
"Hide the item gripped in sliding stash",
"Grasp the handle and pull to reveal the drawer",
"Twist the red object to the right",
"Raise the red block"
],
[
"swivel the blue creation in a rightward direction",
"bear and lift the pink piece",
"Preserve the seized substance in the running cabinet",
"Shove the bi-fold door to the left",
"Pull the handle firmly to activate the drawer"
],
[
"Acquire a grip on the handle to slide the drawer out",
"clutch and elevate the pink box",
"Place the grasped object in the sliding storage",
"Control the switch to make the bulb sparkle",
"Kindly carry the blue piece and rotate it leftward"
],
[
"This blue block must be pushed leftwards",
"control the handle in a way that leads to the shutting of the drawer",
"Take up the red block from the slide-fitted compartment",
"Place the grasped object in the sliding storage",
"flip the switch to pause the lighting"
],
[
"Seize the handle and perform pulling motion to reveal the drawer",
"Roll the red block on its axis to the right",
"tap the button to trigger the LED light",
"lift the pink piece",
"then drop it in place"
],
[
"force the pink block to the right",
"snatch and hoist pink block",
"Set the gripped unit in the slide-out drawer",
"Command the block to move and set down in the drawer",
"use the grip to push the drawer closed"
],
[
"By using the handle",
"develop a motion to push the red block to the right",
"Nudge moveable gate to the left",
"Uplift the cerise block from the sliding cabinet",
"Lodge the held item in the side rolling bin"
],
[
"Propel the red object towards the left",
"seize and hoist the blue block",
"Store the handheld item in the gliding storage unit",
"Entail the button to lit up the bulb",
"Send the sliding door towards the right direction"
],
[
"Catch the cobalt entity and roll it to the left",
"capture and lift the blue block",
"Insert the clasped item into the drawer",
"Utilize force to move the sliding door rightwards",
"use the toggle to put the light bulb out"
],
[
"Raise the salmon rectangular solid from the sliding cabinet",
"Deliver the object you're holding into the gliding locker",
"Activate the switch to illuminate the light bulb",
"lead the blue unit to rotate clockwise",
"Use the handle to command the drawer's opening."
],
[
"Drift the sliding door left-wards",
"grasp the red block and execute a left turn",
"prod the switch to extinguish the LED brightness",
"acquire and lift the pink object",
"Displace the seized element into the glide almirah"
],
[
"press the switch to turn on the glowing LED",
"regulate the closure of the drawer by handling it",
"set in motion the red block towards the right",
"Jolt up the red block",
"Locate the grasped object in the sliding cloakroom"
],
[
"Propel up the red block from the sliding drawer",
"perch the block you're holding above another block",
"Displace the door on guide to the left.\n\nPrompt sliding door to an eastern direction",
"mildly hit the button to stop the LED light",
"Hold the handle and exert pressure to make the drawer open"
],
[
"Drift the sliding door left-wards",
"thrust the pink block in the left direction",
"Seize the handle and perform pulling motion to reveal the drawer",
"Operate the switch to commence the bulb",
"grasp firmly and raise the blue block"
],
[
"Shift red block in left direction",
"Grip and pick the pink block from the sliding cabinet",
"locate a block and place the one you're holding on top of it.\n\nPut the gripped block on top of another block",
"give the switch a light tap to cease the LED light",
"Grasp and tug at the handle to loosen the drawer"
],
[
"Roll the red block to the left",
"Drive the sliding door to the right side",
"Gently hoist the azure box from the sliding berth",
"Preserve the seized box in the rolling storage",
"Direct the switch to enhance the bulb's light"
],
[
"Involve the switch to light the bulb",
"implement the action of moving the red block to the right",
"Shove the bi-fold door to the left",
"Get a hold of the red block",
"pile the currently grasped block on another"
],
[
"Move sliding aperture towards the left",
"Seize the red block",
"Place the grasped object in the glide bin",
"Implement the procedure of starting the bulb by using a switch",
"Press the handle to shut the drawer"
],
[
"Use the handle to command the drawer's opening.",
"Execute the act of switching on the bulb",
"Push the block that is red to the left",
"Motivate barrier to slip left",
"Motivate the block to find its place in the drawer"
],
[
"Sway the sliding door towards the right",
"turn the dial to eliminate the light",
"hoist the pink block upwards",
"Relocate the gripped item into the drawer",
"Haul out the pink block from the drawer"
],
[
"Snag the pink block and rotate it clockwise",
"Grasping the drawer handle",
"catch a grip and lift the blue block",
"Preserve the seized box in the rolling storage",
"switch off the light source"
],
[
"push the button to trigger the LED light on",
"Propel the sliding door on its track to the left",
"gather and upraise the blue block",
"organize the block you're gripping in a stack with a different block",
"let loose the fixed blocks"
],
[
"adjust the blue piece towards the right",
"Deploy a firm grip on the handle to haul the drawer open",
"tenderly press down on the switch to shut down the LED light",
"get a hold of and lift the blue block",
"Deposit the gripped cube in the sliding cabinetry"
],
[
"Extract the blue block from the sliding compartment",
"manipulate the block you have to assemble it on top of another one",
"gently press the button to cease the LED glow",
"dislocate the deposit of the block",
"Give the blue block a leftward push"
],
[
"Maneuver the blue block to your right",
"Use the handle for assistance and pull to open the drawer",
"Draw up the pink block positioned in the sliding cabinet",
"Lodge the seized unit in the rolling curricle",
"Traverse the block till it reaches the drawer"
],
[
"develop a motion to push the red block to the right",
"Employ the use of the switch to light the bulb",
"Accompany the block till it finds a spot in the drawer",
"Shift the sliding door to the left",
"manipulate the handle to close off the drawer"
],
[
"use the switch to neutralize light",
"Please move the blue block and spin it counterclockwise",
"Drift sliding door towards left direction",
"Reach for the handle and perform a pulling task to open the drawer",
"Take hold of the red block"
],
[
"Seize the red block",
"then drop it in place",
"take down the upright setup",
"Use the handle to command the drawer's opening.",
"Activate the LED by pushing the button"
],
[
"get your hands on and raise the blue block",
"Reposition the clutched item in the drawer",
"shift the red brick towards your right",
"direct the drawer's path to closure using its handle",
"softly operate the button to cease the LED light source"
],
[
"clutch and hoist the pink factor",
"Relocate the handheld item to the moving cabin",
"Guide the block to make sure it lands in the drawer",
"move your hand on the handle to shut the drawer",
"twiddle the switch to turn off the LED illumination"
],
[
"Pick up the pink cube and drive it to the left",
"lift the pink piece",
"put on the block in hand on another block",
"decompose the stacked series",
"poke the button to shut down the LED light source"
],
[
"prod the button to disconnect the LED illumination",
"Grasp the handle firmly and pull to dislodge the drawer",
"lug the pink block towards left direction",
"catch a grip and lift the blue block",
"Transfer the item in your grip to the sliding closet"
],
[
"Displace the sliding door towards the right",
"Migrate the blue block towards the left",
"Hold and tug the handle to make the drawer visible",
"Hold the red block firmly",
"organize the block you're gripping in a stack with a different block"
],
[
"Clasp the red block extracted from the sliding space",
"Reposition the handheld matter in the sliding caddy",
"Direct the sliding door rightwards",
"Orchestrate the block smooth glide into the drawer",
"make a contact with the button to shut off the LED light source"
],
[
"Utilize force to move the sliding door rightwards",
"use the lever to stop the lighting",
"Elevate the pink-colored tile from the sliding cabinet",
"Transport the gripped block to the glide drawer",
"establish a motion to move the red block right"
],
[
"utilize the control to nullify the light",
"guide the red block towards the right",
"Adjust the block path to help it descend into the drawer",
"Slide the door on its rail to the left",
"control the handle in a way that leads to the shutting of the drawer"
],
[
"Employ the handle and tug to eject the drawer",
"Make the sliding door move in the right direction",
"Please carry the blue block to the right side",
"sequester and lift the blue block",
"Locate the grasped object in the sliding cloakroom"
],
[
"push the control to start the LED light",
"Capture the pink object and revolve it clockwise",
"Navigate the sliding door to the right side",
"accomplish closure of the drawer by operating its handle.\n\nInitiate the shutting of the drawer using the handle",
"jerk and lift the pink cube"
],
[
"Initiate sliding door movement towards the right",
"maneuver the handle to end the drawer's openness",
"hustle the pink cube going to the left",
"elevate the pink cube",
"Lodge the handheld in the cabinet with a slide capability"
],
[
"Manoeuvre the sliding door towards the right",
"Guide the block to make sure it lands in the drawer",
"prod the button to disconnect the LED illumination",
"Redeem the pink block from the drawer",
"Transfer the clutched cube into the drawer"
],
[
"Nudge movable wall towards left.",
"divert the pink block to the left",
"Fetch the indigo block from the moving wooden cabinet",
"Store the handheld item in the gliding storage unit",
"prod the switch to extinguish the LED brightness"
],
[
"Grip the pink unit and turn it to the right",
"clutch and elevate the pink box",
"Locate the grasped object in the sliding cloakroom",
"Hold tight to the drawer's handle and yank it open",
"Nudge up the cerulean cube from the rollable locker"
],
[
"ensnare and lift the blue block",
"Preserve the seized substance in the running cabinet",
"touch the button to ignite the LED light",
"Retrieve the pink block and turn it to the right",
"Move the red block from the sliding rack to upper place"
],
[
"Take the pink piece and rotate it clockwise",
"make light contact with the button to shut down the LED light",
"clutch and uplift the pink item",
"Shift the gripped stuff into the sliding rack",
"pull it to manipulate the drawer's opening"
],
[
"activate the toggle to cut out the light",
"drive the pink block leftwards",
"Push the door along the slider to the left",
"Hook your fingers around the handle and pull to uncover the drawer's contents",
"fetch the pink object and elevate it"
],
[
"Jerk the red block from the drawing out shelf",
"move the block in your hand to a higher place on another block",
"start the LED illumination by pressing the button. \n\nActivate the LED light by pressing the button",
"oust the piled element",
"Catch hold of the red block"
],
[
"Hold tight the blue brick and twist it leftwards",
"Drift sliding door towards left direction",
"Draw the handle towards you",
"Uplift the red block from the slide mechanism cabinet",
"Stash the block you are handling in the drawer"
],
[
"Get the red block in your hold",
"Put the seized entity in the drawer",
"twist the blue piece to your right",
"Grasp",
"release the block you're holding onto another block"
],
[
"Grip and yank the handle to free the drawer",
"Proceed to dislocate the blue block towards the right",
"Push the door along the slider to the left",
"Navigate the block into the confines of the drawer",
"Choose the blue block from the drawer"
],
[
"Adjust the red block rightwards",
"Hoist up the pink block kept in the sliding cabinet",
"put on the block in hand on another block",
"push the button to trigger the LED light on",
"Handle the knob and pull it to display the drawer contents"
],
[
"push the button to trigger the LED light on",
"guide the pink block towards the left direction",
"Command the block to move and set down in the drawer",
"Get a hold of the red block from the sliding holder",
"Transfer the clutched entity into the rolling chest"
],
[
"switch on the LED light by pressing the button",
"Latch onto the handle and drag the drawer into an open position",
"Get a hold of the rosy block and twist it to the left",
"gain and lift up the blue block",
"Slip the held object into the drawer"
],
[
"carefully nudge the button to stop the LED glow.",
"operate on the drawer by pressuring its handle to a close",
"Move slider to the left side",
"glide the pink block to the right",
"Elevate straight up the red block from its drawer"
],
[
"push the handle to finish the drawer's openness",
"Reposition the red block to left",
"Elevate the red block",
"mount the block in your grip on another",
"Employ the use of the switch to light the bulb"
],
[
"Move the sliding door to the right",
"Command the block to move and set down in the drawer",
"Yank up the red block from the cabin sliding",
"Save the caught item into the sliding commode",
"Yank the blue block from the drawer"
],
[
"The direction to push the blue block is left",
"Pave the block way leading it to the drawer",
"Prise out the blue block from the drawer",
"Relocate the clutch in the sliding box",
"Force the door to move towards the right"
],
[
"Shift the sliding door right",
"turn off the light bulb by using the switch",
"exercise control over the drawer's state by pushing the handle",
"govern the cyan block to go right",
"clinch and raise the blue block"
],
[
"exercise the switch to switch off the bulb",
"Nudge the blue block leftward",
"Reach for the handle and perform a pulling task to open the drawer",
"Move the door that slides to your left",
"get a fix on and raise the blue block."
],
[
"Command the switch to brighten the light bulb",
"Shove the bi-fold door to the left",
"move the blue block towards the right side.",
"enclose and hoist the blue block",
"pile the currently grasped block on another"
],
[
"Slide the blue block to your right",
"Actuate the sliding door to the right side",
"Engage the switch to set off the light bulb",
"Snatch the red block",
"situate the block you're holding on top of another"
],
[
"Clasp the pink box and flip it towards the left",
"press the button to power on the LED",
"Draw out the red block from the sliding crate",
"put on the block in hand on another block",
"control the handle in a way that leads to the shutting of the drawer"
],
[
"Please slide the door in the right direction",
"Take up the red block from the slide-fitted compartment",
"Displace the seized matter in the sliding enclosure",
"Seize the handle and maneuver the drawer open",
"press the button to power on the LED"
],
[
"then pull to disengage the drawer",
"control the pink block to move right",
"Fetch the red block",
"Stow the captured piece in the gliding storage",
"Actuate the sliding door to the right side"
],
[
"Gently pull on the handle to initiate the drawer's opening",
"light the LED by pushing the button",
"Actuate the sliding door to the right side",
"make your grasp on the pink element and elevate it",
"Insert the block that's in your hold into the drawer"
],
[
"Hitch the pink unit and bend it to the right",
"reach and lift up the pink object",
"Insert the handheld block into the sliding safe",
"Propel the sliding door on the right path",
"Hoist upward the sapphire square from the sliding cabinet"
],
[
"take in the grip and lift the pink item",
"pile up the block in your hand on another block.\n\nStack up the seized block on top of another one",
"unpile the structure",
"Command the switch to brighten the light bulb",
"Push red block to your left"
],
[
"direct the pink cube leftwards",
"obtain and hoist the blue block",
"Store the gripped block inside the drawer",
"implement the drawer's shutting using the handle",
"Push the gliding door to the right"
],
[
"then pull to disengage the drawer",
"slightly depress the button to cease the LED brightness",
"swipe the pink block to your left",
"Shove the bi-fold door to the left",
"hoist the pink block upwards"
],
[
"utilize the handle to seal the drawer",
"revolve the indigo object in a clockwise direction",
"tap the switch to kill the LED illumination",
"Initiate sliding door movement towards the right",
"Uplift the rosaceous square from the sliding cabinet"
],
[
"Lay your hands on the handle",
"Push this red block to left",
"flick the switch to stop the glow",
"Uplift the cerise block from the sliding cabinet",
"Displace the seized element into the glide almirah"
],
[
"Slide the door toward the right",
"jostle the pink cube in left direction",
"Isolate and lift the blue block from the sliding cabinet",
"Deposit the clasped block into the drawer",
"hit lightly the button to end the LED radiance"
],
[
"Push the red object left",
"depress the key to ignite the LED",
"Hoist the rose block from the unit cabinet",
"Dispose of the grasped block in the drawer",
"Push the gliding door to the right"
],
[
"enact the switch to cease the light",
"Motivate the sliding door to head towards the right",
"effectuate a rightward turn with the blue part",
"tighten onto and hoist the blue block",
"position the block in your grip on top of another one.\n\nElevate the block in hand and stack on another"
],
[
"Move the sliding door to the right",
"Seize the pink piece and swivel it to the right",
"Winch up the red block",
"situate the block you're holding on top of another",
"pull it to manipulate the drawer's opening"
],
[
"Snatch the cyan object and turn it left",
"employ the toggle to cut the light",
"clutch the pink block and give it a lift",
"Displace the seized matter in the sliding enclosure",
"Shift up the red block from its sliding cabinet"
],
[
"poke the button to shut down the LED light source",
"Shift sliding gate on track to the left",
"triggering the drawer to open",
"rotate the azure object in a clockwise direction",
"make use of and lift the blue block"
],
[
"Extract the blue block from the sliding compartment",
"Transfer the clutched entity into the rolling chest",
"influence the drawer to close by operating its handle",
"navigate the pink block to the right",
"Manipulate the door and slide it to the left"
],
[
"spin the red block leftward",
"collect the pink unit and raise it",
"align the gripped block on top of another",
"Carry out a pulling action on the drawer's handle to reveal its contents",
"Nudge up the cerulean cube from the rollable locker"
],
[
"snudge the pink block towards your left",
"Tap the switch to activate the light",
"gain and lift the pink entity",
"Introduce the seized object into the drawer",
"Hoist the red block from the moving case"
],
[
"By using the handle",
"Send the sliding door towards the right direction",
"Unload the red block from the sliding case",
"Insert the block that's in your hold into the drawer",
"put out the light via switch"
],
[
"Take away the red block from the sliding hold",
"Accommodate the clutched entity in the drawer",
"press the button to initiate the LED illumination",
"prompt the handle to close the drawer",
"latch onto and elevate the blue block"
],
[
"Supervise the block motion into the drawer",
"Take up the red block from the slide-fitted compartment",
"Place the grasped object in the glide bin",
"Drive the sliding door to the right side",
"poke the button to shut down the LED light source"
],
[
"Push the right-moving sliding door.",
"Take the red block to the left",
"push the button to put out the light",
"Take out the blue block from the gliding cabinet",
"locate another block and set the one you're holding on top of it"
],
[
"Raise the rosaceous block from the sliding cabinet",
"Lodge the gripped rectangle in the gliding cloakroom",
"triggering the drawer to open",
"Fire up the bulb by operating the switch",
"obtain and hoist the blue block"
],
[
"Coordinate the sliding door to shift it to the right",
"press the button to power the LED",
"Pick up and lift the pink block from the sliding cabinet",
"Slip the grasped block into the drawer",
"Bring the pink block out from the drawer"
],
[
"jog the pink cube to the right",
"apply force to the handle to seal the drawer",
"Jerk the red block from the drawing out shelf",
"move the block in your hand to a higher place on another block",
"Glide the door to the right"
],
[
"Change the blue block's position to the left",
"use the grip to push the drawer closed",
"Use the switch to extinguish the light bulb",
"get a grip on and hoist the blue block",
"Lodge the gripped rectangle in the gliding cloakroom"
],
[
"move your hand on the handle to shut the drawer",
"Haul the red block from the sliding fixture",
"Put the held block in the slideable compartment",
"Guide the blue block towards the left",
"operate the lever to cut off illumination"
],
[
"Pick up the navy cube and turn it counter-clockwise",
"manipulate the switch to dispel the light",
"Force the door to move towards the right",
"By using the handle",
"Draw out the red block from the sliding crate"
],
[
"click the button to light up the LED",
"revolve the indigo object in a clockwise direction",
"fasten onto and elevate the blue block",
"put up the held block on top of another",
"Unsettle the red block from the gliding case"
],
[
"Reach for the handle and yank to expose the drawer",
"hit lightly the button to end the LED radiance",
"send the pink block to the right",
"Sway the sliding door towards the right",
"Guide the block to make sure it lands in the drawer"
],
[
"transport the pink block rightwards",
"Uplift the sapphire cube from the mobile drawer",
"Move your hold into the sliding bureau",
"Direct the switch to enhance the bulb's light",
"Get the sliding door to move to the right"
],
[
"Nab the pink object and rotate it to right",
"Push the sliding panel to the left side",
"activate the drawer's closure by pushing the handle",
"lightly pat the button to stop the LED glow",
"control the pink part and lift it"
],
[
"govern the drawer's closing through the handle",
"Reposition the sliding door to the right",
"click the button to illuminate the LED",
"turn the red block in the left direction",
"Secure the red block in your grasp"
],
[
"gain and lift the pink entity",
"put the block in your grasp on top of another",
"Take control of the switch to liven the bulb",
"retrieve the piece from the top",
"jostle the pink cube in left direction"
],
[
"conclude the drawer's open state by handling it.",
"Direct sliding entrance left",
"shift the pink block to the left",
"touch the button to ignite the LED light",
"Lift up the red brick from the sliding shelf"
],
[
"Guide sliding passageway to the left",
"initiate the action of pushing the red block right",
"Design the block movement so it lands in the drawer",
"press the button to sparkle the LED",
"use the grip to push the drawer closed"
],
[
"Roll the red block on its axis to the right",
"Fire up the bulb by operating the switch",
"Move the door module to the right",
"By using the handle",
"grasp tightly and lift the blue block"
],
[
"Engage the handle",
"turn the red block in the left direction",
"Manoeuvre the sliding door to the left",
"manipulate the switch to terminate the light",
"Lift the red block skywards"
],
[
"Push the sliding mechanism to the left",
"Fetch the cerulean object and spin it counter-clockwise",
"clinch and raise the blue block",
"Transfer the in-hand block into the drawer",
"Get the turquoise block from the drawer"
],
[
"Draw the handle towards you",
"Clutch the turquoise piece and flip it counter-clockwise",
"Transfer the block so that it fits in the drawer",
"Convey upwards the red block from the gliding shelf",
"Tuck the block you're holding into the drawer"
],
[
"persist in pushing the red block rightwards",
"elevate the pink cube",
"balance the block you're holding atop another",
"Make the sliding door move in the right direction",
"Extract the blue block from the sliding compartment"
],
[
"hit the button to light up the LED. \n\nTurn on the LED light by pushing the button",
"Pull the handle to get the drawer into view",
"Hoist the pink block from the sliding cabinet",
"Relocate the grasped block to the drawer",
"seize and hoist the blue block"
],
[
"engage the button stop the LED light",
"Grab onto the pink object and turn it in the left direction",
"Hoist the red block from the moving case",
"Introduce the seized object into the drawer",
"enforce the drawer's closure by handling it"
],
[
"Secure a grip around the handle and pull till the drawer opens",
"Wake up the bulb's light by pressing the switch",
"Elevate the rosy clay from the sliding cabinet",
"Take the block you're holding and put it in the drawer",
"proceed to push the red block in the right direction"
],
[
"Push the gliding doorway to the left",
"make the red piece move to your right",
"Get a firm hold on the handle and retrieve the drawer",
"softly operate the button to cease the LED light source",
"Shove the block in a manner that it fits the drawer"
],
[
"flick the switch to stop the glow",
"perform the task of moving the red block towards right",
"Obtain the blue cube from the sliding amenity",
"Park the held block within the drawer",
"Indicate the sliding door to move to the right side"
],
[
"send the pink block to the right",
"attain and uplift the pink object",
"Stash the seized object into the cabinet with sliding door",
"Control the switch to make the bulb sparkle",
"Extract the azure box from the sliding storage"
],
[
"Arrest the red block",
"Move your hold into the sliding bureau",
"push sideways the pink block",
"influence the drawer to close by operating its handle",
"Activate the LED by pushing the button"
],
[
"Slide the door on its rail to the left",
"Please carry out a rightward push on the blue block",
"Uplift the rosaceous square from the sliding cabinet",
"Store the block in your grasp into the drawer",
"Execute the act of switching on the bulb"
],
[
"propel the red block towards the right",
"Get the sliding door to move to the right",
"secure and lift the blue block",
"Stow the captured piece in the gliding storage",
"execute the closing of the drawer by handling it"
],
[
"take the blue block and give it a right-handed turn",
"Seize the handle and maneuver the drawer open",
"Spin the knob to function the bulb",
"Slide the door on its rail to the left",
"get hold of and raise the blue block"
],
[
"Elevate the red block from the sliding box",
"Insert the gripped item in the drawer",
"Activate the LED by pushing the button",
"Push the right-moving sliding door.",
"Fetch the red piece from within the drawer"
],
[
"shift over the pink cube to your left",
"direct the drawer's path to closure using its handle",
"gain and lift up the blue block",
"Haul the grasped tool into the rolling box",
"press the button to initiate the LED illumination"
],
[
"Push the red object left",
"Displace the door on guide to the left.\n\nPrompt sliding door to an eastern direction",
"Grip the drawer's handle and exert a pull force to unveil its contents",
"Pick up and lift the pink block from the sliding cabinet",
"perch the block you're holding above another block"
],
[
"push the pink block towards the right",
"Lastly",
"Store the in-hand block in the drawer",
"press the switch to ignite the LED light",
"move your hand on the handle to shut the drawer"
],
[
"Grasp the red block and swivel it to the left",
"Draw up the pink block positioned in the sliding cabinet",
"sit the picked block over another block",
"disentangle the intertwined blocks",
"Pick up the red block"
],
[
"Usher the sliding door towards the right side",
"Make sure to move the blue block in a rightward motion",
"activate the switch to end the brightness",
"Lead the block making sure it lands in the drawer",
"Clear the red block from the sliding rack"
],
[
"Make a firm clasp of the handle and pull it to unveil the drawer",
"bring up the pink element",
"Deliver the object you're holding into the gliding locker",
"Make the door slide to the left",
"Change the position of the red block to the right"
],
[
"gently handle the button to switch off the LED glow",
"then draw back to unseal the drawer",
"take the red block and revolve it towards the left",
"Get the red block in your hold",
"overlay the clung block on another"
],
[
"Get hold of the pink object and yeild it to the left",
"influence the drawer to close by operating its handle",
"press the switch to illuminate the LED bulb",
"Manipulate the door and slide it to the left",
"Rearrange the red block from its sliding stay"
],
[
"Slide and position the door to the right",
"Collect the red block",
"Keep the handled entity inside the drawer",
"Catch the cobalt entity and roll it to the left",
"push lightly on the switch to terminate the LED brightness"
],
[
"Make a pull movement on the handle to facilitate drawer's opening",
"Realign the blue block to be on the left side",
"Push the gliding door towards left side",
"Move the switch to enable the bulb",
"Lift the rosy block from the sliding cabinet"
],
[
"move the pink block leftwards",
"Push the mobile door to the left",
"clutch and uplift the pink item",
"Put the held block in the slideable compartment",
"use the switch to turn down the illumination"
],
[
"Capture the pink object and revolve it clockwise",
"influence the drawer to close by operating its handle",
"use the controller to shut off the light",
"get a fix on and raise the blue block.",
"Place the grasped brick into slide storage"
],
[
"Employ the handle and tug to eject the drawer",
"set off the LED light by hitting the switch",
"locate the red block and slide it to the right",
"Move the movable door to the left",
"Lift the cerise block from within the sliding cabinet."
],
[
"gently prod the button to turn off the LED glow",
"Draw the cerulean cube from the swinging cupboard",
"release the block you're holding onto another block",
"Apply force to the sliding door moving it to the right",
"eliminate the superimposed block"
],
[
"Uplift the sapphire cube from the mobile drawer",
"locate another block and stack the one in your grip on top of it",
"oust the piled element",
"Displace the door on guide to the left.\n\nPrompt sliding door to an eastern direction",
"Hold the cerulean cube and revolve it leftwards"
],
[
"Grasp the red block from the sliding rack",
"perch the block you're holding above another block",
"handle the drawer to make it close",
"dispose of the tower",
"Move the red shaped block left"
],
[
"Shift moveable wall to left side",
"Finally",
"Design the block movement so it lands in the drawer",
"push the drawer's handle to end its openness",
"Uplift the rosaceous square from the sliding cabinet"
],
[
"direct the drawer's path to closure using its handle",
"Slide the red block left",
"Hoist up the pink block kept in the sliding cabinet",
"drop the block that you've gripped onto another block",
"Employ the use of the switch to light the bulb"
],
[
"Deliver the blue cube from the track cabinet upwards.\n\nPull the blue block from the glide cabinet",
"Move the in-hand square into the drawer",
"handle the switch to disable the LED light",
"Move the red block to the left",
"Move the door horizontally right"
],
[
"Shift the block looking for its place in the drawer",
"Uplift the rosy rectangular solid from the unit cabinet",
"Insert the block that's in your hold into the drawer",
"take charge of closing the drawer by pushing the handle.\n\nCommand the drawer to close by pushing on the handle",
"Involve the switch to light the bulb"
],
[
"Scoop up the cerulean block from the wooden track cabinet",
"Lodge the seized unit in the rolling curricle",
"engage the button to halt the LED's glow",
"Move the movable door to the left",
"Embrace the pink item and pivot it leftwards"
],
[
"Tug the handle to make the drawer slide out",
"depress the button to set off the LED light",
"capture and lift the blue block",
"Stash the seized object into the cabinet with sliding door",
"Shift the pink block to the right"
],
[
"Move the block of red color leftward.",
"Slide gateway door to the left",
"Adjust the control to initiate the light",
"catch hold of and raise the blue block",
"Put the object in hand into the glide cabinet"
],
[
"take the red block and revolve it towards the left",
"Hook your fingers around the handle and pull to uncover the drawer's contents",
"get a grip on and hoist the blue block",
"Transfer the item in your grip to the sliding closet",
"Direct sliding plank to left"
],
[
"Change the position of sliding door to the left",
"acquire the pink block",
"Put the held block in the slideable compartment",
"push the drawer's handle to end its openness",
"activate the toggle to cut out the light"
],
[
"switch on the LED by tapping the button",
"collect the pink unit and raise it",
"Position the snatched particle in the sliding sideboard",
"shift the orientation of the red block to the left",
"enforce the end of the drawer's openness using the handle"
],
[
"Engender the bulb's light by rotating the switch knob",
"Push the gliding door towards left side",
"The blue block should be shifted on the left",
"Transmit the block making certain it enters the drawer",
"Drag out the red block from the sliding shelf"
],
[
"knock the button to shut off the LED glow",
"Direct sliding barrier towards left",
"Roll the red block to the left",
"Take in hand the red block",