-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathport_8009.txt
942 lines (941 loc) · 254 KB
/
port_8009.txt
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
[UnityMemory] Configuration Parameters - Can be set up in boot.config
"memorysetup-bucket-allocator-granularity=16"
"memorysetup-bucket-allocator-bucket-count=8"
"memorysetup-bucket-allocator-block-size=4194304"
"memorysetup-bucket-allocator-block-count=1"
"memorysetup-main-allocator-block-size=16777216"
"memorysetup-thread-allocator-block-size=16777216"
"memorysetup-gfx-main-allocator-block-size=16777216"
"memorysetup-gfx-thread-allocator-block-size=16777216"
"memorysetup-cache-allocator-block-size=4194304"
"memorysetup-typetree-allocator-block-size=2097152"
"memorysetup-profiler-bucket-allocator-granularity=16"
"memorysetup-profiler-bucket-allocator-bucket-count=8"
"memorysetup-profiler-bucket-allocator-block-size=4194304"
"memorysetup-profiler-bucket-allocator-block-count=1"
"memorysetup-profiler-allocator-block-size=16777216"
"memorysetup-profiler-editor-allocator-block-size=1048576"
"memorysetup-temp-allocator-size-main=4194304"
"memorysetup-job-temp-allocator-block-size=2097152"
"memorysetup-job-temp-allocator-block-size-background=1048576"
"memorysetup-job-temp-allocator-reduction-small-platforms=262144"
"memorysetup-temp-allocator-size-background-worker=32768"
"memorysetup-temp-allocator-size-job-worker=262144"
"memorysetup-temp-allocator-size-preload-manager=262144"
"memorysetup-temp-allocator-size-nav-mesh-worker=65536"
"memorysetup-temp-allocator-size-audio-worker=65536"
"memorysetup-temp-allocator-size-cloud-worker=32768"
"memorysetup-temp-allocator-size-gfx=262144"
Mono path[0] = '/data/vision/torralba/frames/data_acquisition/SyntheticStories/website/release/simulator/v2.0/online_wah/online_wah_exec_2/linux_exec.online_wah_2_Data/Managed'
Mono config path = '/data/vision/torralba/frames/data_acquisition/SyntheticStories/website/release/simulator/v2.0/online_wah/online_wah_exec_2/linux_exec.online_wah_2_Data/MonoBleedingEdge/etc'
Can't get home directory!
Unable to load player prefs
Can't get home directory!
Unable to synchronize player prefs
Initialize engine version: 2021.2.14f1 (bcb93e5482d2)
[Subsystems] Discovering subsystems at path /data/vision/torralba/frames/data_acquisition/SyntheticStories/website/release/simulator/v2.0/online_wah/online_wah_exec_2/linux_exec.online_wah_2_Data/UnitySubsystems
Forcing GfxDevice: Null
GfxDevice: creating device client; threaded=0; jobified=0
NullGfxDevice:
Version: NULL 1.0 [1.0]
Renderer: Null Device
Vendor: Unity Technologies
FMOD failed to initialize the output device.: "Error initializing output device. " (60)
Forced to initialize FMOD to to the device driver's system output rate 48000, this may impact performance and/or give inconsistent experiences compared to selected sample rate 48000
FMOD failed to initialize the output device.: "Error initializing output device. " (60)
FMOD initialized on nosound output
Begin MonoManager ReloadAssembly
- Completed reload, in 0.208 seconds
ERROR: Shader Sprites/Default shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
ERROR: Shader Sprites/Mask shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
ERROR: Shader Legacy Shaders/VertexLit shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
WARNING: Shader Unsupported: 'Standard' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
ERROR: Shader Standard shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
WARNING: Shader Unsupported: 'Standard' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
ERROR: Shader Legacy Shaders/Transparent/VertexLit shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
WARNING: Shader Unsupported: 'Legacy Shaders/Transparent/Specular' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
ERROR: Shader Legacy Shaders/Transparent/Specular shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
WARNING: Shader Unsupported: 'Legacy Shaders/Transparent/Specular' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
WARNING: Shader Unsupported: 'Legacy Shaders/Diffuse' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
ERROR: Shader Legacy Shaders/Diffuse shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
WARNING: Shader Unsupported: 'Legacy Shaders/Diffuse' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
WARNING: Shader Unsupported: 'Legacy Shaders/Specular' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
ERROR: Shader Legacy Shaders/Specular shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
WARNING: Shader Unsupported: 'Legacy Shaders/Specular' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
WARNING: Shader Unsupported: 'Standard (Specular setup)' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
ERROR: Shader Standard (Specular setup) shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
WARNING: Shader Unsupported: 'Standard (Specular setup)' - All subshaders removed
WARNING: Shader Did you use #pragma only_renderers and omit this platform?
WARNING: Shader If subshaders removal was intentional, you may have forgotten turning Fallback off?
UnloadTime: 1.629916 ms
Can't get home directory!
Unable to synchronize player prefs
ERROR: Shader Legacy Shaders/Particles/Additive (Soft) shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
ERROR: Shader Unlit/Texture shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
This custom render path shader needs to have at least 1 passes.
Could not find material Hidden/VideoDecode. Make sure the Video shaders are included in your build, in the Built-in Shader Settings section of the Graphics Settings.
Could not find video decode shader pass YCbCr_To_RGB1 in shader <not found>
Could not find video decode shader pass YCbCrA_To_RGBAFull in shader <not found>
Could not find video decode shader pass YCbCrA_To_RGBA in shader <not found>
Could not find video decode shader pass Flip_RGBA_To_RGBA in shader <not found>
Could not find video decode shader pass Flip_RGBASplit_To_RGBA in shader <not found>
This custom render path shader needs to have at least 1 passes.
Could not find material Hidden/VideoComposite. Make sure the Video shaders are included in your build, in the Built-in Shader Settings section of the Graphics Settings.
Could not find video decode shader pass Default in shader <not found>
HEre
HEre
HEre
HEre
Waiting for request
Received request: {"id": "1652815659.4620428", "action": "idle"}
Processing
Waiting for request
Received request: {"id": "1652815681.0878177", "action": "reset", "intParams": [3]}
Processing
Unloading 6 Unused Serialized files (Serialized files now loaded: 0)
UnloadTime: 31.539662 ms
Unloading 1375 unused Assets to reduce memory usage. Loaded Objects now: 7935.
Total: 14.491897 ms (FindLiveObjects: 1.777675 ms CreateObjectMapping: 0.854034 ms MarkObjects: 7.177253 ms DeleteObjects: 4.676961 ms)
ERROR: Shader Legacy Shaders/Particles/Additive (Soft) shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
ERROR: Shader Unlit/Texture shader is not supported on this GPU (none of subshaders/fallbacks are suitable)
HEre
HEre
HEre
HEre
Waiting for request
Processing
HEre
HEre
Waiting for request
Received request: {"id": "1652815681.8102996", "action": "expand_scene", "stringParams": ["{\"randomize\": false, \"random_seed\": -1, \"animate_character\": false, \"ignore_obstacles\": false, \"transfer_transform\": true}", "{\"nodes\": [{\"id\": 11, \"category\": \"Rooms\", \"class_name\": \"kitchen\", \"prefab_name\": \"PRE_ROO_Kitchen_01\", \"obj_transform\": {\"position\": [0.0, 0.0, 0.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.25, 1.25, 0.0], \"size\": [8.0, 3.0, 8.0]}, \"properties\": [], \"states\": []}, {\"id\": 12, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Square_01_01\", \"obj_transform\": {\"position\": [2.5, 0.0, 2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.25, 0.0, 2.5], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 13, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Square_01_01\", \"obj_transform\": {\"position\": [2.5, 0.0, 0.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.25, 0.0, 0.0], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 14, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Square_01_01\", \"obj_transform\": {\"position\": [5.0, 0.0, 0.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.75, 0.0, 0.0], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 15, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Square_01_01\", \"obj_transform\": {\"position\": [5.0, 0.0, 2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.75, 0.0, 2.5], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 16, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Square_01_01\", \"obj_transform\": {\"position\": [2.5, 0.0, -2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.25, 0.0, -2.5], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 17, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Square_01_01\", \"obj_transform\": {\"position\": [5.0, 0.0, -2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.75, 0.0, -2.5], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 18, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Square_01_01\", \"obj_transform\": {\"position\": [0.0, 0.0, 2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.25, 0.0, 2.5], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 19, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Square_01_01\", \"obj_transform\": {\"position\": [0.0, 0.0, -2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.25, 0.0, -2.5], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 20, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Square_01_01\", \"obj_transform\": {\"position\": [0.0, 0.0, 0.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.25, 0.0, 0.0], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 21, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [0.0, 0.0, 0.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.25, 2.50000024, -9.059906e-06], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 22, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [0.0, 0.0, 2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.25, 2.50000024, 2.499991], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 23, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [2.5, 0.0, 2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.25, 2.50000024, 2.499991], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 24, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [2.5, 0.0, 0.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.25, 2.50000024, -9.059906e-06], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 25, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [5.0, 0.0, 0.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.75, 2.50000024, -9.059906e-06], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 26, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [5.0, 0.0, 2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.75, 2.50000024, 2.499991], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 27, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [2.5, 0.0, -2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.25, 2.50000024, -2.500009], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 28, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [0.0, 0.0, -2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.25, 2.50000024, -2.500009], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 29, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [5.0, 0.0, -2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.75, 2.50000024, -2.500009], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 30, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Corner_02_04_01\", \"obj_transform\": {\"position\": [-1.25, 0.0, 3.75], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.24999833, 1.25, 2.5], \"size\": [2.50000429, 2.500009, 2.50000477]}, \"properties\": [], \"states\": []}, {\"id\": 31, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Corner_02_04_01\", \"obj_transform\": {\"position\": [5.0, 0.0, 2.5], \"rotation\": [0.0, -1.0, 0.0, 2.06476813e-07], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.75, 1.25, 2.49999857], \"size\": [2.50000525, 2.500009, 2.50000477]}, \"properties\": [], \"states\": []}, {\"id\": 32, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Straight_04_01\", \"obj_transform\": {\"position\": [5.0, 0.0, 0.0], \"rotation\": [0.0, -1.0, 0.0, -4.371139e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.97, 1.24999988, 4.765749e-06], \"size\": [0.06000093, 2.50000882, 2.50000954]}, \"properties\": [], \"states\": []}, {\"id\": 33, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_TIL_Panel_01\", \"obj_transform\": {\"position\": [-2.431, 1.075, 2.193], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.43685746, 1.40975678, 2.19299865], \"size\": [0.011715238, 0.669524431, 3.00755262]}, \"properties\": [], \"states\": []}, {\"id\": 34, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_TIL_Panel_01\", \"obj_transform\": {\"position\": [-2.431, 1.075, -1.839], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.43685746, 1.40975678, -1.83900142], \"size\": [0.011715238, 0.669524431, 3.00755262]}, \"properties\": [], \"states\": []}, {\"id\": 35, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Straight_04_01\", \"obj_transform\": {\"position\": [-2.5, 0.0, 0.0], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.46999979, 1.24999988, -4.76837158e-06], \"size\": [0.06000071, 2.50000882, 2.50000954]}, \"properties\": [], \"states\": []}, {\"id\": 36, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Window_02_04_01\", \"obj_transform\": {\"position\": [1.25, 0.0, -3.75], \"rotation\": [0.0, -0.7071069, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.25000882, 1.24999344, -3.72000146], \"size\": [2.50001764, 2.50002646, 0.0599979721]}, \"properties\": [], \"states\": []}, {\"id\": 37, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Doorway_04_01\", \"obj_transform\": {\"position\": [1.25, 0.0, 3.75], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.24999547, 1.24999571, 3.72000146], \"size\": [2.5000093, 2.50000954, 0.0600038767]}, \"properties\": [], \"states\": []}, {\"id\": 38, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Corner_02_04_01\", \"obj_transform\": {\"position\": [-2.5, 0.0, -2.5], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.25, 1.25, -2.499998], \"size\": [2.50000429, 2.500009, 2.50000381]}, \"properties\": [], \"states\": []}, {\"id\": 39, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Doorway_corner_01_04_04\", \"obj_transform\": {\"position\": [5.0, 0.0, -2.5], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.75001431, 1.2500093, -2.49999976], \"size\": [2.5000453, 2.50002766, 2.50000072]}, \"properties\": [], \"states\": []}, {\"id\": 40, \"category\": \"Doors\", \"class_name\": \"door\", \"prefab_name\": \"PRE_DOO_Door_01_05\", \"obj_transform\": {\"position\": [0.8029604, 0.995, 3.685], \"rotation\": [0.0, -0.9785831, 0.0, 0.205852628], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.23700392, 0.5, 3.747357], \"size\": [0.9283975, 1.0, 0.9283975]}, \"properties\": [\"CAN_OPEN\"], \"states\": [\"OPEN\"]}, {\"id\": 41, \"category\": \"Doors\", \"class_name\": \"doorjamb\", \"prefab_name\": \"PRE_DOO_Doorjamb_03\", \"obj_transform\": {\"position\": [1.237, 0.0, 3.747], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.23700392, 1.029126, 3.747357], \"size\": [0.928397536, 2.058256, 0.122323155]}, \"properties\": [], \"states\": []}, {\"id\": 42, \"category\": \"Windows\", \"class_name\": \"window\", \"prefab_name\": \"PRE_Window_02_01\", \"obj_transform\": {\"position\": [1.246, 0.0, -3.754], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.2459991, 1.50000024, -3.75406575], \"size\": [2.112548, 1.02450514, 0.113748394]}, \"properties\": [\"CAN_OPEN\"], \"states\": [\"CLOSED\"]}, {\"id\": 43, \"category\": \"Lamps\", \"class_name\": \"ceilinglamp\", \"prefab_name\": \"PRE_LAM_Ceiling_lamp_02_01\", \"obj_transform\": {\"position\": [1.424, 0.0, 1.141], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.424, 2.22476625, 1.141], \"size\": [0.531659365, 0.550924063, 0.531659365]}, \"properties\": [], \"states\": []}, {\"id\": 44, \"category\": \"Lamps\", \"class_name\": \"ceilinglamp\", \"prefab_name\": \"PRE_LAM_Ceiling_lamp_02_01\", \"obj_transform\": {\"position\": [1.424, 0.0, -1.231], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.424, 2.22476625, -1.231], \"size\": [0.531659365, 0.550924063, 0.531659365]}, \"properties\": [], \"states\": []}, {\"id\": 45, \"category\": \"Lamps\", \"class_name\": \"walllamp\", \"prefab_name\": \"PRE_LAM_Wall_lamp_01_01\", \"obj_transform\": {\"position\": [-2.44985533, 1.57204747, -0.5565634], \"rotation\": [0.7070055, 0.0, 0.0, 0.7072081], \"scale\": [0.5815978, 0.5815977, 0.5815976]}, \"bounding_box\": {\"center\": [-2.40002322, 1.57225847, 0.17043376], \"size\": [0.09966432, 0.128001377, 0.5016328]}, \"properties\": [], \"states\": []}, {\"id\": 46, \"category\": \"Food\", \"class_name\": \"milk\", \"prefab_name\": \"FMGP_PRE_Milk_1024\", \"obj_transform\": {\"position\": [1.384, 0.811, -0.826], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [1.384, 0.9285413, -0.826000452], \"size\": [0.120123953, 0.2350826, 0.120124929]}, \"properties\": [\"GRABBABLE\", \"DRINKABLE\", \"POURABLE\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 49, \"category\": \"Food\", \"class_name\": \"bananas\", \"prefab_name\": \"FMGP_PRE_Bananas_1024\", \"obj_transform\": {\"position\": [-2.06396174, 1.08789182, -1.87522972], \"rotation\": [-0.00744920131, -0.002676542, -0.09877255, 0.995078564], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.08242321, 1.13732529, -1.857943], \"size\": [0.227994919, 0.136801243, 0.274744034]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 50, \"category\": \"Food\", \"class_name\": \"lime\", \"prefab_name\": \"FMGP_PRE_Lime_1024\", \"obj_transform\": {\"position\": [-1.94987559, 1.09732556, -1.97228527], \"rotation\": [0.212750077, 0.0, 0.0, 0.9771067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.94987559, 1.1251806, -1.95955157], \"size\": [0.06836161, 0.0841319859, 0.08764055]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 51, \"category\": \"Food\", \"class_name\": \"peach\", \"prefab_name\": \"FMGP_PRE_Peach_1024\", \"obj_transform\": {\"position\": [-1.895862, 1.10737967, -1.84208739], \"rotation\": [0.15995273, 0.0334494822, 0.201780975, 0.9657022], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.90918434, 1.13786829, -1.830754], \"size\": [0.0981158, 0.108546972, 0.08738087]}, \"properties\": [], \"states\": []}, {\"id\": 52, \"category\": \"Food\", \"class_name\": \"peach\", \"prefab_name\": \"FMGP_PRE_Peach_1024\", \"obj_transform\": {\"position\": [-1.89936316, 1.12494242, -1.93126881], \"rotation\": [0.163131416, -0.133657366, -0.0223127045, 0.977254331], \"scale\": [0.863431454, 0.863431454, 0.863431454]}, \"bounding_box\": {\"center\": [-1.899363, 1.153646, -1.92141128], \"size\": [0.07270728, 0.08102304, 0.0884800851]}, \"properties\": [], \"states\": []}, {\"id\": 53, \"category\": \"Food\", \"class_name\": \"plum\", \"prefab_name\": \"FMGP_PRE_Plum_1024\", \"obj_transform\": {\"position\": [-2.00701427, 1.14047086, -1.87394392], \"rotation\": [0.147337615, 0.171003565, 0.635892153, 0.7380316], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.038235, 1.14566827, -1.85865533], \"size\": [0.09443041, 0.06564791, 0.0843845159]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 54, \"category\": \"Food\", \"class_name\": \"plum\", \"prefab_name\": \"FMGP_PRE_Plum_1024\", \"obj_transform\": {\"position\": [-1.991759, 1.13488328, -2.00790739], \"rotation\": [0.0, 0.0, 0.661574364, 0.7498796], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.02663422, 1.13926423, -2.00790739], \"size\": [0.07671389, 0.06419357, 0.0558672436]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 55, \"category\": \"Food\", \"class_name\": \"dishbowl\", \"prefab_name\": \"FMGP_PRE_Wooden_bowl_1024\", \"obj_transform\": {\"position\": [-2.02022743, 1.07651067, -1.87669265], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.37713337, 1.37713337, 1.37713337]}, \"bounding_box\": {\"center\": [-2.02022743, 1.11937141, -1.87669265], \"size\": [0.348283, 0.08572138, 0.348283]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 56, \"category\": \"Food\", \"class_name\": \"creamybuns\", \"prefab_name\": \"SMGP_PRE_Creamy_buns_1024\", \"obj_transform\": {\"position\": [-2.065436, 1.07651067, -1.328917], \"rotation\": [0.0, -0.316252619, 0.0, 0.948675036], \"scale\": [0.30920592, 0.309205979, 0.309205979]}, \"bounding_box\": {\"center\": [-2.06543565, 1.13854337, -1.32891726], \"size\": [0.235178977, 0.124066733, 0.274914443]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"CUTTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 57, \"category\": \"Food\", \"class_name\": \"chocolatesyrup\", \"prefab_name\": \"SMGP_PRE_Chocolate_syrup_1024\", \"obj_transform\": {\"position\": [1.08481026, 0.807798, -0.196261823], \"rotation\": [0.0, -0.395569235, 0.0, 0.9184362], \"scale\": [0.236785457, 0.236785471, 0.236785471]}, \"bounding_box\": {\"center\": [1.0848105, 0.90611434, -0.196262062], \"size\": [0.1250376, 0.197500154, 0.123310074]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"CUTTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 58, \"category\": \"Food\", \"class_name\": \"cereal\", \"prefab_name\": \"SMGP_PRE_Cereal_1024\", \"obj_transform\": {\"position\": [1.42167759, 0.8114108, -0.617101848], \"rotation\": [0.0, -0.174490035, 0.0, 0.984658957], \"scale\": [0.246421278, 0.246421248, 0.246421233]}, \"bounding_box\": {\"center\": [1.42167783, 0.955016136, -0.6171027], \"size\": [0.2460767, 0.28721112, 0.157946289]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 59, \"category\": \"Food\", \"class_name\": \"candybar\", \"prefab_name\": \"SMGP_PRE_Candy_bar_1024\", \"obj_transform\": {\"position\": [1.63785863, 0.8111569, -0.8358898], \"rotation\": [0.0, -0.420077324, 0.0, 0.907488346], \"scale\": [0.280059874, 0.280059934, 0.280059934]}, \"bounding_box\": {\"center\": [1.63785863, 0.826859057, -0.8358898], \"size\": [0.188725173, 0.0314048, 0.172877476]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 60, \"category\": \"Food\", \"class_name\": \"cutlets\", \"prefab_name\": \"SMGP_PRE_Cutlets_1024\", \"obj_transform\": {\"position\": [-1.866, 1.07016385, 0.911], \"rotation\": [0.0, 0.293042332, 0.0, 0.9560995], \"scale\": [0.29292807, 0.2929281, 0.29292807]}, \"bounding_box\": {\"center\": [-1.86600018, 1.10024738, 0.9109999], \"size\": [0.319978, 0.0601683743, 0.352518916]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 62, \"category\": \"Food\", \"class_name\": \"pancake\", \"prefab_name\": \"DHP_PRE_Pancakes_1024\", \"obj_transform\": {\"position\": [1.35078907, 0.8371885, -0.34008953], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.346208334, 0.346208364, 0.346208364]}, \"bounding_box\": {\"center\": [1.35078907, 0.8781986, -0.34008953], \"size\": [0.1986391, 0.08202022, 0.198639125]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"CUTTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 63, \"category\": \"Food\", \"class_name\": \"crackers\", \"prefab_name\": \"SMGP_PRE_Salt_crackers_1024\", \"obj_transform\": {\"position\": [-2.214634, 1.0766083, -0.747943044], \"rotation\": [0.0, 0.6272869, 0.0, 0.778788269], \"scale\": [0.2929281, 0.2929281, 0.2929281]}, \"bounding_box\": {\"center\": [-2.21463418, 1.11131835, -0.7479431], \"size\": [0.1548538, 0.06942015, 0.305294484]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 64, \"category\": \"Food\", \"class_name\": \"pear\", \"prefab_name\": \"FMGP_PRE_Pear_1024\", \"obj_transform\": {\"position\": [1.353816, 0.859255731, 0.01415819], \"rotation\": [-0.752660453, -0.17147471, -0.12614958, 0.6230449], \"scale\": [0.7397794, 0.7397795, 0.7397795]}, \"bounding_box\": {\"center\": [1.38164568, 0.8482112, -0.04578859], \"size\": [0.124308914, 0.101695254, 0.163693875]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 65, \"category\": \"Food\", \"class_name\": \"peach\", \"prefab_name\": \"FMGP_PRE_Peach_1024\", \"obj_transform\": {\"position\": [1.34356356, 0.8226397, -0.07899294], \"rotation\": [0.0, 0.0, 0.154336885, 0.988018334], \"scale\": [0.976427, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [1.3328439, 0.8561146, -0.07899294], \"size\": [0.0865443, 0.08779843, 0.06836161]}, \"properties\": [], \"states\": []}, {\"id\": 66, \"category\": \"Food\", \"class_name\": \"crackers\", \"prefab_name\": \"SMGP_PRE_Salt_crackers_1024\", \"obj_transform\": {\"position\": [3.1453, 1.2827, -3.5422], \"rotation\": [0.0, -0.2437721, 0.0, 0.96983254], \"scale\": [0.201127768, 0.201127738, 0.201127738]}, \"bounding_box\": {\"center\": [3.1453, 1.30653226, -3.5422], \"size\": [0.2073316, 0.0476646572, 0.152128547]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 68, \"category\": \"Furniture\", \"class_name\": \"chair\", \"prefab_name\": \"PRE_FUR_Kitchen_chair_01_01\", \"obj_transform\": {\"position\": [1.87, 0.0, 0.1], \"rotation\": [0.0, 1.0, 0.0, -4.371139e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.892, 0.495000035, 0.1], \"size\": [0.5236001, 0.8415001, 0.401199967]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"SITTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 69, \"category\": \"Furniture\", \"class_name\": \"chair\", \"prefab_name\": \"PRE_FUR_Kitchen_chair_01_01\", \"obj_transform\": {\"position\": [1.87, 0.0, -0.54], \"rotation\": [0.0, 1.0, 0.0, -4.371139e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.892, 0.495000035, -0.54], \"size\": [0.5236001, 0.8415001, 0.401199967]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"SITTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 70, \"category\": \"Furniture\", \"class_name\": \"chair\", \"prefab_name\": \"PRE_FUR_Kitchen_chair_01_01\", \"obj_transform\": {\"position\": [0.8, 0.0, 0.1], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [0.778, 0.495000035, 0.1], \"size\": [0.523600042, 0.8415001, 0.401200026]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"SITTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 71, \"category\": \"Furniture\", \"class_name\": \"chair\", \"prefab_name\": \"PRE_FUR_Kitchen_chair_01_01\", \"obj_transform\": {\"position\": [0.8, 0.0, -0.54], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [0.778, 0.495000035, -0.54], \"size\": [0.523600042, 0.8415001, 0.401200026]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"SITTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 72, \"category\": \"Furniture\", \"class_name\": \"kitchentable\", \"prefab_name\": \"PRE_FUR_Kitchen_table_02_01\", \"obj_transform\": {\"position\": [1.36, 0.0, -0.24], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.36, 0.404, -0.24], \"size\": [1.22600007, 0.808, 1.67000008]}, \"properties\": [\"SURFACES\", \"MOVABLE\"], \"states\": []}, {\"id\": 73, \"category\": \"Furniture\", \"class_name\": \"kitchencabinet\", \"prefab_name\": \"kitchen_cabinet\", \"obj_transform\": {\"position\": [-2.0732, 2.099, -1.0853], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.239623, 2.10015035, -0.719800055], \"size\": [0.402153015, 0.6996989, 0.758]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 74, \"category\": \"Furniture\", \"class_name\": \"kitchencabinet\", \"prefab_name\": \"kitchen_cabinet\", \"obj_transform\": {\"position\": [-2.073, 2.099, -1.8337], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.23942327, 2.10015035, -1.4682], \"size\": [0.402153969, 0.6996989, 0.758000135]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 75, \"category\": \"Furniture\", \"class_name\": \"kitchencabinet\", \"prefab_name\": \"kitchen_cabinet\", \"obj_transform\": {\"position\": [-2.073, 2.099, -2.5843], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.23942327, 2.10015035, -2.2188], \"size\": [0.402153969, 0.6996989, 0.7579999]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 76, \"category\": \"Furniture\", \"class_name\": \"kitchencabinet\", \"prefab_name\": \"kitchen_cabinet\", \"obj_transform\": {\"position\": [-2.073, 2.099, -3.3311], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.23942327, 2.10015035, -2.9656], \"size\": [0.402153969, 0.6996989, 0.7580004]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 77, \"category\": \"Furniture\", \"class_name\": \"kitchencabinet\", \"prefab_name\": \"kitchen_cabinet\", \"obj_transform\": {\"position\": [-2.0732, 2.099, 2.9467], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.239623, 2.10015035, 3.3122], \"size\": [0.402153015, 0.6996989, 0.7580004]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 78, \"category\": \"Furniture\", \"class_name\": \"kitchencabinet\", \"prefab_name\": \"kitchen_cabinet\", \"obj_transform\": {\"position\": [-2.073, 2.099, 2.19830012], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.23942327, 2.10015035, 2.5638], \"size\": [0.402153969, 0.6996989, 0.7579999]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 79, \"category\": \"Furniture\", \"class_name\": \"kitchencabinet\", \"prefab_name\": \"kitchen_cabinet\", \"obj_transform\": {\"position\": [-2.073, 2.099, 1.4477], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.23942327, 2.10015035, 1.8132], \"size\": [0.402153969, 0.6996989, 0.7579999]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 80, \"category\": \"Furniture\", \"class_name\": \"kitchencabinet\", \"prefab_name\": \"kitchen_cabinet\", \"obj_transform\": {\"position\": [-2.073, 2.099, 0.7009001], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.23942327, 2.10015035, 1.0664], \"size\": [0.402153969, 0.6996989, 0.7579999]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 81, \"category\": \"Furniture\", \"class_name\": \"kitchencounter\", \"prefab_name\": \"PRE_FUR_Kitchen_counter_01_12\", \"obj_transform\": {\"position\": [-2.032, 0.0, 2.193], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.053, 0.52, 2.193], \"size\": [0.77, 1.05, 3.014]}, \"properties\": [\"SURFACES\"], \"states\": [\"CLOSED\"]}, {\"id\": 82, \"category\": \"Furniture\", \"class_name\": \"kitchencounterdrawer\", \"prefab_name\": \"HSHP_MOD_Kitchen_counter_drawer_01\", \"obj_transform\": {\"position\": [-2.058, 0.225, 2.193], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.035, 0.356, 2.193], \"size\": [0.712, 0.272, 0.982000053]}, \"properties\": [], \"states\": []}, {\"id\": 83, \"category\": \"Furniture\", \"class_name\": \"kitchencounterdrawer\", \"prefab_name\": \"HSHP_MOD_Kitchen_counter_drawer_02\", \"obj_transform\": {\"position\": [-2.058, 0.504, 2.193], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.035, 0.635, 2.193], \"size\": [0.712, 0.272, 0.982000053]}, \"properties\": [], \"states\": []}, {\"id\": 84, \"category\": \"Furniture\", \"class_name\": \"kitchencounterdrawer\", \"prefab_name\": \"HSHP_MOD_Kitchen_counter_drawer_03\", \"obj_transform\": {\"position\": [-2.058, 0.504, 3.1888], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.035, 0.635, 3.1888], \"size\": [0.712, 0.272, 0.982000053]}, \"properties\": [], \"states\": []}, {\"id\": 85, \"category\": \"Furniture\", \"class_name\": \"kitchencounterdrawer\", \"prefab_name\": \"HSHP_MOD_Kitchen_counter_drawer_04\", \"obj_transform\": {\"position\": [-2.058, 0.225, 3.1888], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.035, 0.356, 3.1888], \"size\": [0.712, 0.272, 0.982000053]}, \"properties\": [], \"states\": []}, {\"id\": 86, \"category\": \"Furniture\", \"class_name\": \"kitchencounterdrawer\", \"prefab_name\": \"HSHP_MOD_Kitchen_counter_drawer_05\", \"obj_transform\": {\"position\": [-2.058, 0.779, 3.18900013], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.035, 0.909999967, 3.18900013], \"size\": [0.712, 0.272, 0.982000053]}, \"properties\": [], \"states\": []}, {\"id\": 87, \"category\": \"Furniture\", \"class_name\": \"kitchencounterdrawer\", \"prefab_name\": \"HSHP_MOD_Kitchen_counter_drawer_06\", \"obj_transform\": {\"position\": [-2.058, 0.779, 1.20100009], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.035, 0.909999967, 1.20100009], \"size\": [0.712, 0.272, 0.982000053]}, \"properties\": [], \"states\": []}, {\"id\": 88, \"category\": \"Furniture\", \"class_name\": \"kitchencounterdrawer\", \"prefab_name\": \"HSHP_MOD_Kitchen_counter_drawer_07\", \"obj_transform\": {\"position\": [-2.058, 0.225, 1.20100009], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.035, 0.356, 1.20100009], \"size\": [0.712, 0.272, 0.982000053]}, \"properties\": [], \"states\": []}, {\"id\": 89, \"category\": \"Furniture\", \"class_name\": \"kitchencounterdrawer\", \"prefab_name\": \"HSHP_MOD_Kitchen_counter_drawer_08\", \"obj_transform\": {\"position\": [-2.058, 0.504, 1.20100009], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.035, 0.635, 1.20100009], \"size\": [0.712, 0.272, 0.982000053]}, \"properties\": [], \"states\": []}, {\"id\": 90, \"category\": \"Furniture\", \"class_name\": \"sink\", \"prefab_name\": \"Sink\", \"obj_transform\": {\"position\": [-2.0, 0.9, 2.2], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.03, 0.01, 0.06]}, \"bounding_box\": {\"center\": [-2.0, 0.9, 2.2], \"size\": [0.299999982, 2.220446e-18, 0.599999964]}, \"properties\": [\"RECIPIENT\", \"CONTAINERS\"], \"states\": []}, {\"id\": 91, \"category\": \"Furniture\", \"class_name\": \"faucet\", \"prefab_name\": \"Faucet\", \"obj_transform\": {\"position\": [-2.332, 1.1, 2.223], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.332, 1.1, 2.223], \"size\": [0.0999999046, 0.0999999046, 0.0999999046]}, \"properties\": [\"HAS_SWITCH\"], \"states\": [\"OFF\"]}, {\"id\": 92, \"category\": \"Furniture\", \"class_name\": \"kitchencounter\", \"prefab_name\": \"PRE_FUR_Kitchen_counter_02_12\", \"obj_transform\": {\"position\": [-2.034, 0.006, -1.839], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.05499983, 0.525999963, -1.839], \"size\": [0.77, 1.05, 3.014]}, \"properties\": [\"SURFACES\"], \"states\": [\"CLOSED\"]}, {\"id\": 93, \"category\": \"Furniture\", \"class_name\": \"kitchencounter\", \"prefab_name\": \"PRE_FUR_Kitchen_counter_03_12\", \"obj_transform\": {\"position\": [-2.085, 0.003, -3.509], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.056, 0.538000047, -3.507], \"size\": [0.770000041, 1.07, 0.316]}, \"properties\": [\"SURFACES\"], \"states\": [\"CLOSED\"]}, {\"id\": 94, \"category\": \"Furniture\", \"class_name\": \"sofa\", \"prefab_name\": \"PRE_FUR_Sofa_02_02_03_02\", \"obj_transform\": {\"position\": [4.28, 0.0, 0.74], \"rotation\": [0.0, 1.0, 0.0, 3.57627869e-07], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.288, 0.57100004, 0.74], \"size\": [1.03869832, 0.9707001, 2.36470079]}, \"properties\": [\"SURFACES\", \"SITTABLE\", \"LIEABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 95, \"category\": \"Furniture\", \"class_name\": \"nightstand\", \"prefab_name\": \"PRE_FUR_Nightstand_01_12\", \"obj_transform\": {\"position\": [4.319, 0.0, -1.123], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.319, 0.242000014, -1.121], \"size\": [0.748, 0.484000027, 0.748]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 96, \"category\": \"Furniture\", \"class_name\": \"nightstand\", \"prefab_name\": \"PRE_FUR_Nightstand_01_11\", \"obj_transform\": {\"position\": [4.319, 0.0, 2.599], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.319, 0.242000014, 2.601], \"size\": [0.748, 0.484000027, 0.748]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 97, \"category\": \"Furniture\", \"class_name\": \"wallshelf\", \"prefab_name\": \"PRE_FUR_Shelf_06\", \"obj_transform\": {\"position\": [3.494, 1.845, -3.563], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.494, 1.771366, -3.56300116], \"size\": [1.0, 0.1819556, 0.272273183]}, \"properties\": [], \"states\": []}, {\"id\": 98, \"category\": \"Furniture\", \"class_name\": \"wallshelf\", \"prefab_name\": \"PRE_FUR_Shelf_05\", \"obj_transform\": {\"position\": [3.494, 1.265, -3.563], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.494, 1.191366, -3.56300116], \"size\": [1.0, 0.1819556, 0.272273183]}, \"properties\": [], \"states\": []}, {\"id\": 99, \"category\": \"Appliances\", \"class_name\": \"toaster\", \"prefab_name\": \"PRE_APP_Toaster_04\", \"obj_transform\": {\"position\": [-1.879, 1.06, 1.273], \"rotation\": [0.0, 0.9887695, 0.0, 0.149449229], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.84823287, 1.164411, 1.27408445], \"size\": [0.2952459, 0.209531546, 0.286513567]}, \"properties\": [\"HAS_SWITCH\", \"CONTAINERS\", \"HAS_PLUG\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 100, \"category\": \"Appliances\", \"class_name\": \"breadslice\", \"prefab_name\": \"Bread_slice_1\", \"obj_transform\": {\"position\": [-1.85750473, 1.25669992, 1.236], \"rotation\": [-0.433410436, 0.661842048, 0.558708847, -0.248928219], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.85937214, 1.25718331, 1.24206913], \"size\": [0.211329237, 0.0415872931, 0.0520831347]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"CUTTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 101, \"category\": \"Appliances\", \"class_name\": \"breadslice\", \"prefab_name\": \"Bread_slice_1\", \"obj_transform\": {\"position\": [-1.87804484, 1.25669992, 1.30239534], \"rotation\": [-0.433410436, 0.661842048, 0.558708847, -0.248928219], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.87991226, 1.25718331, 1.30846453], \"size\": [0.211329237, 0.0415872931, 0.0520831347]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"CUTTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 102, \"category\": \"Appliances\", \"class_name\": \"stovefan\", \"prefab_name\": \"PRE_APP_Oven_fan_01\", \"obj_transform\": {\"position\": [-1.979, 0.0, 0.179], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.12914538, 2.08290529, 0.178993121], \"size\": [0.6212864, 0.450402617, 0.9244467]}, \"properties\": [], \"states\": []}, {\"id\": 103, \"category\": \"Appliances\", \"class_name\": \"fridge\", \"prefab_name\": \"PRE_APP_Fridge_01_02\", \"obj_transform\": {\"position\": [2.671, 0.0, 3.303], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.67042828, 1.06257987, 3.31381345], \"size\": [0.889662445, 2.125163, 0.7121654]}, \"properties\": [\"CAN_OPEN\", \"HAS_SWITCH\", \"CONTAINERS\", \"HAS_PLUG\"], \"states\": [\"CLOSED\"]}, {\"id\": 104, \"category\": \"Appliances\", \"class_name\": \"dishwasher\", \"prefab_name\": \"PRE_APP_Dishwasher_01_01\", \"obj_transform\": {\"position\": [-2.151, 0.0, -1.841], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.13692236, 0.510003448, -1.841002], \"size\": [0.7900868, 1.02001023, 0.967084765]}, \"properties\": [\"CAN_OPEN\", \"HAS_SWITCH\", \"CONTAINERS\"], \"states\": [\"CLOSED\", \"OFF\"]}, {\"id\": 105, \"category\": \"Appliances\", \"class_name\": \"stove\", \"prefab_name\": \"PRE_APP_Stove_01_03\", \"obj_transform\": {\"position\": [-1.952, 0.0, 0.179], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.027, 0.51, 0.179], \"size\": [0.832, 1.08, 1.002]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"HAS_SWITCH\", \"CONTAINERS\"], \"states\": [\"OFF\", \"CLOSED\"]}, {\"id\": 106, \"category\": \"Appliances\", \"class_name\": \"oventray\", \"prefab_name\": \"MOD_APP_Oven_tray_01\", \"obj_transform\": {\"position\": [-1.99, 0.515, 0.179], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.99000084, 0.5257779, 0.179001927], \"size\": [0.6174071, 0.02155888, 0.933822632]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 107, \"category\": \"Appliances\", \"class_name\": \"coffeemaker\", \"prefab_name\": \"PRE_APP_Coffeemaker_03\", \"obj_transform\": {\"position\": [-1.953, 1.07598078, -2.338], \"rotation\": [0.0, -0.5535498, 0.0, 0.8328161], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.936795, 1.25573051, -2.31975627], \"size\": [0.08077896, 0.35950017, 0.367853165]}, \"properties\": [\"RECIPIENT\", \"CAN_OPEN\", \"HAS_SWITCH\", \"CONTAINERS\", \"HAS_PLUG\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 108, \"category\": \"Appliances\", \"class_name\": \"coffeepot\", \"prefab_name\": \"MOD_PRO_Coffeemaker_01_Pot_01\", \"obj_transform\": {\"position\": [-1.9235754, 1.12198079, -2.26792717], \"rotation\": [0.0, -0.5535498, 0.0, 0.8328161], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.91496158, 1.18792713, -2.24741483], \"size\": [0.25369072, 0.1318934, 0.278920174]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 109, \"category\": \"Appliances\", \"class_name\": \"microwave\", \"prefab_name\": \"Microwave_1\", \"obj_transform\": {\"position\": [-2.016, 1.07004833, 3.298], \"rotation\": [-0.429358, 0.561829031, 0.561828852, 0.429357976], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.008336, 1.22233438, 3.29808378], \"size\": [0.522654533, 0.304915428, 0.6082659]}, \"properties\": [\"CAN_OPEN\", \"HAS_SWITCH\", \"CONTAINERS\", \"HAS_PLUG\"], \"states\": [\"CLOSED\", \"OFF\"]}, {\"id\": 111, \"category\": \"Props\", \"class_name\": \"washingsponge\", \"prefab_name\": \"PRE_PRO_Washing_sponge\", \"obj_transform\": {\"position\": [-2.234, 1.072, 1.711], \"rotation\": [0.0, 0.325952917, 0.0, 0.945386052], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.2330668, 1.096432, 1.71026945], \"size\": [0.2215752, 0.0488643944, 0.208294809]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 112, \"category\": \"Props\", \"class_name\": \"dishwashingliquid\", \"prefab_name\": \"PRE_PRO_Washing_liquid\", \"obj_transform\": {\"position\": [-2.298, 1.071, 2.593], \"rotation\": [1.80084282e-06, 0.2585148, -4.819267e-07, 0.966007352], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.29799986, 1.21952772, 2.59300041], \"size\": [0.119261861, 0.2970563, 0.13844946]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"MOVABLE\", \"CREAM\"], \"states\": []}, {\"id\": 113, \"category\": \"Props\", \"class_name\": \"cutleryknife\", \"prefab_name\": \"PRE_PRO_Knife_02\", \"obj_transform\": {\"position\": [-2.4181, 1.5079, 1.0721], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.41773367, 1.45994866, 1.07170117], \"size\": [0.0187248047, 0.3164823, 0.04737649]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 114, \"category\": \"Props\", \"class_name\": \"cutleryknife\", \"prefab_name\": \"PRE_PRO_Knife_01\", \"obj_transform\": {\"position\": [-2.4182, 1.5295, 1.0047], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.41783357, 1.48179018, 1.00252056], \"size\": [0.0187248047, 0.316965282, 0.0438155681]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 115, \"category\": \"Props\", \"class_name\": \"knifeblock\", \"prefab_name\": \"PRE_PRO_Knife_block_01\", \"obj_transform\": {\"position\": [-2.431, 1.51, 1.231], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.42440486, 1.51, 1.231], \"size\": [0.0131904939, 0.0448102057, 0.5565959]}, \"properties\": [], \"states\": []}, {\"id\": 118, \"category\": \"Props\", \"class_name\": \"mug\", \"prefab_name\": \"PRE_PRO_Mug_01\", \"obj_transform\": {\"position\": [-1.95261443, 1.07840872, -0.9732029], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [-1.95261443, 1.12701869, -0.9577717], \"size\": [0.0877884552, 0.0972202, 0.118651472]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 119, \"category\": \"Props\", \"class_name\": \"mug\", \"prefab_name\": \"PRE_PRO_Mug_01\", \"obj_transform\": {\"position\": [-1.9137969, 1.07621777, -0.4491564], \"rotation\": [-6.123234e-17, 1.0, -1.80999507e-06, 1.10830237e-22], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [-1.9137969, 1.12482762, -0.464587748], \"size\": [0.0877884552, 0.09722063, 0.118651822]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 120, \"category\": \"Props\", \"class_name\": \"cookingpot\", \"prefab_name\": \"PRE_PRO_Cooking_pot_01_02\", \"obj_transform\": {\"position\": [-1.815, 1.07, -0.02], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [-1.815, 1.12432492, -0.0200710464], \"size\": [0.23948431, 0.108649641, 0.2806234]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 121, \"category\": \"Props\", \"class_name\": \"cookingpot\", \"prefab_name\": \"PRE_PRO_Cooking_pot_02_01\", \"obj_transform\": {\"position\": [-2.208, 1.07, -0.021], \"rotation\": [0.0, -0.4424726, 0.0, 0.8967821], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [-2.14191866, 1.1163063, 0.06519167], \"size\": [0.3959679, 0.09261257, 0.436189175]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 122, \"category\": \"Props\", \"class_name\": \"fryingpan\", \"prefab_name\": \"PRE_PRO_Frying_pan_01\", \"obj_transform\": {\"position\": [-1.821, 1.07, 0.378], \"rotation\": [0.0, -0.9308625, 0.0, 0.365369827], \"scale\": [0.9764269, 0.976426959, 0.976427]}, \"bounding_box\": {\"center\": [-1.8988322, 1.10337162, 0.4502269], \"size\": [0.5957612, 0.06674368, 0.584550142]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"RECIPIENT\", \"CONTAINERS\", \"MOVABLE\"], \"states\": []}, {\"id\": 124, \"category\": \"Props\", \"class_name\": \"dishbowl\", \"prefab_name\": \"PRE_PRO_Bowl_02\", \"obj_transform\": {\"position\": [1.361, 0.81, -0.05], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [1.361, 0.836655736, -0.0500002], \"size\": [0.184048012, 0.0533117764, 0.184048012]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 129, \"category\": \"Props\", \"class_name\": \"dishbowl\", \"prefab_name\": \"PRE_PRO_Bowl_01\", \"obj_transform\": {\"position\": [1.352, 0.81, -0.3396], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.850956, 0.850956, 0.850956]}, \"bounding_box\": {\"center\": [1.352, 0.844534755, -0.339600235], \"size\": [0.233043477, 0.06907001, 0.233043477]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 132, \"category\": \"Props\", \"class_name\": \"cutleryknife\", \"prefab_name\": \"PRE_PRO_Knife_03\", \"obj_transform\": {\"position\": [1.73218143, 0.8153165, -0.356395841], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [1.77429116, 0.811274052, -0.3548193], \"size\": [0.251150727, 0.00555667048, 0.0189811755]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 135, \"category\": \"Props\", \"class_name\": \"cutleryknife\", \"prefab_name\": \"PRE_PRO_Knife_03\", \"obj_transform\": {\"position\": [0.994979143, 0.8153165, -0.7069331], \"rotation\": [0.0, -1.0, 0.0, -4.371139e-08], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [0.9528694, 0.811274052, -0.7085096], \"size\": [0.251150727, 0.00555667048, 0.0189811978]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 136, \"category\": \"Props\", \"class_name\": \"cutleryknife\", \"prefab_name\": \"PRE_PRO_Knife_03\", \"obj_transform\": {\"position\": [0.994979143, 0.8153165, -0.08104344], \"rotation\": [0.0, -1.0, 0.0, -4.371139e-08], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [0.9528694, 0.811274052, -0.08261998], \"size\": [0.251150727, 0.00555667048, 0.0189811978]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 138, \"category\": \"Props\", \"class_name\": \"cutleryknife\", \"prefab_name\": \"PRE_PRO_Knife_03\", \"obj_transform\": {\"position\": [1.73218143, 0.8153165, 0.262658834], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [1.77429116, 0.811274052, 0.264235377], \"size\": [0.251150727, 0.00555667048, 0.0189811755]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 144, \"category\": \"Props\", \"class_name\": \"book\", \"prefab_name\": \"PRE_PRO_Book_01\", \"obj_transform\": {\"position\": [3.392641, 1.8987, -3.55097461], \"rotation\": [0.0, -0.475167066, 0.0, 0.879895568], \"scale\": [0.8092893, 0.8092892, 0.8092893]}, \"bounding_box\": {\"center\": [3.39461565, 1.91234589, -3.54796267], \"size\": [0.242579162, 0.0276826248, 0.231408119]}, \"properties\": [\"GRABBABLE\", \"CUTTABLE\", \"CAN_OPEN\", \"READABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 145, \"category\": \"Props\", \"class_name\": \"book\", \"prefab_name\": \"PRE_PRO_Book_02\", \"obj_transform\": {\"position\": [3.4315, 1.8629, -3.5519], \"rotation\": [0.0, -0.705161154, 0.0, 0.7090471], \"scale\": [0.7175736, 0.7175735, 0.7175735]}, \"bounding_box\": {\"center\": [3.43152237, 1.87897134, -3.54765844], \"size\": [0.22542201, 0.0326029919, 0.179953516]}, \"properties\": [\"GRABBABLE\", \"CUTTABLE\", \"CAN_OPEN\", \"READABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 146, \"category\": \"Props\", \"class_name\": \"box\", \"prefab_name\": \"PRE_PRO_Box_01\", \"obj_transform\": {\"position\": [3.79, 1.863, -3.565], \"rotation\": [0.0, 0.6602912, 0.0, 0.7510097], \"scale\": [0.6719947, 0.671994746, 0.6719948]}, \"bounding_box\": {\"center\": [3.79, 1.92839193, -3.5650003], \"size\": [0.293674737, 0.130784929, 0.220471844]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"CAN_OPEN\", \"CONTAINERS\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 151, \"category\": \"Props\", \"class_name\": \"dishbowl\", \"prefab_name\": \"PRE_PRO_Bowl_05\", \"obj_transform\": {\"position\": [3.8262, 1.3536, -3.5547], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.8262, 1.38089931, -3.55470014], \"size\": [0.18849133, 0.0545988381, 0.18849133]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 152, \"category\": \"Props\", \"class_name\": \"dishbowl\", \"prefab_name\": \"PRE_PRO_Bowl_04\", \"obj_transform\": {\"position\": [3.8262, 1.3295, -3.5547], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.8262, 1.35679924, -3.55470014], \"size\": [0.18849133, 0.0545988381, 0.18849133]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 153, \"category\": \"Props\", \"class_name\": \"dishbowl\", \"prefab_name\": \"PRE_PRO_Bowl_03\", \"obj_transform\": {\"position\": [3.8262, 1.3072, -3.5547], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.8262, 1.33449924, -3.55470014], \"size\": [0.18849133, 0.0545988381, 0.18849133]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 154, \"category\": \"Props\", \"class_name\": \"dishbowl\", \"prefab_name\": \"PRE_PRO_Bowl_02\", \"obj_transform\": {\"position\": [3.826204, 1.28307974, -3.55472946], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.826204, 1.310379, -3.5547297], \"size\": [0.18849133, 0.0545988381, 0.18849133]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 155, \"category\": \"Props\", \"class_name\": \"mug\", \"prefab_name\": \"PRE_PRO_Mug_01\", \"obj_transform\": {\"position\": [4.1, 0.486, 2.668], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.1, 0.5357835, 2.6838038], \"size\": [0.0899078548, 0.0995673, 0.121515974]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 156, \"category\": \"Props\", \"class_name\": \"photoframe\", \"prefab_name\": \"PRE_PRO_Photo_frame_01\", \"obj_transform\": {\"position\": [4.359, 0.486, 2.651], \"rotation\": [0.0, 0.927708447, 0.0, 0.3733057], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.357772, 0.5922633, 2.649821], \"size\": [0.164550647, 0.212527975, 0.166843191]}, \"properties\": [], \"states\": []}, {\"id\": 157, \"category\": \"Props\", \"class_name\": \"cellphone\", \"prefab_name\": \"Cellphone_1b\", \"obj_transform\": {\"position\": [-1.783, 1.0866, -1.262615], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.783, 1.0866, -1.262615], \"size\": [0.109999895, 0.01443696, 0.0580000877]}, \"properties\": [\"GRABBABLE\", \"HAS_SWITCH\", \"HAS_PLUG\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 158, \"category\": \"Decor\", \"class_name\": \"rug\", \"prefab_name\": \"PRE_DEC_Rug_01_07\", \"obj_transform\": {\"position\": [1.22053373, 0.0, 2.67763424], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [1.22053373, 0.00680579338, 2.67763424], \"size\": [1.65969586, 0.0136175957, 1.6596961]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"SITTABLE\", \"LIEABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 159, \"category\": \"Decor\", \"class_name\": \"orchid\", \"prefab_name\": \"PRE_DEC_Orchid_02\", \"obj_transform\": {\"position\": [4.253, 0.486, -1.135], \"rotation\": [0.0, 0.9338499, 0.0, -0.35766536], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.25300026, 0.5829921, -1.13499951], \"size\": [0.24200058, 0.193984777, 0.24200058]}, \"properties\": [], \"states\": []}, {\"id\": 160, \"category\": \"Decor\", \"class_name\": \"candle\", \"prefab_name\": \"PRE_DEC_Candle_01\", \"obj_transform\": {\"position\": [3.118534, 1.87617362, -3.52795815], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.118534, 1.94475436, -3.52795839], \"size\": [0.0827575549, 0.137161791, 0.0827579647]}, \"properties\": [\"GRABBABLE\", \"HAS_SWITCH\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 161, \"category\": \"Decor\", \"class_name\": \"wallpictureframe\", \"prefab_name\": \"PRE_DEC_Painting_14\", \"obj_transform\": {\"position\": [4.95, 1.629, -0.059], \"rotation\": [0.0, 1.0, 0.0, -1.62920685e-07], \"scale\": [0.173196882, 0.173196882, 0.173196882]}, \"bounding_box\": {\"center\": [4.946387, 1.629, -0.0589997768], \"size\": [0.0072259903, 0.217715979, 0.1655122]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 162, \"category\": \"Decor\", \"class_name\": \"wallpictureframe\", \"prefab_name\": \"PRE_DEC_Painting_01\", \"obj_transform\": {\"position\": [4.952, 1.544, 0.414], \"rotation\": [0.0, 1.0, 0.0, 3.57627869e-07], \"scale\": [0.2666046, 0.2666046, 0.2666046]}, \"bounding_box\": {\"center\": [4.945568, 1.54399991, 0.413999915], \"size\": [0.0128650665, 0.2946782, 0.6867285]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 163, \"category\": \"Decor\", \"class_name\": \"wallpictureframe\", \"prefab_name\": \"PRE_DEC_Painting_11\", \"obj_transform\": {\"position\": [4.953, 2.007, 0.159], \"rotation\": [0.0, 1.0, 0.0, 3.57627869e-07], \"scale\": [0.376796454, 0.3767965, 0.3767965]}, \"bounding_box\": {\"center\": [4.943909, 2.007, 0.15899986], \"size\": [0.0181818, 0.4164734, 0.970564246]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 164, \"category\": \"Decor\", \"class_name\": \"wallpictureframe\", \"prefab_name\": \"PRE_DEC_Painting_06\", \"obj_transform\": {\"position\": [4.953, 1.842, 1.082], \"rotation\": [0.0, 1.0, 0.0, -1.62920685e-07], \"scale\": [0.5238574, 0.5238574, 0.5238574]}, \"bounding_box\": {\"center\": [4.94207239, 1.842, 1.08200073], \"size\": [0.021856308, 0.658511639, 0.500614166]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 165, \"category\": \"Decor\", \"class_name\": \"wallpictureframe\", \"prefab_name\": \"PRE_DEC_Painting_03\", \"obj_transform\": {\"position\": [4.955, 1.79, 1.636], \"rotation\": [0.0, 1.0, 0.0, -1.62920685e-07], \"scale\": [0.352065176, 0.3520654, 0.3520654]}, \"bounding_box\": {\"center\": [4.94765568, 1.79, 1.63600051], \"size\": [0.0146884918, 0.442561626, 0.336444378]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 166, \"category\": \"Decor\", \"class_name\": \"curtains\", \"prefab_name\": \"PRE_DEC_Curtains_02_06\", \"obj_transform\": {\"position\": [1.25, -0.032, -3.667], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.24988234, 2.02288556, -3.65756178], \"size\": [2.32801127, 0.0333948135, 0.0259931087]}, \"properties\": [\"CAN_OPEN\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 167, \"category\": \"Decor\", \"class_name\": \"curtains\", \"prefab_name\": \"PRE_DEC_Curtains_02_02\", \"obj_transform\": {\"position\": [2.03100014, -0.029000001, -3.658], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.03700972, 1.46254826, -3.6290102], \"size\": [0.593184352, 1.15232611, 0.107337952]}, \"properties\": [\"CAN_OPEN\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 168, \"category\": \"Decor\", \"class_name\": \"curtains\", \"prefab_name\": \"PRE_DEC_Curtains_02_01\", \"obj_transform\": {\"position\": [0.4799999, -0.029000001, -3.66100025], \"rotation\": [0.0, -0.707106769, 0.0, 0.7071069], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [0.473998129, 1.46254838, -3.63200855], \"size\": [0.593184233, 1.15232587, 0.107337952]}, \"properties\": [\"CAN_OPEN\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 169, \"category\": \"Electronics\", \"class_name\": \"lightswitch\", \"prefab_name\": \"PRE_ELE_Light_switch_02\", \"obj_transform\": {\"position\": [1.866, 1.338, 3.7], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [1.866, 1.338, 3.697508], \"size\": [0.0670589358, 0.09142984, 0.004985324]}, \"properties\": [\"HAS_SWITCH\", \"HAS_PLUG\"], \"states\": [\"ON\"]}, {\"id\": 170, \"category\": \"Electronics\", \"class_name\": \"powersocket\", \"prefab_name\": \"PRE_ELE_Power_socket_02\", \"obj_transform\": {\"position\": [1.801, 0.147, 3.7], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [1.80100012, 0.147, 3.69215727], \"size\": [0.08868245, 0.150643855, 0.015685413]}, \"properties\": [], \"states\": []}, {\"id\": 171, \"category\": \"Electronics\", \"class_name\": \"wallphone\", \"prefab_name\": \"PRE_ELE_Wall_phone_01\", \"obj_transform\": {\"position\": [-0.698, 1.437, 3.702], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [0.976426959, 0.976426959, 0.976426959]}, \"bounding_box\": {\"center\": [-0.6980001, 1.437, 3.6925478], \"size\": [0.09113765, 0.2635858, 0.01890421]}, \"properties\": [\"GRABBABLE\", \"HAS_SWITCH\", \"HAS_PLUG\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 172, \"category\": \"Rooms\", \"class_name\": \"bathroom\", \"prefab_name\": \"PRE_ROO_Bathroom_03\", \"obj_transform\": {\"position\": [1.228, 0.0, 6.25], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.478, 1.25, 6.25], \"size\": [5.5, 3.0, 5.5]}, \"properties\": [], \"states\": []}, {\"id\": 173, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_TIL_Doorway_corner_01_06_04\", \"obj_transform\": {\"position\": [1.22799981, 0.0, 3.75000024], \"rotation\": [0.0, 8.940697e-08, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.22800016, 1.2500093, 4.99998665], \"size\": [2.50000072, 2.50002766, 2.5000453]}, \"properties\": [], \"states\": []}, {\"id\": 174, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_TIL_Corner_02_06_03\", \"obj_transform\": {\"position\": [1.22800028, 0.0, 8.75], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.228002, 1.25, 7.5], \"size\": [2.50000381, 2.500009, 2.50000429]}, \"properties\": [], \"states\": []}, {\"id\": 175, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_TIL_Corner_02_06_03\", \"obj_transform\": {\"position\": [4.978, 0.0, 7.49999952], \"rotation\": [0.0, 1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.72799921, 1.25, 7.49999762], \"size\": [2.500005, 2.500009, 2.50000453]}, \"properties\": [], \"states\": []}, {\"id\": 176, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_TIL_Corner_02_06_03\", \"obj_transform\": {\"position\": [3.72799969, 0.0, 3.75], \"rotation\": [0.0, 0.7071067, 0.0, -0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.727997, 1.25, 5.000001], \"size\": [2.50000381, 2.500009, 2.50000429]}, \"properties\": [], \"states\": []}, {\"id\": 177, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_01_04\", \"obj_transform\": {\"position\": [1.228, 0.0, 6.25], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.2279911, 2.50000024, 7.5], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 178, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_01_04\", \"obj_transform\": {\"position\": [1.22799981, 0.0, 3.75000024], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.22799087, 2.50000024, 5.0], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 179, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_01_04\", \"obj_transform\": {\"position\": [3.72799969, 0.0, 3.75], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.72799087, 2.50000024, 5.0], \"size\": [2.50000048, 9.059906e-06, 2.50000024]}, \"properties\": [], \"states\": []}, {\"id\": 180, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_01_04\", \"obj_transform\": {\"position\": [3.72799969, 0.0, 6.25], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.72799087, 2.50000024, 7.5], \"size\": [2.50000048, 9.059906e-06, 2.50000048]}, \"properties\": [], \"states\": []}, {\"id\": 181, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_06\", \"obj_transform\": {\"position\": [1.228, 0.0, 6.25], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.22800016, 0.0, 7.5], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 182, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_06\", \"obj_transform\": {\"position\": [1.22799981, 0.0, 3.75000024], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.22799993, 0.0, 5.0], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 183, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_06\", \"obj_transform\": {\"position\": [3.72799969, 0.0, 3.75], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.72799969, 0.0, 5.0], \"size\": [2.5, 9.049975e-06, 2.50000024]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 184, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_06\", \"obj_transform\": {\"position\": [3.72799969, 0.0, 6.25], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.72799969, 0.0, 7.5], \"size\": [2.5, 9.049975e-06, 2.50000048]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 185, \"category\": \"Lamps\", \"class_name\": \"walllamp\", \"prefab_name\": \"PRE_LAM_Wall_lamp_01_02\", \"obj_transform\": {\"position\": [0.592000365, 0.193, 8.7], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [0.591995955, 1.443, 8.614318], \"size\": [0.219838738, 0.8624453, 0.171362981]}, \"properties\": [], \"states\": []}, {\"id\": 186, \"category\": \"Lamps\", \"class_name\": \"ceilinglamp\", \"prefab_name\": \"PRE_LAM_Ceiling_lamp_03_01\", \"obj_transform\": {\"position\": [2.478, 0.0, 6.25], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.47799945, 2.43006635, 6.25], \"size\": [0.926426053, 0.152424768, 0.9324323]}, \"properties\": [], \"states\": []}, {\"id\": 187, \"category\": \"Lamps\", \"class_name\": \"walllamp\", \"prefab_name\": \"PRE_LAM_Wall_lamp_01_02\", \"obj_transform\": {\"position\": [4.413, 0.193, 8.699999], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.41299343, 1.443, 8.614318], \"size\": [0.219838738, 0.8624453, 0.171362981]}, \"properties\": [], \"states\": []}, {\"id\": 188, \"category\": \"Furniture\", \"class_name\": \"toilet\", \"prefab_name\": \"PRE_FUR_Toilet_02\", \"obj_transform\": {\"position\": [2.61699963, -0.093, 3.90600014], \"rotation\": [0.0, 0.7071067, 0.0, -0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.71828413, 0.27147913, 4.30416], \"size\": [0.7693824, 0.542430043, 0.7984217]}, \"properties\": [\"SITTABLE\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 189, \"category\": \"Furniture\", \"class_name\": \"stall\", \"prefab_name\": \"PRE_FUR_Toilet_stall_02_02\", \"obj_transform\": {\"position\": [2.61699963, 0.0, 4.407], \"rotation\": [0.0, 0.7071067, 0.0, -0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.61701083, 1.25, 4.573511], \"size\": [1.56272185, 2.50001717, 1.56474018]}, \"properties\": [], \"states\": []}, {\"id\": 190, \"category\": \"Furniture\", \"class_name\": \"bathroomcabinet\", \"prefab_name\": \"PRE_FUR_Bathroom_cabinet_02_04_w_lamps\", \"obj_transform\": {\"position\": [2.47800016, 0.042, 8.636999], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.477993, 1.856972, 8.631079], \"size\": [2.85160756, 0.757355332, 0.135947749]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 191, \"category\": \"Furniture\", \"class_name\": \"stall\", \"prefab_name\": \"PRE_FUR_Shower_stall_06_02\", \"obj_transform\": {\"position\": [4.15499973, 0.001, 4.40699959], \"rotation\": [0.0, 0.7071067, 0.0, -0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.15501, 1.25068724, 4.57351], \"size\": [1.56272185, 2.50064278, 1.56474018]}, \"properties\": [], \"states\": []}, {\"id\": 192, \"category\": \"Furniture\", \"class_name\": \"curtains\", \"prefab_name\": \"MOD_FUR_Shower_stall_01_Curtain_01\", \"obj_transform\": {\"position\": [4.15499973, 0.001, 5.198], \"rotation\": [0.0, 0.7071067, 0.0, -0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.64892769, 1.24817312, 5.300999], \"size\": [0.3018598, 2.29940414, 0.05150947]}, \"properties\": [\"CAN_OPEN\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 193, \"category\": \"Furniture\", \"class_name\": \"bathroomcounter\", \"prefab_name\": \"PRE_FUR_Bathroom_counter_04\", \"obj_transform\": {\"position\": [2.47800016, 0.0, 8.372999], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.47799969, 0.77, 8.377998], \"size\": [2.86199975, 0.39, 0.6520002]}, \"properties\": [\"SURFACES\"], \"states\": [\"CLOSED\"]}, {\"id\": 194, \"category\": \"Furniture\", \"class_name\": \"faucet\", \"prefab_name\": \"Faucet\", \"obj_transform\": {\"position\": [2.50800014, 1.01, 8.632999], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.50799942, 1.01, 8.632999], \"size\": [0.0999999046, 0.0999999642, 0.100000381]}, \"properties\": [\"HAS_SWITCH\"], \"states\": [\"OFF\"]}, {\"id\": 195, \"category\": \"Furniture\", \"class_name\": \"sink\", \"prefab_name\": \"Sink\", \"obj_transform\": {\"position\": [2.48399925, 0.915, 8.372999], \"rotation\": [0.0, 0.707106769, 0.0, 0.707106769], \"scale\": [0.0300000161, 0.01, 0.0600000322]}, \"bounding_box\": {\"center\": [2.48399878, 0.915, 8.372999], \"size\": [0.600000262, 2.220446e-18, 0.300000131]}, \"properties\": [\"RECIPIENT\", \"CONTAINERS\"], \"states\": []}, {\"id\": 196, \"category\": \"Props\", \"class_name\": \"garbagecan\", \"prefab_name\": \"Garbage_can_6\", \"obj_transform\": {\"position\": [4.478, 0.0, 7.78899956], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [4.4786334, 0.207238674, 7.788464], \"size\": [0.32761243, 0.414477348, 0.3276124]}, \"properties\": [\"CAN_OPEN\", \"CONTAINERS\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 197, \"category\": \"Props\", \"class_name\": \"toothbrush\", \"prefab_name\": \"PRE_PRO_Toothbrush_01\", \"obj_transform\": {\"position\": [2.828, 1.095, 8.565], \"rotation\": [-0.223769292, 0.777987361, 0.564205945, 0.162279785], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.83344, 1.09283185, 8.556581], \"size\": [0.0259375013, 0.2375056, 0.101253361]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 199, \"category\": \"Props\", \"class_name\": \"barsoap\", \"prefab_name\": \"PRE_PRO_Hand_soap_01\", \"obj_transform\": {\"position\": [2.07200027, 0.977, 8.591], \"rotation\": [0.0, 0.46845454, 0.0, 0.8834877], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.072, 0.998697, 8.591], \"size\": [0.150434583, 0.0433942862, 0.136254564]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\", \"CREAM\"], \"states\": []}, {\"id\": 200, \"category\": \"Props\", \"class_name\": \"deodorant\", \"prefab_name\": \"PRE_PRO_Deodorant_01\", \"obj_transform\": {\"position\": [3.256, 0.977, 8.597], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.25599837, 1.0502038, 8.597], \"size\": [0.04111537, 0.1464077, 0.04111485]}, \"properties\": [], \"states\": []}, {\"id\": 201, \"category\": \"Props\", \"class_name\": \"facecream\", \"prefab_name\": \"PRE_PRO_Face_cream_01\", \"obj_transform\": {\"position\": [3.184, 0.977, 8.518], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.1839993, 0.992763758, 8.518], \"size\": [0.06455387, 0.03152771, 0.0645537749]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"MOVABLE\", \"CREAM\"], \"states\": []}, {\"id\": 202, \"category\": \"Props\", \"class_name\": \"hairproduct\", \"prefab_name\": \"PRE_PRO_Conditioner_01\", \"obj_transform\": {\"position\": [3.08100033, 0.977, 8.59], \"rotation\": [0.0, 0.794362247, 0.0, 0.607444346], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.08099937, 1.06751776, 8.59], \"size\": [0.0907172561, 0.181035683, 0.09071696]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 203, \"category\": \"Props\", \"class_name\": \"hairproduct\", \"prefab_name\": \"PRE_PRO_Shampoo_01\", \"obj_transform\": {\"position\": [2.95000029, 0.977, 8.577999], \"rotation\": [0.0, 0.8526156, 0.0, 0.5225386], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.94999981, 1.06751776, 8.577999], \"size\": [0.09943132, 0.181035683, 0.09943113]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 204, \"category\": \"Props\", \"class_name\": \"toothpaste\", \"prefab_name\": \"SHP_PRE_Toothpaste\", \"obj_transform\": {\"position\": [2.966, 0.977, 8.438999], \"rotation\": [0.0, 0.822284341, 0.0, 0.5690769], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.953586, 0.993777931, 8.443672], \"size\": [0.185952365, 0.0335556157, 0.108884752]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"CAN_OPEN\", \"MOVABLE\", \"CREAM\"], \"states\": [\"CLOSED\"]}, {\"id\": 205, \"category\": \"Props\", \"class_name\": \"toiletpaper\", \"prefab_name\": \"MOD_PRO_Toilet_paper_01\", \"obj_transform\": {\"position\": [3.30599976, 0.973, 5.138], \"rotation\": [0.0, 1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [3.22767138, 0.9356487, 5.114679], \"size\": [0.1566548, 0.178975016, 0.2160594]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"CUTTABLE\", \"COVER_OBJECT\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 206, \"category\": \"Decor\", \"class_name\": \"rug\", \"prefab_name\": \"PRE_DEC_Rug_03_07\", \"obj_transform\": {\"position\": [2.47800016, 0.003, 7.37899971], \"rotation\": [0.0, 8.940697e-08, 0.0, 1.0], \"scale\": [0.813431442, 0.8134315, 0.8134315]}, \"bounding_box\": {\"center\": [2.47800016, 0.0122244153, 7.37900066], \"size\": [2.91699839, 0.0184521638, 0.9234824]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"SITTABLE\", \"LIEABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 207, \"category\": \"Decor\", \"class_name\": \"wallpictureframe\", \"prefab_name\": \"PRE_DEC_Painting_03\", \"obj_transform\": {\"position\": [4.932, 1.47, 7.0199995], \"rotation\": [0.0, 1.0, 0.0, -8.940697e-08], \"scale\": [0.567573667, 0.567573667, 0.75]}, \"bounding_box\": {\"center\": [4.92016029, 1.47, 7.02000046], \"size\": [0.0236797333, 0.713464737, 0.7167225]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 208, \"category\": \"Electronics\", \"class_name\": \"lightswitch\", \"prefab_name\": \"PRE_ELE_Light_switch_02\", \"obj_transform\": {\"position\": [0.662999868, 1.255, 3.80000019], \"rotation\": [0.0, 0.7071067, 0.0, -0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [0.663, 1.255, 3.80255318], \"size\": [0.068677865, 0.0936371461, 0.00510568]}, \"properties\": [\"HAS_SWITCH\", \"HAS_PLUG\"], \"states\": [\"ON\"]}, {\"id\": 209, \"category\": \"Appliances\", \"class_name\": \"washingmachine\", \"prefab_name\": \"Dark_Grey_Washing_Machine\", \"obj_transform\": {\"position\": [4.49999952, 0.0, 7.0], \"rotation\": [0.0, 0.707106769, 0.0, 0.707106769], \"scale\": [1.20000029, 1.2, 1.20000029]}, \"bounding_box\": {\"center\": [4.499999, 0.499382854, 7.0], \"size\": [0.6621626, 0.9977087, 0.724769831]}, \"properties\": [\"RECIPIENT\", \"CAN_OPEN\", \"HAS_SWITCH\", \"CONTAINERS\", \"HAS_PLUG\"], \"states\": [\"CLOSED\", \"OFF\"]}, {\"id\": 210, \"category\": \"Rooms\", \"class_name\": \"bedroom\", \"prefab_name\": \"PRE_ROO_Bedroom_03\", \"obj_transform\": {\"position\": [5.0, 0.0, -2.456], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [7.5, 1.25, -3.706], \"size\": [5.5, 3.0, 5.5]}, \"properties\": [], \"states\": []}, {\"id\": 211, \"category\": \"Furniture\", \"class_name\": \"bookshelf\", \"prefab_name\": \"PRE_FUR_Bookshelf_01_02\", \"obj_transform\": {\"position\": [6.90400028, 0.001, -1.47500014], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [0.945553064, 0.945553362, 0.945553362]}, \"bounding_box\": {\"center\": [6.90400028, 1.04867315, -1.47500014], \"size\": [1.99890018, 2.09534621, 0.302577257]}, \"properties\": [\"SURFACES\", \"CONTAINERS\"], \"states\": []}, {\"id\": 212, \"category\": \"Furniture\", \"class_name\": \"chair\", \"prefab_name\": \"PRE_FUR_Kitchen_chair_01_03\", \"obj_transform\": {\"position\": [8.0, 0.0, -2.28700018], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [7.97799969, 0.495000035, -2.28700018], \"size\": [0.523600042, 0.8415001, 0.401200026]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"SITTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 213, \"category\": \"Furniture\", \"class_name\": \"desk\", \"prefab_name\": \"PRE_FUR_CPU_table_01_02\", \"obj_transform\": {\"position\": [9.375999, 0.0, -2.298], \"rotation\": [0.0, 1.0, 0.0, 0.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [9.375999, 0.475000024, -2.298], \"size\": [1.06800008, 0.950000048, 2.028]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 214, \"category\": \"Furniture\", \"class_name\": \"nightstand\", \"prefab_name\": \"PRE_FUR_Nightstand_01_05\", \"obj_transform\": {\"position\": [5.485, 0.0, -3.547], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [5.485, 0.242000014, -3.545], \"size\": [0.748, 0.484000027, 0.748]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 215, \"category\": \"Furniture\", \"class_name\": \"bed\", \"prefab_name\": \"PRE_FUR_Bed_01_01_03\", \"obj_transform\": {\"position\": [6.278, 0.0, -5.08600044], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [6.27825975, 0.3244711, -5.08600044], \"size\": [2.4011755, 0.6478033, 1.99163246]}, \"properties\": [\"SURFACES\", \"SITTABLE\", \"LIEABLE\"], \"states\": []}, {\"id\": 216, \"category\": \"Furniture\", \"class_name\": \"cabinet\", \"prefab_name\": \"Cabinet_1\", \"obj_transform\": {\"position\": [9.246608, 0.0, -5.89356661], \"rotation\": [-0.7071068, 0.0, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [9.246608, 0.525000036, -5.89356661], \"size\": [1.18, 1.05, 0.3800001]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 217, \"category\": \"Electronics\", \"class_name\": \"lightswitch\", \"prefab_name\": \"PRE_ELE_Light_switch_01\", \"obj_transform\": {\"position\": [9.95, 1.248, -5.532], \"rotation\": [0.0, 1.0, 0.0, 0.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [9.947448, 1.248, -5.532], \"size\": [0.005105672, 0.0936371461, 0.06867787]}, \"properties\": [\"HAS_SWITCH\", \"HAS_PLUG\"], \"states\": [\"ON\"]}, {\"id\": 218, \"category\": \"Electronics\", \"class_name\": \"powersocket\", \"prefab_name\": \"PRE_ELE_Power_socket_01\", \"obj_transform\": {\"position\": [5.052, 0.149, -1.91200006], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [5.060032, 0.149, -1.912], \"size\": [0.01606408, 0.154280722, 0.09082343]}, \"properties\": [], \"states\": []}, {\"id\": 219, \"category\": \"Electronics\", \"class_name\": \"radio\", \"prefab_name\": \"Radio_6\", \"obj_transform\": {\"position\": [5.641, 0.486169219, -3.558], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [5.641, 0.662425756, -3.558], \"size\": [0.3399868, 0.365140557, 0.8000002]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"CAN_OPEN\", \"HAS_SWITCH\", \"HAS_PLUG\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 220, \"category\": \"Props\", \"class_name\": \"book\", \"prefab_name\": \"PRE_PRO_Book_02\", \"obj_transform\": {\"position\": [6.631, 0.585, -1.4690001], \"rotation\": [1.4413281e-06, -0.6048808, -1.09483142e-06, 0.7963161], \"scale\": [0.897573531, 0.8975736, 0.89757365]}, \"bounding_box\": {\"center\": [6.632422, 0.6051027, -1.46388876], \"size\": [0.3304212, 0.0407823548, 0.2906683]}, \"properties\": [\"GRABBABLE\", \"CUTTABLE\", \"CAN_OPEN\", \"READABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 221, \"category\": \"Props\", \"class_name\": \"book\", \"prefab_name\": \"PRE_PRO_Book_01\", \"obj_transform\": {\"position\": [7.65499973, 1.618, -1.47], \"rotation\": [0.0, 0.3600753, 0.0, 0.932923257], \"scale\": [0.900000036, 0.900000036, 0.900000036]}, \"bounding_box\": {\"center\": [7.65796661, 1.63317549, -1.47269022], \"size\": [0.267383873, 0.030785488, 0.270356059]}, \"properties\": [\"GRABBABLE\", \"CUTTABLE\", \"CAN_OPEN\", \"READABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 222, \"category\": \"Props\", \"class_name\": \"dishbowl\", \"prefab_name\": \"PRE_PRO_Bowl_01\", \"obj_transform\": {\"position\": [6.163, 1.066, -1.4690001], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [6.163, 1.10658348, -1.46900034], \"size\": [0.273860782, 0.08116754, 0.273860782]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 223, \"category\": \"Props\", \"class_name\": \"book\", \"prefab_name\": \"PRE_PRO_Book_01\", \"obj_transform\": {\"position\": [7.65400028, 1.584, -1.47100008], \"rotation\": [0.0, 0.184763581, 0.0, 0.982783], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [7.658147, 1.60086155, -1.47261536], \"size\": [0.2602262, 0.0342060961, 0.28749916]}, \"properties\": [\"GRABBABLE\", \"CUTTABLE\", \"CAN_OPEN\", \"READABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 224, \"category\": \"Props\", \"class_name\": \"book\", \"prefab_name\": \"PRE_PRO_Book_02\", \"obj_transform\": {\"position\": [6.633, 0.541, -1.47], \"rotation\": [1.288784e-06, -0.702141643, -1.270873e-06, 0.7120373], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [6.63308144, 0.5633968, -1.46408963], \"size\": [0.3162357, 0.04543597, 0.253418356]}, \"properties\": [\"GRABBABLE\", \"CUTTABLE\", \"CAN_OPEN\", \"READABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 225, \"category\": \"Props\", \"class_name\": \"photoframe\", \"prefab_name\": \"PRE_PRO_Photo_frame_01\", \"obj_transform\": {\"position\": [7.685, 1.066, -1.51400018], \"rotation\": [1.49871221e-06, 0.5606986, 1.01486171e-06, 0.828020036], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [7.68563175, 1.17226326, -1.515581], \"size\": [0.174618617, 0.212528437, 0.1300216]}, \"properties\": [], \"states\": []}, {\"id\": 226, \"category\": \"Props\", \"class_name\": \"box\", \"prefab_name\": \"PRE_PRO_Box_01\", \"obj_transform\": {\"position\": [6.65, 1.584, -1.47], \"rotation\": [0.0, 0.748798668, 0.0, 0.6627976], \"scale\": [0.891715765, 0.891715765, 0.8917158]}, \"bounding_box\": {\"center\": [6.65, 1.670773, -1.47000027], \"size\": [0.388350457, 0.173547462, 0.290372938]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"CAN_OPEN\", \"CONTAINERS\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 227, \"category\": \"Props\", \"class_name\": \"facecream\", \"prefab_name\": \"PRE_PRO_Face_cream_01\", \"obj_transform\": {\"position\": [7.159, 1.066, -1.52700007], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [7.159, 1.08176374, -1.52700019], \"size\": [0.0645537749, 0.03152771, 0.06455387]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"MOVABLE\", \"CREAM\"], \"states\": []}, {\"id\": 228, \"category\": \"Props\", \"class_name\": \"deodorant\", \"prefab_name\": \"PRE_PRO_Deodorant_01\", \"obj_transform\": {\"position\": [7.083, 1.066, -1.455], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [7.083, 1.13920379, -1.45500028], \"size\": [0.04111485, 0.1464077, 0.04111537]}, \"properties\": [], \"states\": []}, {\"id\": 229, \"category\": \"Props\", \"class_name\": \"perfume\", \"prefab_name\": \"PRE_PRO_Perfume_01\", \"obj_transform\": {\"position\": [7.008, 1.066, -1.53200006], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [7.008, 1.14242268, -1.53200018], \"size\": [0.0532537177, 0.152845576, 0.0532537177]}, \"properties\": [], \"states\": []}, {\"id\": 241, \"category\": \"Props\", \"class_name\": \"dishbowl\", \"prefab_name\": \"FMGP_PRE_Wooden_bowl_1024\", \"obj_transform\": {\"position\": [9.314, 0.937, -2.361], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.37713337, 1.37713337, 1.37713337]}, \"bounding_box\": {\"center\": [9.314, 0.9808954, -2.361], \"size\": [0.3566913, 0.08779088, 0.3566913]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 242, \"category\": \"Props\", \"class_name\": \"box\", \"prefab_name\": \"FMGP_PRE_Wooden_box_1024\", \"obj_transform\": {\"position\": [6.309, 2.098, -1.47800016], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.5925134, 0.5925134, 0.5925134]}, \"bounding_box\": {\"center\": [6.309, 2.157594, -1.47800016], \"size\": [0.457236648, 0.119188808, 0.263480037]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"CAN_OPEN\", \"CONTAINERS\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 243, \"category\": \"Props\", \"class_name\": \"painkillers\", \"prefab_name\": \"SHP_PRE_Painkillers\", \"obj_transform\": {\"position\": [7.25324869, 1.06625056, -1.470225], \"rotation\": [1.73277635e-06, 0.288971841, 5.23037556e-07, 0.9573376], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [7.25324869, 1.12934339, -1.47022486], \"size\": [0.09543787, 0.126186147, 0.09495075]}, \"properties\": [], \"states\": []}, {\"id\": 246, \"category\": \"Props\", \"class_name\": \"book\", \"prefab_name\": \"Book_1\", \"obj_transform\": {\"position\": [7.349, 0.685, -1.476], \"rotation\": [0.5000001, 0.5, 0.5, 0.49999994], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [7.349, 0.685, -1.476], \"size\": [0.05725479, 0.2769183, 0.221235037]}, \"properties\": [\"GRABBABLE\", \"CUTTABLE\", \"CAN_OPEN\", \"READABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 247, \"category\": \"Props\", \"class_name\": \"notes\", \"prefab_name\": \"Notes_1\", \"obj_transform\": {\"position\": [6.513, 1.113, -1.432], \"rotation\": [0.0, 0.0, -0.20949927, 0.977808833], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [6.5150485, 1.1175611, -1.432], \"size\": [0.204785347, 0.09925628, 0.1500001]}, \"properties\": [\"GRABBABLE\", \"READABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 248, \"category\": \"Props\", \"class_name\": \"cellphone\", \"prefab_name\": \"Cellphone_6a\", \"obj_transform\": {\"position\": [8.925063, 0.96, -2.7723577], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.2, 1.2, 1.2]}, \"bounding_box\": {\"center\": [8.925063, 0.96, -2.7723577], \"size\": [0.0540008545, 0.0191999674, 0.131999969]}, \"properties\": [\"GRABBABLE\", \"HAS_SWITCH\", \"HAS_PLUG\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 249, \"category\": \"Doors\", \"class_name\": \"doorjamb\", \"prefab_name\": \"PRE_DOO_Doorjamb_04\", \"obj_transform\": {\"position\": [5.005, 0.0, -2.473], \"rotation\": [0.0, 1.0, 0.0, 0.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [5.004643, 1.029126, -2.47299623], \"size\": [0.122323029, 2.058256, 0.9283974]}, \"properties\": [], \"states\": []}, {\"id\": 250, \"category\": \"Doors\", \"class_name\": \"door\", \"prefab_name\": \"PRE_DOO_Door_01_05\", \"obj_transform\": {\"position\": [5.038, 0.995, -2.90500021], \"rotation\": [0.0, 0.702525735, 0.0, 0.711658359], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [5.004643, 0.5, -2.47299623], \"size\": [0.9283972, 1.0, 0.9283972]}, \"properties\": [\"CAN_OPEN\"], \"states\": [\"OPEN\"]}, {\"id\": 251, \"category\": \"Decor\", \"class_name\": \"rug\", \"prefab_name\": \"PRE_DEC_Rug_01_09\", \"obj_transform\": {\"position\": [7.17, 0.0, -2.877], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [7.17, 0.0069701, -2.877], \"size\": [1.69976425, 0.0139463525, 1.69976473]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"SITTABLE\", \"LIEABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 252, \"category\": \"Decor\", \"class_name\": \"pillow\", \"prefab_name\": \"HSHP_PRE_DEC_Pillow_01_01\", \"obj_transform\": {\"position\": [5.515328, 0.440117121, -4.61856651], \"rotation\": [0.0, 0.06153321, 0.0, 0.9981051], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [5.536895, 0.541388869, -4.62453365], \"size\": [0.7523226, 0.202543557, 0.857013345]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 253, \"category\": \"Decor\", \"class_name\": \"pillow\", \"prefab_name\": \"HSHP_PRE_DEC_Pillow_01_01\", \"obj_transform\": {\"position\": [5.57285357, 0.6463858, -5.46487045], \"rotation\": [0.077141434, -3.37195916e-09, -0.9970202, -4.35811351e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [5.55148363, 0.54511404, -5.47150946], \"size\": [0.77368474, 0.202543631, 0.874123454]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 254, \"category\": \"Lamps\", \"class_name\": \"ceilinglamp\", \"prefab_name\": \"PRE_LAM_Ceiling_lamp_02_05\", \"obj_transform\": {\"position\": [7.5, 0.0, -3.706], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [7.5, 2.22767544, -3.706], \"size\": [0.5316591, 0.5451052, 0.5316596]}, \"properties\": [], \"states\": []}, {\"id\": 255, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Wood_01_02\", \"obj_transform\": {\"position\": [7.5, 0.0, -2.456], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [6.25, 0.0, -2.456], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 256, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Wood_01_02\", \"obj_transform\": {\"position\": [10.0, 0.0, -2.456], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [8.75, 0.0, -2.456], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 257, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Wood_01_02\", \"obj_transform\": {\"position\": [10.0, 0.0, -4.95600033], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [8.75, 0.0, -4.95600033], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 258, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Wood_01_02\", \"obj_transform\": {\"position\": [7.5, 0.0, -4.95600033], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [6.25, 0.0, -4.95600033], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 259, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [7.5, 0.0, -2.456], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [6.25, 2.50000024, -2.45600915], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 260, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [10.0, 0.0, -2.456], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [8.75, 2.50000024, -2.45600915], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 261, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [10.0, 0.0, -4.95600033], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [8.75, 2.50000024, -4.95600939], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 262, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Paint_01_05\", \"obj_transform\": {\"position\": [7.5, 0.0, -4.95600033], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [6.25, 2.50000024, -4.95600939], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 263, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_WAL_Doorway_corner_01_02_02\", \"obj_transform\": {\"position\": [5.0, 0.0, -2.456], \"rotation\": [0.0, 0.7071068, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [6.24998569, 1.2500093, -2.45600057], \"size\": [2.50004578, 2.50002766, 2.50000119]}, \"properties\": [], \"states\": []}, {\"id\": 264, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_WAL_Corner_02_02_02\", \"obj_transform\": {\"position\": [5.0, 0.0, -4.95600033], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [6.25, 1.25, -4.95599842], \"size\": [2.50000429, 2.500009, 2.50000381]}, \"properties\": [], \"states\": []}, {\"id\": 265, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_WAL_Corner_02_02_02\", \"obj_transform\": {\"position\": [10.0, 0.0, -2.456], \"rotation\": [0.0, 1.0, 0.0, 0.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [8.75, 1.25, -2.456002], \"size\": [2.50000429, 2.500009, 2.50000381]}, \"properties\": [], \"states\": []}, {\"id\": 266, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_WAL_Doorway_corner_01_02_02\", \"obj_transform\": {\"position\": [10.0, 0.0, -4.95600033], \"rotation\": [0.0, 0.7071068, 0.0, -0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [8.750014, 1.2500093, -4.95600033], \"size\": [2.50004578, 2.50002766, 2.50000119]}, \"properties\": [], \"states\": []}, {\"id\": 267, \"category\": \"Rooms\", \"class_name\": \"livingroom\", \"prefab_name\": \"PRE_ROO_Livingroom_08\", \"obj_transform\": {\"position\": [11.25, 0.0, -6.1842], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.75, 1.25, -4.9342], \"size\": [8.0, 3.0, 8.0]}, \"properties\": [], \"states\": []}, {\"id\": 268, \"category\": \"Furniture\", \"class_name\": \"coffeetable\", \"prefab_name\": \"PRE_FUR_Coffee_table_01_12\", \"obj_transform\": {\"position\": [15.976, 0.0, -6.02619934], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [15.9759979, 0.122000009, -6.02619934], \"size\": [1.28000009, 0.244000018, 1.27999973]}, \"properties\": [\"SURFACES\", \"MOVABLE\"], \"states\": []}, {\"id\": 269, \"category\": \"Furniture\", \"class_name\": \"bookshelf\", \"prefab_name\": \"PRE_FUR_Bookshelf_01_08\", \"obj_transform\": {\"position\": [10.238, 0.0, -2.7602], \"rotation\": [0.0, -8.940697e-08, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.238, 1.108, -2.7602005], \"size\": [0.320000023, 2.216, 2.114]}, \"properties\": [\"SURFACES\", \"CONTAINERS\"], \"states\": []}, {\"id\": 270, \"category\": \"Furniture\", \"class_name\": \"desk\", \"prefab_name\": \"PRE_FUR_CPU_table_01_04\", \"obj_transform\": {\"position\": [13.171999, 0.0, -1.8072], \"rotation\": [0.0, 0.7071067, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.171999, 0.475000024, -1.80720186], \"size\": [2.02799988, 0.950000048, 1.06799984]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 271, \"category\": \"Furniture\", \"class_name\": \"tvstand\", \"prefab_name\": \"PRE_FUR_TV_stand_01_11\", \"obj_transform\": {\"position\": [15.9939995, 0.002, -4.38419962], \"rotation\": [0.0, 0.7071059, 0.0, 0.707107663], \"scale\": [0.6734972, 0.6734972, 0.6734972]}, \"bounding_box\": {\"center\": [15.9953451, 0.167680323, -4.3842], \"size\": [1.45475507, 0.331360638, 0.5118543]}, \"properties\": [\"SURFACES\", \"MOVABLE\"], \"states\": []}, {\"id\": 272, \"category\": \"Furniture\", \"class_name\": \"bookshelf\", \"prefab_name\": \"PRE_FUR_Bookshelf_01_09\", \"obj_transform\": {\"position\": [10.238, 0.0, -7.06719971], \"rotation\": [0.0, -8.940697e-08, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.238, 1.108, -7.06719971], \"size\": [0.320000023, 2.216, 2.114]}, \"properties\": [\"SURFACES\", \"CONTAINERS\"], \"states\": []}, {\"id\": 273, \"category\": \"Furniture\", \"class_name\": \"chair\", \"prefab_name\": \"PRE_FUR_Recliner_01_01_01\", \"obj_transform\": {\"position\": [13.1369743, 0.0, -3.38419986], \"rotation\": [0.0, -0.854045749, 0.0, 0.520198], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.1833115, 0.617000043, -3.473944], \"size\": [0.909217, 1.04890013, 0.282441258]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"SITTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 274, \"category\": \"Furniture\", \"class_name\": \"nightstand\", \"prefab_name\": \"PRE_FUR_Nightstand_01_08\", \"obj_transform\": {\"position\": [13.978, 0.0, -7.94619942], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.9759979, 0.242000014, -7.94619942], \"size\": [0.748, 0.484000027, 0.747999966]}, \"properties\": [\"SURFACES\", \"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 275, \"category\": \"Furniture\", \"class_name\": \"sofa\", \"prefab_name\": \"PRE_FUR_Sofa_02_02_01_03\", \"obj_transform\": {\"position\": [13.75, 0.0, -6.13419962], \"rotation\": [0.0, -1.25169754e-06, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.742, 0.57100004, -6.13419962], \"size\": [1.03869379, 0.9707001, 2.36470222]}, \"properties\": [\"SURFACES\", \"SITTABLE\", \"LIEABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 276, \"category\": \"Furniture\", \"class_name\": \"sofa\", \"prefab_name\": \"PRE_FUR_Sofa_02_02_01_02\", \"obj_transform\": {\"position\": [15.946, 0.0, -7.98619938], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [15.9459982, 0.57100004, -7.99419928], \"size\": [2.36469984, 0.9707001, 1.03869963]}, \"properties\": [\"SURFACES\", \"SITTABLE\", \"LIEABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 277, \"category\": \"Furniture\", \"class_name\": \"closet\", \"prefab_name\": \"PRE_FUR_Closet_02_02_01\", \"obj_transform\": {\"position\": [17.1099987, 0.0, -2.55419946], \"rotation\": [0.0, 1.0, 0.0, -1.49011612e-07], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1099968, 1.1825217, -2.43220782], \"size\": [0.623867035, 2.36524463, 1.49973154]}, \"properties\": [\"CAN_OPEN\", \"CONTAINERS\"], \"states\": [\"CLOSED\"]}, {\"id\": 278, \"category\": \"Furniture\", \"class_name\": \"hanger\", \"prefab_name\": \"PRE_PRO_Coat_hanger_01_01_01\", \"obj_transform\": {\"position\": [17.111, 1.797, -2.54419947], \"rotation\": [0.0, 0.7071066, 0.0, -0.707106948], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1099529, 1.90511858, -2.54420161], \"size\": [0.469722748, 0.241116285, 0.0150446892]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 279, \"category\": \"Furniture\", \"class_name\": \"hanger\", \"prefab_name\": \"PRE_PRO_Coat_hanger_01_01_02\", \"obj_transform\": {\"position\": [17.1109962, 1.797, -2.41712761], \"rotation\": [0.0, 0.7310622, 0.0, -0.682310939], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.109951, 1.90511858, -2.41720152], \"size\": [0.469642639, 0.241116285, 0.04737425]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 280, \"category\": \"Furniture\", \"class_name\": \"hanger\", \"prefab_name\": \"PRE_PRO_Coat_hanger_01_01_03\", \"obj_transform\": {\"position\": [17.111, 1.797, -2.31919956], \"rotation\": [0.0, 0.7071066, 0.0, -0.707106948], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1099529, 1.90511858, -2.31920171], \"size\": [0.469722748, 0.241116285, 0.0150446892]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 281, \"category\": \"Furniture\", \"class_name\": \"hanger\", \"prefab_name\": \"PRE_PRO_Coat_hanger_01_01_04\", \"obj_transform\": {\"position\": [17.1109982, 1.797, -2.217263], \"rotation\": [0.0, 0.685278058, 0.0, -0.7282815], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1099548, 1.90511858, -2.21720171], \"size\": [0.469768524, 0.241116285, 0.04357004]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 282, \"category\": \"Furniture\", \"class_name\": \"hanger\", \"prefab_name\": \"PRE_PRO_Coat_hanger_01_01_05\", \"obj_transform\": {\"position\": [17.115, 1.797, -2.1172], \"rotation\": [0.0, 0.6866626, 0.0, -0.7269762], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1139565, 1.90511858, -2.11714363], \"size\": [0.469818115, 0.241116285, 0.0417890549]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 283, \"category\": \"Furniture\", \"class_name\": \"hanger\", \"prefab_name\": \"PRE_PRO_Coat_hanger_01_01_06\", \"obj_transform\": {\"position\": [17.122, 1.797, -1.84619951], \"rotation\": [0.0, 0.7238253, 0.0, -0.6899833], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1209564, 1.90511858, -1.84625244], \"size\": [0.469905853, 0.241116285, 0.0375015736]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 284, \"category\": \"Furniture\", \"class_name\": \"hanger\", \"prefab_name\": \"PRE_PRO_Coat_hanger_01_01_07\", \"obj_transform\": {\"position\": [17.13, 1.797, -1.99019957], \"rotation\": [0.0, 0.7238253, 0.0, -0.6899833], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1289558, 1.90511858, -1.99025249], \"size\": [0.469905853, 0.241116285, 0.0375016928]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 285, \"category\": \"Furniture\", \"class_name\": \"closetdrawer\", \"prefab_name\": \"PRE_FUR_Closet_02_Drawer_01\", \"obj_transform\": {\"position\": [17.1054, 0.828, -2.18119955], \"rotation\": [0.0, 1.0, 0.0, -1.49011612e-07], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1053963, 0.928222537, -2.18120122], \"size\": [0.565375, 0.200448319, 0.9477489]}, \"properties\": [], \"states\": []}, {\"id\": 286, \"category\": \"Furniture\", \"class_name\": \"closetdrawer\", \"prefab_name\": \"PRE_FUR_Closet_02_Drawer_02\", \"obj_transform\": {\"position\": [17.1099987, 0.5991, -2.92779946], \"rotation\": [0.0, 1.0, 0.0, -1.49011612e-07], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1099968, 0.6993225, -2.9278], \"size\": [0.565374732, 0.200446546, 0.459288418]}, \"properties\": [], \"states\": []}, {\"id\": 287, \"category\": \"Furniture\", \"class_name\": \"closetdrawer\", \"prefab_name\": \"PRE_FUR_Closet_02_Drawer_03\", \"obj_transform\": {\"position\": [17.1099987, 0.37, -2.92819953], \"rotation\": [0.0, 1.0, 0.0, -1.49011612e-07], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1099968, 0.470222533, -2.9282], \"size\": [0.565374732, 0.200446546, 0.459288418]}, \"properties\": [], \"states\": []}, {\"id\": 288, \"category\": \"Furniture\", \"class_name\": \"closetdrawer\", \"prefab_name\": \"PRE_FUR_Closet_02_Drawer_04\", \"obj_transform\": {\"position\": [17.105, 0.598, -2.18119955], \"rotation\": [0.0, 1.0, 0.0, -1.49011612e-07], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1049957, 0.6982225, -2.18120122], \"size\": [0.565375, 0.200448319, 0.9477489]}, \"properties\": [], \"states\": []}, {\"id\": 289, \"category\": \"Furniture\", \"class_name\": \"closetdrawer\", \"prefab_name\": \"PRE_FUR_Closet_02_Drawer_05\", \"obj_transform\": {\"position\": [17.105, 0.3673, -2.18119955], \"rotation\": [0.0, 1.0, 0.0, -1.49011612e-07], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1049957, 0.467522532, -2.18120122], \"size\": [0.565375, 0.200448319, 0.9477489]}, \"properties\": [], \"states\": []}, {\"id\": 290, \"category\": \"Furniture\", \"class_name\": \"closetdrawer\", \"prefab_name\": \"PRE_FUR_Closet_02_Drawer_06\", \"obj_transform\": {\"position\": [17.1099987, 0.1393, -2.92819953], \"rotation\": [0.0, 1.0, 0.0, -1.49011612e-07], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1099968, 0.239522517, -2.9282], \"size\": [0.565374732, 0.200446546, 0.459288418]}, \"properties\": [], \"states\": []}, {\"id\": 291, \"category\": \"Furniture\", \"class_name\": \"closetdrawer\", \"prefab_name\": \"PRE_FUR_Closet_02_Drawer_07\", \"obj_transform\": {\"position\": [17.105, 0.1386, -2.18119955], \"rotation\": [0.0, 1.0, 0.0, -1.49011612e-07], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.1049957, 0.23882255, -2.18120122], \"size\": [0.565375, 0.200448319, 0.9477489]}, \"properties\": [], \"states\": []}, {\"id\": 292, \"category\": \"Electronics\", \"class_name\": \"computer\", \"prefab_name\": \"PRE_ELE_CPU_case_01\", \"obj_transform\": {\"position\": [13.872, 0.0, -1.98720026], \"rotation\": [0.0, 0.7071067, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.8719988, 0.367990226, -1.99220407], \"size\": [0.258682221, 0.7359814, 0.7459847]}, \"properties\": [\"HAS_SWITCH\", \"LOOKABLE\"], \"states\": [\"OFF\"]}, {\"id\": 293, \"category\": \"Electronics\", \"class_name\": \"cpuscreen\", \"prefab_name\": \"PRE_ELE_CPU_screen_02\", \"obj_transform\": {\"position\": [13.1519995, 0.95, -1.84719992], \"rotation\": [0.0, 0.7071067, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.1519976, 1.2888025, -1.88289154], \"size\": [0.9265996, 0.6776071, 0.288628072]}, \"properties\": [], \"states\": []}, {\"id\": 294, \"category\": \"Electronics\", \"class_name\": \"keyboard\", \"prefab_name\": \"PRE_ELE_Keyboard_05\", \"obj_transform\": {\"position\": [13.112999, 0.95, -2.16719961], \"rotation\": [0.0, 0.7071067, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.112999, 0.9745669, -2.167202], \"size\": [0.707199037, 0.04913636, 0.221636161]}, \"properties\": [\"GRABBABLE\", \"HAS_PLUG\", \"MOVABLE\"], \"states\": []}, {\"id\": 295, \"category\": \"Electronics\", \"class_name\": \"mousemat\", \"prefab_name\": \"PRE_ELE_Mouse_mat_05\", \"obj_transform\": {\"position\": [13.8119993, 0.95, -2.06720018], \"rotation\": [0.0, -8.940697e-08, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.8119984, 0.9535819, -2.067201], \"size\": [0.436930478, 0.00716543244, 0.432462156]}, \"properties\": [\"SURFACES\", \"MOVABLE\"], \"states\": []}, {\"id\": 296, \"category\": \"Electronics\", \"class_name\": \"mouse\", \"prefab_name\": \"PRE_ELE_Mouse_01\", \"obj_transform\": {\"position\": [13.9049988, 0.96, -1.97919989], \"rotation\": [0.0, 0.8364398, 0.0, 0.548059], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.9049988, 0.98012507, -1.97920191], \"size\": [0.169668853, 0.0402507074, 0.2085543]}, \"properties\": [\"GRABBABLE\", \"HAS_PLUG\", \"MOVABLE\"], \"states\": []}, {\"id\": 297, \"category\": \"Electronics\", \"class_name\": \"tv\", \"prefab_name\": \"PRE_ELE_TV_01\", \"obj_transform\": {\"position\": [15.9769993, 0.337, -4.34519958], \"rotation\": [0.0, 0.7071059, 0.0, 0.707107663], \"scale\": [0.6734972, 0.6734972, 0.6734972]}, \"bounding_box\": {\"center\": [15.9769955, 0.7671747, -4.34519958], \"size\": [1.15586412, 0.8603518, 0.246017545]}, \"properties\": [\"HAS_SWITCH\", \"LOOKABLE\", \"HAS_PLUG\"], \"states\": [\"OFF\"]}, {\"id\": 298, \"category\": \"Electronics\", \"class_name\": \"powersocket\", \"prefab_name\": \"PRE_ELE_Power_socket_01\", \"obj_transform\": {\"position\": [10.0478, 0.151, -5.4993], \"rotation\": [0.0, -8.940697e-08, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.0558319, 0.151, -5.4993], \"size\": [0.01606408, 0.154280722, 0.09082343]}, \"properties\": [], \"states\": []}, {\"id\": 299, \"category\": \"Electronics\", \"class_name\": \"lightswitch\", \"prefab_name\": \"PRE_ELE_Light_switch_03\", \"obj_transform\": {\"position\": [10.051, 1.128, -4.3222], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.0535517, 1.128, -4.322201], \"size\": [0.00510567147, 0.0936371461, 0.068677865]}, \"properties\": [\"HAS_SWITCH\", \"HAS_PLUG\"], \"states\": [\"ON\"]}, {\"id\": 300, \"category\": \"Decor\", \"class_name\": \"rug\", \"prefab_name\": \"PRE_DEC_Rug_01_08\", \"obj_transform\": {\"position\": [11.287, 0.0, -4.9132], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [11.287, 0.0069701, -4.9132], \"size\": [1.69976425, 0.0139463525, 1.69976425]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"SITTABLE\", \"LIEABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 301, \"category\": \"Decor\", \"class_name\": \"wallpictureframe\", \"prefab_name\": \"PRE_DEC_Painting_06\", \"obj_transform\": {\"position\": [13.206, 1.438, -8.634199], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.206, 1.438, -8.613089], \"size\": [0.9584053, 1.25342965, 0.0422530174]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 302, \"category\": \"Decor\", \"class_name\": \"orchid\", \"prefab_name\": \"PRE_DEC_Orchid_01\", \"obj_transform\": {\"position\": [15.9499989, 0.246, -5.98419952], \"rotation\": [0.0, -0.500201, 0.0, 0.865909338], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [15.95, 0.342992067, -5.98419952], \"size\": [0.2402935, 0.193984792, 0.2402935]}, \"properties\": [], \"states\": []}, {\"id\": 303, \"category\": \"Decor\", \"class_name\": \"wallpictureframe\", \"prefab_name\": \"PRE_DEC_Painting_03\", \"obj_transform\": {\"position\": [12.42, 1.473, -8.6352], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [12.420002, 1.47300017, -8.61434], \"size\": [0.955631256, 1.2570436, 0.041721344]}, \"properties\": [\"GRABBABLE\", \"HANGABLE\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": []}, {\"id\": 304, \"category\": \"Decor\", \"class_name\": \"curtains\", \"prefab_name\": \"PRE_DEC_Curtains_02_06\", \"obj_transform\": {\"position\": [17.4119987, -0.036, -4.934199], \"rotation\": [0.0, -1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.40256, 2.01888561, -4.934317], \"size\": [0.0259928685, 0.0333948135, 2.328011]}, \"properties\": [\"CAN_OPEN\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 305, \"category\": \"Decor\", \"class_name\": \"curtains\", \"prefab_name\": \"PRE_DEC_Curtains_02_02\", \"obj_transform\": {\"position\": [17.403, -0.033, -4.15319872], \"rotation\": [0.0, -1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.374012, 1.45854831, -4.14719], \"size\": [0.107336044, 1.15232611, 0.593183756]}, \"properties\": [\"CAN_OPEN\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 306, \"category\": \"Decor\", \"class_name\": \"curtains\", \"prefab_name\": \"PRE_DEC_Curtains_02_01\", \"obj_transform\": {\"position\": [17.406, -0.033, -5.704199], \"rotation\": [0.0, -1.0, 0.0, 0.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.37701, 1.45854843, -5.71020126], \"size\": [0.107336044, 1.15232587, 0.5931835]}, \"properties\": [\"CAN_OPEN\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 307, \"category\": \"Decor\", \"class_name\": \"pillow\", \"prefab_name\": \"PRE_DEC_Pillow_01_14\", \"obj_transform\": {\"position\": [13.894, 0.652, -5.67319965], \"rotation\": [0.156342983, 0.0256116986, -0.00408370048, 0.987362266], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.917572, 0.7493275, -5.646211], \"size\": [0.7022148, 0.434173822, 0.8392429]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 308, \"category\": \"Decor\", \"class_name\": \"pillow\", \"prefab_name\": \"PRE_DEC_Pillow_01_13\", \"obj_transform\": {\"position\": [13.8949747, 0.5832388, -6.1096], \"rotation\": [0.0, -0.124900252, 0.0, 0.992169261], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.9172306, 0.6845105, -6.10728455], \"size\": [0.8344189, 0.202543557, 0.921215]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 309, \"category\": \"Decor\", \"class_name\": \"pillow\", \"prefab_name\": \"PRE_DEC_Pillow_01_12\", \"obj_transform\": {\"position\": [15.4901476, 0.7394661, -8.160517], \"rotation\": [0.2239785, -0.6849591, -0.3087206, 0.620770752], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [15.4982691, 0.795521736, -8.073635], \"size\": [0.8736327, 0.713223338, 0.643139541]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 310, \"category\": \"Decor\", \"class_name\": \"pillow\", \"prefab_name\": \"PRE_DEC_Pillow_01_11\", \"obj_transform\": {\"position\": [16.5313454, 0.583238661, -7.867544], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [16.5346165, 0.6845104, -7.845407], \"size\": [0.7817019, 0.202543557, 0.661311567]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 311, \"category\": \"Props\", \"class_name\": \"clothespile\", \"prefab_name\": \"PRE_PRO_Clothes_pile_09\", \"obj_transform\": {\"position\": [10.218, 0.568, -6.8082], \"rotation\": [0.0, -0.7757056, 0.0, 0.631095052], \"scale\": [0.7687373, 0.7687374, 0.7687374]}, \"bounding_box\": {\"center\": [10.2180014, 0.6304647, -6.8082], \"size\": [0.304214478, 0.124930143, 0.377536774]}, \"properties\": [\"GRABBABLE\", \"CAN_OPEN\", \"CONTAINERS\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 312, \"category\": \"Props\", \"class_name\": \"clothespile\", \"prefab_name\": \"PRE_PRO_Clothes_pile_04\", \"obj_transform\": {\"position\": [10.222, 0.57, -2.48220038], \"rotation\": [0.0, -0.645543, 0.0, 0.763724], \"scale\": [0.807375968, 0.807375968, 0.807376]}, \"bounding_box\": {\"center\": [10.2220011, 0.635604262, -2.48220158], \"size\": [0.308263779, 0.131209373, 0.3896227]}, \"properties\": [\"GRABBABLE\", \"CAN_OPEN\", \"CONTAINERS\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 313, \"category\": \"Props\", \"class_name\": \"perfume\", \"prefab_name\": \"PRE_PRO_Perfume_01\", \"obj_transform\": {\"position\": [10.2406654, 1.12658966, -7.447302], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.2406654, 1.20301235, -7.447302], \"size\": [0.05325372, 0.152845576, 0.05325372]}, \"properties\": [], \"states\": []}, {\"id\": 314, \"category\": \"Props\", \"class_name\": \"photoframe\", \"prefab_name\": \"PRE_PRO_Photo_frame_01\", \"obj_transform\": {\"position\": [10.2370014, 1.12658954, -7.276342], \"rotation\": [0.0, 0.278419465, 0.0, 0.9604596], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.23844, 1.23285282, -7.27725267], \"size\": [0.149286941, 0.212527975, 0.174105883]}, \"properties\": [], \"states\": []}, {\"id\": 315, \"category\": \"Props\", \"class_name\": \"facecream\", \"prefab_name\": \"PRE_PRO_Face_cream_01\", \"obj_transform\": {\"position\": [10.2406206, 1.12658966, -3.00135446], \"rotation\": [0.0, -0.00674444437, 0.0, 0.999977231], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.2406206, 1.14235342, -3.00135565], \"size\": [0.06541863, 0.03152771, 0.06541873]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"MOVABLE\", \"CREAM\"], \"states\": []}, {\"id\": 316, \"category\": \"Props\", \"class_name\": \"deodorant\", \"prefab_name\": \"PRE_PRO_Deodorant_01\", \"obj_transform\": {\"position\": [10.2892666, 1.12658954, -3.11244464], \"rotation\": [0.0, -0.141818076, 0.0, 0.98989284], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.2892666, 1.19979334, -3.11244583], \"size\": [0.0510049462, 0.1464077, 0.0510052964]}, \"properties\": [], \"states\": []}, {\"id\": 317, \"category\": \"Props\", \"class_name\": \"hairproduct\", \"prefab_name\": \"PRE_PRO_Conditioner_01\", \"obj_transform\": {\"position\": [10.215, 1.674, -2.45920014], \"rotation\": [0.0, 0.1577926, 0.0, 0.9874723], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.215, 1.76451778, -2.45920157], \"size\": [0.09328605, 0.181035683, 0.09328632]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 318, \"category\": \"Props\", \"class_name\": \"hairproduct\", \"prefab_name\": \"PRE_PRO_Shampoo_01\", \"obj_transform\": {\"position\": [10.2761278, 1.67444026, -2.59102273], \"rotation\": [0.0, 0.00144836307, 0.0, 0.9999989], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.2761278, 1.764958, -2.591024], \"size\": [0.07414263, 0.181035683, 0.07414305]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"CAN_OPEN\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 319, \"category\": \"Props\", \"class_name\": \"box\", \"prefab_name\": \"PRE_PRO_Box_02\", \"obj_transform\": {\"position\": [10.205, 1.6753, -6.77219963], \"rotation\": [0.0, 0.9855776, 0.0, -0.169224411], \"scale\": [0.709448, 0.709448, 0.709448]}, \"bounding_box\": {\"center\": [10.205, 1.74433649, -6.77219963], \"size\": [0.2820773, 0.138074145, 0.3365816]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"CAN_OPEN\", \"CONTAINERS\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 320, \"category\": \"Props\", \"class_name\": \"box\", \"prefab_name\": \"PRE_PRO_Box_01\", \"obj_transform\": {\"position\": [10.2361, 1.124, -3.5352], \"rotation\": [0.0, -0.151940525, 0.0, 0.9883896], \"scale\": [0.6644365, 0.6644365, 0.6644365]}, \"bounding_box\": {\"center\": [10.2361, 1.18865645, -3.535201], \"size\": [0.257304579, 0.129313931, 0.3120644]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"CAN_OPEN\", \"CONTAINERS\", \"COVER_OBJECT\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 324, \"category\": \"Props\", \"class_name\": \"milkshake\", \"prefab_name\": \"DHP_PRE_Milkshake_1024\", \"obj_transform\": {\"position\": [15.6958609, 0.245397717, -6.30516], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [15.69586, 0.397076219, -6.321452], \"size\": [0.0915312, 0.302952021, 0.122949891]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"CUTTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 326, \"category\": \"Props\", \"class_name\": \"folder\", \"prefab_name\": \"Folder_1\", \"obj_transform\": {\"position\": [10.249, 1.282, -2.51700068], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.249, 1.282, -2.51700115], \"size\": [0.281150818, 0.319756985, 0.07499981]}, \"properties\": [\"GRABBABLE\", \"CAN_OPEN\", \"READABLE\", \"CONTAINERS\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 327, \"category\": \"Props\", \"class_name\": \"folder\", \"prefab_name\": \"Folder_2\", \"obj_transform\": {\"position\": [10.2413273, 1.282, -2.8736105], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.2413273, 1.282, -2.8736105], \"size\": [0.281150818, 0.319756985, 0.07499981]}, \"properties\": [\"GRABBABLE\", \"CAN_OPEN\", \"READABLE\", \"CONTAINERS\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 328, \"category\": \"Props\", \"class_name\": \"folder\", \"prefab_name\": \"Folder_1\", \"obj_transform\": {\"position\": [10.246, 1.282, -2.613], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.246, 1.282, -2.613], \"size\": [0.281150818, 0.319756985, 0.07499981]}, \"properties\": [\"GRABBABLE\", \"CAN_OPEN\", \"READABLE\", \"CONTAINERS\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 329, \"category\": \"Props\", \"class_name\": \"folder\", \"prefab_name\": \"Folder_4\", \"obj_transform\": {\"position\": [10.244, 1.282, -2.70800066], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.244, 1.282, -2.70800114], \"size\": [0.281150818, 0.319756985, 0.07499981]}, \"properties\": [\"GRABBABLE\", \"CAN_OPEN\", \"READABLE\", \"CONTAINERS\", \"HAS_PAPER\", \"MOVABLE\"], \"states\": [\"CLOSED\"]}, {\"id\": 330, \"category\": \"Lamps\", \"class_name\": \"ceilinglamp\", \"prefab_name\": \"PRE_LAM_Ceiling_lamp_02_08\", \"obj_transform\": {\"position\": [12.5, 0.0, -4.9342], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [12.5, 2.22767544, -4.93420029], \"size\": [0.5316601, 0.5451052, 0.5316591]}, \"properties\": [], \"states\": []}, {\"id\": 331, \"category\": \"Lamps\", \"class_name\": \"walllamp\", \"prefab_name\": \"PRE_LAM_Wall_lamp_01_01\", \"obj_transform\": {\"position\": [12.1629992, 0.747, -1.23220015], \"rotation\": [0.0, 0.7071067, 0.0, 0.7071068], \"scale\": [0.595147252, 0.595147252, 0.595147252]}, \"bounding_box\": {\"center\": [12.1629963, 1.490934, -1.283195], \"size\": [0.130836412, 0.513281941, 0.101986192]}, \"properties\": [], \"states\": []}, {\"id\": 332, \"category\": \"Lamps\", \"class_name\": \"walllamp\", \"prefab_name\": \"PRE_LAM_Wall_lamp_01_01\", \"obj_transform\": {\"position\": [14.197, 0.747, -1.23220015], \"rotation\": [0.0, 0.7071067, 0.0, 0.7071068], \"scale\": [0.595147, 0.595147, 0.595147]}, \"bounding_box\": {\"center\": [14.1969957, 1.49093378, -1.283195], \"size\": [0.130836353, 0.513281763, 0.101986155]}, \"properties\": [], \"states\": []}, {\"id\": 333, \"category\": \"Lamps\", \"class_name\": \"walllamp\", \"prefab_name\": \"PRE_LAM_Wall_lamp_01_01\", \"obj_transform\": {\"position\": [11.3810005, 0.747, -8.634199], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [0.595147, 0.595147, 0.595147]}, \"bounding_box\": {\"center\": [11.3810034, 1.49093378, -8.583206], \"size\": [0.130836353, 0.513281763, 0.101986155]}, \"properties\": [], \"states\": []}, {\"id\": 334, \"category\": \"Lamps\", \"class_name\": \"walllamp\", \"prefab_name\": \"PRE_LAM_Wall_lamp_01_01\", \"obj_transform\": {\"position\": [13.415, 0.747, -8.634199], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [0.595147, 0.595147, 0.595147]}, \"bounding_box\": {\"center\": [13.4150009, 1.49093378, -8.583206], \"size\": [0.130836353, 0.513281763, 0.101986155]}, \"properties\": [], \"states\": []}, {\"id\": 335, \"category\": \"Lamps\", \"class_name\": \"walllamp\", \"prefab_name\": \"PRE_LAM_Wall_lamp_01_02\", \"obj_transform\": {\"position\": [17.446, 0.747, -3.510199], \"rotation\": [0.0, -1.00000012, 0.0, -4.21404839e-05], \"scale\": [0.595147, 0.595147, 0.595147]}, \"bounding_box\": {\"center\": [17.3950062, 1.49093378, -3.51020169], \"size\": [0.101997212, 0.513281763, 0.130845]}, \"properties\": [], \"states\": []}, {\"id\": 336, \"category\": \"Lamps\", \"class_name\": \"walllamp\", \"prefab_name\": \"PRE_LAM_Wall_lamp_01_03\", \"obj_transform\": {\"position\": [17.446, 0.747, -6.408199], \"rotation\": [0.0, -1.00000012, 0.0, -4.21404839e-05], \"scale\": [0.595147, 0.595147, 0.595147]}, \"bounding_box\": {\"center\": [17.3950062, 1.49093378, -6.40820026], \"size\": [0.101997212, 0.513281763, 0.130845]}, \"properties\": [], \"states\": []}, {\"id\": 337, \"category\": \"Lamps\", \"class_name\": \"tablelamp\", \"prefab_name\": \"PRE_LAM_Table_lamp_02_09\", \"obj_transform\": {\"position\": [13.9831829, 0.486169219, -7.94010735], \"rotation\": [0.0, -0.5040835, 0.0, 0.8636549], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.983181, 0.7775964, -7.94010735], \"size\": [0.364088058, 0.577501655, 0.371665955]}, \"properties\": [\"HAS_SWITCH\", \"HAS_PLUG\"], \"states\": [\"ON\"]}, {\"id\": 338, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Straight_01_03\", \"obj_transform\": {\"position\": [13.75, 0.0, -8.684199], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.7500029, 1.24999988, -8.654199], \"size\": [2.5000093, 2.50000882, 0.0600010045]}, \"properties\": [], \"states\": []}, {\"id\": 339, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Straight_01_03\", \"obj_transform\": {\"position\": [13.749999, 0.0, -1.18419981], \"rotation\": [0.0, 0.7071067, 0.0, 0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.7499933, 1.24999988, -1.21420193], \"size\": [2.5000093, 2.50000882, 0.0600010045]}, \"properties\": [], \"states\": []}, {\"id\": 340, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Doorway_01_03\", \"obj_transform\": {\"position\": [10.0, 0.0, -4.9342], \"rotation\": [0.0, -8.940697e-08, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [10.0299988, 1.24999571, -4.934205], \"size\": [0.06000357, 2.50000954, 2.500009]}, \"properties\": [], \"states\": []}, {\"id\": 341, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Window_02_01_03\", \"obj_transform\": {\"position\": [17.5, 0.0, -4.934199], \"rotation\": [0.0, -1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.4700012, 1.24999344, -4.93419075], \"size\": [0.0599976741, 2.50002646, 2.50001764]}, \"properties\": [], \"states\": []}, {\"id\": 342, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Corner_02_01_03\", \"obj_transform\": {\"position\": [11.25, 0.0, -1.18420029], \"rotation\": [0.0, -0.7071067, 0.0, -0.7071068], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [11.2500019, 1.25, -2.43420219], \"size\": [2.50000381, 2.500009, 2.50000429]}, \"properties\": [], \"states\": []}, {\"id\": 343, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Corner_02_01_03\", \"obj_transform\": {\"position\": [10.0, 0.0, -7.4342], \"rotation\": [0.0, 8.940697e-08, 0.0, -1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [11.25, 1.25, -7.43419743], \"size\": [2.50000429, 2.500009, 2.50000381]}, \"properties\": [], \"states\": []}, {\"id\": 344, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_PAI_Corner_02_01_03\", \"obj_transform\": {\"position\": [16.25, 0.0, -8.684199], \"rotation\": [0.0, 0.7071068, 0.0, -0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [16.2499981, 1.25, -7.43419838], \"size\": [2.50000381, 2.500009, 2.50000429]}, \"properties\": [], \"states\": []}, {\"id\": 345, \"category\": \"Walls\", \"class_name\": \"wall\", \"prefab_name\": \"PRE_WAL_WAL_Doorway_corner_01_01_03\", \"obj_transform\": {\"position\": [16.25, 0.0, -1.18419981], \"rotation\": [0.0, 1.0, 0.0, -1.49011612e-07], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [16.25, 1.2500093, -2.43418741], \"size\": [2.50000143, 2.50002766, 2.500046]}, \"properties\": [], \"states\": []}, {\"id\": 346, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_02_02\", \"obj_transform\": {\"position\": [11.25, 0.0, -6.1842], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [11.25001, 2.50000024, -7.43420029], \"size\": [2.5, 9.059906e-06, 2.50000048]}, \"properties\": [], \"states\": []}, {\"id\": 347, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_02_02\", \"obj_transform\": {\"position\": [11.25, 0.0, -3.6842], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [11.25001, 2.50000024, -4.93420029], \"size\": [2.5, 9.059906e-06, 2.50000048]}, \"properties\": [], \"states\": []}, {\"id\": 348, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_02_02\", \"obj_transform\": {\"position\": [11.25, 0.0, -1.18420029], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [11.2500086, 2.50000024, -2.43420029], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 349, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_02_02\", \"obj_transform\": {\"position\": [13.749999, 0.0, -1.18419981], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.7500086, 2.50000024, -2.43419981], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 350, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_02_02\", \"obj_transform\": {\"position\": [13.75, 0.0, -3.68419981], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.75001, 2.50000024, -4.9342], \"size\": [2.5, 9.059906e-06, 2.50000024]}, \"properties\": [], \"states\": []}, {\"id\": 351, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_02_02\", \"obj_transform\": {\"position\": [13.75, 0.0, -6.18419933], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.75001, 2.50000024, -7.43419933], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 352, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_02_02\", \"obj_transform\": {\"position\": [16.25, 0.0, -6.18419933], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [16.25001, 2.50000024, -7.43419933], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 353, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_02_02\", \"obj_transform\": {\"position\": [16.25, 0.0, -3.68419957], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [16.25001, 2.50000024, -4.93419933], \"size\": [2.5, 9.059906e-06, 2.50000024]}, \"properties\": [], \"states\": []}, {\"id\": 354, \"category\": \"Ceiling\", \"class_name\": \"ceiling\", \"prefab_name\": \"PRE_CEI_Tile_02_02\", \"obj_transform\": {\"position\": [16.25, 0.0, -1.18419981], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [16.25001, 2.50000024, -2.43419981], \"size\": [2.5, 9.059906e-06, 2.5]}, \"properties\": [], \"states\": []}, {\"id\": 355, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_03\", \"obj_transform\": {\"position\": [11.25, 0.0, -6.1842], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [11.25, 0.0, -7.43420029], \"size\": [2.5, 9.049975e-06, 2.50000048]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 356, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_03\", \"obj_transform\": {\"position\": [11.25, 0.0, -3.6842], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [11.25, 0.0, -4.93420029], \"size\": [2.5, 9.049975e-06, 2.50000048]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 357, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_03\", \"obj_transform\": {\"position\": [11.25, 0.0, -1.18420029], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [11.249999, 0.0, -2.43420029], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 358, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_03\", \"obj_transform\": {\"position\": [13.749999, 0.0, -1.18419981], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.749999, 0.0, -2.43419981], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 359, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_03\", \"obj_transform\": {\"position\": [13.75, 0.0, -3.68419981], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.75, 0.0, -4.9342], \"size\": [2.5, 9.049975e-06, 2.50000024]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 360, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_03\", \"obj_transform\": {\"position\": [13.75, 0.0, -6.18419933], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.75, 0.0, -7.43419933], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 361, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_03\", \"obj_transform\": {\"position\": [16.25, 0.0, -6.18419933], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [16.25, 0.0, -7.43419933], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 362, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_03\", \"obj_transform\": {\"position\": [16.25, 0.0, -3.68419957], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [16.25, 0.0, -4.93419933], \"size\": [2.5, 9.049975e-06, 2.50000024]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 363, \"category\": \"Floor\", \"class_name\": \"floor\", \"prefab_name\": \"PRE_FLO_Tile_03\", \"obj_transform\": {\"position\": [16.25, 0.0, -1.18419981], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [16.25, 0.0, -2.43419981], \"size\": [2.5, 9.049975e-06, 2.5]}, \"properties\": [\"SURFACES\"], \"states\": []}, {\"id\": 364, \"category\": \"Doors\", \"class_name\": \"doorjamb\", \"prefab_name\": \"PRE_DOO_Doorjamb_02\", \"obj_transform\": {\"position\": [10.0, 0.0, -4.9362], \"rotation\": [0.0, -1.0, 0.0, -8.940697e-08], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [9.999643, 1.029126, -4.93619633], \"size\": [0.122323252, 2.058256, 0.9283974]}, \"properties\": [], \"states\": []}, {\"id\": 365, \"category\": \"Doors\", \"class_name\": \"doorjamb\", \"prefab_name\": \"PRE_DOO_Doorjamb_05\", \"obj_transform\": {\"position\": [16.23, 0.0, -1.183001], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [16.2300034, 1.029126, -1.18264413], \"size\": [0.928398132, 2.058256, 0.122323155]}, \"properties\": [], \"states\": []}, {\"id\": 366, \"category\": \"Doors\", \"class_name\": \"door\", \"prefab_name\": \"PRE_DOO_Door_01_05\", \"obj_transform\": {\"position\": [10.033, 0.995, -5.3722], \"rotation\": [0.0, -0.926572442, 0.0, -0.3761163], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [9.999643, 0.5, -4.93619633], \"size\": [0.9283972, 1.0, 0.9283972]}, \"properties\": [\"CAN_OPEN\"], \"states\": [\"OPEN\"]}, {\"id\": 367, \"category\": \"Windows\", \"class_name\": \"window\", \"prefab_name\": \"PRE_Window_02_06\", \"obj_transform\": {\"position\": [17.5, 0.0, -4.93419933], \"rotation\": [0.0, -8.940697e-08, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [17.5000648, 1.50000024, -4.934201], \"size\": [0.113748126, 1.02450514, 2.11254787]}, \"properties\": [\"CAN_OPEN\"], \"states\": [\"CLOSED\"]}, {\"id\": 368, \"category\": \"PRE_PRO_Wine_glass_01 1\", \"class_name\": \"wineglass\", \"prefab_name\": \"PRE_PRO_Wine_glass_01 1\", \"obj_transform\": {\"position\": [1.6006981564900118, 0.811161637, -0.22484365698931835], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.6006981564900118, 0.90626657, -0.22484416698931836], \"size\": [0.08954637, 0.190210134, 0.089546375]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 369, \"category\": \"PRE_PRO_Plate_01\", \"class_name\": \"plate\", \"prefab_name\": \"PRE_PRO_Plate_01\", \"obj_transform\": {\"position\": [2.59854107240391, 0.968022943, 3.359596929524912], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.59854107240391, 0.9776343, 3.359596929524912], \"size\": [0.290419757, 0.0192230251, 0.290419757]}, \"properties\": [\"SURFACES\", \"GRABBABLE\", \"RECIPIENT\", \"MOVABLE\"], \"states\": []}, {\"id\": 370, \"category\": \"PRE_PRO_Fork_01\", \"class_name\": \"cutleryfork\", \"prefab_name\": \"PRE_PRO_Fork_01\", \"obj_transform\": {\"position\": [-2.260391904761059, 2.22948527, -2.215552927140955], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.219376034761059, 2.232199, -2.215552927140955], \"size\": [0.26143527, 0.0193981566, 0.0257531479]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 371, \"category\": \"DHP_PRE_Pink_cupcake_1024\", \"class_name\": \"cupcake\", \"prefab_name\": \"DHP_PRE_Pink_cupcake_1024\", \"obj_transform\": {\"position\": [-1.9896794176192083, 0.5363512, 0.24029748612130022], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [-1.9896794176192083, 0.601005256, 0.24029733212130022], \"size\": [0.118259408, 0.128895909, 0.118259706]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 372, \"category\": \"SMGP_PRE_Potato_chips_1024\", \"class_name\": \"chips\", \"prefab_name\": \"SMGP_PRE_Potato_chips_1024\", \"obj_transform\": {\"position\": [1.6024811718453886, 0.81407094, -0.0907785566517182], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [1.6024811718453886, 1.01648211, -0.0907790006517182], \"size\": [0.271924824, 0.410641223, 0.1577565]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 373, \"category\": \"PRE_PRO_Salt_shaker_01\", \"class_name\": \"condimentshaker\", \"prefab_name\": \"PRE_PRO_Salt_shaker_01\", \"obj_transform\": {\"position\": [1.3996212568296271, 0.811161637, -0.2426525526093639], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.3996212568296271, 0.8628846, -0.24265256760936388], \"size\": [0.0497071035, 0.103446111, 0.0573968068]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 374, \"category\": \"SMGP_PRE_Salmon_1024\", \"class_name\": \"salmon\", \"prefab_name\": \"SMGP_PRE_Salmon_1024\", \"obj_transform\": {\"position\": [-2.053626570286056, 1.09304929, 3.26818900849543], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [-2.053626570286056, 1.11709237, 3.26818878849543], \"size\": [0.148635, 0.0480879024, 0.248155192]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 375, \"category\": \"PRE_PRO_Condiment_01\", \"class_name\": \"condimentbottle\", \"prefab_name\": \"PRE_PRO_Condiment_01\", \"obj_transform\": {\"position\": [-2.119442043170156, 2.22249985, -2.2179236557204676], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.119442043170156, 2.32439041, -2.2179238857204675], \"size\": [0.0603268258, 0.203781426, 0.06032738]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"MOVABLE\", \"CREAM\"], \"states\": []}, {\"id\": 376, \"category\": \"DHP_PRE_Pudding_1024\", \"class_name\": \"pudding\", \"prefab_name\": \"DHP_PRE_Pudding_1024\", \"obj_transform\": {\"position\": [2.82079494548438, 0.9680228, 3.3631156489461516], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [2.82079494548438, 1.00080407, 3.3631156489461516], \"size\": [0.126299411, 0.0655626, 0.132924]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"CUTTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 377, \"category\": \"PRE_PRO_Salt_shaker_01\", \"class_name\": \"condimentshaker\", \"prefab_name\": \"PRE_PRO_Salt_shaker_01\", \"obj_transform\": {\"position\": [1.2173492421261016, 0.811161637, -0.24918700709161254], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.2173492421261016, 0.8628846, -0.24918702209161253], \"size\": [0.0497071035, 0.103446111, 0.0573968068]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 378, \"category\": \"PRE_PRO_Condiment_01\", \"class_name\": \"condimentbottle\", \"prefab_name\": \"PRE_PRO_Condiment_01\", \"obj_transform\": {\"position\": [-1.8805320272448305, 1.09304845, 3.3170270722467086], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-1.8805320272448305, 1.194939, 3.3170268522467086], \"size\": [0.0603268258, 0.203781426, 0.06032738]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"MOVABLE\", \"CREAM\"], \"states\": []}, {\"id\": 379, \"category\": \"SMGP_PRE_Salmon_1024\", \"class_name\": \"salmon\", \"prefab_name\": \"SMGP_PRE_Salmon_1024\", \"obj_transform\": {\"position\": [1.2516734419292406, 0.8111624, 0.009843338637886528], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [1.2516734419292406, 0.835205436, 0.009843039207886529], \"size\": [0.148635, 0.0480879024, 0.248155192]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 380, \"category\": \"FMGP_PRE_Apple_1024\", \"class_name\": \"apple\", \"prefab_name\": \"FMGP_PRE_Apple_1024\", \"obj_transform\": {\"position\": [-2.313831030050813, 2.22249985, 1.1142930493505103], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.313831030050813, 2.27543044, 1.1142930493505103], \"size\": [0.104654, 0.105861, 0.104654]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 381, \"category\": \"PRE_PRO_Condiment_01\", \"class_name\": \"condimentbottle\", \"prefab_name\": \"PRE_PRO_Condiment_01\", \"obj_transform\": {\"position\": [-2.2375944304921336, 2.22249985, 1.0212424209518218], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.2375944304921336, 2.32439041, 1.0212421309518218], \"size\": [0.0603268258, 0.203781426, 0.06032738]}, \"properties\": [\"GRABBABLE\", \"POURABLE\", \"MOVABLE\", \"CREAM\"], \"states\": []}, {\"id\": 382, \"category\": \"DHP_PRE_Pink_cupcake_1024\", \"class_name\": \"cupcake\", \"prefab_name\": \"DHP_PRE_Pink_cupcake_1024\", \"obj_transform\": {\"position\": [-1.799639555752183, 1.09284222, 3.46916854536866], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [-1.799639555752183, 1.15749621, 3.46916837536866], \"size\": [0.118259408, 0.128895909, 0.118259706]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 383, \"category\": \"SMGP_PRE_Salmon_1024\", \"class_name\": \"salmon\", \"prefab_name\": \"SMGP_PRE_Salmon_1024\", \"obj_transform\": {\"position\": [-2.010121089975592, 0.5365582, 0.15674819591481318], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [-2.010121089975592, 0.560601234, 0.15674789591481317], \"size\": [0.148635, 0.0480879024, 0.248155192]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 384, \"category\": \"PRE_PRO_Salt_shaker_01\", \"class_name\": \"condimentshaker\", \"prefab_name\": \"PRE_PRO_Salt_shaker_01\", \"obj_transform\": {\"position\": [1.2030520176147699, 0.811161637, -0.26360622627052144], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [1.2030520176147699, 0.8628846, -0.26360622627052144], \"size\": [0.0497071035, 0.103446111, 0.0573968068]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 385, \"category\": \"SMGP_PRE_Salmon_1024\", \"class_name\": \"salmon\", \"prefab_name\": \"SMGP_PRE_Salmon_1024\", \"obj_transform\": {\"position\": [2.4489984102255953, 0.968023658, 3.345011256031952], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [2.4489984102255953, 0.9920667, 3.345011046031952], \"size\": [0.148635, 0.0480879024, 0.248155192]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 386, \"category\": \"FMGP_PRE_Apple_1024\", \"class_name\": \"apple\", \"prefab_name\": \"FMGP_PRE_Apple_1024\", \"obj_transform\": {\"position\": [2.7948977383769416, 0.9680227, 3.561615211934178], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [2.7948977383769416, 1.02095318, 3.561615211934178], \"size\": [0.104654, 0.105861, 0.104654]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 387, \"category\": \"FMGP_PRE_Apple_1024\", \"class_name\": \"apple\", \"prefab_name\": \"FMGP_PRE_Apple_1024\", \"obj_transform\": {\"position\": [-2.2072369024903464, 2.22249985, -2.9917732543251625], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [-2.2072369024903464, 2.27543044, -2.9917732543251625], \"size\": [0.104654, 0.105861, 0.104654]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 388, \"category\": \"DHP_PRE_Pink_cupcake_1024\", \"class_name\": \"cupcake\", \"prefab_name\": \"DHP_PRE_Pink_cupcake_1024\", \"obj_transform\": {\"position\": [9.25298965520169, 0.774400651, -5.943814225342128], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [9.25298965520169, 0.8390547, -5.943814225342128], \"size\": [0.118259408, 0.128895909, 0.118259706]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 389, \"category\": \"Remote_control_1\", \"class_name\": \"remotecontrol\", \"prefab_name\": \"Remote_control_1\", \"obj_transform\": {\"position\": [9.223618507140229, 0.774438, -5.814619243408012], \"rotation\": [0.0, 0.0, 0.0, 1.0], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [9.223835507140228, 0.792106748, -5.814581613408012], \"size\": [0.202, 0.035, 0.082]}, \"properties\": [\"GRABBABLE\", \"HAS_SWITCH\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 390, \"category\": \"PRE_PRO_Wine_glass_01 1\", \"class_name\": \"wineglass\", \"prefab_name\": \"PRE_PRO_Wine_glass_01 1\", \"obj_transform\": {\"position\": [15.92699931400772, 0.5832387, -8.055179943816203], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [15.92699931400772, 0.678343654, -8.055179263816202], \"size\": [0.089546375, 0.190210134, 0.08954637]}, \"properties\": [\"GRABBABLE\", \"RECIPIENT\", \"POURABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 391, \"category\": \"Remote_control_1\", \"class_name\": \"remotecontrol\", \"prefab_name\": \"Remote_control_1\", \"obj_transform\": {\"position\": [15.884344942259952, 0.245431468, -6.1398744113244605], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [15.884306742259952, 0.2631002, -6.139658401324461], \"size\": [0.0820000246, 0.035, 0.201999962]}, \"properties\": [\"GRABBABLE\", \"HAS_SWITCH\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 392, \"category\": \"Remote_control_1\", \"class_name\": \"remotecontrol\", \"prefab_name\": \"Remote_control_1\", \"obj_transform\": {\"position\": [13.447739776163449, 0.583069861, -6.093859197053615], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.447702576163449, 0.6007386, -6.093643197053615], \"size\": [0.0820000246, 0.035, 0.201999962]}, \"properties\": [\"GRABBABLE\", \"HAS_SWITCH\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 393, \"category\": \"SMGP_PRE_Potato_chips_1024\", \"class_name\": \"chips\", \"prefab_name\": \"SMGP_PRE_Potato_chips_1024\", \"obj_transform\": {\"position\": [13.351678198999995, 1.143445, -6.02797529269617], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [13.351678198999995, 1.34585619, -6.02797529269617], \"size\": [0.157756522, 0.410641223, 0.271924824]}, \"properties\": [\"GRABBABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 394, \"category\": \"Remote_control_1\", \"class_name\": \"remotecontrol\", \"prefab_name\": \"Remote_control_1\", \"obj_transform\": {\"position\": [13.474129846770397, 0.583069861, -6.160303433164179], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [13.474092646770398, 0.6007386, -6.160087423164179], \"size\": [0.0820000246, 0.035, 0.201999962]}, \"properties\": [\"GRABBABLE\", \"HAS_SWITCH\", \"MOVABLE\"], \"states\": [\"OFF\"]}, {\"id\": 395, \"category\": \"DHP_PRE_Pudding_1024\", \"class_name\": \"pudding\", \"prefab_name\": \"DHP_PRE_Pudding_1024\", \"obj_transform\": {\"position\": [16.177969436383158, 0.245600224, -5.953055518764719], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [0.3, 0.3, 0.3]}, \"bounding_box\": {\"center\": [16.177969436383158, 0.278381526, -5.953055518764719], \"size\": [0.132924, 0.0655626, 0.126299411]}, \"properties\": [\"GRABBABLE\", \"EATABLE\", \"CUTTABLE\", \"MOVABLE\"], \"states\": []}, {\"id\": 396, \"category\": \"Remote_control_1\", \"class_name\": \"remotecontrol\", \"prefab_name\": \"Remote_control_1\", \"obj_transform\": {\"position\": [16.06014577728972, 0.245431468, -6.223002627935782], \"rotation\": [0.0, -0.7071068, 0.0, 0.7071067], \"scale\": [1.0, 1.0, 1.0]}, \"bounding_box\": {\"center\": [16.060107677289718, 0.2631002, -6.222786617935782], \"size\": [0.0820000246, 0.035, 0.201999962]}, \"properties\": [\"GRABBABLE\", \"HAS_SWITCH\", \"MOVABLE\"], \"states\": [\"OFF\"]}], \"edges\": [{\"from_id\": 368, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 369, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 370, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 371, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 372, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 373, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 374, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 375, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 376, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 377, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 378, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 379, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 380, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 381, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 382, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 383, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 384, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 385, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 386, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 387, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 12, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 13, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 14, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 15, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 16, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 17, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 18, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 19, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 20, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 21, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 22, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 23, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 24, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 25, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 26, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 27, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 28, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 29, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 30, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 31, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 32, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 33, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 34, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 35, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 36, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 37, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 38, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 39, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 40, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 41, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 42, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 43, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 44, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 45, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 46, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 49, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 50, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 51, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 52, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 53, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 54, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 55, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 56, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 57, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 58, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 59, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 60, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 62, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 63, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 64, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 65, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 66, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 68, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 69, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 70, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 71, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 72, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 73, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 74, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 75, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 76, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 77, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 78, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 79, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 80, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 81, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 82, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 83, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 84, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 85, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 86, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 87, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 88, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 89, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 90, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 91, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 92, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 93, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 94, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 95, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 96, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 97, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 98, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 99, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 100, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 101, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 102, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 103, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 104, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 105, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 106, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 107, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 108, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 109, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 111, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 112, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 113, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 114, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 115, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 118, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 119, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 120, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 121, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 122, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 124, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 129, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 132, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 135, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 136, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 138, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 144, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 145, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 146, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 151, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 152, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 153, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 154, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 155, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 156, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 157, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 158, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 159, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 160, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 161, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 162, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 163, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 164, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 165, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 166, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 167, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 168, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 169, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 170, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 171, \"to_id\": 11, \"relation_type\": \"INSIDE\"}, {\"from_id\": 173, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 174, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 175, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 176, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 177, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 178, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 179, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 180, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 181, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 182, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 183, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 184, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 185, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 186, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 187, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 188, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 189, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 190, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 191, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 192, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 193, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 194, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 195, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 196, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 197, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 199, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 200, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 201, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 202, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 203, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 204, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 205, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 206, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 207, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 208, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 209, \"to_id\": 172, \"relation_type\": \"INSIDE\"}, {\"from_id\": 388, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 389, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 211, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 212, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 213, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 214, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 215, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 216, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 217, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 218, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 219, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 220, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 221, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 222, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 223, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 224, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 225, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 226, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 227, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 228, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 229, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 241, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 242, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 243, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 246, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 247, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 248, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 249, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 250, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 251, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 252, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 253, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 254, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 255, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 256, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 257, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 258, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 259, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 260, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 261, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 262, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 263, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 264, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 265, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 266, \"to_id\": 210, \"relation_type\": \"INSIDE\"}, {\"from_id\": 390, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 391, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 392, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 393, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 394, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 395, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 396, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 268, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 269, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 270, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 271, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 272, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 273, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 274, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 275, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 276, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 277, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 278, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 279, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 280, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 281, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 282, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 283, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 284, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 285, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 286, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 287, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 288, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 289, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 290, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 291, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 292, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 293, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 294, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 295, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 296, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 297, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 298, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 299, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 300, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 301, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 302, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 303, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 304, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 305, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 306, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 307, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 308, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 309, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 310, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 311, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 312, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 313, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 314, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 315, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 316, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 317, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 318, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 319, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 320, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 324, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 326, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 327, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 328, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 329, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 330, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 331, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 332, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 333, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 334, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 335, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 336, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 337, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 338, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 339, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 340, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 341, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 342, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 343, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 344, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 345, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 346, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 347, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 348, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 349, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 350, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 351, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 352, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 353, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 354, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 355, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 356, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 357, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 358, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 359, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 360, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 361, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 362, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 363, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 364, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 365, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 366, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 367, \"to_id\": 267, \"relation_type\": \"INSIDE\"}, {\"from_id\": 46, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 49, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 49, \"to_id\": 104, \"relation_type\": \"ON\"}, {\"from_id\": 50, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 51, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 52, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 53, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 54, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 55, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 56, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 57, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 58, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 59, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 60, \"to_id\": 81, \"relation_type\": \"ON\"}, {\"from_id\": 60, \"to_id\": 87, \"relation_type\": \"ON\"}, {\"from_id\": 62, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 63, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 64, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 65, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 66, \"to_id\": 98, \"relation_type\": \"ON\"}, {\"from_id\": 72, \"to_id\": 13, \"relation_type\": \"ON\"}, {\"from_id\": 74, \"to_id\": 38, \"relation_type\": \"ON\"}, {\"from_id\": 83, \"to_id\": 82, \"relation_type\": \"ON\"}, {\"from_id\": 84, \"to_id\": 85, \"relation_type\": \"ON\"}, {\"from_id\": 86, \"to_id\": 84, \"relation_type\": \"ON\"}, {\"from_id\": 86, \"to_id\": 81, \"relation_type\": \"ON\"}, {\"from_id\": 87, \"to_id\": 81, \"relation_type\": \"ON\"}, {\"from_id\": 87, \"to_id\": 89, \"relation_type\": \"ON\"}, {\"from_id\": 89, \"to_id\": 88, \"relation_type\": \"ON\"}, {\"from_id\": 91, \"to_id\": 81, \"relation_type\": \"ON\"}, {\"from_id\": 92, \"to_id\": 19, \"relation_type\": \"ON\"}, {\"from_id\": 93, \"to_id\": 19, \"relation_type\": \"ON\"}, {\"from_id\": 95, \"to_id\": 14, \"relation_type\": \"ON\"}, {\"from_id\": 96, \"to_id\": 15, \"relation_type\": \"ON\"}, {\"from_id\": 99, \"to_id\": 81, \"relation_type\": \"ON\"}, {\"from_id\": 99, \"to_id\": 87, \"relation_type\": \"ON\"}, {\"from_id\": 100, \"to_id\": 99, \"relation_type\": \"ON\"}, {\"from_id\": 101, \"to_id\": 99, \"relation_type\": \"ON\"}, {\"from_id\": 107, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 108, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 109, \"to_id\": 81, \"relation_type\": \"ON\"}, {\"from_id\": 111, \"to_id\": 81, \"relation_type\": \"ON\"}, {\"from_id\": 112, \"to_id\": 81, \"relation_type\": \"ON\"}, {\"from_id\": 118, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 119, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 120, \"to_id\": 105, \"relation_type\": \"ON\"}, {\"from_id\": 121, \"to_id\": 105, \"relation_type\": \"ON\"}, {\"from_id\": 122, \"to_id\": 105, \"relation_type\": \"ON\"}, {\"from_id\": 124, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 129, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 132, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 135, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 136, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 138, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 144, \"to_id\": 145, \"relation_type\": \"ON\"}, {\"from_id\": 144, \"to_id\": 97, \"relation_type\": \"ON\"}, {\"from_id\": 145, \"to_id\": 97, \"relation_type\": \"ON\"}, {\"from_id\": 146, \"to_id\": 97, \"relation_type\": \"ON\"}, {\"from_id\": 151, \"to_id\": 153, \"relation_type\": \"ON\"}, {\"from_id\": 151, \"to_id\": 154, \"relation_type\": \"ON\"}, {\"from_id\": 152, \"to_id\": 98, \"relation_type\": \"ON\"}, {\"from_id\": 152, \"to_id\": 154, \"relation_type\": \"ON\"}, {\"from_id\": 153, \"to_id\": 98, \"relation_type\": \"ON\"}, {\"from_id\": 154, \"to_id\": 98, \"relation_type\": \"ON\"}, {\"from_id\": 155, \"to_id\": 96, \"relation_type\": \"ON\"}, {\"from_id\": 156, \"to_id\": 96, \"relation_type\": \"ON\"}, {\"from_id\": 157, \"to_id\": 92, \"relation_type\": \"ON\"}, {\"from_id\": 159, \"to_id\": 95, \"relation_type\": \"ON\"}, {\"from_id\": 160, \"to_id\": 97, \"relation_type\": \"ON\"}, {\"from_id\": 162, \"to_id\": 32, \"relation_type\": \"ON\"}, {\"from_id\": 163, \"to_id\": 32, \"relation_type\": \"ON\"}, {\"from_id\": 188, \"to_id\": 183, \"relation_type\": \"ON\"}, {\"from_id\": 190, \"to_id\": 174, \"relation_type\": \"ON\"}, {\"from_id\": 191, \"to_id\": 183, \"relation_type\": \"ON\"}, {\"from_id\": 194, \"to_id\": 193, \"relation_type\": \"ON\"}, {\"from_id\": 196, \"to_id\": 184, \"relation_type\": \"ON\"}, {\"from_id\": 197, \"to_id\": 193, \"relation_type\": \"ON\"}, {\"from_id\": 199, \"to_id\": 193, \"relation_type\": \"ON\"}, {\"from_id\": 200, \"to_id\": 193, \"relation_type\": \"ON\"}, {\"from_id\": 201, \"to_id\": 193, \"relation_type\": \"ON\"}, {\"from_id\": 202, \"to_id\": 193, \"relation_type\": \"ON\"}, {\"from_id\": 203, \"to_id\": 193, \"relation_type\": \"ON\"}, {\"from_id\": 204, \"to_id\": 193, \"relation_type\": \"ON\"}, {\"from_id\": 206, \"to_id\": 184, \"relation_type\": \"ON\"}, {\"from_id\": 209, \"to_id\": 184, \"relation_type\": \"ON\"}, {\"from_id\": 211, \"to_id\": 255, \"relation_type\": \"ON\"}, {\"from_id\": 213, \"to_id\": 256, \"relation_type\": \"ON\"}, {\"from_id\": 214, \"to_id\": 255, \"relation_type\": \"ON\"}, {\"from_id\": 215, \"to_id\": 258, \"relation_type\": \"ON\"}, {\"from_id\": 216, \"to_id\": 257, \"relation_type\": \"ON\"}, {\"from_id\": 219, \"to_id\": 214, \"relation_type\": \"ON\"}, {\"from_id\": 220, \"to_id\": 224, \"relation_type\": \"ON\"}, {\"from_id\": 221, \"to_id\": 223, \"relation_type\": \"ON\"}, {\"from_id\": 241, \"to_id\": 213, \"relation_type\": \"ON\"}, {\"from_id\": 242, \"to_id\": 211, \"relation_type\": \"ON\"}, {\"from_id\": 248, \"to_id\": 213, \"relation_type\": \"ON\"}, {\"from_id\": 268, \"to_id\": 362, \"relation_type\": \"ON\"}, {\"from_id\": 269, \"to_id\": 357, \"relation_type\": \"ON\"}, {\"from_id\": 270, \"to_id\": 358, \"relation_type\": \"ON\"}, {\"from_id\": 271, \"to_id\": 362, \"relation_type\": \"ON\"}, {\"from_id\": 272, \"to_id\": 355, \"relation_type\": \"ON\"}, {\"from_id\": 274, \"to_id\": 360, \"relation_type\": \"ON\"}, {\"from_id\": 285, \"to_id\": 288, \"relation_type\": \"ON\"}, {\"from_id\": 286, \"to_id\": 287, \"relation_type\": \"ON\"}, {\"from_id\": 287, \"to_id\": 290, \"relation_type\": \"ON\"}, {\"from_id\": 288, \"to_id\": 289, \"relation_type\": \"ON\"}, {\"from_id\": 289, \"to_id\": 291, \"relation_type\": \"ON\"}, {\"from_id\": 293, \"to_id\": 270, \"relation_type\": \"ON\"}, {\"from_id\": 294, \"to_id\": 270, \"relation_type\": \"ON\"}, {\"from_id\": 295, \"to_id\": 270, \"relation_type\": \"ON\"}, {\"from_id\": 296, \"to_id\": 295, \"relation_type\": \"ON\"}, {\"from_id\": 296, \"to_id\": 270, \"relation_type\": \"ON\"}, {\"from_id\": 297, \"to_id\": 271, \"relation_type\": \"ON\"}, {\"from_id\": 302, \"to_id\": 268, \"relation_type\": \"ON\"}, {\"from_id\": 308, \"to_id\": 275, \"relation_type\": \"ON\"}, {\"from_id\": 319, \"to_id\": 272, \"relation_type\": \"ON\"}, {\"from_id\": 324, \"to_id\": 268, \"relation_type\": \"ON\"}, {\"from_id\": 337, \"to_id\": 274, \"relation_type\": \"ON\"}, {\"from_id\": 368, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 371, \"to_id\": 106, \"relation_type\": \"ON\"}, {\"from_id\": 372, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 373, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 374, \"to_id\": 81, \"relation_type\": \"ON\"}, {\"from_id\": 377, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 378, \"to_id\": 81, \"relation_type\": \"ON\"}, {\"from_id\": 379, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 382, \"to_id\": 81, \"relation_type\": \"ON\"}, {\"from_id\": 383, \"to_id\": 106, \"relation_type\": \"ON\"}, {\"from_id\": 384, \"to_id\": 72, \"relation_type\": \"ON\"}, {\"from_id\": 391, \"to_id\": 268, \"relation_type\": \"ON\"}, {\"from_id\": 393, \"to_id\": 275, \"relation_type\": \"ON\"}, {\"from_id\": 395, \"to_id\": 268, \"relation_type\": \"ON\"}, {\"from_id\": 396, \"to_id\": 268, \"relation_type\": \"ON\"}, {\"from_id\": 370, \"to_id\": 75, \"relation_type\": \"INSIDE\"}, {\"from_id\": 375, \"to_id\": 75, \"relation_type\": \"INSIDE\"}, {\"from_id\": 387, \"to_id\": 76, \"relation_type\": \"INSIDE\"}, {\"from_id\": 380, \"to_id\": 80, \"relation_type\": \"INSIDE\"}, {\"from_id\": 381, \"to_id\": 80, \"relation_type\": \"INSIDE\"}, {\"from_id\": 378, \"to_id\": 86, \"relation_type\": \"ON\"}, {\"from_id\": 109, \"to_id\": 86, \"relation_type\": \"ON\"}, {\"from_id\": 100, \"to_id\": 99, \"relation_type\": \"INSIDE\"}, {\"from_id\": 101, \"to_id\": 99, \"relation_type\": \"INSIDE\"}, {\"from_id\": 369, \"to_id\": 103, \"relation_type\": \"INSIDE\"}, {\"from_id\": 386, \"to_id\": 103, \"relation_type\": \"INSIDE\"}, {\"from_id\": 376, \"to_id\": 103, \"relation_type\": \"INSIDE\"}, {\"from_id\": 385, \"to_id\": 103, \"relation_type\": \"INSIDE\"}, {\"from_id\": 107, \"to_id\": 104, \"relation_type\": \"ON\"}, {\"from_id\": 106, \"to_id\": 105, \"relation_type\": \"INSIDE\"}, {\"from_id\": 383, \"to_id\": 105, \"relation_type\": \"INSIDE\"}, {\"from_id\": 371, \"to_id\": 105, \"relation_type\": \"INSIDE\"}, {\"from_id\": 108, \"to_id\": 107, \"relation_type\": \"INSIDE\"}, {\"from_id\": 378, \"to_id\": 109, \"relation_type\": \"INSIDE\"}, {\"from_id\": 374, \"to_id\": 109, \"relation_type\": \"INSIDE\"}, {\"from_id\": 382, \"to_id\": 109, \"relation_type\": \"INSIDE\"}, {\"from_id\": 229, \"to_id\": 211, \"relation_type\": \"INSIDE\"}, {\"from_id\": 228, \"to_id\": 211, \"relation_type\": \"INSIDE\"}, {\"from_id\": 227, \"to_id\": 211, \"relation_type\": \"INSIDE\"}, {\"from_id\": 243, \"to_id\": 211, \"relation_type\": \"INSIDE\"}, {\"from_id\": 247, \"to_id\": 211, \"relation_type\": \"INSIDE\"}, {\"from_id\": 220, \"to_id\": 211, \"relation_type\": \"INSIDE\"}, {\"from_id\": 224, \"to_id\": 211, \"relation_type\": \"INSIDE\"}, {\"from_id\": 246, \"to_id\": 211, \"relation_type\": \"INSIDE\"}, {\"from_id\": 226, \"to_id\": 211, \"relation_type\": \"INSIDE\"}, {\"from_id\": 222, \"to_id\": 211, \"relation_type\": \"INSIDE\"}, {\"from_id\": 225, \"to_id\": 211, \"relation_type\": \"INSIDE\"}, {\"from_id\": 223, \"to_id\": 211, \"relation_type\": \"INSIDE\"}, {\"from_id\": 221, \"to_id\": 211, \"relation_type\": \"INSIDE\"}, {\"from_id\": 212, \"to_id\": 251, \"relation_type\": \"ON\"}, {\"from_id\": 253, \"to_id\": 215, \"relation_type\": \"ON\"}, {\"from_id\": 252, \"to_id\": 215, \"relation_type\": \"ON\"}, {\"from_id\": 389, \"to_id\": 216, \"relation_type\": \"INSIDE\"}, {\"from_id\": 388, \"to_id\": 216, \"relation_type\": \"INSIDE\"}, {\"from_id\": 329, \"to_id\": 269, \"relation_type\": \"INSIDE\"}, {\"from_id\": 327, \"to_id\": 269, \"relation_type\": \"INSIDE\"}, {\"from_id\": 328, \"to_id\": 269, \"relation_type\": \"INSIDE\"}, {\"from_id\": 315, \"to_id\": 269, \"relation_type\": \"INSIDE\"}, {\"from_id\": 326, \"to_id\": 269, \"relation_type\": \"INSIDE\"}, {\"from_id\": 316, \"to_id\": 269, \"relation_type\": \"INSIDE\"}, {\"from_id\": 312, \"to_id\": 269, \"relation_type\": \"INSIDE\"}, {\"from_id\": 318, \"to_id\": 269, \"relation_type\": \"INSIDE\"}, {\"from_id\": 317, \"to_id\": 269, \"relation_type\": \"INSIDE\"}, {\"from_id\": 320, \"to_id\": 269, \"relation_type\": \"INSIDE\"}, {\"from_id\": 314, \"to_id\": 272, \"relation_type\": \"INSIDE\"}, {\"from_id\": 313, \"to_id\": 272, \"relation_type\": \"INSIDE\"}, {\"from_id\": 311, \"to_id\": 272, \"relation_type\": \"INSIDE\"}, {\"from_id\": 319, \"to_id\": 272, \"relation_type\": \"INSIDE\"}, {\"from_id\": 307, \"to_id\": 275, \"relation_type\": \"ON\"}, {\"from_id\": 390, \"to_id\": 276, \"relation_type\": \"ON\"}, {\"from_id\": 309, \"to_id\": 276, \"relation_type\": \"ON\"}, {\"from_id\": 310, \"to_id\": 276, \"relation_type\": \"ON\"}, {\"from_id\": 285, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 288, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 286, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 279, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 278, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 280, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 281, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 289, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 282, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 284, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 287, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 283, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 291, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 290, \"to_id\": 277, \"relation_type\": \"INSIDE\"}, {\"from_id\": 295, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 273, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 297, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 271, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 287, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 290, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 286, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 307, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 316, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 300, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 320, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 393, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 302, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 299, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 268, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 391, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 395, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 324, \"to_id\": 292, \"relation_type\": \"FACING\"}, {\"from_id\": 271, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 302, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 395, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 367, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 268, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 324, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 307, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 308, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 275, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 393, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 310, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 390, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 276, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 309, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 337, \"to_id\": 297, \"relation_type\": \"FACING\"}, {\"from_id\": 274, \"to_id\": 297, \"relation_type\": \"FACING\"}]}"]}
Processing
Successfully de-serialized object
alignment took: alignment: 2
BoxColliders does not support negative scale or size.
The effective box size has been forced positive and is likely to give unexpected collision geometry.
If you absolutely need to use negative scaling you can use the convex MeshCollider. Scene hierarchy path "PRE_HOM_Home_04_/PRE_ROO_Bathroom_03/SHP_PRE_Toothpaste/Collider"
BoxColliders does not support negative scale or size.
The effective box size has been forced positive and is likely to give unexpected collision geometry.
If you absolutely need to use negative scaling you can use the convex MeshCollider. Scene hierarchy path "PRE_HOM_Home_04_/PRE_ROO_Bedroom_03/Cabinet_1/door2"
HEre
HEre
Waiting for request
Received request: {"id": "1652815682.068411", "action": "add_character", "stringParams": ["{\"character_resource\": \"Chars/Female1\", \"mode\": \"fix_room\", \"character_position\": {\"x\": 0, \"y\": 0, \"z\": 0}, \"initial_room\": \"bedroom\"}"]}
Processing
HEre
HEre
Waiting for request
Received request: {"id": "1652815682.198398", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652815682.8529606", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816150.6969054", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816190.6080263", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (11)"]}
Processing
Process...
0
GOAL POSITION: (1.96, 0.00, 0.97)
processWalkTo time: 14
prepare time: 0
Waiting for request
Received request: {"id": "1652816190.7163515", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816191.0799181", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (11)"]}
Processing
Process...
0
GOAL POSITION: (1.96, 0.00, 0.97)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816191.1010044", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816191.434381", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (11)"]}
Processing
Process...
0
GOAL POSITION: (1.96, 0.00, 0.97)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816191.461876", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816191.785064", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (11)"]}
Processing
Process...
0
GOAL POSITION: (1.96, 0.00, 0.97)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816191.803739", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816192.0949633", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (11)"]}
Processing
Process...
0
GOAL POSITION: (1.96, 0.00, 0.97)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816192.1202912", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816238.6256616", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <fridge> (103)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816238.6733098", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816239.0035584", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <fridge> (103)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816239.0442374", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816239.34391", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <fridge> (103)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816239.3751273", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816400.3282478", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <fridge> (103)"]}
Processing
Received request: {"id": "1652816400.329653", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <wineglass> (368)"]}
Received request: {"id": "1652816400.3291228", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <wineglass> (368)"]}
Process...
0
prepare time: 0
Waiting for request
Processing
Process...
0
prepare time: 0
Waiting for request
Processing
Received request: {"id": "1652816400.419226", "action": "environment_graph"}
Process...
0
Received request: {"id": "1652816400.418848", "action": "environment_graph"}
prepare time: 0
Waiting for request
Processing
Received request: {"id": "1652816400.4668276", "action": "environment_graph"}
Waiting for request
Processing
Waiting for request
Processing
Waiting for request
Received request: {"id": "1652816401.4051864", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816412.4807189", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <fridge> (103)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816412.5202703", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816412.8277917", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <fridge> (103)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816412.846537", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816413.1397092", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <fridge> (103)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816413.1777103", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816420.225591", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [open] <fridge> (103)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816420.2874713", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816425.2456007", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [grab] <plate> (369)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816425.388627", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816431.2958302", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <dishwasher> (104)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816431.3328018", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816431.673655", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <dishwasher> (104)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816431.6914382", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816432.0155423", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <dishwasher> (104)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816432.0479522", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816432.400394", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <dishwasher> (104)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816432.418407", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816432.765698", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <dishwasher> (104)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816432.7836308", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816434.4862895", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [open] <dishwasher> (104)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816434.5294657", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816470.101778", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [putin] <plate> (369) <dishwasher> (104)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816470.148334", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816472.882704", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [close] <dishwasher> (104)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816472.9207761", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816483.0345652", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [open] <kitchencabinet> (75)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816483.076296", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816485.7211947", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [grab] <cutleryfork> (370)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816485.8153105", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816489.329484", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [open] <dishwasher> (104)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816489.3737683", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816491.8466861", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [putin] <cutleryfork> (370) <dishwasher> (104)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816491.8921247", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816494.1028528", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [close] <dishwasher> (104)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816494.1333997", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816500.477721", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchentable> (72)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816500.5148745", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816503.1268866", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <wineglass> (368)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816503.1785464", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816507.5318105", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [grab] <wineglass> (368)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816507.6052535", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816530.212443", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <dishwasher> (104)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816530.2563498", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816530.6941807", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <dishwasher> (104)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816530.7287512", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816531.3066926", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <dishwasher> (104)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816531.3386028", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816531.704007", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <dishwasher> (104)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816531.7352903", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816535.4344912", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [open] <dishwasher> (104)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816535.4815273", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816537.2133288", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [putin] <wineglass> (368) <dishwasher> (104)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816537.2474444", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816539.1133258", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [close] <dishwasher> (104)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816539.1618323", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816550.998772", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <livingroom> (267)"]}
Processing
Process...
0
GOAL POSITION: (14.10, 0.00, -4.45)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816551.0299537", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816551.3875577", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <livingroom> (267)"]}
Processing
Process...
0
GOAL POSITION: (14.10, 0.00, -4.45)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816551.4064085", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816551.810324", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <livingroom> (267)"]}
Processing
Process...
0
GOAL POSITION: (14.10, 0.00, -4.45)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816551.8283625", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816552.1572816", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <livingroom> (267)"]}
Processing
Process...
0
GOAL POSITION: (14.10, 0.00, -4.45)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816552.1738582", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816552.4320574", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <livingroom> (267)"]}
Processing
Process...
0
GOAL POSITION: (14.10, 0.00, -4.45)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816552.4500916", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816552.4987302", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <livingroom> (267)"]}
Processing
Process...
0
GOAL POSITION: (14.10, 0.00, -4.45)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816552.5429447", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816553.0551589", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <livingroom> (267)"]}
Processing
Process...
0
GOAL POSITION: (14.10, 0.00, -4.45)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816553.0895202", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816553.270496", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <livingroom> (267)"]}
Processing
Process...
0
GOAL POSITION: (14.10, 0.00, -4.45)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816553.2908301", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816553.6448734", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <livingroom> (267)"]}
Processing
Process...
0
GOAL POSITION: (14.10, 0.00, -4.45)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816553.687075", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816554.0892057", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <livingroom> (267)"]}
Processing
Process...
0
GOAL POSITION: (14.10, 0.00, -4.45)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816554.134207", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816554.4360075", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <livingroom> (267)"]}
Processing
Process...
0
GOAL POSITION: (14.10, 0.00, -4.45)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816554.4613194", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816554.9715276", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <livingroom> (267)"]}
Processing
Process...
0
GOAL POSITION: (14.10, 0.00, -4.45)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816555.0089185", "action": "environment_graph"}
Processing
Received request: {"id": "1652816555.0179577", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <livingroom> (267)"]}
Waiting for request
Processing
Process...
0
GOAL POSITION: (14.10, 0.00, -4.45)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816555.082474", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816578.6448615", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <sofa> (276)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816578.743748", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816579.1190574", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <sofa> (276)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816579.1484482", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816579.451185", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <sofa> (276)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816579.4827464", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816579.8372695", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <sofa> (276)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816579.8697855", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816580.268961", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <sofa> (276)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816580.2865725", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816583.247311", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <wineglass> (390)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816583.3620691", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816586.3250072", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [grab] <wineglass> (390)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816586.3724408", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816590.0465593", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (11)"]}
Processing
Process...
0
GOAL POSITION: (1.96, 0.00, 0.97)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816590.0783222", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816590.406227", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (11)"]}
Processing
Process...
0
GOAL POSITION: (1.96, 0.00, 0.97)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816590.4287405", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816590.8388627", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (11)"]}
Processing
Process...
0
GOAL POSITION: (1.96, 0.00, 0.97)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816590.8675106", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816591.2660508", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (11)"]}
Processing
Process...
0
GOAL POSITION: (1.96, 0.00, 0.97)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816591.2959096", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816591.746199", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (11)"]}
Processing
Process...
0
GOAL POSITION: (1.96, 0.00, 0.97)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816591.7752302", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816592.118551", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (11)"]}
Processing
Process...
0
GOAL POSITION: (1.96, 0.00, 0.97)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816592.1514547", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816592.563388", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (11)"]}
Processing
Process...
0
GOAL POSITION: (1.96, 0.00, 0.97)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816592.5949037", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816592.9007413", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (11)"]}
Processing
Process...
0
GOAL POSITION: (1.96, 0.00, 0.97)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816592.917816", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816593.192708", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (11)"]}
Processing
Process...
0
GOAL POSITION: (1.96, 0.00, 0.97)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816593.2220407", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816593.5107033", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (11)"]}
Processing
Process...
0
GOAL POSITION: (1.96, 0.00, 0.97)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816593.5391276", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816593.835485", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (11)"]}
Processing
Process...
0
GOAL POSITION: (1.96, 0.00, 0.97)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816593.8536751", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816594.1654248", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (11)"]}
Processing
Process...
0
GOAL POSITION: (1.96, 0.00, 0.97)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816594.1947517", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816594.476516", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (11)"]}
Processing
Process...
0
GOAL POSITION: (1.96, 0.00, 0.97)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816594.5072832", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816594.7890701", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <kitchen> (11)"]}
Processing
Process...
0
GOAL POSITION: (1.96, 0.00, 0.97)
processWalkTo time: 0
prepare time: 0
Waiting for request
Received request: {"id": "1652816594.817544", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816597.8210487", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <dishwasher> (104)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816597.8418226", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816598.163678", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <dishwasher> (104)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816598.181838", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816598.5290713", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <dishwasher> (104)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816598.5463412", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816598.8946795", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <dishwasher> (104)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816598.9122515", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816599.247392", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [walktowards] <dishwasher> (104)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816599.266023", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816600.6687071", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [open] <dishwasher> (104)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816600.6967108", "action": "environment_graph"}
Processing
Waiting for request
Received request: {"id": "1652816602.8949115", "action": "render_script", "stringParams": ["{\"randomize_execution\": false, \"random_seed\": -1, \"processing_time_limit\": 10, \"skip_execution\": false, \"output_folder\": \"Output/\", \"file_name_prefix\": \"script\", \"frame_rate\": 5, \"image_synthesis\": [], \"find_solution\": false, \"save_pose_data\": false, \"save_scene_states\": false, \"camera_mode\": [\"AUTO\"], \"recording\": false, \"image_width\": 640, \"image_height\": 480, \"time_scale\": 1.0, \"skip_animation\": true}", "<char0> [putin] <wineglass> (390) <dishwasher> (104)"]}
Processing
Process...
0
prepare time: 0
Waiting for request
Received request: {"id": "1652816602.9261632", "action": "environment_graph"}
Processing
Waiting for request