-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathval.txt
1103 lines (1103 loc) · 694 KB
/
val.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
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
.\Matterport3D\0_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\0_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\0_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\0_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\0_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\0_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\0_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\0_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\0_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\100_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\100_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\100_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\100_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\100_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\100_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\100_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\100_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\100_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\101_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\101_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\101_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\101_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\101_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\101_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\101_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\101_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\101_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\102_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\102_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\102_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\102_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\102_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\102_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\102_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\102_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\102_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\103_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\103_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\103_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\103_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\103_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\103_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\103_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\103_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\103_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\105_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\105_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\105_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\105_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\105_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\105_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\105_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\105_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\105_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\106_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\106_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\106_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\106_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\106_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\106_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\106_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\106_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\106_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\107_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\107_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\107_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\107_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\107_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\107_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\107_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\107_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\107_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\108_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\108_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\108_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\108_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\108_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\108_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\108_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\108_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\108_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\109_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\109_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\109_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\109_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\109_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\109_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\109_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\109_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\109_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\110_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\110_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\110_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\110_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\110_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\110_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\110_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\110_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\110_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\111_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\111_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\111_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\111_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\111_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\111_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\111_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\111_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\111_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\112_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\112_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\112_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\112_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\112_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\112_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\112_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\112_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\112_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\113_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\113_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\113_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\113_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\113_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\113_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\113_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\113_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\113_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\114_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\114_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\114_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\114_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\114_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\114_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\114_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\114_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\114_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\115_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\115_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\115_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\115_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\115_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\115_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\115_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\115_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\115_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\116_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\116_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\116_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\116_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\116_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\116_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\116_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\116_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\116_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\117_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\117_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\117_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\117_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\117_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\117_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\117_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\117_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\117_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\118_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\118_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\118_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\118_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\118_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\118_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\118_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\118_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\118_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\119_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\119_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\119_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\119_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\119_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\119_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\119_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\119_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\119_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\120_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\120_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\120_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\120_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\120_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\120_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\120_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\120_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\120_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\121_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\121_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\121_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\121_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\121_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\121_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\121_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\121_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\121_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\122_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\122_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\122_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\122_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\122_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\122_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\122_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\122_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\122_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\123_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\123_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\123_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\123_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\123_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\123_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\123_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\123_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\123_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\124_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\124_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\124_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\124_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\124_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\124_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\124_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\124_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\124_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\125_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\125_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\125_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\125_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\125_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\125_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\125_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\125_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\125_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\126_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\126_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\126_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\126_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\126_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\126_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\126_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\126_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\126_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\127_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\127_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\127_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\127_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\127_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\127_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\127_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\127_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\127_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\128_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\128_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\128_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\128_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\128_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\128_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\128_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\128_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\128_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\129_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\129_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\129_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\129_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\129_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\129_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\129_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\129_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\129_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\12_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\12_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\12_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\12_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\12_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\12_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\12_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\12_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\12_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\130_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\130_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\130_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\130_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\130_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\130_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\130_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\130_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\130_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\131_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\131_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\131_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\131_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\131_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\131_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\131_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\131_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\131_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\132_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\132_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\132_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\132_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\132_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\132_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\132_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\132_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\132_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\133_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\133_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\133_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\133_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\133_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\133_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\133_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\133_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\133_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\134_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\134_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\134_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\134_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\134_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\134_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\134_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\134_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\134_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\135_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\135_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\135_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\135_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\135_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\135_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\135_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\135_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\135_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\136_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\136_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\136_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\136_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\136_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\136_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\136_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\136_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\136_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\137_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\137_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\137_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\137_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\137_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\137_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\137_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\137_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\137_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\138_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\138_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\138_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\138_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\138_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\138_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\138_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\138_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\138_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\139_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\139_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\139_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\139_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\139_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\139_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\139_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\139_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\139_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\13_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\13_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\13_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\13_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\13_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\13_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\13_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\13_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\13_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\140_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\140_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\140_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\140_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\140_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\140_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\140_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\140_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\140_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\141_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\141_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\141_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\141_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\141_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\141_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\141_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\141_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\141_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\143_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\143_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\143_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\143_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\143_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\143_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\143_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\143_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\143_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\144_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\144_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\144_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\144_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\144_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\144_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\144_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\144_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\144_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\145_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\145_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\145_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\145_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\145_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\145_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\145_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\145_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\145_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\146_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\146_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\146_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\146_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\146_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\146_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\146_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\146_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\146_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\147_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\147_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\147_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\147_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\147_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\147_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\147_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\147_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\147_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\148_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\148_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\148_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\148_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\148_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\148_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\148_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\148_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\148_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\149_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\149_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\149_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\149_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\149_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\149_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\149_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\149_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\149_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\14_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\14_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\14_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\14_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\14_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\14_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\14_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\14_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\14_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\150_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\150_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\150_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\150_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\150_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\150_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\150_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\150_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\150_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\151_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\151_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\151_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\151_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\151_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\151_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\151_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\151_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\151_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\152_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\152_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\152_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\152_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\152_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\152_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\152_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\152_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\152_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\153_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\153_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\153_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\153_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\153_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\153_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\153_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\153_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\153_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\154_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\154_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\154_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\154_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\154_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\154_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\154_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\154_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\154_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\155_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\155_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\155_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\155_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\155_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\155_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\155_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\155_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\155_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\156_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\156_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\156_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\156_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\156_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\156_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\156_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\156_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\156_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\157_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\157_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\157_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\157_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\157_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\157_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\157_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\157_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\157_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\159_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\159_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\159_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\159_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\159_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\159_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\159_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\159_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\159_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\15_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\15_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\15_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\15_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\15_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\15_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\15_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\15_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\15_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\162_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\162_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\162_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\162_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\162_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\162_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\162_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\162_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\162_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\163_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\163_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\163_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\163_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\163_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\163_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\163_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\163_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\163_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\164_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\164_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\164_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\164_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\164_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\164_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\164_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\164_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\164_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\165_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\165_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\165_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\165_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\165_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\165_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\165_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\165_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\165_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\166_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\166_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\166_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\166_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\166_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\166_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\166_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\166_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\166_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\167_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\167_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\167_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\167_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\167_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\167_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\167_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\167_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\167_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\168_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\168_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\168_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\168_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\168_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\168_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\168_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\168_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\168_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\170_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\170_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\170_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\170_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\170_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\170_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\170_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\170_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\170_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\171_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\171_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\171_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\171_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\171_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\171_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\171_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\171_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\171_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\172_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\172_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\172_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\172_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\172_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\172_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\172_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\172_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\172_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\173_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\173_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\173_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\173_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\173_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\173_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\173_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\173_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\173_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\174_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\174_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\174_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\174_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\174_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\174_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\174_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\174_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\174_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\176_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\176_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\176_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\176_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\176_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\176_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\176_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\176_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\176_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\178_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\178_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\178_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\178_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\178_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\178_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\178_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\178_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\178_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\179_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\179_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\179_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\179_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\179_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\179_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\179_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\179_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\179_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\17_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\17_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\17_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\17_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\17_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\17_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\17_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\17_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\17_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\180_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\180_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\180_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\180_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\180_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\180_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\180_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\180_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\180_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\181_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\181_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\181_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\181_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\181_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\181_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\181_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\181_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\181_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\182_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\182_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\182_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\182_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\182_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\182_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\182_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\182_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\182_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\183_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\183_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\183_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\183_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\183_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\183_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\183_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\183_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\183_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\184_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\184_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\184_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\184_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\184_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\184_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\184_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\184_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\184_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\185_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\185_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\185_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\185_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\185_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\185_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\185_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\185_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\185_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\187_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\187_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\187_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\187_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\187_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\187_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\187_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\187_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\187_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\188_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\188_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\188_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\188_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\188_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\188_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\188_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\188_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\188_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\18_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\18_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\18_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\18_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\18_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\18_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\18_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\18_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\18_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\190_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\190_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\190_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\190_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\190_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\190_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\190_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\190_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\190_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\191_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\191_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\191_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\191_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\191_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\191_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\191_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\191_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\191_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\192_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\192_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\192_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\192_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\192_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\192_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\192_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\192_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\192_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\193_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\193_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\193_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\193_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\193_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\193_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\193_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\193_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\193_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\194_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\194_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\194_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\194_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\194_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\194_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\194_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\194_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\194_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\195_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\195_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\195_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\195_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\195_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\195_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\195_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\195_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\195_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\196_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\196_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\196_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\196_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\196_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\196_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\196_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\196_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\196_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\197_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\197_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\197_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\197_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\197_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\197_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\197_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\197_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\197_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\198_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\198_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\198_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\198_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\198_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\198_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\198_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\198_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\198_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\199_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\199_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\199_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\199_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\199_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\199_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\199_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\199_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\199_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\19_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\19_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\19_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\19_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\19_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\19_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\19_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\19_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\19_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\1_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\1_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\1_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\1_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\1_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\1_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\1_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\1_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\1_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\200_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\200_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\200_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\200_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\200_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\200_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\200_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\200_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\200_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\201_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\201_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\201_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\201_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\201_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\201_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\201_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\201_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\201_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\202_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\202_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\202_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\202_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\202_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\202_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\202_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\202_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\202_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\203_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\203_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\203_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\203_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\203_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\203_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\203_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\203_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\203_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\204_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\204_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\204_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\204_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\204_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\204_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\204_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\204_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\204_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\205_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\205_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\205_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\205_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\205_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\205_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\205_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\205_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\205_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\206_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\206_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\206_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\206_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\206_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\206_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\206_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\206_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\206_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\207_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\207_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\207_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\207_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\207_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\207_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\207_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\207_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\207_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\208_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\208_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\208_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\208_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\208_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\208_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\208_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\208_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\208_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\20_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\20_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\20_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\20_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\20_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\20_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\20_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\20_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\20_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\210_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\210_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\210_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\210_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\210_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\210_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\210_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\210_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\210_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\211_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\211_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\211_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\211_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\211_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\211_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\211_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\211_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\211_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\212_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\212_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\212_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\212_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\212_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\212_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\212_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\212_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\212_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\213_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\213_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\213_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\213_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\213_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\213_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\213_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\213_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\213_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\214_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\214_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\214_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\214_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\214_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\214_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\214_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\214_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\214_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\21_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\21_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\21_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\21_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\21_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\21_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\21_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\21_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\21_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\23_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\23_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\23_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\23_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\23_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\23_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\23_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\23_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\23_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\24_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\24_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\24_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\24_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\24_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\24_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\24_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\24_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\24_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\25_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\25_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\25_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\25_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\25_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\25_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\25_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\25_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\25_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\26_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\26_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\26_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\26_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\26_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\26_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\26_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\26_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\26_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\27_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\27_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\27_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\27_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\27_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\27_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\27_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\27_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\27_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\28_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\28_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\28_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\28_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\28_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\28_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\28_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\28_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\28_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\29_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\29_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\29_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\29_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\29_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\29_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\29_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\29_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\29_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\30_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\30_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\30_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\30_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\30_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\30_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\30_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\30_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\30_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\31_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\31_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\31_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\31_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\31_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\31_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\31_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\31_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\31_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\33_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\33_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\33_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\33_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\33_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\33_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\33_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\33_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\33_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\34_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\34_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\34_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\34_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\34_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\34_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\34_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\34_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\34_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\35_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\35_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\35_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\35_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\35_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\35_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\35_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\35_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\35_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\36_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\36_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\36_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\36_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\36_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\36_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\36_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\36_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\36_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\37_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\37_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\37_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\37_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\37_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\37_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\37_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\37_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\37_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\38_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\38_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\38_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\38_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\38_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\38_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\38_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\38_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\38_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\39_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\39_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\39_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\39_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\39_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\39_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\39_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\39_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\39_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\3_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\3_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\3_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\3_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\3_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\3_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\3_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\3_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\3_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\40_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\40_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\40_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\40_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\40_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\40_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\40_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\40_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\40_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\41_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\41_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\41_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\41_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\41_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\41_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\41_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\41_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\41_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\42_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\42_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\42_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\42_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\42_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\42_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\42_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\42_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\42_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\43_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\43_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\43_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\43_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\43_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\43_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\43_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\43_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\43_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\44_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\44_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\44_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\44_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\44_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\44_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\44_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\44_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\44_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\45_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\45_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\45_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\45_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\45_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\45_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\45_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\45_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\45_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\46_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\46_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\46_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\46_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\46_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\46_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\46_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\46_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\46_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\47_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\47_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\47_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\47_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\47_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\47_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\47_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\47_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\47_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\48_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\48_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\48_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\48_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\48_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\48_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\48_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\48_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\48_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\4_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\4_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\4_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\4_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\4_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\4_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\4_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\4_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\4_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\50_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\50_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\50_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\50_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\50_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\50_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\50_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\50_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\50_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\53_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\53_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\53_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\53_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\53_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\53_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\53_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\53_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\53_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\54_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\54_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\54_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\54_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\54_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\54_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\54_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\54_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\54_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\55_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\55_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\55_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\55_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\55_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\55_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\55_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\55_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\55_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\57_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\57_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\57_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\57_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\57_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\57_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\57_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\57_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\57_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\58_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\58_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\58_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\58_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\58_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\58_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\58_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\58_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\58_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\5_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\5_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\5_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\5_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\5_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\5_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\5_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\5_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\5_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\60_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\60_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\60_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\60_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\60_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\60_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\60_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\60_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\60_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\61_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\61_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\61_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\61_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\61_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\61_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\61_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\61_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\61_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\62_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\62_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\62_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\62_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\62_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\62_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\62_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\62_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\62_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\63_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\63_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\63_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\63_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\63_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\63_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\63_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\63_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\63_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\66_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\66_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\66_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\66_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\66_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\66_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\66_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\66_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\66_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\67_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\67_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\67_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\67_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\67_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\67_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\67_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\67_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\67_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\68_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\68_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\68_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\68_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\68_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\68_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\68_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\68_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\68_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\69_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\69_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\69_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\69_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\69_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\69_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\69_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\69_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\69_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\6_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\6_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\6_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\6_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\6_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\6_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\6_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\6_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\6_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\70_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\70_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\70_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\70_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\70_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\70_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\70_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\70_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\70_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\72_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\72_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\72_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\72_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\72_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\72_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\72_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\72_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\72_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\73_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\73_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\73_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\73_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\73_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\73_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\73_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\73_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\73_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\74_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\74_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\74_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\74_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\74_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\74_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\74_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\74_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\74_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\75_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\75_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\75_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\75_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\75_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\75_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\75_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\75_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\75_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\76_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\76_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\76_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\76_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\76_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\76_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\76_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\76_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\76_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\77_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\77_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\77_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\77_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\77_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\77_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\77_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\77_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\77_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\79_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\79_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\79_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\79_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\79_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\79_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\79_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\79_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\79_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\81_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\81_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\81_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\81_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\81_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\81_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\81_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\81_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\81_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\82_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\82_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\82_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\82_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\82_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\82_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\82_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\82_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\82_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\83_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\83_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\83_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\83_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\83_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\83_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\83_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\83_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\83_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\84_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\84_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\84_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\84_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\84_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\84_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\84_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\84_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\84_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\85_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\85_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\85_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\85_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\85_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\85_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\85_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\85_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\85_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\86_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\86_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\86_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\86_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\86_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\86_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\86_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\86_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\86_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\87_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\87_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\87_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\87_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\87_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\87_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\87_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\87_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\87_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\88_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\88_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\88_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\88_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\88_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\88_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\88_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\88_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\88_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\89_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\89_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\89_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\89_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\89_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\89_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\89_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\89_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\89_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\92_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\92_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\92_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\92_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\92_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\92_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\92_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\92_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\92_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\93_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\93_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\93_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\93_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\93_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\93_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\93_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\93_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\93_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\94_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\94_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\94_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\94_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\94_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\94_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\94_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\94_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\94_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\95_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\95_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\95_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\95_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\95_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\95_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\95_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\95_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\95_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\96_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\96_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\96_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\96_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\96_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\96_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\96_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\96_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\96_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\97_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\97_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\97_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\97_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\97_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\97_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\97_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\97_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\97_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\98_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\98_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\98_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\98_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\98_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\98_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\98_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\98_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\98_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\99_7812e14df5e746388ff6cfe8b043950a1_color_0_Left_Down_0.0.png .\Matterport3D\99_7812e14df5e746388ff6cfe8b043950a1_color_0_Right_0.0.png .\Matterport3D\99_7812e14df5e746388ff6cfe8b043950a1_color_0_Up_0.0.png .\Matterport3D\99_7812e14df5e746388ff6cfe8b043950a1_depth_0_Left_Down_0.0.exr .\Matterport3D\99_7812e14df5e746388ff6cfe8b043950a1_depth_0_Right_0.0.exr .\Matterport3D\99_7812e14df5e746388ff6cfe8b043950a1_depth_0_Up_0.0.exr .\Matterport3D\99_7812e14df5e746388ff6cfe8b043950a1_normal_0_Left_Down_0.0.exr .\Matterport3D\99_7812e14df5e746388ff6cfe8b043950a1_normal_0_Right_0.0.exr .\Matterport3D\99_7812e14df5e746388ff6cfe8b043950a1_normal_0_Up_0.0.exr
.\Matterport3D\0_9266ab00ab6744348efa7afe13b3db9f1_color_0_Left_Down_0.0.png .\Matterport3D\0_9266ab00ab6744348efa7afe13b3db9f1_color_0_Right_0.0.png .\Matterport3D\0_9266ab00ab6744348efa7afe13b3db9f1_color_0_Up_0.0.png .\Matterport3D\0_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Left_Down_0.0.exr .\Matterport3D\0_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Right_0.0.exr .\Matterport3D\0_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Up_0.0.exr .\Matterport3D\0_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Left_Down_0.0.exr .\Matterport3D\0_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Right_0.0.exr .\Matterport3D\0_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Up_0.0.exr
.\Matterport3D\11_9266ab00ab6744348efa7afe13b3db9f1_color_0_Left_Down_0.0.png .\Matterport3D\11_9266ab00ab6744348efa7afe13b3db9f1_color_0_Right_0.0.png .\Matterport3D\11_9266ab00ab6744348efa7afe13b3db9f1_color_0_Up_0.0.png .\Matterport3D\11_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Left_Down_0.0.exr .\Matterport3D\11_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Right_0.0.exr .\Matterport3D\11_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Up_0.0.exr .\Matterport3D\11_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Left_Down_0.0.exr .\Matterport3D\11_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Right_0.0.exr .\Matterport3D\11_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Up_0.0.exr
.\Matterport3D\12_9266ab00ab6744348efa7afe13b3db9f1_color_0_Left_Down_0.0.png .\Matterport3D\12_9266ab00ab6744348efa7afe13b3db9f1_color_0_Right_0.0.png .\Matterport3D\12_9266ab00ab6744348efa7afe13b3db9f1_color_0_Up_0.0.png .\Matterport3D\12_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Left_Down_0.0.exr .\Matterport3D\12_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Right_0.0.exr .\Matterport3D\12_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Up_0.0.exr .\Matterport3D\12_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Left_Down_0.0.exr .\Matterport3D\12_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Right_0.0.exr .\Matterport3D\12_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Up_0.0.exr
.\Matterport3D\13_9266ab00ab6744348efa7afe13b3db9f1_color_0_Left_Down_0.0.png .\Matterport3D\13_9266ab00ab6744348efa7afe13b3db9f1_color_0_Right_0.0.png .\Matterport3D\13_9266ab00ab6744348efa7afe13b3db9f1_color_0_Up_0.0.png .\Matterport3D\13_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Left_Down_0.0.exr .\Matterport3D\13_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Right_0.0.exr .\Matterport3D\13_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Up_0.0.exr .\Matterport3D\13_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Left_Down_0.0.exr .\Matterport3D\13_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Right_0.0.exr .\Matterport3D\13_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Up_0.0.exr
.\Matterport3D\14_9266ab00ab6744348efa7afe13b3db9f1_color_0_Left_Down_0.0.png .\Matterport3D\14_9266ab00ab6744348efa7afe13b3db9f1_color_0_Right_0.0.png .\Matterport3D\14_9266ab00ab6744348efa7afe13b3db9f1_color_0_Up_0.0.png .\Matterport3D\14_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Left_Down_0.0.exr .\Matterport3D\14_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Right_0.0.exr .\Matterport3D\14_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Up_0.0.exr .\Matterport3D\14_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Left_Down_0.0.exr .\Matterport3D\14_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Right_0.0.exr .\Matterport3D\14_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Up_0.0.exr
.\Matterport3D\15_9266ab00ab6744348efa7afe13b3db9f1_color_0_Left_Down_0.0.png .\Matterport3D\15_9266ab00ab6744348efa7afe13b3db9f1_color_0_Right_0.0.png .\Matterport3D\15_9266ab00ab6744348efa7afe13b3db9f1_color_0_Up_0.0.png .\Matterport3D\15_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Left_Down_0.0.exr .\Matterport3D\15_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Right_0.0.exr .\Matterport3D\15_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Up_0.0.exr .\Matterport3D\15_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Left_Down_0.0.exr .\Matterport3D\15_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Right_0.0.exr .\Matterport3D\15_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Up_0.0.exr
.\Matterport3D\16_9266ab00ab6744348efa7afe13b3db9f1_color_0_Left_Down_0.0.png .\Matterport3D\16_9266ab00ab6744348efa7afe13b3db9f1_color_0_Right_0.0.png .\Matterport3D\16_9266ab00ab6744348efa7afe13b3db9f1_color_0_Up_0.0.png .\Matterport3D\16_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Left_Down_0.0.exr .\Matterport3D\16_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Right_0.0.exr .\Matterport3D\16_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Up_0.0.exr .\Matterport3D\16_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Left_Down_0.0.exr .\Matterport3D\16_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Right_0.0.exr .\Matterport3D\16_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Up_0.0.exr
.\Matterport3D\17_9266ab00ab6744348efa7afe13b3db9f1_color_0_Left_Down_0.0.png .\Matterport3D\17_9266ab00ab6744348efa7afe13b3db9f1_color_0_Right_0.0.png .\Matterport3D\17_9266ab00ab6744348efa7afe13b3db9f1_color_0_Up_0.0.png .\Matterport3D\17_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Left_Down_0.0.exr .\Matterport3D\17_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Right_0.0.exr .\Matterport3D\17_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Up_0.0.exr .\Matterport3D\17_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Left_Down_0.0.exr .\Matterport3D\17_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Right_0.0.exr .\Matterport3D\17_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Up_0.0.exr
.\Matterport3D\18_9266ab00ab6744348efa7afe13b3db9f1_color_0_Left_Down_0.0.png .\Matterport3D\18_9266ab00ab6744348efa7afe13b3db9f1_color_0_Right_0.0.png .\Matterport3D\18_9266ab00ab6744348efa7afe13b3db9f1_color_0_Up_0.0.png .\Matterport3D\18_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Left_Down_0.0.exr .\Matterport3D\18_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Right_0.0.exr .\Matterport3D\18_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Up_0.0.exr .\Matterport3D\18_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Left_Down_0.0.exr .\Matterport3D\18_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Right_0.0.exr .\Matterport3D\18_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Up_0.0.exr
.\Matterport3D\19_9266ab00ab6744348efa7afe13b3db9f1_color_0_Left_Down_0.0.png .\Matterport3D\19_9266ab00ab6744348efa7afe13b3db9f1_color_0_Right_0.0.png .\Matterport3D\19_9266ab00ab6744348efa7afe13b3db9f1_color_0_Up_0.0.png .\Matterport3D\19_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Left_Down_0.0.exr .\Matterport3D\19_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Right_0.0.exr .\Matterport3D\19_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Up_0.0.exr .\Matterport3D\19_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Left_Down_0.0.exr .\Matterport3D\19_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Right_0.0.exr .\Matterport3D\19_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Up_0.0.exr
.\Matterport3D\1_9266ab00ab6744348efa7afe13b3db9f1_color_0_Left_Down_0.0.png .\Matterport3D\1_9266ab00ab6744348efa7afe13b3db9f1_color_0_Right_0.0.png .\Matterport3D\1_9266ab00ab6744348efa7afe13b3db9f1_color_0_Up_0.0.png .\Matterport3D\1_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Left_Down_0.0.exr .\Matterport3D\1_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Right_0.0.exr .\Matterport3D\1_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Up_0.0.exr .\Matterport3D\1_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Left_Down_0.0.exr .\Matterport3D\1_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Right_0.0.exr .\Matterport3D\1_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Up_0.0.exr
.\Matterport3D\2_9266ab00ab6744348efa7afe13b3db9f1_color_0_Left_Down_0.0.png .\Matterport3D\2_9266ab00ab6744348efa7afe13b3db9f1_color_0_Right_0.0.png .\Matterport3D\2_9266ab00ab6744348efa7afe13b3db9f1_color_0_Up_0.0.png .\Matterport3D\2_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Left_Down_0.0.exr .\Matterport3D\2_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Right_0.0.exr .\Matterport3D\2_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Up_0.0.exr .\Matterport3D\2_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Left_Down_0.0.exr .\Matterport3D\2_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Right_0.0.exr .\Matterport3D\2_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Up_0.0.exr
.\Matterport3D\3_9266ab00ab6744348efa7afe13b3db9f1_color_0_Left_Down_0.0.png .\Matterport3D\3_9266ab00ab6744348efa7afe13b3db9f1_color_0_Right_0.0.png .\Matterport3D\3_9266ab00ab6744348efa7afe13b3db9f1_color_0_Up_0.0.png .\Matterport3D\3_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Left_Down_0.0.exr .\Matterport3D\3_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Right_0.0.exr .\Matterport3D\3_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Up_0.0.exr .\Matterport3D\3_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Left_Down_0.0.exr .\Matterport3D\3_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Right_0.0.exr .\Matterport3D\3_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Up_0.0.exr
.\Matterport3D\4_9266ab00ab6744348efa7afe13b3db9f1_color_0_Left_Down_0.0.png .\Matterport3D\4_9266ab00ab6744348efa7afe13b3db9f1_color_0_Right_0.0.png .\Matterport3D\4_9266ab00ab6744348efa7afe13b3db9f1_color_0_Up_0.0.png .\Matterport3D\4_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Left_Down_0.0.exr .\Matterport3D\4_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Right_0.0.exr .\Matterport3D\4_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Up_0.0.exr .\Matterport3D\4_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Left_Down_0.0.exr .\Matterport3D\4_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Right_0.0.exr .\Matterport3D\4_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Up_0.0.exr
.\Matterport3D\5_9266ab00ab6744348efa7afe13b3db9f1_color_0_Left_Down_0.0.png .\Matterport3D\5_9266ab00ab6744348efa7afe13b3db9f1_color_0_Right_0.0.png .\Matterport3D\5_9266ab00ab6744348efa7afe13b3db9f1_color_0_Up_0.0.png .\Matterport3D\5_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Left_Down_0.0.exr .\Matterport3D\5_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Right_0.0.exr .\Matterport3D\5_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Up_0.0.exr .\Matterport3D\5_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Left_Down_0.0.exr .\Matterport3D\5_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Right_0.0.exr .\Matterport3D\5_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Up_0.0.exr
.\Matterport3D\6_9266ab00ab6744348efa7afe13b3db9f1_color_0_Left_Down_0.0.png .\Matterport3D\6_9266ab00ab6744348efa7afe13b3db9f1_color_0_Right_0.0.png .\Matterport3D\6_9266ab00ab6744348efa7afe13b3db9f1_color_0_Up_0.0.png .\Matterport3D\6_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Left_Down_0.0.exr .\Matterport3D\6_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Right_0.0.exr .\Matterport3D\6_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Up_0.0.exr .\Matterport3D\6_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Left_Down_0.0.exr .\Matterport3D\6_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Right_0.0.exr .\Matterport3D\6_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Up_0.0.exr
.\Matterport3D\7_9266ab00ab6744348efa7afe13b3db9f1_color_0_Left_Down_0.0.png .\Matterport3D\7_9266ab00ab6744348efa7afe13b3db9f1_color_0_Right_0.0.png .\Matterport3D\7_9266ab00ab6744348efa7afe13b3db9f1_color_0_Up_0.0.png .\Matterport3D\7_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Left_Down_0.0.exr .\Matterport3D\7_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Right_0.0.exr .\Matterport3D\7_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Up_0.0.exr .\Matterport3D\7_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Left_Down_0.0.exr .\Matterport3D\7_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Right_0.0.exr .\Matterport3D\7_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Up_0.0.exr
.\Matterport3D\8_9266ab00ab6744348efa7afe13b3db9f1_color_0_Left_Down_0.0.png .\Matterport3D\8_9266ab00ab6744348efa7afe13b3db9f1_color_0_Right_0.0.png .\Matterport3D\8_9266ab00ab6744348efa7afe13b3db9f1_color_0_Up_0.0.png .\Matterport3D\8_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Left_Down_0.0.exr .\Matterport3D\8_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Right_0.0.exr .\Matterport3D\8_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Up_0.0.exr .\Matterport3D\8_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Left_Down_0.0.exr .\Matterport3D\8_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Right_0.0.exr .\Matterport3D\8_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Up_0.0.exr
.\Matterport3D\9_9266ab00ab6744348efa7afe13b3db9f1_color_0_Left_Down_0.0.png .\Matterport3D\9_9266ab00ab6744348efa7afe13b3db9f1_color_0_Right_0.0.png .\Matterport3D\9_9266ab00ab6744348efa7afe13b3db9f1_color_0_Up_0.0.png .\Matterport3D\9_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Left_Down_0.0.exr .\Matterport3D\9_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Right_0.0.exr .\Matterport3D\9_9266ab00ab6744348efa7afe13b3db9f1_depth_0_Up_0.0.exr .\Matterport3D\9_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Left_Down_0.0.exr .\Matterport3D\9_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Right_0.0.exr .\Matterport3D\9_9266ab00ab6744348efa7afe13b3db9f1_normal_0_Up_0.0.exr
.\Matterport3D\0_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\0_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\0_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\0_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\0_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\0_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\0_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\0_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\0_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\10_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\10_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\10_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\10_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\10_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\10_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\10_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\10_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\10_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\11_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\11_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\11_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\11_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\11_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\11_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\11_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\11_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\11_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\12_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\12_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\12_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\12_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\12_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\12_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\12_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\12_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\12_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\13_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\13_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\13_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\13_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\13_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\13_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\13_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\13_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\13_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\14_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\14_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\14_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\14_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\14_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\14_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\14_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\14_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\14_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\15_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\15_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\15_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\15_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\15_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\15_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\15_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\15_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\15_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\16_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\16_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\16_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\16_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\16_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\16_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\16_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\16_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\16_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\17_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\17_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\17_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\17_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\17_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\17_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\17_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\17_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\17_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\18_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\18_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\18_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\18_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\18_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\18_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\18_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\18_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\18_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\19_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\19_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\19_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\19_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\19_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\19_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\19_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\19_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\19_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\1_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\1_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\1_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\1_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\1_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\1_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\1_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\1_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\1_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\20_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\20_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\20_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\20_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\20_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\20_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\20_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\20_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\20_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\21_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\21_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\21_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\21_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\21_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\21_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\21_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\21_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\21_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\22_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\22_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\22_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\22_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\22_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\22_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\22_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\22_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\22_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\23_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\23_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\23_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\23_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\23_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\23_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\23_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\23_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\23_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\24_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\24_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\24_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\24_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\24_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\24_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\24_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\24_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\24_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\25_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\25_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\25_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\25_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\25_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\25_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\25_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\25_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\25_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\26_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\26_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\26_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\26_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\26_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\26_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\26_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\26_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\26_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\27_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\27_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\27_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\27_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\27_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\27_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\27_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\27_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\27_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\28_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\28_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\28_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\28_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\28_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\28_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\28_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\28_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\28_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\2_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\2_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\2_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\2_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\2_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\2_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\2_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\2_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\2_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\30_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\30_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\30_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\30_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\30_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\30_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\30_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\30_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\30_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\31_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\31_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\31_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\31_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\31_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\31_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\31_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\31_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\31_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\32_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\32_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\32_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\32_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\32_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\32_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\32_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\32_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\32_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\34_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\34_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\34_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\34_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\34_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\34_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\34_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\34_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\34_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\35_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\35_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\35_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\35_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\35_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\35_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\35_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\35_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\35_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\36_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\36_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\36_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\36_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\36_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\36_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\36_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\36_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\36_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\38_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\38_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\38_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\38_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\38_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\38_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\38_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\38_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\38_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\39_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\39_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\39_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\39_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\39_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\39_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\39_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\39_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\39_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\3_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\3_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\3_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\3_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\3_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\3_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\3_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\3_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\3_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\41_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\41_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\41_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\41_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\41_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\41_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\41_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\41_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\41_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\42_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\42_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\42_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\42_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\42_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\42_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\42_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\42_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\42_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\43_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\43_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\43_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\43_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\43_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\43_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\43_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\43_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\43_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\44_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\44_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\44_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\44_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\44_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\44_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\44_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\44_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\44_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\45_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\45_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\45_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\45_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\45_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\45_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\45_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\45_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\45_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\46_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\46_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\46_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\46_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\46_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\46_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\46_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\46_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\46_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\49_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\49_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\49_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\49_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\49_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\49_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\49_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\49_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\49_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\4_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\4_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\4_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\4_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\4_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\4_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\4_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\4_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\4_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\50_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\50_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\50_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\50_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\50_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\50_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\50_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\50_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\50_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\51_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\51_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\51_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\51_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\51_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\51_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\51_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\51_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\51_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\52_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\52_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\52_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\52_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\52_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\52_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\52_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\52_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\52_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\53_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\53_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\53_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\53_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\53_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\53_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\53_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\53_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\53_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\54_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\54_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\54_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\54_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\54_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\54_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\54_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\54_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\54_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\55_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\55_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\55_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\55_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\55_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\55_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\55_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\55_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\55_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\56_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\56_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\56_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\56_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\56_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\56_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\56_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\56_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\56_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\5_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\5_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\5_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\5_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\5_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\5_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\5_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\5_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\5_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\60_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\60_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\60_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\60_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\60_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\60_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\60_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\60_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\60_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\61_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\61_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\61_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\61_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\61_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\61_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\61_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\61_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\61_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\62_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\62_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\62_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\62_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\62_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\62_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\62_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\62_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\62_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\63_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\63_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\63_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\63_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\63_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\63_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\63_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\63_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\63_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\64_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\64_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\64_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\64_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\64_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\64_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\64_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\64_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\64_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\65_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\65_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\65_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\65_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\65_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\65_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\65_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\65_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\65_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\66_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\66_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\66_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\66_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\66_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\66_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\66_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\66_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\66_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\67_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\67_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\67_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\67_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\67_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\67_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\67_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\67_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\67_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\69_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\69_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\69_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\69_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\69_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\69_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\69_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\69_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\69_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\6_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\6_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\6_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\6_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\6_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\6_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\6_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\6_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\6_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\70_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\70_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\70_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\70_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\70_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\70_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\70_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\70_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\70_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\71_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\71_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\71_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\71_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\71_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\71_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\71_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\71_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\71_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\72_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\72_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\72_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\72_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\72_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\72_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\72_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\72_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\72_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\73_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\73_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\73_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\73_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\73_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\73_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\73_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\73_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\73_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\75_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\75_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\75_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\75_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\75_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\75_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\75_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\75_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\75_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\76_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\76_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\76_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\76_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\76_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\76_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\76_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\76_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\76_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\77_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\77_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\77_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\77_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\77_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\77_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\77_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\77_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\77_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\7_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\7_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\7_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\7_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\7_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\7_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\7_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\7_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\7_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\8_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\8_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\8_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\8_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\8_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\8_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\8_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\8_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\8_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\9_f9aeabd92a05469badd3c6324dc35a551_color_0_Left_Down_0.0.png .\Matterport3D\9_f9aeabd92a05469badd3c6324dc35a551_color_0_Right_0.0.png .\Matterport3D\9_f9aeabd92a05469badd3c6324dc35a551_color_0_Up_0.0.png .\Matterport3D\9_f9aeabd92a05469badd3c6324dc35a551_depth_0_Left_Down_0.0.exr .\Matterport3D\9_f9aeabd92a05469badd3c6324dc35a551_depth_0_Right_0.0.exr .\Matterport3D\9_f9aeabd92a05469badd3c6324dc35a551_depth_0_Up_0.0.exr .\Matterport3D\9_f9aeabd92a05469badd3c6324dc35a551_normal_0_Left_Down_0.0.exr .\Matterport3D\9_f9aeabd92a05469badd3c6324dc35a551_normal_0_Right_0.0.exr .\Matterport3D\9_f9aeabd92a05469badd3c6324dc35a551_normal_0_Up_0.0.exr
.\Matterport3D\0_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\0_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\0_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\0_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\0_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\0_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\0_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\0_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\0_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\100_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\100_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\100_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\100_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\100_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\100_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\100_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\100_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\100_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\101_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\101_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\101_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\101_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\101_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\101_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\101_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\101_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\101_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\102_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\102_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\102_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\102_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\102_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\102_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\102_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\102_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\102_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\103_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\103_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\103_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\103_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\103_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\103_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\103_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\103_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\103_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\104_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\104_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\104_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\104_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\104_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\104_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\104_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\104_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\104_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\105_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\105_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\105_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\105_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\105_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\105_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\105_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\105_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\105_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\106_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\106_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\106_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\106_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\106_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\106_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\106_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\106_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\106_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\107_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\107_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\107_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\107_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\107_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\107_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\107_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\107_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\107_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\108_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\108_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\108_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\108_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\108_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\108_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\108_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\108_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\108_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\109_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\109_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\109_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\109_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\109_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\109_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\109_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\109_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\109_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\10_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\10_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\10_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\10_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\10_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\10_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\10_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\10_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\10_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\110_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\110_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\110_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\110_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\110_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\110_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\110_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\110_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\110_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\111_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\111_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\111_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\111_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\111_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\111_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\111_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\111_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\111_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\112_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\112_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\112_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\112_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\112_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\112_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\112_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\112_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\112_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\113_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\113_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\113_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\113_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\113_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\113_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\113_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\113_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\113_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\114_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\114_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\114_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\114_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\114_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\114_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\114_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\114_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\114_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\115_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\115_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\115_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\115_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\115_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\115_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\115_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\115_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\115_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\116_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\116_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\116_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\116_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\116_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\116_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\116_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\116_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\116_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\117_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\117_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\117_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\117_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\117_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\117_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\117_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\117_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\117_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\118_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\118_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\118_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\118_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\118_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\118_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\118_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\118_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\118_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\119_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\119_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\119_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\119_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\119_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\119_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\119_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\119_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\119_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\11_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\11_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\11_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\11_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\11_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\11_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\11_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\11_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\11_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\120_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\120_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\120_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\120_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\120_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\120_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\120_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\120_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\120_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\121_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\121_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\121_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\121_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\121_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\121_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\121_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\121_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\121_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\122_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\122_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\122_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\122_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\122_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\122_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\122_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\122_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\122_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\123_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\123_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\123_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\123_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\123_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\123_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\123_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\123_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\123_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\124_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\124_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\124_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\124_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\124_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\124_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\124_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\124_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\124_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\125_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\125_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\125_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\125_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\125_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\125_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\125_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\125_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\125_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\126_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\126_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\126_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\126_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\126_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\126_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\126_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\126_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\126_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\127_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\127_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\127_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\127_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\127_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\127_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\127_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\127_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\127_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\128_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\128_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\128_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\128_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\128_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\128_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\128_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\128_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\128_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\129_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\129_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\129_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\129_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\129_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\129_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\129_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\129_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\129_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\12_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\12_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\12_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\12_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\12_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\12_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\12_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\12_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\12_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\130_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\130_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\130_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\130_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\130_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\130_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\130_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\130_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\130_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\131_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\131_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\131_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\131_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\131_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\131_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\131_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\131_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\131_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\132_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\132_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\132_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\132_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\132_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\132_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\132_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\132_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\132_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\133_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\133_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\133_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\133_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\133_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\133_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\133_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\133_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\133_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\134_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\134_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\134_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\134_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\134_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\134_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\134_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\134_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\134_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\135_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\135_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\135_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\135_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\135_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\135_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\135_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\135_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\135_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\136_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\136_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\136_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\136_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\136_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\136_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\136_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\136_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\136_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\137_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\137_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\137_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\137_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\137_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\137_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\137_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\137_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\137_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\138_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\138_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\138_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\138_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\138_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\138_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\138_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\138_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\138_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\139_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\139_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\139_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\139_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\139_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\139_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\139_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\139_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\139_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\13_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\13_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\13_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\13_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\13_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\13_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\13_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\13_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\13_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\140_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\140_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\140_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\140_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\140_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\140_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\140_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\140_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\140_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\141_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\141_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\141_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\141_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\141_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\141_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\141_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\141_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\141_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\142_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\142_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\142_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\142_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\142_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\142_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\142_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\142_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\142_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\143_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\143_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\143_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\143_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\143_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\143_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\143_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\143_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\143_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\144_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\144_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\144_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\144_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\144_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\144_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\144_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\144_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\144_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\14_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\14_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\14_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\14_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\14_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\14_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\14_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\14_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\14_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\15_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\15_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\15_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\15_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\15_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\15_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\15_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\15_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\15_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\16_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\16_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\16_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\16_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\16_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\16_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\16_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\16_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\16_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\17_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\17_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\17_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\17_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\17_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\17_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\17_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\17_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\17_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\18_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\18_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\18_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\18_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\18_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\18_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\18_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\18_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\18_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\1_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\1_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\1_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\1_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\1_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\1_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\1_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\1_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\1_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\20_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\20_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\20_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\20_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\20_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\20_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\20_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\20_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\20_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\21_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\21_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\21_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\21_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\21_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\21_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\21_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\21_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\21_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\22_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\22_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\22_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\22_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\22_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\22_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\22_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\22_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\22_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\23_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\23_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\23_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\23_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\23_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\23_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\23_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\23_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\23_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\24_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\24_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\24_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\24_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\24_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\24_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\24_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\24_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\24_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\25_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\25_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\25_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\25_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\25_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\25_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\25_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\25_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\25_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\26_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\26_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\26_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\26_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\26_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\26_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\26_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\26_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\26_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\27_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\27_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\27_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\27_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\27_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\27_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\27_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\27_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\27_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\28_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\28_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\28_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\28_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\28_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\28_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\28_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\28_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\28_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\29_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\29_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\29_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\29_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\29_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\29_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\29_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\29_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\29_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\30_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\30_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\30_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\30_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\30_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\30_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\30_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\30_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\30_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\31_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\31_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\31_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\31_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\31_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\31_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\31_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\31_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\31_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\32_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\32_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\32_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\32_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\32_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\32_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\32_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\32_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\32_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\33_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\33_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\33_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\33_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\33_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\33_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\33_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\33_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\33_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\35_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\35_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\35_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\35_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\35_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\35_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\35_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\35_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\35_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\36_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\36_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\36_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\36_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\36_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\36_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\36_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\36_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\36_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\37_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\37_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\37_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\37_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\37_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\37_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\37_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\37_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\37_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\38_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\38_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\38_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\38_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\38_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\38_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\38_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\38_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\38_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\39_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\39_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\39_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\39_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\39_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\39_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\39_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\39_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\39_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\3_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\3_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\3_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\3_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\3_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\3_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\3_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\3_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\3_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\40_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\40_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\40_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\40_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\40_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\40_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\40_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\40_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\40_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\41_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\41_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\41_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\41_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\41_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\41_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\41_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\41_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\41_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\42_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\42_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\42_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\42_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\42_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\42_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\42_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\42_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\42_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\43_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\43_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\43_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\43_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\43_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\43_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\43_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\43_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\43_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\44_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\44_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\44_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\44_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\44_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\44_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\44_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\44_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\44_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\46_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\46_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\46_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\46_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\46_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\46_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\46_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\46_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\46_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\47_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\47_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\47_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\47_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\47_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\47_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\47_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\47_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\47_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\48_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\48_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\48_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\48_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\48_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\48_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\48_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\48_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\48_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\49_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\49_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\49_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\49_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\49_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\49_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\49_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\49_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\49_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\4_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\4_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\4_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\4_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\4_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\4_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\4_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\4_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\4_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\50_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\50_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\50_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\50_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\50_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\50_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\50_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\50_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\50_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\51_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\51_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\51_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\51_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\51_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\51_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\51_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\51_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\51_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\52_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\52_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\52_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\52_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\52_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\52_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\52_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\52_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\52_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\53_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\53_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\53_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\53_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\53_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\53_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\53_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\53_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\53_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\54_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\54_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\54_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\54_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\54_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\54_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\54_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\54_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\54_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\55_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\55_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\55_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\55_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\55_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\55_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\55_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\55_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\55_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\56_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\56_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\56_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\56_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\56_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\56_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\56_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\56_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\56_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\57_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\57_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\57_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\57_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\57_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\57_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\57_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\57_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\57_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\58_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\58_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\58_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\58_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\58_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\58_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\58_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\58_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\58_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\59_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\59_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\59_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\59_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\59_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\59_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\59_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\59_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\59_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\5_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\5_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\5_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\5_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\5_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\5_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\5_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\5_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\5_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\60_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\60_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\60_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\60_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\60_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\60_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\60_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\60_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\60_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\61_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\61_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\61_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\61_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\61_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\61_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\61_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\61_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\61_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\62_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\62_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\62_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\62_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\62_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\62_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\62_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\62_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\62_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\63_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\63_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\63_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\63_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\63_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\63_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\63_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\63_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\63_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\64_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\64_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\64_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\64_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\64_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\64_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\64_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\64_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\64_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\65_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\65_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\65_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\65_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\65_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\65_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\65_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\65_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\65_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\66_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\66_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\66_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\66_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\66_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\66_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\66_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\66_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\66_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\67_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\67_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\67_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\67_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\67_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\67_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\67_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\67_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\67_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\68_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\68_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\68_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\68_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\68_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\68_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\68_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\68_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\68_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\69_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\69_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\69_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\69_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\69_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\69_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\69_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\69_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\69_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\6_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\6_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\6_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\6_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\6_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\6_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\6_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\6_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\6_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\70_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\70_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\70_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\70_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\70_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\70_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\70_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\70_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\70_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\71_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\71_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\71_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\71_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\71_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\71_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\71_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\71_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\71_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\72_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\72_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\72_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\72_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\72_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\72_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\72_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\72_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\72_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\73_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\73_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\73_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\73_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\73_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\73_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\73_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\73_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\73_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\74_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\74_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\74_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\74_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\74_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\74_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\74_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\74_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\74_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\75_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\75_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\75_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\75_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\75_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\75_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\75_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\75_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\75_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\76_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\76_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\76_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\76_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\76_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\76_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\76_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\76_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\76_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\77_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\77_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\77_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\77_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\77_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\77_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\77_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\77_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\77_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\78_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\78_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\78_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\78_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\78_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\78_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\78_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\78_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\78_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\79_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\79_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\79_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\79_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\79_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\79_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\79_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\79_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\79_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\7_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\7_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\7_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\7_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\7_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\7_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\7_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\7_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\7_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\80_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\80_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\80_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\80_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\80_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\80_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\80_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\80_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\80_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\82_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\82_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\82_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\82_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\82_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\82_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\82_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\82_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\82_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\83_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\83_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\83_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\83_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\83_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\83_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\83_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\83_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\83_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\84_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\84_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\84_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\84_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\84_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\84_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\84_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\84_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\84_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\85_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\85_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\85_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\85_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\85_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\85_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\85_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\85_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\85_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\86_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\86_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\86_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\86_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\86_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\86_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\86_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\86_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\86_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\87_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\87_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\87_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\87_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\87_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\87_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\87_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\87_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\87_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\88_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\88_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\88_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\88_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\88_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\88_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\88_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\88_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\88_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\89_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\89_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\89_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\89_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\89_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\89_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\89_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\89_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\89_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\8_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\8_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\8_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\8_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\8_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\8_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\8_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\8_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\8_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\90_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\90_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\90_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\90_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\90_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\90_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\90_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\90_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\90_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\91_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\91_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\91_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\91_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\91_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\91_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\91_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\91_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\91_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\92_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\92_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\92_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\92_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\92_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\92_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\92_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\92_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\92_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\93_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\93_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\93_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\93_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\93_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\93_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\93_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\93_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\93_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\94_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\94_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\94_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\94_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\94_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\94_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\94_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\94_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\94_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\96_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\96_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\96_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\96_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\96_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\96_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\96_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\96_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\96_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\97_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\97_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\97_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\97_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\97_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\97_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\97_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\97_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\97_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\98_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\98_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\98_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\98_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\98_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\98_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\98_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\98_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\98_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\99_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\99_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\99_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\99_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\99_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\99_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\99_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\99_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\99_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\9_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Left_Down_0.0.png .\Matterport3D\9_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Right_0.0.png .\Matterport3D\9_0685d2c5313948bd94e920b5b9e1a7b21_color_0_Up_0.0.png .\Matterport3D\9_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Left_Down_0.0.exr .\Matterport3D\9_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Right_0.0.exr .\Matterport3D\9_0685d2c5313948bd94e920b5b9e1a7b21_depth_0_Up_0.0.exr .\Matterport3D\9_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Left_Down_0.0.exr .\Matterport3D\9_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Right_0.0.exr .\Matterport3D\9_0685d2c5313948bd94e920b5b9e1a7b21_normal_0_Up_0.0.exr
.\Matterport3D\0_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\0_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\0_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\0_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\0_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\0_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\0_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\0_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\0_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\100_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\100_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\100_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\100_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\100_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\100_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\100_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\100_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\100_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\101_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\101_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\101_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\101_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\101_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\101_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\101_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\101_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\101_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\102_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\102_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\102_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\102_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\102_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\102_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\102_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\102_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\102_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\103_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\103_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\103_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\103_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\103_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\103_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\103_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\103_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\103_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\105_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\105_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\105_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\105_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\105_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\105_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\105_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\105_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\105_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\106_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\106_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\106_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\106_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\106_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\106_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\106_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\106_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\106_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\108_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\108_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\108_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\108_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\108_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\108_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\108_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\108_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\108_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\10_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\10_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\10_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\10_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\10_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\10_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\10_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\10_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\10_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\110_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\110_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\110_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\110_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\110_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\110_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\110_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\110_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\110_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\112_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\112_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\112_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\112_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\112_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\112_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\112_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\112_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\112_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\113_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\113_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\113_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\113_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\113_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\113_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\113_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\113_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\113_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\114_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\114_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\114_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\114_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\114_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\114_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\114_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\114_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\114_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\115_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\115_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\115_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\115_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\115_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\115_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\115_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\115_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\115_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\11_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\11_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\11_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\11_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\11_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\11_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\11_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\11_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\11_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\13_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\13_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\13_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\13_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\13_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\13_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\13_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\13_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\13_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\14_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\14_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\14_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\14_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\14_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\14_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\14_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\14_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\14_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\15_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\15_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\15_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\15_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\15_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\15_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\15_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\15_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\15_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\16_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\16_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\16_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\16_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\16_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\16_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\16_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\16_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\16_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\17_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\17_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\17_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\17_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\17_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\17_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\17_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\17_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\17_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\19_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\19_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\19_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\19_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\19_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\19_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\19_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\19_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\19_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\20_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\20_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\20_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\20_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\20_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\20_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\20_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\20_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\20_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\21_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\21_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\21_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\21_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\21_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\21_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\21_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\21_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\21_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\22_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\22_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\22_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\22_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\22_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\22_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\22_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\22_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\22_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\23_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\23_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\23_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\23_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\23_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\23_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\23_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\23_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\23_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\24_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\24_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\24_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\24_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\24_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\24_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\24_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\24_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\24_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\25_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\25_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\25_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\25_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\25_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\25_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\25_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\25_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\25_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\26_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\26_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\26_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\26_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\26_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\26_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\26_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\26_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\26_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\27_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\27_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\27_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\27_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\27_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\27_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\27_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\27_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\27_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\28_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\28_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\28_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\28_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\28_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\28_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\28_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\28_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\28_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\29_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\29_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\29_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\29_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\29_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\29_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\29_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\29_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\29_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\2_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\2_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\2_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\2_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\2_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\2_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\2_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\2_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\2_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\31_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\31_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\31_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\31_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\31_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\31_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\31_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\31_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\31_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\32_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\32_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\32_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\32_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\32_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\32_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\32_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\32_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\32_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\33_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\33_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\33_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\33_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\33_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\33_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\33_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\33_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\33_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\34_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\34_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\34_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\34_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\34_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\34_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\34_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\34_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\34_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\35_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\35_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\35_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\35_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\35_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\35_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\35_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\35_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\35_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\36_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\36_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\36_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\36_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\36_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\36_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\36_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\36_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\36_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\37_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\37_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\37_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\37_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\37_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\37_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\37_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\37_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\37_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\38_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\38_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\38_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\38_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\38_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\38_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\38_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\38_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\38_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\39_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\39_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\39_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\39_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\39_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\39_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\39_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\39_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\39_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\40_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\40_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\40_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\40_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\40_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\40_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\40_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\40_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\40_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\41_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\41_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\41_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\41_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\41_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\41_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\41_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\41_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\41_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\42_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\42_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\42_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\42_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\42_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\42_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\42_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\42_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\42_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\43_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\43_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\43_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\43_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\43_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\43_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\43_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\43_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\43_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\44_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\44_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\44_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\44_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\44_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\44_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\44_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\44_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\44_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\46_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\46_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\46_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\46_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\46_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\46_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\46_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\46_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\46_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\47_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\47_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\47_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\47_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\47_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\47_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\47_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\47_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\47_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\48_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\48_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\48_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\48_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\48_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\48_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\48_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\48_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\48_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\49_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\49_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\49_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\49_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\49_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\49_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\49_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\49_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\49_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\50_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\50_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\50_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\50_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\50_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\50_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\50_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\50_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\50_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\51_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\51_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\51_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\51_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\51_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\51_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\51_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\51_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\51_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\52_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\52_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\52_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\52_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\52_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\52_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\52_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\52_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\52_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\54_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\54_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\54_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\54_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\54_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\54_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\54_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\54_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\54_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\55_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\55_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\55_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\55_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\55_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\55_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\55_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\55_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\55_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\56_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\56_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\56_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\56_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\56_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\56_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\56_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\56_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\56_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\57_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\57_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\57_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\57_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\57_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\57_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\57_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\57_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\57_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\58_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\58_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\58_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\58_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\58_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\58_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\58_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\58_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\58_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\59_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\59_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\59_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\59_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\59_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\59_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\59_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\59_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\59_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\5_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\5_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\5_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\5_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\5_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\5_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\5_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\5_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\5_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\60_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\60_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\60_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\60_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\60_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\60_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\60_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\60_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\60_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\61_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\61_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\61_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\61_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\61_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\61_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\61_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\61_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\61_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\62_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\62_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\62_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\62_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\62_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\62_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\62_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\62_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\62_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\63_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\63_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\63_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\63_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\63_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\63_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\63_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\63_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\63_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\64_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\64_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\64_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\64_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\64_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\64_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\64_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\64_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\64_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\65_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\65_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\65_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\65_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\65_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\65_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\65_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\65_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\65_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\66_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\66_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\66_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\66_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\66_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\66_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\66_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\66_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\66_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\67_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\67_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\67_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\67_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\67_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\67_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\67_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\67_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\67_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\68_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\68_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\68_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\68_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\68_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\68_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\68_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\68_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\68_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\69_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\69_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\69_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\69_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\69_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\69_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\69_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\69_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\69_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\6_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\6_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\6_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\6_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\6_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\6_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\6_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\6_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\6_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\70_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\70_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\70_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\70_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\70_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\70_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\70_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\70_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\70_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\71_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\71_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\71_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\71_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\71_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\71_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\71_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\71_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\71_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\72_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\72_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\72_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\72_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\72_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\72_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\72_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\72_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\72_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\73_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\73_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\73_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\73_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\73_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\73_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\73_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\73_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\73_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\74_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\74_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\74_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\74_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\74_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\74_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\74_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\74_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\74_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\75_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\75_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\75_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\75_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\75_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\75_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\75_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\75_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\75_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\76_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\76_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\76_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\76_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\76_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\76_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\76_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\76_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\76_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\77_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\77_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\77_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\77_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\77_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\77_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\77_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\77_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\77_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\78_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\78_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\78_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\78_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\78_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\78_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\78_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\78_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\78_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\79_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\79_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\79_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\79_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\79_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\79_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\79_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\79_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\79_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\7_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\7_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\7_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\7_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\7_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\7_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\7_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\7_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\7_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\80_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\80_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\80_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\80_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\80_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\80_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\80_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\80_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\80_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\81_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\81_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\81_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\81_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\81_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\81_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\81_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\81_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\81_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\82_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\82_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\82_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\82_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\82_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\82_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\82_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\82_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\82_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\83_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\83_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\83_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\83_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\83_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\83_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\83_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\83_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\83_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\84_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\84_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\84_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\84_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\84_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\84_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\84_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\84_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\84_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\85_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\85_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\85_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\85_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\85_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\85_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\85_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\85_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\85_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\86_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\86_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\86_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\86_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\86_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\86_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\86_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\86_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\86_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\87_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\87_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\87_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\87_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\87_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\87_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\87_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\87_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\87_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\88_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\88_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\88_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\88_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\88_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\88_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\88_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\88_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\88_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\89_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\89_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\89_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\89_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\89_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\89_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\89_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\89_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\89_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\90_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\90_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\90_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\90_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\90_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\90_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\90_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\90_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\90_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\91_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\91_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\91_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\91_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\91_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\91_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\91_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\91_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\91_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\92_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\92_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\92_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\92_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\92_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\92_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\92_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\92_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\92_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\93_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\93_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\93_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\93_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\93_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\93_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\93_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\93_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\93_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\94_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\94_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\94_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\94_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\94_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\94_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\94_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\94_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\94_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\95_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\95_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\95_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\95_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\95_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\95_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\95_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\95_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\95_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\96_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\96_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\96_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\96_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\96_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\96_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\96_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\96_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\96_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\97_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\97_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\97_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\97_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\97_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\97_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\97_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\97_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\97_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\98_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\98_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\98_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\98_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\98_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\98_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\98_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\98_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\98_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\99_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\99_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\99_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\99_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\99_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\99_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\99_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\99_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\99_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\9_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Left_Down_0.0.png .\Matterport3D\9_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Right_0.0.png .\Matterport3D\9_9f2deaf4cf954d7aa43ce5dc70e7abbe1_color_0_Up_0.0.png .\Matterport3D\9_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Left_Down_0.0.exr .\Matterport3D\9_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Right_0.0.exr .\Matterport3D\9_9f2deaf4cf954d7aa43ce5dc70e7abbe1_depth_0_Up_0.0.exr .\Matterport3D\9_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Left_Down_0.0.exr .\Matterport3D\9_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Right_0.0.exr .\Matterport3D\9_9f2deaf4cf954d7aa43ce5dc70e7abbe1_normal_0_Up_0.0.exr
.\Matterport3D\0_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\0_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\0_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\0_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\0_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\0_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\0_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\0_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\0_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\10_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\10_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\10_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\10_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\10_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\10_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\10_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\10_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\10_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\11_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\11_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\11_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\11_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\11_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\11_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\11_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\11_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\11_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\12_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\12_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\12_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\12_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\12_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\12_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\12_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\12_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\12_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\13_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\13_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\13_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\13_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\13_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\13_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\13_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\13_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\13_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\14_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\14_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\14_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\14_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\14_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\14_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\14_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\14_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\14_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\15_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\15_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\15_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\15_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\15_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\15_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\15_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\15_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\15_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\16_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\16_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\16_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\16_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\16_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\16_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\16_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\16_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\16_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\17_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\17_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\17_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\17_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\17_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\17_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\17_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\17_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\17_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\18_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\18_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\18_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\18_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\18_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\18_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\18_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\18_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\18_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\19_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\19_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\19_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\19_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\19_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\19_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\19_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\19_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\19_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\1_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\1_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\1_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\1_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\1_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\1_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\1_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\1_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\1_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\20_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\20_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\20_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\20_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\20_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\20_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\20_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\20_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\20_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\21_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\21_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\21_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\21_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\21_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\21_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\21_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\21_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\21_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\22_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\22_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\22_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\22_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\22_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\22_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\22_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\22_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\22_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\23_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\23_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\23_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\23_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\23_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\23_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\23_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\23_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\23_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\24_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\24_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\24_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\24_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\24_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\24_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\24_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\24_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\24_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\25_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\25_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\25_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\25_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\25_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\25_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\25_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\25_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\25_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\26_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\26_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\26_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\26_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\26_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\26_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\26_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\26_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\26_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\27_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\27_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\27_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\27_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\27_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\27_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\27_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\27_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\27_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\28_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\28_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\28_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\28_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\28_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\28_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\28_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\28_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\28_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\29_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\29_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\29_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\29_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\29_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\29_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\29_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\29_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\29_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\2_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\2_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\2_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\2_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\2_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\2_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\2_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\2_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\2_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\30_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\30_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\30_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\30_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\30_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\30_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\30_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\30_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\30_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\33_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\33_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\33_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\33_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\33_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\33_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\33_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\33_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\33_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\34_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\34_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\34_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\34_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\34_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\34_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\34_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\34_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\34_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\39_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\39_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\39_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\39_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\39_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\39_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\39_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\39_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\39_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\3_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\3_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\3_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\3_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\3_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\3_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\3_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\3_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\3_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\40_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\40_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\40_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\40_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\40_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\40_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\40_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\40_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\40_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\41_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\41_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\41_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\41_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\41_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\41_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\41_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\41_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\41_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\42_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\42_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\42_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\42_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\42_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\42_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\42_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\42_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\42_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\43_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\43_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\43_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\43_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\43_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\43_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\43_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\43_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\43_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\44_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\44_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\44_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\44_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\44_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\44_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\44_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\44_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\44_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\45_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\45_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\45_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\45_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\45_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\45_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\45_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\45_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\45_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\46_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\46_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\46_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\46_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\46_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\46_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\46_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\46_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\46_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\47_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\47_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\47_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\47_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\47_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\47_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\47_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\47_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\47_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\49_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\49_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\49_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\49_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\49_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\49_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\49_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\49_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\49_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\4_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\4_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\4_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\4_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\4_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\4_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\4_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\4_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\4_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\50_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\50_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\50_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\50_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\50_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\50_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\50_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\50_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\50_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\51_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\51_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\51_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\51_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\51_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\51_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\51_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\51_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\51_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\53_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\53_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\53_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\53_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\53_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\53_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\53_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\53_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\53_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\54_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\54_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\54_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\54_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\54_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\54_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\54_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\54_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\54_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\55_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\55_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\55_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\55_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\55_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\55_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\55_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\55_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\55_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\56_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\56_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\56_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\56_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\56_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\56_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\56_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\56_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\56_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\57_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\57_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\57_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\57_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\57_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\57_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\57_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\57_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\57_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\59_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\59_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\59_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\59_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\59_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\59_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\59_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\59_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\59_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\5_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\5_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\5_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\5_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\5_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\5_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\5_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\5_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\5_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\60_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\60_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\60_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\60_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\60_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\60_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\60_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\60_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\60_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\61_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\61_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\61_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\61_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\61_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\61_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\61_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\61_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\61_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\63_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\63_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\63_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\63_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\63_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\63_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\63_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\63_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\63_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\64_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\64_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\64_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\64_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\64_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\64_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\64_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\64_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\64_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\65_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\65_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\65_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\65_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\65_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\65_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\65_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\65_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\65_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\67_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\67_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\67_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\67_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\67_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\67_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\67_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\67_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\67_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\68_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\68_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\68_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\68_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\68_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\68_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\68_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\68_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\68_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\69_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\69_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\69_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\69_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\69_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\69_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\69_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\69_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\69_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\6_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\6_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\6_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\6_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\6_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\6_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\6_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\6_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\6_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\71_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\71_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\71_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\71_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\71_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\71_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\71_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\71_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\71_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\72_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\72_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\72_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\72_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\72_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\72_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\72_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\72_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\72_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\75_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\75_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\75_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\75_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\75_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\75_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\75_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\75_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\75_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\77_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\77_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\77_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\77_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\77_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\77_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\77_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\77_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\77_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\78_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\78_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\78_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\78_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\78_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\78_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\78_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\78_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\78_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\79_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\79_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\79_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\79_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\79_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\79_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\79_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\79_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\79_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\7_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\7_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\7_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\7_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\7_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\7_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\7_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\7_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\7_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\80_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\80_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\80_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\80_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\80_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\80_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\80_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\80_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\80_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\81_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\81_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\81_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\81_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\81_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\81_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\81_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\81_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\81_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\8_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Left_Down_0.0.png .\Matterport3D\8_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Right_0.0.png .\Matterport3D\8_e0166dba74ee42fd80fccc26fe3f02c81_color_0_Up_0.0.png .\Matterport3D\8_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Left_Down_0.0.exr .\Matterport3D\8_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Right_0.0.exr .\Matterport3D\8_e0166dba74ee42fd80fccc26fe3f02c81_depth_0_Up_0.0.exr .\Matterport3D\8_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Left_Down_0.0.exr .\Matterport3D\8_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Right_0.0.exr .\Matterport3D\8_e0166dba74ee42fd80fccc26fe3f02c81_normal_0_Up_0.0.exr
.\Matterport3D\0_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\0_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\0_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\0_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\0_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\0_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\0_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\0_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\0_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\10_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\10_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\10_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\10_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\10_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\10_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\10_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\10_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\10_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\11_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\11_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\11_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\11_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\11_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\11_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\11_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\11_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\11_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\12_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\12_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\12_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\12_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\12_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\12_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\12_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\12_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\12_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\13_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\13_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\13_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\13_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\13_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\13_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\13_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\13_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\13_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\14_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\14_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\14_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\14_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\14_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\14_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\14_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\14_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\14_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\15_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\15_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\15_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\15_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\15_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\15_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\15_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\15_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\15_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\17_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\17_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\17_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\17_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\17_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\17_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\17_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\17_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\17_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\18_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\18_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\18_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\18_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\18_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\18_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\18_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\18_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\18_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\19_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\19_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\19_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\19_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\19_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\19_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\19_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\19_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\19_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\1_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\1_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\1_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\1_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\1_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\1_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\1_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\1_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\1_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\20_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\20_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\20_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\20_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\20_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\20_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\20_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\20_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\20_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\21_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\21_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\21_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\21_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\21_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\21_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\21_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\21_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\21_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\22_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\22_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\22_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\22_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\22_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\22_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\22_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\22_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\22_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\23_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\23_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\23_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\23_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\23_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\23_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\23_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\23_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\23_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\25_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\25_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\25_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\25_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\25_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\25_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\25_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\25_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\25_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\28_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\28_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\28_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\28_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\28_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\28_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\28_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\28_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\28_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\29_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\29_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\29_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\29_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\29_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\29_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\29_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\29_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\29_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\2_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\2_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\2_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\2_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\2_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\2_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\2_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\2_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\2_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\30_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\30_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\30_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\30_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\30_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\30_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\30_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\30_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\30_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\32_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\32_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\32_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\32_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\32_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\32_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\32_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\32_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\32_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\34_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\34_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\34_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\34_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\34_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\34_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\34_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\34_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\34_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\35_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\35_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\35_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\35_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\35_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\35_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\35_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\35_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\35_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\36_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\36_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\36_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\36_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\36_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\36_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\36_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\36_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\36_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\37_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\37_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\37_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\37_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\37_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\37_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\37_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\37_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\37_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\38_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\38_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\38_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\38_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\38_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\38_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\38_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\38_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\38_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\39_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\39_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\39_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\39_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\39_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\39_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\39_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\39_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\39_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\40_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\40_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\40_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\40_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\40_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\40_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\40_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\40_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\40_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\41_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\41_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\41_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\41_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\41_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\41_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\41_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\41_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\41_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\42_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\42_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\42_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\42_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\42_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\42_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\42_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\42_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\42_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\43_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\43_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\43_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\43_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\43_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\43_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\43_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\43_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\43_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\44_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\44_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\44_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\44_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\44_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\44_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\44_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\44_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\44_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\45_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\45_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\45_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\45_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\45_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\45_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\45_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\45_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\45_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\46_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\46_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\46_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\46_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\46_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\46_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\46_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\46_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\46_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\47_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\47_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\47_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\47_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\47_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\47_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\47_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\47_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\47_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\49_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\49_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\49_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\49_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\49_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\49_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\49_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\49_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\49_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\4_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\4_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\4_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\4_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\4_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\4_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\4_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\4_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\4_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\50_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\50_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\50_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\50_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\50_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\50_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\50_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\50_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\50_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\51_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\51_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\51_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\51_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\51_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\51_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\51_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\51_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\51_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\53_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\53_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\53_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\53_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\53_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\53_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\53_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\53_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\53_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\54_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\54_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\54_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\54_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\54_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\54_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\54_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\54_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\54_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\55_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\55_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\55_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\55_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\55_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\55_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\55_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\55_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\55_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\56_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\56_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\56_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\56_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\56_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\56_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\56_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\56_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\56_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\57_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\57_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\57_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\57_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\57_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\57_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\57_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\57_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\57_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\5_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\5_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\5_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\5_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\5_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\5_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\5_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\5_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\5_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\6_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\6_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\6_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\6_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\6_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\6_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\6_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\6_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\6_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\7_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\7_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\7_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\7_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\7_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\7_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\7_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\7_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\7_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\8_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\8_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\8_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\8_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\8_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\8_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\8_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\8_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\8_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\9_a2577698031844e7a5982c8ee0fecdeb1_color_0_Left_Down_0.0.png .\Matterport3D\9_a2577698031844e7a5982c8ee0fecdeb1_color_0_Right_0.0.png .\Matterport3D\9_a2577698031844e7a5982c8ee0fecdeb1_color_0_Up_0.0.png .\Matterport3D\9_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Left_Down_0.0.exr .\Matterport3D\9_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Right_0.0.exr .\Matterport3D\9_a2577698031844e7a5982c8ee0fecdeb1_depth_0_Up_0.0.exr .\Matterport3D\9_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Left_Down_0.0.exr .\Matterport3D\9_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Right_0.0.exr .\Matterport3D\9_a2577698031844e7a5982c8ee0fecdeb1_normal_0_Up_0.0.exr
.\Matterport3D\100_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\100_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\100_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\100_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\100_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\100_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\100_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\100_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\100_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\102_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\102_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\102_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\102_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\102_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\102_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\102_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\102_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\102_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\103_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\103_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\103_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\103_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\103_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\103_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\103_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\103_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\103_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\104_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\104_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\104_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\104_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\104_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\104_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\104_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\104_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\104_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\105_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\105_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\105_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\105_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\105_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\105_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\105_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\105_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\105_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\109_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\109_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\109_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\109_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\109_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\109_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\109_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\109_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\109_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\10_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\10_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\10_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\10_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\10_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\10_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\10_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\10_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\10_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\110_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\110_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\110_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\110_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\110_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\110_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\110_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\110_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\110_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\111_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\111_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\111_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\111_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\111_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\111_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\111_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\111_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\111_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\112_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\112_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\112_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\112_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\112_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\112_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\112_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\112_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\112_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\113_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\113_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\113_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\113_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\113_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\113_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\113_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\113_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\113_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\11_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\11_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\11_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\11_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\11_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\11_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\11_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\11_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\11_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\12_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\12_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\12_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\12_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\12_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\12_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\12_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\12_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\12_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\13_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\13_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\13_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\13_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\13_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\13_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\13_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\13_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\13_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\14_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\14_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\14_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\14_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\14_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\14_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\14_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\14_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\14_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\15_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\15_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\15_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\15_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\15_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\15_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\15_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\15_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\15_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\16_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\16_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\16_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\16_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\16_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\16_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\16_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\16_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\16_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\17_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\17_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\17_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\17_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\17_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\17_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\17_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\17_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\17_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\19_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\19_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\19_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\19_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\19_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\19_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\19_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\19_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\19_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\1_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\1_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\1_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\1_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\1_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\1_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\1_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\1_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\1_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\20_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\20_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\20_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\20_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\20_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\20_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\20_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\20_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\20_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\21_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\21_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\21_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\21_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\21_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\21_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\21_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\21_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\21_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\22_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\22_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\22_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\22_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\22_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\22_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\22_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\22_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\22_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\23_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\23_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\23_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\23_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\23_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\23_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\23_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\23_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\23_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\24_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\24_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\24_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\24_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\24_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\24_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\24_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\24_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\24_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\26_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\26_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\26_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\26_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\26_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\26_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\26_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\26_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\26_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\27_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\27_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\27_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\27_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\27_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\27_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\27_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\27_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\27_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\28_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\28_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\28_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\28_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\28_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\28_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\28_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\28_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\28_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\29_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\29_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\29_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\29_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\29_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\29_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\29_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\29_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\29_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\2_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\2_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\2_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\2_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\2_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\2_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\2_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\2_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\2_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\30_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\30_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\30_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\30_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\30_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\30_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\30_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\30_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\30_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\31_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\31_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\31_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\31_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\31_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\31_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\31_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\31_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\31_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\32_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\32_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\32_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\32_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\32_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\32_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\32_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\32_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\32_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\33_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\33_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\33_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\33_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\33_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\33_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\33_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\33_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\33_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\34_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\34_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\34_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\34_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\34_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\34_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\34_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\34_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\34_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\35_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\35_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\35_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\35_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\35_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\35_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\35_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\35_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\35_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\36_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\36_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\36_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\36_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\36_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\36_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\36_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\36_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\36_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\37_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\37_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\37_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\37_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\37_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\37_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\37_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\37_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\37_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\38_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\38_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\38_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\38_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\38_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\38_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\38_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\38_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\38_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\39_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\39_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\39_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\39_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\39_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\39_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\39_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\39_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\39_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\3_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\3_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\3_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\3_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\3_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\3_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\3_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\3_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\3_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\41_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\41_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\41_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\41_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\41_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\41_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\41_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\41_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\41_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\42_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\42_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\42_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\42_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\42_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\42_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\42_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\42_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\42_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\43_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\43_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\43_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\43_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\43_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\43_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\43_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\43_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\43_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\44_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\44_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\44_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\44_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\44_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\44_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\44_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\44_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\44_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\45_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\45_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\45_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\45_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\45_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\45_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\45_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\45_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\45_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\46_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\46_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\46_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\46_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\46_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\46_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\46_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\46_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\46_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\48_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\48_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\48_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\48_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\48_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\48_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\48_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\48_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\48_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\49_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\49_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\49_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\49_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\49_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\49_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\49_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\49_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\49_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\4_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\4_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\4_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\4_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\4_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\4_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\4_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\4_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\4_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\50_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\50_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\50_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\50_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\50_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\50_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\50_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\50_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\50_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\51_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\51_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\51_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\51_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\51_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\51_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\51_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\51_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\51_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\52_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\52_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\52_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\52_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\52_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\52_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\52_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\52_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\52_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\53_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\53_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\53_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\53_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\53_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\53_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\53_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\53_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\53_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\55_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\55_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\55_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\55_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\55_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\55_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\55_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\55_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\55_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\56_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\56_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\56_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\56_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\56_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\56_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\56_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\56_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\56_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\57_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\57_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\57_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\57_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\57_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\57_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\57_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\57_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\57_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\59_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\59_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\59_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\59_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\59_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\59_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\59_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\59_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\59_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\5_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\5_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\5_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\5_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\5_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\5_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\5_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\5_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\5_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\60_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\60_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\60_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\60_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\60_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\60_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\60_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\60_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\60_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\61_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\61_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\61_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\61_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\61_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\61_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\61_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\61_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\61_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\62_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\62_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\62_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\62_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\62_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\62_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\62_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\62_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\62_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\63_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\63_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\63_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\63_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\63_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\63_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\63_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\63_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\63_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\65_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\65_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\65_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\65_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\65_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\65_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\65_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\65_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\65_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\66_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\66_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\66_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\66_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\66_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\66_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\66_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\66_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\66_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\67_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\67_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\67_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\67_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\67_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\67_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\67_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\67_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\67_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\68_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\68_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\68_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\68_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\68_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\68_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\68_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\68_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\68_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\69_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\69_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\69_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\69_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\69_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\69_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\69_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\69_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\69_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\70_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\70_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\70_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\70_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\70_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\70_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\70_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\70_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\70_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\71_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\71_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\71_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\71_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\71_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\71_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\71_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\71_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\71_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\72_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\72_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\72_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\72_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\72_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\72_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\72_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\72_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\72_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\73_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\73_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\73_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\73_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\73_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\73_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\73_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\73_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\73_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\74_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\74_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\74_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\74_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\74_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\74_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\74_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\74_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\74_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\75_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\75_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\75_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\75_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\75_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\75_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\75_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\75_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\75_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\76_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\76_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\76_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\76_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\76_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\76_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\76_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\76_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\76_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\77_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\77_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\77_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\77_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\77_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\77_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\77_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\77_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\77_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\78_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\78_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\78_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\78_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\78_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\78_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\78_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\78_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\78_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\79_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\79_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\79_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\79_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\79_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\79_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\79_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\79_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\79_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\7_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\7_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\7_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\7_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\7_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\7_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\7_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\7_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\7_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\80_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\80_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\80_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\80_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\80_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\80_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\80_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\80_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\80_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\81_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\81_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\81_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\81_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\81_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\81_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\81_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\81_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\81_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\82_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\82_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\82_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\82_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\82_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\82_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\82_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\82_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\82_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\83_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\83_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\83_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\83_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\83_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\83_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\83_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\83_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\83_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\84_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\84_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\84_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\84_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\84_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\84_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\84_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\84_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\84_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\85_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\85_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\85_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\85_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\85_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\85_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\85_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\85_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\85_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\87_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\87_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\87_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\87_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\87_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\87_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\87_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\87_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\87_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\88_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\88_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\88_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\88_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\88_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\88_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\88_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\88_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\88_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\89_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\89_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\89_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\89_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\89_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\89_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\89_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\89_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\89_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\8_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\8_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\8_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\8_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\8_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\8_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\8_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\8_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\8_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\90_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\90_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\90_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\90_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\90_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\90_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\90_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\90_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\90_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\92_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\92_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\92_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\92_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\92_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\92_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\92_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\92_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\92_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\93_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\93_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\93_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\93_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\93_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\93_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\93_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\93_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\93_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\94_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\94_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\94_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\94_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\94_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\94_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\94_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\94_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\94_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\95_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\95_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\95_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\95_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\95_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\95_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\95_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\95_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\95_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\96_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\96_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\96_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\96_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\96_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\96_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\96_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\96_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\96_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\98_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\98_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\98_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\98_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\98_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\98_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\98_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\98_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\98_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\99_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\99_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\99_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\99_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\99_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\99_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\99_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\99_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\99_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\9_bd8722e710f14c949259a02ae1a51dee1_color_0_Left_Down_0.0.png .\Matterport3D\9_bd8722e710f14c949259a02ae1a51dee1_color_0_Right_0.0.png .\Matterport3D\9_bd8722e710f14c949259a02ae1a51dee1_color_0_Up_0.0.png .\Matterport3D\9_bd8722e710f14c949259a02ae1a51dee1_depth_0_Left_Down_0.0.exr .\Matterport3D\9_bd8722e710f14c949259a02ae1a51dee1_depth_0_Right_0.0.exr .\Matterport3D\9_bd8722e710f14c949259a02ae1a51dee1_depth_0_Up_0.0.exr .\Matterport3D\9_bd8722e710f14c949259a02ae1a51dee1_normal_0_Left_Down_0.0.exr .\Matterport3D\9_bd8722e710f14c949259a02ae1a51dee1_normal_0_Right_0.0.exr .\Matterport3D\9_bd8722e710f14c949259a02ae1a51dee1_normal_0_Up_0.0.exr
.\Matterport3D\0_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\0_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\0_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\0_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\0_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\0_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\0_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\0_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\0_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\11_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\11_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\11_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\11_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\11_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\11_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\11_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\11_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\11_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\12_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\12_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\12_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\12_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\12_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\12_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\12_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\12_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\12_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\13_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\13_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\13_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\13_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\13_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\13_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\13_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\13_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\13_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\14_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\14_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\14_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\14_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\14_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\14_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\14_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\14_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\14_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\15_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\15_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\15_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\15_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\15_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\15_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\15_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\15_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\15_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\16_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\16_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\16_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\16_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\16_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\16_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\16_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\16_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\16_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\17_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\17_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\17_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\17_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\17_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\17_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\17_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\17_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\17_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\18_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\18_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\18_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\18_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\18_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\18_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\18_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\18_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\18_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\19_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\19_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\19_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\19_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\19_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\19_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\19_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\19_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\19_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\1_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\1_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\1_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\1_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\1_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\1_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\1_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\1_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\1_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\20_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\20_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\20_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\20_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\20_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\20_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\20_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\20_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\20_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\21_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\21_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\21_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\21_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\21_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\21_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\21_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\21_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\21_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\22_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\22_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\22_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\22_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\22_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\22_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\22_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\22_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\22_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\23_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\23_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\23_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\23_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\23_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\23_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\23_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\23_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\23_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\24_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\24_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\24_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\24_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\24_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\24_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\24_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\24_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\24_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\25_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\25_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\25_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\25_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\25_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\25_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\25_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\25_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\25_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\26_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\26_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\26_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\26_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\26_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\26_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\26_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\26_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\26_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\27_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\27_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\27_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\27_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\27_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\27_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\27_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\27_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\27_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\28_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\28_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\28_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\28_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\28_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\28_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\28_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\28_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\28_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\29_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\29_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\29_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\29_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\29_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\29_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\29_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\29_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\29_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\2_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\2_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\2_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\2_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\2_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\2_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\2_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\2_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\2_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\30_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\30_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\30_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\30_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\30_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\30_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\30_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\30_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\30_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\3_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\3_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\3_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\3_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\3_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\3_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\3_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\3_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\3_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\4_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\4_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\4_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\4_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\4_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\4_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\4_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\4_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\4_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\5_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\5_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\5_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\5_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\5_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\5_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\5_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\5_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\5_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\6_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\6_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\6_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\6_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\6_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\6_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\6_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\6_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\6_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\7_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\7_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\7_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\7_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\7_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\7_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\7_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\7_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\7_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\8_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\8_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\8_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\8_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\8_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\8_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\8_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\8_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\8_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\9_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Left_Down_0.0.png .\Matterport3D\9_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Right_0.0.png .\Matterport3D\9_eef1d4cc7acb4e2db42b22a2177e72361_color_0_Up_0.0.png .\Matterport3D\9_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Left_Down_0.0.exr .\Matterport3D\9_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Right_0.0.exr .\Matterport3D\9_eef1d4cc7acb4e2db42b22a2177e72361_depth_0_Up_0.0.exr .\Matterport3D\9_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Left_Down_0.0.exr .\Matterport3D\9_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Right_0.0.exr .\Matterport3D\9_eef1d4cc7acb4e2db42b22a2177e72361_normal_0_Up_0.0.exr
.\Matterport3D\0_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\0_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\0_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\0_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\0_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\0_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\0_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\0_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\0_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\11_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\11_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\11_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\11_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\11_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\11_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\11_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\11_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\11_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\12_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\12_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\12_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\12_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\12_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\12_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\12_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\12_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\12_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\13_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\13_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\13_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\13_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\13_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\13_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\13_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\13_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\13_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\14_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\14_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\14_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\14_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\14_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\14_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\14_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\14_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\14_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\15_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\15_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\15_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\15_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\15_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\15_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\15_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\15_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\15_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\16_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\16_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\16_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\16_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\16_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\16_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\16_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\16_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\16_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\18_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\18_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\18_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\18_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\18_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\18_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\18_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\18_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\18_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\19_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\19_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\19_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\19_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\19_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\19_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\19_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\19_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\19_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\21_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\21_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\21_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\21_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\21_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\21_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\21_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\21_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\21_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\22_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\22_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\22_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\22_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\22_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\22_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\22_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\22_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\22_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\23_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\23_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\23_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\23_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\23_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\23_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\23_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\23_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\23_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\24_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\24_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\24_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\24_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\24_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\24_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\24_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\24_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\24_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\26_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\26_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\26_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\26_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\26_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\26_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\26_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\26_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\26_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\27_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\27_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\27_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\27_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\27_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\27_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\27_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\27_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\27_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\28_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\28_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\28_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\28_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\28_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\28_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\28_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\28_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\28_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\29_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\29_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\29_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\29_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\29_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\29_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\29_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\29_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\29_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\2_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\2_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\2_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\2_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\2_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\2_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\2_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\2_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\2_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\31_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\31_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\31_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\31_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\31_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\31_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\31_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\31_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\31_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\33_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\33_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\33_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\33_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\33_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\33_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\33_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\33_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\33_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\34_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\34_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\34_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\34_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\34_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\34_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\34_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\34_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\34_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\36_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\36_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\36_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\36_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\36_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\36_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\36_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\36_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\36_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\37_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\37_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\37_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\37_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\37_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\37_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\37_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\37_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\37_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\38_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\38_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\38_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\38_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\38_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\38_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\38_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\38_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\38_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\39_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\39_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\39_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\39_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\39_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\39_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\39_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\39_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\39_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\3_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\3_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\3_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\3_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\3_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\3_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\3_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\3_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\3_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\40_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\40_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\40_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\40_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\40_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\40_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\40_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\40_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\40_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\41_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\41_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\41_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\41_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\41_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\41_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\41_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\41_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\41_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\42_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\42_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\42_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\42_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\42_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\42_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\42_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\42_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\42_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\4_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\4_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\4_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\4_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\4_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\4_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\4_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\4_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\4_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\6_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\6_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\6_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\6_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\6_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\6_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\6_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\6_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\6_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\7_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\7_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\7_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\7_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\7_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\7_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\7_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\7_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\7_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\8_2aa12c3747f948b8bf9df281ec7846271_color_0_Left_Down_0.0.png .\Matterport3D\8_2aa12c3747f948b8bf9df281ec7846271_color_0_Right_0.0.png .\Matterport3D\8_2aa12c3747f948b8bf9df281ec7846271_color_0_Up_0.0.png .\Matterport3D\8_2aa12c3747f948b8bf9df281ec7846271_depth_0_Left_Down_0.0.exr .\Matterport3D\8_2aa12c3747f948b8bf9df281ec7846271_depth_0_Right_0.0.exr .\Matterport3D\8_2aa12c3747f948b8bf9df281ec7846271_depth_0_Up_0.0.exr .\Matterport3D\8_2aa12c3747f948b8bf9df281ec7846271_normal_0_Left_Down_0.0.exr .\Matterport3D\8_2aa12c3747f948b8bf9df281ec7846271_normal_0_Right_0.0.exr .\Matterport3D\8_2aa12c3747f948b8bf9df281ec7846271_normal_0_Up_0.0.exr
.\Matterport3D\0_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\0_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\0_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\0_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\0_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\0_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\0_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\0_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\0_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\11_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\11_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\11_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\11_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\11_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\11_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\11_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\11_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\11_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\13_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\13_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\13_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\13_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\13_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\13_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\13_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\13_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\13_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\15_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\15_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\15_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\15_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\15_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\15_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\15_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\15_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\15_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\16_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\16_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\16_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\16_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\16_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\16_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\16_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\16_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\16_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\19_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\19_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\19_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\19_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\19_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\19_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\19_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\19_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\19_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\1_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\1_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\1_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\1_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\1_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\1_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\1_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\1_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\1_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\20_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\20_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\20_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\20_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\20_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\20_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\20_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\20_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\20_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\21_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\21_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\21_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\21_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\21_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\21_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\21_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\21_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\21_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\22_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\22_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\22_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\22_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\22_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\22_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\22_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\22_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\22_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\25_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\25_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\25_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\25_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\25_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\25_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\25_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\25_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\25_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\26_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\26_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\26_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\26_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\26_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\26_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\26_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\26_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\26_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\27_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\27_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\27_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\27_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\27_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\27_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\27_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\27_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\27_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\28_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\28_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\28_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\28_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\28_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\28_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\28_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\28_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\28_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\29_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\29_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\29_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\29_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\29_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\29_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\29_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\29_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\29_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\2_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\2_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\2_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\2_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\2_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\2_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\2_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\2_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\2_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\30_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\30_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\30_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\30_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\30_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\30_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\30_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\30_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\30_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\31_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\31_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\31_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\31_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\31_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\31_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\31_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\31_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\31_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\32_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\32_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\32_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\32_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\32_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\32_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\32_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\32_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\32_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\33_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\33_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\33_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\33_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\33_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\33_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\33_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\33_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\33_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\34_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\34_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\34_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\34_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\34_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\34_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\34_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\34_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\34_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\35_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\35_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\35_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\35_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\35_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\35_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\35_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\35_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\35_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\37_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\37_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\37_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\37_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\37_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\37_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\37_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\37_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\37_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\38_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\38_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\38_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\38_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\38_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\38_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\38_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\38_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\38_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\39_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\39_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\39_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\39_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\39_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\39_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\39_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\39_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\39_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\3_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\3_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\3_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\3_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\3_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\3_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\3_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\3_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\3_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\42_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\42_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\42_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\42_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\42_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\42_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\42_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\42_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\42_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\43_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\43_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\43_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\43_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\43_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\43_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\43_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\43_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\43_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\44_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\44_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\44_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\44_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\44_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\44_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\44_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\44_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\44_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\45_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\45_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\45_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\45_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\45_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\45_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\45_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\45_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\45_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\46_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\46_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\46_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\46_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\46_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\46_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\46_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\46_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\46_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\47_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\47_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\47_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\47_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\47_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\47_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\47_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\47_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\47_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\48_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\48_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\48_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\48_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\48_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\48_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\48_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\48_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\48_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\49_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\49_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\49_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\49_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\49_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\49_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\49_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\49_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\49_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\4_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\4_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\4_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\4_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\4_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\4_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\4_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\4_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\4_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\50_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\50_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\50_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\50_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\50_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\50_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\50_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\50_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\50_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\51_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\51_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\51_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\51_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\51_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\51_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\51_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\51_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\51_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\52_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\52_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\52_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\52_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\52_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\52_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\52_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\52_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\52_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\6_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\6_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\6_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\6_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\6_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\6_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\6_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\6_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\6_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\7_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\7_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\7_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\7_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\7_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\7_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\7_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\7_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\7_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\8_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\8_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\8_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\8_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\8_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\8_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\8_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\8_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\8_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Matterport3D\9_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Left_Down_0.0.png .\Matterport3D\9_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Right_0.0.png .\Matterport3D\9_a641c3f4647545a2a4f5c50f5f5fbb571_color_0_Up_0.0.png .\Matterport3D\9_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Left_Down_0.0.exr .\Matterport3D\9_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Right_0.0.exr .\Matterport3D\9_a641c3f4647545a2a4f5c50f5f5fbb571_depth_0_Up_0.0.exr .\Matterport3D\9_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Left_Down_0.0.exr .\Matterport3D\9_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Right_0.0.exr .\Matterport3D\9_a641c3f4647545a2a4f5c50f5f5fbb571_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\0_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\0_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\0_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\0_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\0_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\0_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\0_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\0_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\0_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\10_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\10_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\10_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\10_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\10_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\10_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\10_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\10_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\10_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\11_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\11_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\11_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\11_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\11_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\11_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\11_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\11_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\11_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\12_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\12_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\12_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\12_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\12_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\12_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\12_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\12_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\12_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\13_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\13_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\13_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\13_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\13_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\13_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\13_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\13_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\13_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\14_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\14_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\14_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\14_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\14_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\14_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\14_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\14_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\14_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\15_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\15_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\15_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\15_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\15_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\15_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\15_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\15_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\15_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\17_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\17_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\17_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\17_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\17_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\17_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\17_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\17_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\17_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\18_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\18_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\18_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\18_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\18_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\18_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\18_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\18_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\18_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\19_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\19_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\19_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\19_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\19_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\19_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\19_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\19_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\19_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\1_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\1_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\1_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\1_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\1_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\1_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\1_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\1_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\1_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\20_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\20_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\20_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\20_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\20_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\20_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\20_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\20_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\20_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\21_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\21_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\21_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\21_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\21_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\21_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\21_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\21_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\21_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\22_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\22_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\22_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\22_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\22_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\22_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\22_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\22_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\22_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\23_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\23_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\23_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\23_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\23_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\23_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\23_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\23_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\23_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\24_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\24_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\24_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\24_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\24_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\24_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\24_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\24_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\24_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\25_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\25_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\25_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\25_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\25_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\25_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\25_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\25_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\25_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\26_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\26_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\26_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\26_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\26_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\26_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\26_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\26_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\26_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\27_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\27_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\27_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\27_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\27_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\27_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\27_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\27_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\27_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\28_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\28_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\28_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\28_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\28_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\28_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\28_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\28_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\28_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\29_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\29_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\29_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\29_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\29_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\29_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\29_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\29_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\29_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\2_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\2_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\2_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\2_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\2_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\2_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\2_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\2_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\2_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\30_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\30_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\30_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\30_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\30_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\30_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\30_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\30_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\30_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\31_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\31_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\31_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\31_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\31_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\31_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\31_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\31_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\31_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\32_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\32_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\32_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\32_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\32_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\32_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\32_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\32_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\32_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\33_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\33_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\33_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\33_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\33_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\33_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\33_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\33_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\33_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\35_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\35_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\35_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\35_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\35_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\35_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\35_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\35_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\35_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\36_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\36_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\36_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\36_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\36_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\36_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\36_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\36_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\36_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\37_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\37_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\37_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\37_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\37_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\37_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\37_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\37_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\37_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\38_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\38_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\38_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\38_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\38_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\38_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\38_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\38_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\38_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\3_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\3_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\3_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\3_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\3_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\3_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\3_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\3_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\3_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\40_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\40_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\40_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\40_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\40_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\40_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\40_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\40_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\40_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\41_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\41_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\41_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\41_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\41_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\41_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\41_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\41_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\41_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\42_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\42_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\42_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\42_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\42_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\42_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\42_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\42_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\42_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\44_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\44_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\44_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\44_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\44_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\44_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\44_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\44_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\44_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\45_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\45_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\45_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\45_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\45_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\45_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\45_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\45_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\45_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\46_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\46_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\46_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\46_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\46_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\46_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\46_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\46_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\46_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\47_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\47_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\47_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\47_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\47_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\47_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\47_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\47_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\47_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\48_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\48_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\48_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\48_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\48_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\48_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\48_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\48_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\48_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\49_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\49_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\49_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\49_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\49_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\49_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\49_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\49_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\49_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\4_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\4_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\4_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\4_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\4_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\4_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\4_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\4_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\4_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\50_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\50_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\50_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\50_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\50_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\50_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\50_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\50_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\50_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\52_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\52_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\52_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\52_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\52_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\52_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\52_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\52_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\52_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\54_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\54_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\54_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\54_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\54_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\54_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\54_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\54_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\54_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\55_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\55_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\55_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\55_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\55_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\55_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\55_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\55_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\55_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\56_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\56_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\56_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\56_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\56_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\56_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\56_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\56_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\56_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\57_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\57_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\57_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\57_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\57_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\57_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\57_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\57_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\57_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\58_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\58_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\58_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\58_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\58_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\58_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\58_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\58_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\58_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\5_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\5_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\5_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\5_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\5_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\5_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\5_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\5_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\5_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\60_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\60_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\60_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\60_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\60_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\60_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\60_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\60_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\60_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\61_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\61_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\61_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\61_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\61_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\61_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\61_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\61_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\61_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\62_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\62_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\62_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\62_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\62_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\62_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\62_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\62_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\62_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\63_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\63_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\63_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\63_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\63_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\63_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\63_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\63_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\63_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\64_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\64_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\64_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\64_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\64_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\64_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\64_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\64_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\64_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\65_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\65_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\65_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\65_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\65_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\65_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\65_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\65_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\65_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\66_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\66_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\66_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\66_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\66_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\66_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\66_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\66_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\66_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\67_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\67_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\67_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\67_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\67_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\67_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\67_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\67_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\67_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\68_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\68_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\68_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\68_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\68_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\68_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\68_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\68_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\68_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\69_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\69_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\69_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\69_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\69_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\69_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\69_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\69_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\69_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\6_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\6_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\6_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\6_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\6_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\6_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\6_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\6_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\6_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\70_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\70_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\70_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\70_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\70_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\70_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\70_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\70_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\70_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\71_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\71_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\71_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\71_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\71_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\71_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\71_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\71_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\71_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\73_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\73_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\73_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\73_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\73_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\73_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\73_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\73_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\73_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\74_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\74_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\74_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\74_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\74_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\74_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\74_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\74_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\74_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\75_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\75_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\75_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\75_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\75_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\75_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\75_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\75_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\75_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\76_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\76_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\76_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\76_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\76_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\76_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\76_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\76_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\76_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\77_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\77_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\77_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\77_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\77_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\77_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\77_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\77_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\77_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\78_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\78_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\78_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\78_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\78_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\78_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\78_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\78_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\78_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\79_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\79_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\79_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\79_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\79_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\79_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\79_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\79_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\79_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\7_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\7_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\7_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\7_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\7_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\7_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\7_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\7_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\7_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\80_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\80_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\80_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\80_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\80_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\80_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\80_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\80_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\80_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\81_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\81_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\81_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\81_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\81_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\81_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\81_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\81_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\81_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\82_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\82_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\82_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\82_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\82_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\82_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\82_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\82_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\82_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\83_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\83_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\83_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\83_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\83_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\83_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\83_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\83_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\83_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\84_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\84_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\84_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\84_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\84_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\84_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\84_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\84_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\84_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\8_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\8_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\8_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\8_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\8_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\8_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\8_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\8_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\8_area_31_normal_0_Up_0.0.exr
.\Stanford2D3D\area3\9_area_31_color_0_Left_Down_0.0.png .\Stanford2D3D\area3\9_area_31_color_0_Right_0.0.png .\Stanford2D3D\area3\9_area_31_color_0_Up_0.0.png .\Stanford2D3D\area3\9_area_31_depth_0_Left_Down_0.0.exr .\Stanford2D3D\area3\9_area_31_depth_0_Right_0.0.exr .\Stanford2D3D\area3\9_area_31_depth_0_Up_0.0.exr .\Stanford2D3D\area3\9_area_31_normal_0_Left_Down_0.0.exr .\Stanford2D3D\area3\9_area_31_normal_0_Right_0.0.exr .\Stanford2D3D\area3\9_area_31_normal_0_Up_0.0.exr
.\SunCG\003e0f554643904f3e6d72769143ce421_color_0_Left_Down_0.0.png .\SunCG\003e0f554643904f3e6d72769143ce421_color_0_Right_0.0.png .\SunCG\003e0f554643904f3e6d72769143ce421_color_0_Up_0.0.png .\SunCG\003e0f554643904f3e6d72769143ce421_depth_0_Left_Down_0.0.exr .\SunCG\003e0f554643904f3e6d72769143ce421_depth_0_Right_0.0.exr .\SunCG\003e0f554643904f3e6d72769143ce421_depth_0_Up_0.0.exr .\SunCG\003e0f554643904f3e6d72769143ce421_normal_0_Left_Down_0.0.exr .\SunCG\003e0f554643904f3e6d72769143ce421_normal_0_Right_0.0.exr .\SunCG\003e0f554643904f3e6d72769143ce421_normal_0_Up_0.0.exr
.\SunCG\00503f6a2e9d43ef45dac321bf0f90591_color_0_Left_Down_0.0.png .\SunCG\00503f6a2e9d43ef45dac321bf0f90591_color_0_Right_0.0.png .\SunCG\00503f6a2e9d43ef45dac321bf0f90591_color_0_Up_0.0.png .\SunCG\00503f6a2e9d43ef45dac321bf0f90591_depth_0_Left_Down_0.0.exr .\SunCG\00503f6a2e9d43ef45dac321bf0f90591_depth_0_Right_0.0.exr .\SunCG\00503f6a2e9d43ef45dac321bf0f90591_depth_0_Up_0.0.exr .\SunCG\00503f6a2e9d43ef45dac321bf0f90591_normal_0_Left_Down_0.0.exr .\SunCG\00503f6a2e9d43ef45dac321bf0f90591_normal_0_Right_0.0.exr .\SunCG\00503f6a2e9d43ef45dac321bf0f90591_normal_0_Up_0.0.exr
.\SunCG\0070614d7def9fef20f639861a48bb301_color_0_Left_Down_0.0.png .\SunCG\0070614d7def9fef20f639861a48bb301_color_0_Right_0.0.png .\SunCG\0070614d7def9fef20f639861a48bb301_color_0_Up_0.0.png .\SunCG\0070614d7def9fef20f639861a48bb301_depth_0_Left_Down_0.0.exr .\SunCG\0070614d7def9fef20f639861a48bb301_depth_0_Right_0.0.exr .\SunCG\0070614d7def9fef20f639861a48bb301_depth_0_Up_0.0.exr .\SunCG\0070614d7def9fef20f639861a48bb301_normal_0_Left_Down_0.0.exr .\SunCG\0070614d7def9fef20f639861a48bb301_normal_0_Right_0.0.exr .\SunCG\0070614d7def9fef20f639861a48bb301_normal_0_Up_0.0.exr
.\SunCG\008b49a0b9a5831ac570f7dd252a57821_color_0_Left_Down_0.0.png .\SunCG\008b49a0b9a5831ac570f7dd252a57821_color_0_Right_0.0.png .\SunCG\008b49a0b9a5831ac570f7dd252a57821_color_0_Up_0.0.png .\SunCG\008b49a0b9a5831ac570f7dd252a57821_depth_0_Left_Down_0.0.exr .\SunCG\008b49a0b9a5831ac570f7dd252a57821_depth_0_Right_0.0.exr .\SunCG\008b49a0b9a5831ac570f7dd252a57821_depth_0_Up_0.0.exr .\SunCG\008b49a0b9a5831ac570f7dd252a57821_normal_0_Left_Down_0.0.exr .\SunCG\008b49a0b9a5831ac570f7dd252a57821_normal_0_Right_0.0.exr .\SunCG\008b49a0b9a5831ac570f7dd252a57821_normal_0_Up_0.0.exr
.\SunCG\01503046d91c5912950da9b2ec26fa6c1_color_0_Left_Down_0.0.png .\SunCG\01503046d91c5912950da9b2ec26fa6c1_color_0_Right_0.0.png .\SunCG\01503046d91c5912950da9b2ec26fa6c1_color_0_Up_0.0.png .\SunCG\01503046d91c5912950da9b2ec26fa6c1_depth_0_Left_Down_0.0.exr .\SunCG\01503046d91c5912950da9b2ec26fa6c1_depth_0_Right_0.0.exr .\SunCG\01503046d91c5912950da9b2ec26fa6c1_depth_0_Up_0.0.exr .\SunCG\01503046d91c5912950da9b2ec26fa6c1_normal_0_Left_Down_0.0.exr .\SunCG\01503046d91c5912950da9b2ec26fa6c1_normal_0_Right_0.0.exr .\SunCG\01503046d91c5912950da9b2ec26fa6c1_normal_0_Up_0.0.exr
.\SunCG\02a8b32ef47cbe853213eb7275cf4e9e1_color_0_Left_Down_0.0.png .\SunCG\02a8b32ef47cbe853213eb7275cf4e9e1_color_0_Right_0.0.png .\SunCG\02a8b32ef47cbe853213eb7275cf4e9e1_color_0_Up_0.0.png .\SunCG\02a8b32ef47cbe853213eb7275cf4e9e1_depth_0_Left_Down_0.0.exr .\SunCG\02a8b32ef47cbe853213eb7275cf4e9e1_depth_0_Right_0.0.exr .\SunCG\02a8b32ef47cbe853213eb7275cf4e9e1_depth_0_Up_0.0.exr .\SunCG\02a8b32ef47cbe853213eb7275cf4e9e1_normal_0_Left_Down_0.0.exr .\SunCG\02a8b32ef47cbe853213eb7275cf4e9e1_normal_0_Right_0.0.exr .\SunCG\02a8b32ef47cbe853213eb7275cf4e9e1_normal_0_Up_0.0.exr
.\SunCG\02d83f79d7c3311ccc3395bbf2ea4ae41_color_0_Left_Down_0.0.png .\SunCG\02d83f79d7c3311ccc3395bbf2ea4ae41_color_0_Right_0.0.png .\SunCG\02d83f79d7c3311ccc3395bbf2ea4ae41_color_0_Up_0.0.png .\SunCG\02d83f79d7c3311ccc3395bbf2ea4ae41_depth_0_Left_Down_0.0.exr .\SunCG\02d83f79d7c3311ccc3395bbf2ea4ae41_depth_0_Right_0.0.exr .\SunCG\02d83f79d7c3311ccc3395bbf2ea4ae41_depth_0_Up_0.0.exr .\SunCG\02d83f79d7c3311ccc3395bbf2ea4ae41_normal_0_Left_Down_0.0.exr .\SunCG\02d83f79d7c3311ccc3395bbf2ea4ae41_normal_0_Right_0.0.exr .\SunCG\02d83f79d7c3311ccc3395bbf2ea4ae41_normal_0_Up_0.0.exr
.\SunCG\03023b072c49fe4afe3264abd5b2e4601_color_0_Left_Down_0.0.png .\SunCG\03023b072c49fe4afe3264abd5b2e4601_color_0_Right_0.0.png .\SunCG\03023b072c49fe4afe3264abd5b2e4601_color_0_Up_0.0.png .\SunCG\03023b072c49fe4afe3264abd5b2e4601_depth_0_Left_Down_0.0.exr .\SunCG\03023b072c49fe4afe3264abd5b2e4601_depth_0_Right_0.0.exr .\SunCG\03023b072c49fe4afe3264abd5b2e4601_depth_0_Up_0.0.exr .\SunCG\03023b072c49fe4afe3264abd5b2e4601_normal_0_Left_Down_0.0.exr .\SunCG\03023b072c49fe4afe3264abd5b2e4601_normal_0_Right_0.0.exr .\SunCG\03023b072c49fe4afe3264abd5b2e4601_normal_0_Up_0.0.exr
.\SunCG\03183288b154f8bc105f9eba916e7f1c1_color_0_Left_Down_0.0.png .\SunCG\03183288b154f8bc105f9eba916e7f1c1_color_0_Right_0.0.png .\SunCG\03183288b154f8bc105f9eba916e7f1c1_color_0_Up_0.0.png .\SunCG\03183288b154f8bc105f9eba916e7f1c1_depth_0_Left_Down_0.0.exr .\SunCG\03183288b154f8bc105f9eba916e7f1c1_depth_0_Right_0.0.exr .\SunCG\03183288b154f8bc105f9eba916e7f1c1_depth_0_Up_0.0.exr .\SunCG\03183288b154f8bc105f9eba916e7f1c1_normal_0_Left_Down_0.0.exr .\SunCG\03183288b154f8bc105f9eba916e7f1c1_normal_0_Right_0.0.exr .\SunCG\03183288b154f8bc105f9eba916e7f1c1_normal_0_Up_0.0.exr
.\SunCG\032b1205f465e94a423d67b0f938c3f01_color_0_Left_Down_0.0.png .\SunCG\032b1205f465e94a423d67b0f938c3f01_color_0_Right_0.0.png .\SunCG\032b1205f465e94a423d67b0f938c3f01_color_0_Up_0.0.png .\SunCG\032b1205f465e94a423d67b0f938c3f01_depth_0_Left_Down_0.0.exr .\SunCG\032b1205f465e94a423d67b0f938c3f01_depth_0_Right_0.0.exr .\SunCG\032b1205f465e94a423d67b0f938c3f01_depth_0_Up_0.0.exr .\SunCG\032b1205f465e94a423d67b0f938c3f01_normal_0_Left_Down_0.0.exr .\SunCG\032b1205f465e94a423d67b0f938c3f01_normal_0_Right_0.0.exr .\SunCG\032b1205f465e94a423d67b0f938c3f01_normal_0_Up_0.0.exr
.\SunCG\035c0395353a75bf3b810bc9bef800cc1_color_0_Left_Down_0.0.png .\SunCG\035c0395353a75bf3b810bc9bef800cc1_color_0_Right_0.0.png .\SunCG\035c0395353a75bf3b810bc9bef800cc1_color_0_Up_0.0.png .\SunCG\035c0395353a75bf3b810bc9bef800cc1_depth_0_Left_Down_0.0.exr .\SunCG\035c0395353a75bf3b810bc9bef800cc1_depth_0_Right_0.0.exr .\SunCG\035c0395353a75bf3b810bc9bef800cc1_depth_0_Up_0.0.exr .\SunCG\035c0395353a75bf3b810bc9bef800cc1_normal_0_Left_Down_0.0.exr .\SunCG\035c0395353a75bf3b810bc9bef800cc1_normal_0_Right_0.0.exr .\SunCG\035c0395353a75bf3b810bc9bef800cc1_normal_0_Up_0.0.exr
.\SunCG\0373fde623565d56daef3d3a303687801_color_0_Left_Down_0.0.png .\SunCG\0373fde623565d56daef3d3a303687801_color_0_Right_0.0.png .\SunCG\0373fde623565d56daef3d3a303687801_color_0_Up_0.0.png .\SunCG\0373fde623565d56daef3d3a303687801_depth_0_Left_Down_0.0.exr .\SunCG\0373fde623565d56daef3d3a303687801_depth_0_Right_0.0.exr .\SunCG\0373fde623565d56daef3d3a303687801_depth_0_Up_0.0.exr .\SunCG\0373fde623565d56daef3d3a303687801_normal_0_Left_Down_0.0.exr .\SunCG\0373fde623565d56daef3d3a303687801_normal_0_Right_0.0.exr .\SunCG\0373fde623565d56daef3d3a303687801_normal_0_Up_0.0.exr
.\SunCG\037c22d61275067abecb076a7c0497021_color_0_Left_Down_0.0.png .\SunCG\037c22d61275067abecb076a7c0497021_color_0_Right_0.0.png .\SunCG\037c22d61275067abecb076a7c0497021_color_0_Up_0.0.png .\SunCG\037c22d61275067abecb076a7c0497021_depth_0_Left_Down_0.0.exr .\SunCG\037c22d61275067abecb076a7c0497021_depth_0_Right_0.0.exr .\SunCG\037c22d61275067abecb076a7c0497021_depth_0_Up_0.0.exr .\SunCG\037c22d61275067abecb076a7c0497021_normal_0_Left_Down_0.0.exr .\SunCG\037c22d61275067abecb076a7c0497021_normal_0_Right_0.0.exr .\SunCG\037c22d61275067abecb076a7c0497021_normal_0_Up_0.0.exr
.\SunCG\0418e730c8532078b8861bc95dc5fb431_color_0_Left_Down_0.0.png .\SunCG\0418e730c8532078b8861bc95dc5fb431_color_0_Right_0.0.png .\SunCG\0418e730c8532078b8861bc95dc5fb431_color_0_Up_0.0.png .\SunCG\0418e730c8532078b8861bc95dc5fb431_depth_0_Left_Down_0.0.exr .\SunCG\0418e730c8532078b8861bc95dc5fb431_depth_0_Right_0.0.exr .\SunCG\0418e730c8532078b8861bc95dc5fb431_depth_0_Up_0.0.exr .\SunCG\0418e730c8532078b8861bc95dc5fb431_normal_0_Left_Down_0.0.exr .\SunCG\0418e730c8532078b8861bc95dc5fb431_normal_0_Right_0.0.exr .\SunCG\0418e730c8532078b8861bc95dc5fb431_normal_0_Up_0.0.exr
.\SunCG\0449e1ef4789c86b6e87370c2c4658241_color_0_Left_Down_0.0.png .\SunCG\0449e1ef4789c86b6e87370c2c4658241_color_0_Right_0.0.png .\SunCG\0449e1ef4789c86b6e87370c2c4658241_color_0_Up_0.0.png .\SunCG\0449e1ef4789c86b6e87370c2c4658241_depth_0_Left_Down_0.0.exr .\SunCG\0449e1ef4789c86b6e87370c2c4658241_depth_0_Right_0.0.exr .\SunCG\0449e1ef4789c86b6e87370c2c4658241_depth_0_Up_0.0.exr .\SunCG\0449e1ef4789c86b6e87370c2c4658241_normal_0_Left_Down_0.0.exr .\SunCG\0449e1ef4789c86b6e87370c2c4658241_normal_0_Right_0.0.exr .\SunCG\0449e1ef4789c86b6e87370c2c4658241_normal_0_Up_0.0.exr
.\SunCG\04902b07fc884411d94a8de6c6a2d4641_color_0_Left_Down_0.0.png .\SunCG\04902b07fc884411d94a8de6c6a2d4641_color_0_Right_0.0.png .\SunCG\04902b07fc884411d94a8de6c6a2d4641_color_0_Up_0.0.png .\SunCG\04902b07fc884411d94a8de6c6a2d4641_depth_0_Left_Down_0.0.exr .\SunCG\04902b07fc884411d94a8de6c6a2d4641_depth_0_Right_0.0.exr .\SunCG\04902b07fc884411d94a8de6c6a2d4641_depth_0_Up_0.0.exr .\SunCG\04902b07fc884411d94a8de6c6a2d4641_normal_0_Left_Down_0.0.exr .\SunCG\04902b07fc884411d94a8de6c6a2d4641_normal_0_Right_0.0.exr .\SunCG\04902b07fc884411d94a8de6c6a2d4641_normal_0_Up_0.0.exr
.\SunCG\051c0e2ba298d35f6de0d2390488501b1_color_0_Left_Down_0.0.png .\SunCG\051c0e2ba298d35f6de0d2390488501b1_color_0_Right_0.0.png .\SunCG\051c0e2ba298d35f6de0d2390488501b1_color_0_Up_0.0.png .\SunCG\051c0e2ba298d35f6de0d2390488501b1_depth_0_Left_Down_0.0.exr .\SunCG\051c0e2ba298d35f6de0d2390488501b1_depth_0_Right_0.0.exr .\SunCG\051c0e2ba298d35f6de0d2390488501b1_depth_0_Up_0.0.exr .\SunCG\051c0e2ba298d35f6de0d2390488501b1_normal_0_Left_Down_0.0.exr .\SunCG\051c0e2ba298d35f6de0d2390488501b1_normal_0_Right_0.0.exr .\SunCG\051c0e2ba298d35f6de0d2390488501b1_normal_0_Up_0.0.exr
.\SunCG\057eade13d28fedf8ff5ba4ed2422d761_color_0_Left_Down_0.0.png .\SunCG\057eade13d28fedf8ff5ba4ed2422d761_color_0_Right_0.0.png .\SunCG\057eade13d28fedf8ff5ba4ed2422d761_color_0_Up_0.0.png .\SunCG\057eade13d28fedf8ff5ba4ed2422d761_depth_0_Left_Down_0.0.exr .\SunCG\057eade13d28fedf8ff5ba4ed2422d761_depth_0_Right_0.0.exr .\SunCG\057eade13d28fedf8ff5ba4ed2422d761_depth_0_Up_0.0.exr .\SunCG\057eade13d28fedf8ff5ba4ed2422d761_normal_0_Left_Down_0.0.exr .\SunCG\057eade13d28fedf8ff5ba4ed2422d761_normal_0_Right_0.0.exr .\SunCG\057eade13d28fedf8ff5ba4ed2422d761_normal_0_Up_0.0.exr
.\SunCG\059eca911434962565f9897bc101f5681_color_0_Left_Down_0.0.png .\SunCG\059eca911434962565f9897bc101f5681_color_0_Right_0.0.png .\SunCG\059eca911434962565f9897bc101f5681_color_0_Up_0.0.png .\SunCG\059eca911434962565f9897bc101f5681_depth_0_Left_Down_0.0.exr .\SunCG\059eca911434962565f9897bc101f5681_depth_0_Right_0.0.exr .\SunCG\059eca911434962565f9897bc101f5681_depth_0_Up_0.0.exr .\SunCG\059eca911434962565f9897bc101f5681_normal_0_Left_Down_0.0.exr .\SunCG\059eca911434962565f9897bc101f5681_normal_0_Right_0.0.exr .\SunCG\059eca911434962565f9897bc101f5681_normal_0_Up_0.0.exr
.\SunCG\05d4f118a9a4c80d9785213549d7e06c1_color_0_Left_Down_0.0.png .\SunCG\05d4f118a9a4c80d9785213549d7e06c1_color_0_Right_0.0.png .\SunCG\05d4f118a9a4c80d9785213549d7e06c1_color_0_Up_0.0.png .\SunCG\05d4f118a9a4c80d9785213549d7e06c1_depth_0_Left_Down_0.0.exr .\SunCG\05d4f118a9a4c80d9785213549d7e06c1_depth_0_Right_0.0.exr .\SunCG\05d4f118a9a4c80d9785213549d7e06c1_depth_0_Up_0.0.exr .\SunCG\05d4f118a9a4c80d9785213549d7e06c1_normal_0_Left_Down_0.0.exr .\SunCG\05d4f118a9a4c80d9785213549d7e06c1_normal_0_Right_0.0.exr .\SunCG\05d4f118a9a4c80d9785213549d7e06c1_normal_0_Up_0.0.exr
.\SunCG\0637ef374af693bb3fec41395cab756f1_color_0_Left_Down_0.0.png .\SunCG\0637ef374af693bb3fec41395cab756f1_color_0_Right_0.0.png .\SunCG\0637ef374af693bb3fec41395cab756f1_color_0_Up_0.0.png .\SunCG\0637ef374af693bb3fec41395cab756f1_depth_0_Left_Down_0.0.exr .\SunCG\0637ef374af693bb3fec41395cab756f1_depth_0_Right_0.0.exr .\SunCG\0637ef374af693bb3fec41395cab756f1_depth_0_Up_0.0.exr .\SunCG\0637ef374af693bb3fec41395cab756f1_normal_0_Left_Down_0.0.exr .\SunCG\0637ef374af693bb3fec41395cab756f1_normal_0_Right_0.0.exr .\SunCG\0637ef374af693bb3fec41395cab756f1_normal_0_Up_0.0.exr
.\SunCG\06495c10694528ee63b938b8ddce39f21_color_0_Left_Down_0.0.png .\SunCG\06495c10694528ee63b938b8ddce39f21_color_0_Right_0.0.png .\SunCG\06495c10694528ee63b938b8ddce39f21_color_0_Up_0.0.png .\SunCG\06495c10694528ee63b938b8ddce39f21_depth_0_Left_Down_0.0.exr .\SunCG\06495c10694528ee63b938b8ddce39f21_depth_0_Right_0.0.exr .\SunCG\06495c10694528ee63b938b8ddce39f21_depth_0_Up_0.0.exr .\SunCG\06495c10694528ee63b938b8ddce39f21_normal_0_Left_Down_0.0.exr .\SunCG\06495c10694528ee63b938b8ddce39f21_normal_0_Right_0.0.exr .\SunCG\06495c10694528ee63b938b8ddce39f21_normal_0_Up_0.0.exr
.\SunCG\0684507dfa4bd08919e09b24adf18dac1_color_0_Left_Down_0.0.png .\SunCG\0684507dfa4bd08919e09b24adf18dac1_color_0_Right_0.0.png .\SunCG\0684507dfa4bd08919e09b24adf18dac1_color_0_Up_0.0.png .\SunCG\0684507dfa4bd08919e09b24adf18dac1_depth_0_Left_Down_0.0.exr .\SunCG\0684507dfa4bd08919e09b24adf18dac1_depth_0_Right_0.0.exr .\SunCG\0684507dfa4bd08919e09b24adf18dac1_depth_0_Up_0.0.exr .\SunCG\0684507dfa4bd08919e09b24adf18dac1_normal_0_Left_Down_0.0.exr .\SunCG\0684507dfa4bd08919e09b24adf18dac1_normal_0_Right_0.0.exr .\SunCG\0684507dfa4bd08919e09b24adf18dac1_normal_0_Up_0.0.exr
.\SunCG\06d26fbb49c0d4f05949e37776e057751_color_0_Left_Down_0.0.png .\SunCG\06d26fbb49c0d4f05949e37776e057751_color_0_Right_0.0.png .\SunCG\06d26fbb49c0d4f05949e37776e057751_color_0_Up_0.0.png .\SunCG\06d26fbb49c0d4f05949e37776e057751_depth_0_Left_Down_0.0.exr .\SunCG\06d26fbb49c0d4f05949e37776e057751_depth_0_Right_0.0.exr .\SunCG\06d26fbb49c0d4f05949e37776e057751_depth_0_Up_0.0.exr .\SunCG\06d26fbb49c0d4f05949e37776e057751_normal_0_Left_Down_0.0.exr .\SunCG\06d26fbb49c0d4f05949e37776e057751_normal_0_Right_0.0.exr .\SunCG\06d26fbb49c0d4f05949e37776e057751_normal_0_Up_0.0.exr
.\SunCG\0705b958f4417e756977b045921500c71_color_0_Left_Down_0.0.png .\SunCG\0705b958f4417e756977b045921500c71_color_0_Right_0.0.png .\SunCG\0705b958f4417e756977b045921500c71_color_0_Up_0.0.png .\SunCG\0705b958f4417e756977b045921500c71_depth_0_Left_Down_0.0.exr .\SunCG\0705b958f4417e756977b045921500c71_depth_0_Right_0.0.exr .\SunCG\0705b958f4417e756977b045921500c71_depth_0_Up_0.0.exr .\SunCG\0705b958f4417e756977b045921500c71_normal_0_Left_Down_0.0.exr .\SunCG\0705b958f4417e756977b045921500c71_normal_0_Right_0.0.exr .\SunCG\0705b958f4417e756977b045921500c71_normal_0_Up_0.0.exr
.\SunCG\072892bf2190a073027b107f946cd20b1_color_0_Left_Down_0.0.png .\SunCG\072892bf2190a073027b107f946cd20b1_color_0_Right_0.0.png .\SunCG\072892bf2190a073027b107f946cd20b1_color_0_Up_0.0.png .\SunCG\072892bf2190a073027b107f946cd20b1_depth_0_Left_Down_0.0.exr .\SunCG\072892bf2190a073027b107f946cd20b1_depth_0_Right_0.0.exr .\SunCG\072892bf2190a073027b107f946cd20b1_depth_0_Up_0.0.exr .\SunCG\072892bf2190a073027b107f946cd20b1_normal_0_Left_Down_0.0.exr .\SunCG\072892bf2190a073027b107f946cd20b1_normal_0_Right_0.0.exr .\SunCG\072892bf2190a073027b107f946cd20b1_normal_0_Up_0.0.exr
.\SunCG\074ac100eb7d8dcbe609df0d66deca601_color_0_Left_Down_0.0.png .\SunCG\074ac100eb7d8dcbe609df0d66deca601_color_0_Right_0.0.png .\SunCG\074ac100eb7d8dcbe609df0d66deca601_color_0_Up_0.0.png .\SunCG\074ac100eb7d8dcbe609df0d66deca601_depth_0_Left_Down_0.0.exr .\SunCG\074ac100eb7d8dcbe609df0d66deca601_depth_0_Right_0.0.exr .\SunCG\074ac100eb7d8dcbe609df0d66deca601_depth_0_Up_0.0.exr .\SunCG\074ac100eb7d8dcbe609df0d66deca601_normal_0_Left_Down_0.0.exr .\SunCG\074ac100eb7d8dcbe609df0d66deca601_normal_0_Right_0.0.exr .\SunCG\074ac100eb7d8dcbe609df0d66deca601_normal_0_Up_0.0.exr
.\SunCG\07c1fb9e6119e6849bc2e7668346676e1_color_0_Left_Down_0.0.png .\SunCG\07c1fb9e6119e6849bc2e7668346676e1_color_0_Right_0.0.png .\SunCG\07c1fb9e6119e6849bc2e7668346676e1_color_0_Up_0.0.png .\SunCG\07c1fb9e6119e6849bc2e7668346676e1_depth_0_Left_Down_0.0.exr .\SunCG\07c1fb9e6119e6849bc2e7668346676e1_depth_0_Right_0.0.exr .\SunCG\07c1fb9e6119e6849bc2e7668346676e1_depth_0_Up_0.0.exr .\SunCG\07c1fb9e6119e6849bc2e7668346676e1_normal_0_Left_Down_0.0.exr .\SunCG\07c1fb9e6119e6849bc2e7668346676e1_normal_0_Right_0.0.exr .\SunCG\07c1fb9e6119e6849bc2e7668346676e1_normal_0_Up_0.0.exr
.\SunCG\084ada2fd6242fca6ec9ba040da694a31_color_0_Left_Down_0.0.png .\SunCG\084ada2fd6242fca6ec9ba040da694a31_color_0_Right_0.0.png .\SunCG\084ada2fd6242fca6ec9ba040da694a31_color_0_Up_0.0.png .\SunCG\084ada2fd6242fca6ec9ba040da694a31_depth_0_Left_Down_0.0.exr .\SunCG\084ada2fd6242fca6ec9ba040da694a31_depth_0_Right_0.0.exr .\SunCG\084ada2fd6242fca6ec9ba040da694a31_depth_0_Up_0.0.exr .\SunCG\084ada2fd6242fca6ec9ba040da694a31_normal_0_Left_Down_0.0.exr .\SunCG\084ada2fd6242fca6ec9ba040da694a31_normal_0_Right_0.0.exr .\SunCG\084ada2fd6242fca6ec9ba040da694a31_normal_0_Up_0.0.exr
.\SunCG\085e24a3ac44d1fb6cfe7bff51bb932c1_color_0_Left_Down_0.0.png .\SunCG\085e24a3ac44d1fb6cfe7bff51bb932c1_color_0_Right_0.0.png .\SunCG\085e24a3ac44d1fb6cfe7bff51bb932c1_color_0_Up_0.0.png .\SunCG\085e24a3ac44d1fb6cfe7bff51bb932c1_depth_0_Left_Down_0.0.exr .\SunCG\085e24a3ac44d1fb6cfe7bff51bb932c1_depth_0_Right_0.0.exr .\SunCG\085e24a3ac44d1fb6cfe7bff51bb932c1_depth_0_Up_0.0.exr .\SunCG\085e24a3ac44d1fb6cfe7bff51bb932c1_normal_0_Left_Down_0.0.exr .\SunCG\085e24a3ac44d1fb6cfe7bff51bb932c1_normal_0_Right_0.0.exr .\SunCG\085e24a3ac44d1fb6cfe7bff51bb932c1_normal_0_Up_0.0.exr
.\SunCG\08a6a438405ba41f0a3f69ef6272fce61_color_0_Left_Down_0.0.png .\SunCG\08a6a438405ba41f0a3f69ef6272fce61_color_0_Right_0.0.png .\SunCG\08a6a438405ba41f0a3f69ef6272fce61_color_0_Up_0.0.png .\SunCG\08a6a438405ba41f0a3f69ef6272fce61_depth_0_Left_Down_0.0.exr .\SunCG\08a6a438405ba41f0a3f69ef6272fce61_depth_0_Right_0.0.exr .\SunCG\08a6a438405ba41f0a3f69ef6272fce61_depth_0_Up_0.0.exr .\SunCG\08a6a438405ba41f0a3f69ef6272fce61_normal_0_Left_Down_0.0.exr .\SunCG\08a6a438405ba41f0a3f69ef6272fce61_normal_0_Right_0.0.exr .\SunCG\08a6a438405ba41f0a3f69ef6272fce61_normal_0_Up_0.0.exr
.\SunCG\08e79f115ab7c9209a2333f12b507f8d1_color_0_Left_Down_0.0.png .\SunCG\08e79f115ab7c9209a2333f12b507f8d1_color_0_Right_0.0.png .\SunCG\08e79f115ab7c9209a2333f12b507f8d1_color_0_Up_0.0.png .\SunCG\08e79f115ab7c9209a2333f12b507f8d1_depth_0_Left_Down_0.0.exr .\SunCG\08e79f115ab7c9209a2333f12b507f8d1_depth_0_Right_0.0.exr .\SunCG\08e79f115ab7c9209a2333f12b507f8d1_depth_0_Up_0.0.exr .\SunCG\08e79f115ab7c9209a2333f12b507f8d1_normal_0_Left_Down_0.0.exr .\SunCG\08e79f115ab7c9209a2333f12b507f8d1_normal_0_Right_0.0.exr .\SunCG\08e79f115ab7c9209a2333f12b507f8d1_normal_0_Up_0.0.exr
.\SunCG\09bd2d686708425ba955068ba6501dad1_color_0_Left_Down_0.0.png .\SunCG\09bd2d686708425ba955068ba6501dad1_color_0_Right_0.0.png .\SunCG\09bd2d686708425ba955068ba6501dad1_color_0_Up_0.0.png .\SunCG\09bd2d686708425ba955068ba6501dad1_depth_0_Left_Down_0.0.exr .\SunCG\09bd2d686708425ba955068ba6501dad1_depth_0_Right_0.0.exr .\SunCG\09bd2d686708425ba955068ba6501dad1_depth_0_Up_0.0.exr .\SunCG\09bd2d686708425ba955068ba6501dad1_normal_0_Left_Down_0.0.exr .\SunCG\09bd2d686708425ba955068ba6501dad1_normal_0_Right_0.0.exr .\SunCG\09bd2d686708425ba955068ba6501dad1_normal_0_Up_0.0.exr
.\SunCG\0a077e583fe2620bf29fd648203c17161_color_0_Left_Down_0.0.png .\SunCG\0a077e583fe2620bf29fd648203c17161_color_0_Right_0.0.png .\SunCG\0a077e583fe2620bf29fd648203c17161_color_0_Up_0.0.png .\SunCG\0a077e583fe2620bf29fd648203c17161_depth_0_Left_Down_0.0.exr .\SunCG\0a077e583fe2620bf29fd648203c17161_depth_0_Right_0.0.exr .\SunCG\0a077e583fe2620bf29fd648203c17161_depth_0_Up_0.0.exr .\SunCG\0a077e583fe2620bf29fd648203c17161_normal_0_Left_Down_0.0.exr .\SunCG\0a077e583fe2620bf29fd648203c17161_normal_0_Right_0.0.exr .\SunCG\0a077e583fe2620bf29fd648203c17161_normal_0_Up_0.0.exr
.\SunCG\0a47882b40daf033e05e0b2dffafa6f71_color_0_Left_Down_0.0.png .\SunCG\0a47882b40daf033e05e0b2dffafa6f71_color_0_Right_0.0.png .\SunCG\0a47882b40daf033e05e0b2dffafa6f71_color_0_Up_0.0.png .\SunCG\0a47882b40daf033e05e0b2dffafa6f71_depth_0_Left_Down_0.0.exr .\SunCG\0a47882b40daf033e05e0b2dffafa6f71_depth_0_Right_0.0.exr .\SunCG\0a47882b40daf033e05e0b2dffafa6f71_depth_0_Up_0.0.exr .\SunCG\0a47882b40daf033e05e0b2dffafa6f71_normal_0_Left_Down_0.0.exr .\SunCG\0a47882b40daf033e05e0b2dffafa6f71_normal_0_Right_0.0.exr .\SunCG\0a47882b40daf033e05e0b2dffafa6f71_normal_0_Up_0.0.exr
.\SunCG\0b4c245eed4df60300f9f47b226004af1_color_0_Left_Down_0.0.png .\SunCG\0b4c245eed4df60300f9f47b226004af1_color_0_Right_0.0.png .\SunCG\0b4c245eed4df60300f9f47b226004af1_color_0_Up_0.0.png .\SunCG\0b4c245eed4df60300f9f47b226004af1_depth_0_Left_Down_0.0.exr .\SunCG\0b4c245eed4df60300f9f47b226004af1_depth_0_Right_0.0.exr .\SunCG\0b4c245eed4df60300f9f47b226004af1_depth_0_Up_0.0.exr .\SunCG\0b4c245eed4df60300f9f47b226004af1_normal_0_Left_Down_0.0.exr .\SunCG\0b4c245eed4df60300f9f47b226004af1_normal_0_Right_0.0.exr .\SunCG\0b4c245eed4df60300f9f47b226004af1_normal_0_Up_0.0.exr
.\SunCG\0c0a3b4e9e0a4a162cd627a291a858b61_color_0_Left_Down_0.0.png .\SunCG\0c0a3b4e9e0a4a162cd627a291a858b61_color_0_Right_0.0.png .\SunCG\0c0a3b4e9e0a4a162cd627a291a858b61_color_0_Up_0.0.png .\SunCG\0c0a3b4e9e0a4a162cd627a291a858b61_depth_0_Left_Down_0.0.exr .\SunCG\0c0a3b4e9e0a4a162cd627a291a858b61_depth_0_Right_0.0.exr .\SunCG\0c0a3b4e9e0a4a162cd627a291a858b61_depth_0_Up_0.0.exr .\SunCG\0c0a3b4e9e0a4a162cd627a291a858b61_normal_0_Left_Down_0.0.exr .\SunCG\0c0a3b4e9e0a4a162cd627a291a858b61_normal_0_Right_0.0.exr .\SunCG\0c0a3b4e9e0a4a162cd627a291a858b61_normal_0_Up_0.0.exr
.\SunCG\0c119f78abb99d0f47ba259ce50f237a1_color_0_Left_Down_0.0.png .\SunCG\0c119f78abb99d0f47ba259ce50f237a1_color_0_Right_0.0.png .\SunCG\0c119f78abb99d0f47ba259ce50f237a1_color_0_Up_0.0.png .\SunCG\0c119f78abb99d0f47ba259ce50f237a1_depth_0_Left_Down_0.0.exr .\SunCG\0c119f78abb99d0f47ba259ce50f237a1_depth_0_Right_0.0.exr .\SunCG\0c119f78abb99d0f47ba259ce50f237a1_depth_0_Up_0.0.exr .\SunCG\0c119f78abb99d0f47ba259ce50f237a1_normal_0_Left_Down_0.0.exr .\SunCG\0c119f78abb99d0f47ba259ce50f237a1_normal_0_Right_0.0.exr .\SunCG\0c119f78abb99d0f47ba259ce50f237a1_normal_0_Up_0.0.exr
.\SunCG\0c4a4b62871d0bacffd05bc1c5d2027d1_color_0_Left_Down_0.0.png .\SunCG\0c4a4b62871d0bacffd05bc1c5d2027d1_color_0_Right_0.0.png .\SunCG\0c4a4b62871d0bacffd05bc1c5d2027d1_color_0_Up_0.0.png .\SunCG\0c4a4b62871d0bacffd05bc1c5d2027d1_depth_0_Left_Down_0.0.exr .\SunCG\0c4a4b62871d0bacffd05bc1c5d2027d1_depth_0_Right_0.0.exr .\SunCG\0c4a4b62871d0bacffd05bc1c5d2027d1_depth_0_Up_0.0.exr .\SunCG\0c4a4b62871d0bacffd05bc1c5d2027d1_normal_0_Left_Down_0.0.exr .\SunCG\0c4a4b62871d0bacffd05bc1c5d2027d1_normal_0_Right_0.0.exr .\SunCG\0c4a4b62871d0bacffd05bc1c5d2027d1_normal_0_Up_0.0.exr
.\SunCG\0c81b10cdc10743d70c1783b382d8c291_color_0_Left_Down_0.0.png .\SunCG\0c81b10cdc10743d70c1783b382d8c291_color_0_Right_0.0.png .\SunCG\0c81b10cdc10743d70c1783b382d8c291_color_0_Up_0.0.png .\SunCG\0c81b10cdc10743d70c1783b382d8c291_depth_0_Left_Down_0.0.exr .\SunCG\0c81b10cdc10743d70c1783b382d8c291_depth_0_Right_0.0.exr .\SunCG\0c81b10cdc10743d70c1783b382d8c291_depth_0_Up_0.0.exr .\SunCG\0c81b10cdc10743d70c1783b382d8c291_normal_0_Left_Down_0.0.exr .\SunCG\0c81b10cdc10743d70c1783b382d8c291_normal_0_Right_0.0.exr .\SunCG\0c81b10cdc10743d70c1783b382d8c291_normal_0_Up_0.0.exr
.\SunCG\0c81eaf8b149940a7e14d97c4328ba8f1_color_0_Left_Down_0.0.png .\SunCG\0c81eaf8b149940a7e14d97c4328ba8f1_color_0_Right_0.0.png .\SunCG\0c81eaf8b149940a7e14d97c4328ba8f1_color_0_Up_0.0.png .\SunCG\0c81eaf8b149940a7e14d97c4328ba8f1_depth_0_Left_Down_0.0.exr .\SunCG\0c81eaf8b149940a7e14d97c4328ba8f1_depth_0_Right_0.0.exr .\SunCG\0c81eaf8b149940a7e14d97c4328ba8f1_depth_0_Up_0.0.exr .\SunCG\0c81eaf8b149940a7e14d97c4328ba8f1_normal_0_Left_Down_0.0.exr .\SunCG\0c81eaf8b149940a7e14d97c4328ba8f1_normal_0_Right_0.0.exr .\SunCG\0c81eaf8b149940a7e14d97c4328ba8f1_normal_0_Up_0.0.exr
.\SunCG\0cd33d1eb864ea9b3e97738be45a96531_color_0_Left_Down_0.0.png .\SunCG\0cd33d1eb864ea9b3e97738be45a96531_color_0_Right_0.0.png .\SunCG\0cd33d1eb864ea9b3e97738be45a96531_color_0_Up_0.0.png .\SunCG\0cd33d1eb864ea9b3e97738be45a96531_depth_0_Left_Down_0.0.exr .\SunCG\0cd33d1eb864ea9b3e97738be45a96531_depth_0_Right_0.0.exr .\SunCG\0cd33d1eb864ea9b3e97738be45a96531_depth_0_Up_0.0.exr .\SunCG\0cd33d1eb864ea9b3e97738be45a96531_normal_0_Left_Down_0.0.exr .\SunCG\0cd33d1eb864ea9b3e97738be45a96531_normal_0_Right_0.0.exr .\SunCG\0cd33d1eb864ea9b3e97738be45a96531_normal_0_Up_0.0.exr
.\SunCG\0d60977bd306feb2249f08e444f7c4041_color_0_Left_Down_0.0.png .\SunCG\0d60977bd306feb2249f08e444f7c4041_color_0_Right_0.0.png .\SunCG\0d60977bd306feb2249f08e444f7c4041_color_0_Up_0.0.png .\SunCG\0d60977bd306feb2249f08e444f7c4041_depth_0_Left_Down_0.0.exr .\SunCG\0d60977bd306feb2249f08e444f7c4041_depth_0_Right_0.0.exr .\SunCG\0d60977bd306feb2249f08e444f7c4041_depth_0_Up_0.0.exr .\SunCG\0d60977bd306feb2249f08e444f7c4041_normal_0_Left_Down_0.0.exr .\SunCG\0d60977bd306feb2249f08e444f7c4041_normal_0_Right_0.0.exr .\SunCG\0d60977bd306feb2249f08e444f7c4041_normal_0_Up_0.0.exr
.\SunCG\0d65972d1a4c88d6a9c922ff1ec4384e1_color_0_Left_Down_0.0.png .\SunCG\0d65972d1a4c88d6a9c922ff1ec4384e1_color_0_Right_0.0.png .\SunCG\0d65972d1a4c88d6a9c922ff1ec4384e1_color_0_Up_0.0.png .\SunCG\0d65972d1a4c88d6a9c922ff1ec4384e1_depth_0_Left_Down_0.0.exr .\SunCG\0d65972d1a4c88d6a9c922ff1ec4384e1_depth_0_Right_0.0.exr .\SunCG\0d65972d1a4c88d6a9c922ff1ec4384e1_depth_0_Up_0.0.exr .\SunCG\0d65972d1a4c88d6a9c922ff1ec4384e1_normal_0_Left_Down_0.0.exr .\SunCG\0d65972d1a4c88d6a9c922ff1ec4384e1_normal_0_Right_0.0.exr .\SunCG\0d65972d1a4c88d6a9c922ff1ec4384e1_normal_0_Up_0.0.exr
.\SunCG\0f1725485c78635d2f6d7460d190825c1_color_0_Left_Down_0.0.png .\SunCG\0f1725485c78635d2f6d7460d190825c1_color_0_Right_0.0.png .\SunCG\0f1725485c78635d2f6d7460d190825c1_color_0_Up_0.0.png .\SunCG\0f1725485c78635d2f6d7460d190825c1_depth_0_Left_Down_0.0.exr .\SunCG\0f1725485c78635d2f6d7460d190825c1_depth_0_Right_0.0.exr .\SunCG\0f1725485c78635d2f6d7460d190825c1_depth_0_Up_0.0.exr .\SunCG\0f1725485c78635d2f6d7460d190825c1_normal_0_Left_Down_0.0.exr .\SunCG\0f1725485c78635d2f6d7460d190825c1_normal_0_Right_0.0.exr .\SunCG\0f1725485c78635d2f6d7460d190825c1_normal_0_Up_0.0.exr
.\SunCG\0f49e723572f3f03e2c9a288599b9f121_color_0_Left_Down_0.0.png .\SunCG\0f49e723572f3f03e2c9a288599b9f121_color_0_Right_0.0.png .\SunCG\0f49e723572f3f03e2c9a288599b9f121_color_0_Up_0.0.png .\SunCG\0f49e723572f3f03e2c9a288599b9f121_depth_0_Left_Down_0.0.exr .\SunCG\0f49e723572f3f03e2c9a288599b9f121_depth_0_Right_0.0.exr .\SunCG\0f49e723572f3f03e2c9a288599b9f121_depth_0_Up_0.0.exr .\SunCG\0f49e723572f3f03e2c9a288599b9f121_normal_0_Left_Down_0.0.exr .\SunCG\0f49e723572f3f03e2c9a288599b9f121_normal_0_Right_0.0.exr .\SunCG\0f49e723572f3f03e2c9a288599b9f121_normal_0_Up_0.0.exr
.\SunCG\0fc63766408d13f9259e31c21c73c9e71_color_0_Left_Down_0.0.png .\SunCG\0fc63766408d13f9259e31c21c73c9e71_color_0_Right_0.0.png .\SunCG\0fc63766408d13f9259e31c21c73c9e71_color_0_Up_0.0.png .\SunCG\0fc63766408d13f9259e31c21c73c9e71_depth_0_Left_Down_0.0.exr .\SunCG\0fc63766408d13f9259e31c21c73c9e71_depth_0_Right_0.0.exr .\SunCG\0fc63766408d13f9259e31c21c73c9e71_depth_0_Up_0.0.exr .\SunCG\0fc63766408d13f9259e31c21c73c9e71_normal_0_Left_Down_0.0.exr .\SunCG\0fc63766408d13f9259e31c21c73c9e71_normal_0_Right_0.0.exr .\SunCG\0fc63766408d13f9259e31c21c73c9e71_normal_0_Up_0.0.exr
.\SunCG\1027a0cf7c6ef35dc5b236b78f1b922b1_color_0_Left_Down_0.0.png .\SunCG\1027a0cf7c6ef35dc5b236b78f1b922b1_color_0_Right_0.0.png .\SunCG\1027a0cf7c6ef35dc5b236b78f1b922b1_color_0_Up_0.0.png .\SunCG\1027a0cf7c6ef35dc5b236b78f1b922b1_depth_0_Left_Down_0.0.exr .\SunCG\1027a0cf7c6ef35dc5b236b78f1b922b1_depth_0_Right_0.0.exr .\SunCG\1027a0cf7c6ef35dc5b236b78f1b922b1_depth_0_Up_0.0.exr .\SunCG\1027a0cf7c6ef35dc5b236b78f1b922b1_normal_0_Left_Down_0.0.exr .\SunCG\1027a0cf7c6ef35dc5b236b78f1b922b1_normal_0_Right_0.0.exr .\SunCG\1027a0cf7c6ef35dc5b236b78f1b922b1_normal_0_Up_0.0.exr
.\SunCG\1091291714ac8434ef6b6ef6541483a91_color_0_Left_Down_0.0.png .\SunCG\1091291714ac8434ef6b6ef6541483a91_color_0_Right_0.0.png .\SunCG\1091291714ac8434ef6b6ef6541483a91_color_0_Up_0.0.png .\SunCG\1091291714ac8434ef6b6ef6541483a91_depth_0_Left_Down_0.0.exr .\SunCG\1091291714ac8434ef6b6ef6541483a91_depth_0_Right_0.0.exr .\SunCG\1091291714ac8434ef6b6ef6541483a91_depth_0_Up_0.0.exr .\SunCG\1091291714ac8434ef6b6ef6541483a91_normal_0_Left_Down_0.0.exr .\SunCG\1091291714ac8434ef6b6ef6541483a91_normal_0_Right_0.0.exr .\SunCG\1091291714ac8434ef6b6ef6541483a91_normal_0_Up_0.0.exr
.\SunCG\10baa87e652fc32c940df59e7344ebfd1_color_0_Left_Down_0.0.png .\SunCG\10baa87e652fc32c940df59e7344ebfd1_color_0_Right_0.0.png .\SunCG\10baa87e652fc32c940df59e7344ebfd1_color_0_Up_0.0.png .\SunCG\10baa87e652fc32c940df59e7344ebfd1_depth_0_Left_Down_0.0.exr .\SunCG\10baa87e652fc32c940df59e7344ebfd1_depth_0_Right_0.0.exr .\SunCG\10baa87e652fc32c940df59e7344ebfd1_depth_0_Up_0.0.exr .\SunCG\10baa87e652fc32c940df59e7344ebfd1_normal_0_Left_Down_0.0.exr .\SunCG\10baa87e652fc32c940df59e7344ebfd1_normal_0_Right_0.0.exr .\SunCG\10baa87e652fc32c940df59e7344ebfd1_normal_0_Up_0.0.exr
.\SunCG\114a19df166c7afbbb8d30ce1266d6011_color_0_Left_Down_0.0.png .\SunCG\114a19df166c7afbbb8d30ce1266d6011_color_0_Right_0.0.png .\SunCG\114a19df166c7afbbb8d30ce1266d6011_color_0_Up_0.0.png .\SunCG\114a19df166c7afbbb8d30ce1266d6011_depth_0_Left_Down_0.0.exr .\SunCG\114a19df166c7afbbb8d30ce1266d6011_depth_0_Right_0.0.exr .\SunCG\114a19df166c7afbbb8d30ce1266d6011_depth_0_Up_0.0.exr .\SunCG\114a19df166c7afbbb8d30ce1266d6011_normal_0_Left_Down_0.0.exr .\SunCG\114a19df166c7afbbb8d30ce1266d6011_normal_0_Right_0.0.exr .\SunCG\114a19df166c7afbbb8d30ce1266d6011_normal_0_Up_0.0.exr
.\SunCG\11ca7ca53aee99f97455863016318db81_color_0_Left_Down_0.0.png .\SunCG\11ca7ca53aee99f97455863016318db81_color_0_Right_0.0.png .\SunCG\11ca7ca53aee99f97455863016318db81_color_0_Up_0.0.png .\SunCG\11ca7ca53aee99f97455863016318db81_depth_0_Left_Down_0.0.exr .\SunCG\11ca7ca53aee99f97455863016318db81_depth_0_Right_0.0.exr .\SunCG\11ca7ca53aee99f97455863016318db81_depth_0_Up_0.0.exr .\SunCG\11ca7ca53aee99f97455863016318db81_normal_0_Left_Down_0.0.exr .\SunCG\11ca7ca53aee99f97455863016318db81_normal_0_Right_0.0.exr .\SunCG\11ca7ca53aee99f97455863016318db81_normal_0_Up_0.0.exr
.\SunCG\123213d0998c17154f76ea78ef8f6bd61_color_0_Left_Down_0.0.png .\SunCG\123213d0998c17154f76ea78ef8f6bd61_color_0_Right_0.0.png .\SunCG\123213d0998c17154f76ea78ef8f6bd61_color_0_Up_0.0.png .\SunCG\123213d0998c17154f76ea78ef8f6bd61_depth_0_Left_Down_0.0.exr .\SunCG\123213d0998c17154f76ea78ef8f6bd61_depth_0_Right_0.0.exr .\SunCG\123213d0998c17154f76ea78ef8f6bd61_depth_0_Up_0.0.exr .\SunCG\123213d0998c17154f76ea78ef8f6bd61_normal_0_Left_Down_0.0.exr .\SunCG\123213d0998c17154f76ea78ef8f6bd61_normal_0_Right_0.0.exr .\SunCG\123213d0998c17154f76ea78ef8f6bd61_normal_0_Up_0.0.exr
.\SunCG\12412ddd058e7a6d0f91079e2ffcdf071_color_0_Left_Down_0.0.png .\SunCG\12412ddd058e7a6d0f91079e2ffcdf071_color_0_Right_0.0.png .\SunCG\12412ddd058e7a6d0f91079e2ffcdf071_color_0_Up_0.0.png .\SunCG\12412ddd058e7a6d0f91079e2ffcdf071_depth_0_Left_Down_0.0.exr .\SunCG\12412ddd058e7a6d0f91079e2ffcdf071_depth_0_Right_0.0.exr .\SunCG\12412ddd058e7a6d0f91079e2ffcdf071_depth_0_Up_0.0.exr .\SunCG\12412ddd058e7a6d0f91079e2ffcdf071_normal_0_Left_Down_0.0.exr .\SunCG\12412ddd058e7a6d0f91079e2ffcdf071_normal_0_Right_0.0.exr .\SunCG\12412ddd058e7a6d0f91079e2ffcdf071_normal_0_Up_0.0.exr
.\SunCG\125f34a3ce257a8abdc2175c358db4731_color_0_Left_Down_0.0.png .\SunCG\125f34a3ce257a8abdc2175c358db4731_color_0_Right_0.0.png .\SunCG\125f34a3ce257a8abdc2175c358db4731_color_0_Up_0.0.png .\SunCG\125f34a3ce257a8abdc2175c358db4731_depth_0_Left_Down_0.0.exr .\SunCG\125f34a3ce257a8abdc2175c358db4731_depth_0_Right_0.0.exr .\SunCG\125f34a3ce257a8abdc2175c358db4731_depth_0_Up_0.0.exr .\SunCG\125f34a3ce257a8abdc2175c358db4731_normal_0_Left_Down_0.0.exr .\SunCG\125f34a3ce257a8abdc2175c358db4731_normal_0_Right_0.0.exr .\SunCG\125f34a3ce257a8abdc2175c358db4731_normal_0_Up_0.0.exr
.\SunCG\12b99ea5e92fa0100abe5229c5551d591_color_0_Left_Down_0.0.png .\SunCG\12b99ea5e92fa0100abe5229c5551d591_color_0_Right_0.0.png .\SunCG\12b99ea5e92fa0100abe5229c5551d591_color_0_Up_0.0.png .\SunCG\12b99ea5e92fa0100abe5229c5551d591_depth_0_Left_Down_0.0.exr .\SunCG\12b99ea5e92fa0100abe5229c5551d591_depth_0_Right_0.0.exr .\SunCG\12b99ea5e92fa0100abe5229c5551d591_depth_0_Up_0.0.exr .\SunCG\12b99ea5e92fa0100abe5229c5551d591_normal_0_Left_Down_0.0.exr .\SunCG\12b99ea5e92fa0100abe5229c5551d591_normal_0_Right_0.0.exr .\SunCG\12b99ea5e92fa0100abe5229c5551d591_normal_0_Up_0.0.exr
.\SunCG\12c91b35a739020329217ccfa83983c61_color_0_Left_Down_0.0.png .\SunCG\12c91b35a739020329217ccfa83983c61_color_0_Right_0.0.png .\SunCG\12c91b35a739020329217ccfa83983c61_color_0_Up_0.0.png .\SunCG\12c91b35a739020329217ccfa83983c61_depth_0_Left_Down_0.0.exr .\SunCG\12c91b35a739020329217ccfa83983c61_depth_0_Right_0.0.exr .\SunCG\12c91b35a739020329217ccfa83983c61_depth_0_Up_0.0.exr .\SunCG\12c91b35a739020329217ccfa83983c61_normal_0_Left_Down_0.0.exr .\SunCG\12c91b35a739020329217ccfa83983c61_normal_0_Right_0.0.exr .\SunCG\12c91b35a739020329217ccfa83983c61_normal_0_Up_0.0.exr
.\SunCG\1386afa910517c7ea934b753958e681e1_color_0_Left_Down_0.0.png .\SunCG\1386afa910517c7ea934b753958e681e1_color_0_Right_0.0.png .\SunCG\1386afa910517c7ea934b753958e681e1_color_0_Up_0.0.png .\SunCG\1386afa910517c7ea934b753958e681e1_depth_0_Left_Down_0.0.exr .\SunCG\1386afa910517c7ea934b753958e681e1_depth_0_Right_0.0.exr .\SunCG\1386afa910517c7ea934b753958e681e1_depth_0_Up_0.0.exr .\SunCG\1386afa910517c7ea934b753958e681e1_normal_0_Left_Down_0.0.exr .\SunCG\1386afa910517c7ea934b753958e681e1_normal_0_Right_0.0.exr .\SunCG\1386afa910517c7ea934b753958e681e1_normal_0_Up_0.0.exr
.\SunCG\13fcb349c4e3d68ec45b17daf630ce461_color_0_Left_Down_0.0.png .\SunCG\13fcb349c4e3d68ec45b17daf630ce461_color_0_Right_0.0.png .\SunCG\13fcb349c4e3d68ec45b17daf630ce461_color_0_Up_0.0.png .\SunCG\13fcb349c4e3d68ec45b17daf630ce461_depth_0_Left_Down_0.0.exr .\SunCG\13fcb349c4e3d68ec45b17daf630ce461_depth_0_Right_0.0.exr .\SunCG\13fcb349c4e3d68ec45b17daf630ce461_depth_0_Up_0.0.exr .\SunCG\13fcb349c4e3d68ec45b17daf630ce461_normal_0_Left_Down_0.0.exr .\SunCG\13fcb349c4e3d68ec45b17daf630ce461_normal_0_Right_0.0.exr .\SunCG\13fcb349c4e3d68ec45b17daf630ce461_normal_0_Up_0.0.exr
.\SunCG\143be841d883040ff94c194d297ba9ab1_color_0_Left_Down_0.0.png .\SunCG\143be841d883040ff94c194d297ba9ab1_color_0_Right_0.0.png .\SunCG\143be841d883040ff94c194d297ba9ab1_color_0_Up_0.0.png .\SunCG\143be841d883040ff94c194d297ba9ab1_depth_0_Left_Down_0.0.exr .\SunCG\143be841d883040ff94c194d297ba9ab1_depth_0_Right_0.0.exr .\SunCG\143be841d883040ff94c194d297ba9ab1_depth_0_Up_0.0.exr .\SunCG\143be841d883040ff94c194d297ba9ab1_normal_0_Left_Down_0.0.exr .\SunCG\143be841d883040ff94c194d297ba9ab1_normal_0_Right_0.0.exr .\SunCG\143be841d883040ff94c194d297ba9ab1_normal_0_Up_0.0.exr
.\SunCG\1452122bb506298dbe94c9e960accdc01_color_0_Left_Down_0.0.png .\SunCG\1452122bb506298dbe94c9e960accdc01_color_0_Right_0.0.png .\SunCG\1452122bb506298dbe94c9e960accdc01_color_0_Up_0.0.png .\SunCG\1452122bb506298dbe94c9e960accdc01_depth_0_Left_Down_0.0.exr .\SunCG\1452122bb506298dbe94c9e960accdc01_depth_0_Right_0.0.exr .\SunCG\1452122bb506298dbe94c9e960accdc01_depth_0_Up_0.0.exr .\SunCG\1452122bb506298dbe94c9e960accdc01_normal_0_Left_Down_0.0.exr .\SunCG\1452122bb506298dbe94c9e960accdc01_normal_0_Right_0.0.exr .\SunCG\1452122bb506298dbe94c9e960accdc01_normal_0_Up_0.0.exr
.\SunCG\1492075baa57bdb08e0f65b02c4260121_color_0_Left_Down_0.0.png .\SunCG\1492075baa57bdb08e0f65b02c4260121_color_0_Right_0.0.png .\SunCG\1492075baa57bdb08e0f65b02c4260121_color_0_Up_0.0.png .\SunCG\1492075baa57bdb08e0f65b02c4260121_depth_0_Left_Down_0.0.exr .\SunCG\1492075baa57bdb08e0f65b02c4260121_depth_0_Right_0.0.exr .\SunCG\1492075baa57bdb08e0f65b02c4260121_depth_0_Up_0.0.exr .\SunCG\1492075baa57bdb08e0f65b02c4260121_normal_0_Left_Down_0.0.exr .\SunCG\1492075baa57bdb08e0f65b02c4260121_normal_0_Right_0.0.exr .\SunCG\1492075baa57bdb08e0f65b02c4260121_normal_0_Up_0.0.exr
.\SunCG\14a6fe921edfa1bdc879042634d683901_color_0_Left_Down_0.0.png .\SunCG\14a6fe921edfa1bdc879042634d683901_color_0_Right_0.0.png .\SunCG\14a6fe921edfa1bdc879042634d683901_color_0_Up_0.0.png .\SunCG\14a6fe921edfa1bdc879042634d683901_depth_0_Left_Down_0.0.exr .\SunCG\14a6fe921edfa1bdc879042634d683901_depth_0_Right_0.0.exr .\SunCG\14a6fe921edfa1bdc879042634d683901_depth_0_Up_0.0.exr .\SunCG\14a6fe921edfa1bdc879042634d683901_normal_0_Left_Down_0.0.exr .\SunCG\14a6fe921edfa1bdc879042634d683901_normal_0_Right_0.0.exr .\SunCG\14a6fe921edfa1bdc879042634d683901_normal_0_Up_0.0.exr
.\SunCG\151259f87f5e722c19c02613f09a02c51_color_0_Left_Down_0.0.png .\SunCG\151259f87f5e722c19c02613f09a02c51_color_0_Right_0.0.png .\SunCG\151259f87f5e722c19c02613f09a02c51_color_0_Up_0.0.png .\SunCG\151259f87f5e722c19c02613f09a02c51_depth_0_Left_Down_0.0.exr .\SunCG\151259f87f5e722c19c02613f09a02c51_depth_0_Right_0.0.exr .\SunCG\151259f87f5e722c19c02613f09a02c51_depth_0_Up_0.0.exr .\SunCG\151259f87f5e722c19c02613f09a02c51_normal_0_Left_Down_0.0.exr .\SunCG\151259f87f5e722c19c02613f09a02c51_normal_0_Right_0.0.exr .\SunCG\151259f87f5e722c19c02613f09a02c51_normal_0_Up_0.0.exr
.\SunCG\151a836e79c36fc3b6abf95218d1d21e1_color_0_Left_Down_0.0.png .\SunCG\151a836e79c36fc3b6abf95218d1d21e1_color_0_Right_0.0.png .\SunCG\151a836e79c36fc3b6abf95218d1d21e1_color_0_Up_0.0.png .\SunCG\151a836e79c36fc3b6abf95218d1d21e1_depth_0_Left_Down_0.0.exr .\SunCG\151a836e79c36fc3b6abf95218d1d21e1_depth_0_Right_0.0.exr .\SunCG\151a836e79c36fc3b6abf95218d1d21e1_depth_0_Up_0.0.exr .\SunCG\151a836e79c36fc3b6abf95218d1d21e1_normal_0_Left_Down_0.0.exr .\SunCG\151a836e79c36fc3b6abf95218d1d21e1_normal_0_Right_0.0.exr .\SunCG\151a836e79c36fc3b6abf95218d1d21e1_normal_0_Up_0.0.exr
.\SunCG\15a9592a2d132997310ee9c5976fb8a11_color_0_Left_Down_0.0.png .\SunCG\15a9592a2d132997310ee9c5976fb8a11_color_0_Right_0.0.png .\SunCG\15a9592a2d132997310ee9c5976fb8a11_color_0_Up_0.0.png .\SunCG\15a9592a2d132997310ee9c5976fb8a11_depth_0_Left_Down_0.0.exr .\SunCG\15a9592a2d132997310ee9c5976fb8a11_depth_0_Right_0.0.exr .\SunCG\15a9592a2d132997310ee9c5976fb8a11_depth_0_Up_0.0.exr .\SunCG\15a9592a2d132997310ee9c5976fb8a11_normal_0_Left_Down_0.0.exr .\SunCG\15a9592a2d132997310ee9c5976fb8a11_normal_0_Right_0.0.exr .\SunCG\15a9592a2d132997310ee9c5976fb8a11_normal_0_Up_0.0.exr
.\SunCG\15ad8caae0b072e3d779766bbdc913cd1_color_0_Left_Down_0.0.png .\SunCG\15ad8caae0b072e3d779766bbdc913cd1_color_0_Right_0.0.png .\SunCG\15ad8caae0b072e3d779766bbdc913cd1_color_0_Up_0.0.png .\SunCG\15ad8caae0b072e3d779766bbdc913cd1_depth_0_Left_Down_0.0.exr .\SunCG\15ad8caae0b072e3d779766bbdc913cd1_depth_0_Right_0.0.exr .\SunCG\15ad8caae0b072e3d779766bbdc913cd1_depth_0_Up_0.0.exr .\SunCG\15ad8caae0b072e3d779766bbdc913cd1_normal_0_Left_Down_0.0.exr .\SunCG\15ad8caae0b072e3d779766bbdc913cd1_normal_0_Right_0.0.exr .\SunCG\15ad8caae0b072e3d779766bbdc913cd1_normal_0_Up_0.0.exr
.\SunCG\16287bbe0ce4fb34d10c0d69ac2b98aa1_color_0_Left_Down_0.0.png .\SunCG\16287bbe0ce4fb34d10c0d69ac2b98aa1_color_0_Right_0.0.png .\SunCG\16287bbe0ce4fb34d10c0d69ac2b98aa1_color_0_Up_0.0.png .\SunCG\16287bbe0ce4fb34d10c0d69ac2b98aa1_depth_0_Left_Down_0.0.exr .\SunCG\16287bbe0ce4fb34d10c0d69ac2b98aa1_depth_0_Right_0.0.exr .\SunCG\16287bbe0ce4fb34d10c0d69ac2b98aa1_depth_0_Up_0.0.exr .\SunCG\16287bbe0ce4fb34d10c0d69ac2b98aa1_normal_0_Left_Down_0.0.exr .\SunCG\16287bbe0ce4fb34d10c0d69ac2b98aa1_normal_0_Right_0.0.exr .\SunCG\16287bbe0ce4fb34d10c0d69ac2b98aa1_normal_0_Up_0.0.exr
.\SunCG\167c876274aeea6197f01b36af6a7d761_color_0_Left_Down_0.0.png .\SunCG\167c876274aeea6197f01b36af6a7d761_color_0_Right_0.0.png .\SunCG\167c876274aeea6197f01b36af6a7d761_color_0_Up_0.0.png .\SunCG\167c876274aeea6197f01b36af6a7d761_depth_0_Left_Down_0.0.exr .\SunCG\167c876274aeea6197f01b36af6a7d761_depth_0_Right_0.0.exr .\SunCG\167c876274aeea6197f01b36af6a7d761_depth_0_Up_0.0.exr .\SunCG\167c876274aeea6197f01b36af6a7d761_normal_0_Left_Down_0.0.exr .\SunCG\167c876274aeea6197f01b36af6a7d761_normal_0_Right_0.0.exr .\SunCG\167c876274aeea6197f01b36af6a7d761_normal_0_Up_0.0.exr
.\SunCG\1694ca055e05763918a5ef0bf84e42501_color_0_Left_Down_0.0.png .\SunCG\1694ca055e05763918a5ef0bf84e42501_color_0_Right_0.0.png .\SunCG\1694ca055e05763918a5ef0bf84e42501_color_0_Up_0.0.png .\SunCG\1694ca055e05763918a5ef0bf84e42501_depth_0_Left_Down_0.0.exr .\SunCG\1694ca055e05763918a5ef0bf84e42501_depth_0_Right_0.0.exr .\SunCG\1694ca055e05763918a5ef0bf84e42501_depth_0_Up_0.0.exr .\SunCG\1694ca055e05763918a5ef0bf84e42501_normal_0_Left_Down_0.0.exr .\SunCG\1694ca055e05763918a5ef0bf84e42501_normal_0_Right_0.0.exr .\SunCG\1694ca055e05763918a5ef0bf84e42501_normal_0_Up_0.0.exr
.\SunCG\16aa996619b3eea3e1e81cede9d3585f1_color_0_Left_Down_0.0.png .\SunCG\16aa996619b3eea3e1e81cede9d3585f1_color_0_Right_0.0.png .\SunCG\16aa996619b3eea3e1e81cede9d3585f1_color_0_Up_0.0.png .\SunCG\16aa996619b3eea3e1e81cede9d3585f1_depth_0_Left_Down_0.0.exr .\SunCG\16aa996619b3eea3e1e81cede9d3585f1_depth_0_Right_0.0.exr .\SunCG\16aa996619b3eea3e1e81cede9d3585f1_depth_0_Up_0.0.exr .\SunCG\16aa996619b3eea3e1e81cede9d3585f1_normal_0_Left_Down_0.0.exr .\SunCG\16aa996619b3eea3e1e81cede9d3585f1_normal_0_Right_0.0.exr .\SunCG\16aa996619b3eea3e1e81cede9d3585f1_normal_0_Up_0.0.exr
.\SunCG\1725080e6643b40e19255078ba959ef71_color_0_Left_Down_0.0.png .\SunCG\1725080e6643b40e19255078ba959ef71_color_0_Right_0.0.png .\SunCG\1725080e6643b40e19255078ba959ef71_color_0_Up_0.0.png .\SunCG\1725080e6643b40e19255078ba959ef71_depth_0_Left_Down_0.0.exr .\SunCG\1725080e6643b40e19255078ba959ef71_depth_0_Right_0.0.exr .\SunCG\1725080e6643b40e19255078ba959ef71_depth_0_Up_0.0.exr .\SunCG\1725080e6643b40e19255078ba959ef71_normal_0_Left_Down_0.0.exr .\SunCG\1725080e6643b40e19255078ba959ef71_normal_0_Right_0.0.exr .\SunCG\1725080e6643b40e19255078ba959ef71_normal_0_Up_0.0.exr
.\SunCG\178a21c9138d41e2f83935e0be800a631_color_0_Left_Down_0.0.png .\SunCG\178a21c9138d41e2f83935e0be800a631_color_0_Right_0.0.png .\SunCG\178a21c9138d41e2f83935e0be800a631_color_0_Up_0.0.png .\SunCG\178a21c9138d41e2f83935e0be800a631_depth_0_Left_Down_0.0.exr .\SunCG\178a21c9138d41e2f83935e0be800a631_depth_0_Right_0.0.exr .\SunCG\178a21c9138d41e2f83935e0be800a631_depth_0_Up_0.0.exr .\SunCG\178a21c9138d41e2f83935e0be800a631_normal_0_Left_Down_0.0.exr .\SunCG\178a21c9138d41e2f83935e0be800a631_normal_0_Right_0.0.exr .\SunCG\178a21c9138d41e2f83935e0be800a631_normal_0_Up_0.0.exr
.\SunCG\17bb29af92db4fff313708cdf39198671_color_0_Left_Down_0.0.png .\SunCG\17bb29af92db4fff313708cdf39198671_color_0_Right_0.0.png .\SunCG\17bb29af92db4fff313708cdf39198671_color_0_Up_0.0.png .\SunCG\17bb29af92db4fff313708cdf39198671_depth_0_Left_Down_0.0.exr .\SunCG\17bb29af92db4fff313708cdf39198671_depth_0_Right_0.0.exr .\SunCG\17bb29af92db4fff313708cdf39198671_depth_0_Up_0.0.exr .\SunCG\17bb29af92db4fff313708cdf39198671_normal_0_Left_Down_0.0.exr .\SunCG\17bb29af92db4fff313708cdf39198671_normal_0_Right_0.0.exr .\SunCG\17bb29af92db4fff313708cdf39198671_normal_0_Up_0.0.exr
.\SunCG\189ab1fab6a0a5e0308657a4fefc90741_color_0_Left_Down_0.0.png .\SunCG\189ab1fab6a0a5e0308657a4fefc90741_color_0_Right_0.0.png .\SunCG\189ab1fab6a0a5e0308657a4fefc90741_color_0_Up_0.0.png .\SunCG\189ab1fab6a0a5e0308657a4fefc90741_depth_0_Left_Down_0.0.exr .\SunCG\189ab1fab6a0a5e0308657a4fefc90741_depth_0_Right_0.0.exr .\SunCG\189ab1fab6a0a5e0308657a4fefc90741_depth_0_Up_0.0.exr .\SunCG\189ab1fab6a0a5e0308657a4fefc90741_normal_0_Left_Down_0.0.exr .\SunCG\189ab1fab6a0a5e0308657a4fefc90741_normal_0_Right_0.0.exr .\SunCG\189ab1fab6a0a5e0308657a4fefc90741_normal_0_Up_0.0.exr
.\SunCG\18b490df9dcc548c67bf40a09b3700531_color_0_Left_Down_0.0.png .\SunCG\18b490df9dcc548c67bf40a09b3700531_color_0_Right_0.0.png .\SunCG\18b490df9dcc548c67bf40a09b3700531_color_0_Up_0.0.png .\SunCG\18b490df9dcc548c67bf40a09b3700531_depth_0_Left_Down_0.0.exr .\SunCG\18b490df9dcc548c67bf40a09b3700531_depth_0_Right_0.0.exr .\SunCG\18b490df9dcc548c67bf40a09b3700531_depth_0_Up_0.0.exr .\SunCG\18b490df9dcc548c67bf40a09b3700531_normal_0_Left_Down_0.0.exr .\SunCG\18b490df9dcc548c67bf40a09b3700531_normal_0_Right_0.0.exr .\SunCG\18b490df9dcc548c67bf40a09b3700531_normal_0_Up_0.0.exr
.\SunCG\18c465e0cf1291f572876db953dc54501_color_0_Left_Down_0.0.png .\SunCG\18c465e0cf1291f572876db953dc54501_color_0_Right_0.0.png .\SunCG\18c465e0cf1291f572876db953dc54501_color_0_Up_0.0.png .\SunCG\18c465e0cf1291f572876db953dc54501_depth_0_Left_Down_0.0.exr .\SunCG\18c465e0cf1291f572876db953dc54501_depth_0_Right_0.0.exr .\SunCG\18c465e0cf1291f572876db953dc54501_depth_0_Up_0.0.exr .\SunCG\18c465e0cf1291f572876db953dc54501_normal_0_Left_Down_0.0.exr .\SunCG\18c465e0cf1291f572876db953dc54501_normal_0_Right_0.0.exr .\SunCG\18c465e0cf1291f572876db953dc54501_normal_0_Up_0.0.exr
.\SunCG\191cf5a48cc76b6328c2accf7e4df4ab1_color_0_Left_Down_0.0.png .\SunCG\191cf5a48cc76b6328c2accf7e4df4ab1_color_0_Right_0.0.png .\SunCG\191cf5a48cc76b6328c2accf7e4df4ab1_color_0_Up_0.0.png .\SunCG\191cf5a48cc76b6328c2accf7e4df4ab1_depth_0_Left_Down_0.0.exr .\SunCG\191cf5a48cc76b6328c2accf7e4df4ab1_depth_0_Right_0.0.exr .\SunCG\191cf5a48cc76b6328c2accf7e4df4ab1_depth_0_Up_0.0.exr .\SunCG\191cf5a48cc76b6328c2accf7e4df4ab1_normal_0_Left_Down_0.0.exr .\SunCG\191cf5a48cc76b6328c2accf7e4df4ab1_normal_0_Right_0.0.exr .\SunCG\191cf5a48cc76b6328c2accf7e4df4ab1_normal_0_Up_0.0.exr
.\SunCG\197b7390a1ef135d7eac61e6d96c5e6d1_color_0_Left_Down_0.0.png .\SunCG\197b7390a1ef135d7eac61e6d96c5e6d1_color_0_Right_0.0.png .\SunCG\197b7390a1ef135d7eac61e6d96c5e6d1_color_0_Up_0.0.png .\SunCG\197b7390a1ef135d7eac61e6d96c5e6d1_depth_0_Left_Down_0.0.exr .\SunCG\197b7390a1ef135d7eac61e6d96c5e6d1_depth_0_Right_0.0.exr .\SunCG\197b7390a1ef135d7eac61e6d96c5e6d1_depth_0_Up_0.0.exr .\SunCG\197b7390a1ef135d7eac61e6d96c5e6d1_normal_0_Left_Down_0.0.exr .\SunCG\197b7390a1ef135d7eac61e6d96c5e6d1_normal_0_Right_0.0.exr .\SunCG\197b7390a1ef135d7eac61e6d96c5e6d1_normal_0_Up_0.0.exr
.\SunCG\1a61fcb09b732e16a68e9dd9e4b32ddd1_color_0_Left_Down_0.0.png .\SunCG\1a61fcb09b732e16a68e9dd9e4b32ddd1_color_0_Right_0.0.png .\SunCG\1a61fcb09b732e16a68e9dd9e4b32ddd1_color_0_Up_0.0.png .\SunCG\1a61fcb09b732e16a68e9dd9e4b32ddd1_depth_0_Left_Down_0.0.exr .\SunCG\1a61fcb09b732e16a68e9dd9e4b32ddd1_depth_0_Right_0.0.exr .\SunCG\1a61fcb09b732e16a68e9dd9e4b32ddd1_depth_0_Up_0.0.exr .\SunCG\1a61fcb09b732e16a68e9dd9e4b32ddd1_normal_0_Left_Down_0.0.exr .\SunCG\1a61fcb09b732e16a68e9dd9e4b32ddd1_normal_0_Right_0.0.exr .\SunCG\1a61fcb09b732e16a68e9dd9e4b32ddd1_normal_0_Up_0.0.exr
.\SunCG\1a8426b55c7d751fd21d79a21386e54f1_color_0_Left_Down_0.0.png .\SunCG\1a8426b55c7d751fd21d79a21386e54f1_color_0_Right_0.0.png .\SunCG\1a8426b55c7d751fd21d79a21386e54f1_color_0_Up_0.0.png .\SunCG\1a8426b55c7d751fd21d79a21386e54f1_depth_0_Left_Down_0.0.exr .\SunCG\1a8426b55c7d751fd21d79a21386e54f1_depth_0_Right_0.0.exr .\SunCG\1a8426b55c7d751fd21d79a21386e54f1_depth_0_Up_0.0.exr .\SunCG\1a8426b55c7d751fd21d79a21386e54f1_normal_0_Left_Down_0.0.exr .\SunCG\1a8426b55c7d751fd21d79a21386e54f1_normal_0_Right_0.0.exr .\SunCG\1a8426b55c7d751fd21d79a21386e54f1_normal_0_Up_0.0.exr
.\SunCG\1ad14f5069bc42457f3ade500aa653d11_color_0_Left_Down_0.0.png .\SunCG\1ad14f5069bc42457f3ade500aa653d11_color_0_Right_0.0.png .\SunCG\1ad14f5069bc42457f3ade500aa653d11_color_0_Up_0.0.png .\SunCG\1ad14f5069bc42457f3ade500aa653d11_depth_0_Left_Down_0.0.exr .\SunCG\1ad14f5069bc42457f3ade500aa653d11_depth_0_Right_0.0.exr .\SunCG\1ad14f5069bc42457f3ade500aa653d11_depth_0_Up_0.0.exr .\SunCG\1ad14f5069bc42457f3ade500aa653d11_normal_0_Left_Down_0.0.exr .\SunCG\1ad14f5069bc42457f3ade500aa653d11_normal_0_Right_0.0.exr .\SunCG\1ad14f5069bc42457f3ade500aa653d11_normal_0_Up_0.0.exr
.\SunCG\1b9d9d3ea8ee25d7b50a1782137891c31_color_0_Left_Down_0.0.png .\SunCG\1b9d9d3ea8ee25d7b50a1782137891c31_color_0_Right_0.0.png .\SunCG\1b9d9d3ea8ee25d7b50a1782137891c31_color_0_Up_0.0.png .\SunCG\1b9d9d3ea8ee25d7b50a1782137891c31_depth_0_Left_Down_0.0.exr .\SunCG\1b9d9d3ea8ee25d7b50a1782137891c31_depth_0_Right_0.0.exr .\SunCG\1b9d9d3ea8ee25d7b50a1782137891c31_depth_0_Up_0.0.exr .\SunCG\1b9d9d3ea8ee25d7b50a1782137891c31_normal_0_Left_Down_0.0.exr .\SunCG\1b9d9d3ea8ee25d7b50a1782137891c31_normal_0_Right_0.0.exr .\SunCG\1b9d9d3ea8ee25d7b50a1782137891c31_normal_0_Up_0.0.exr
.\SunCG\1befb999905ab3a0c6158d51879740b21_color_0_Left_Down_0.0.png .\SunCG\1befb999905ab3a0c6158d51879740b21_color_0_Right_0.0.png .\SunCG\1befb999905ab3a0c6158d51879740b21_color_0_Up_0.0.png .\SunCG\1befb999905ab3a0c6158d51879740b21_depth_0_Left_Down_0.0.exr .\SunCG\1befb999905ab3a0c6158d51879740b21_depth_0_Right_0.0.exr .\SunCG\1befb999905ab3a0c6158d51879740b21_depth_0_Up_0.0.exr .\SunCG\1befb999905ab3a0c6158d51879740b21_normal_0_Left_Down_0.0.exr .\SunCG\1befb999905ab3a0c6158d51879740b21_normal_0_Right_0.0.exr .\SunCG\1befb999905ab3a0c6158d51879740b21_normal_0_Up_0.0.exr
.\SunCG\1cf1cc5d191ab4135b869bced1817ac81_color_0_Left_Down_0.0.png .\SunCG\1cf1cc5d191ab4135b869bced1817ac81_color_0_Right_0.0.png .\SunCG\1cf1cc5d191ab4135b869bced1817ac81_color_0_Up_0.0.png .\SunCG\1cf1cc5d191ab4135b869bced1817ac81_depth_0_Left_Down_0.0.exr .\SunCG\1cf1cc5d191ab4135b869bced1817ac81_depth_0_Right_0.0.exr .\SunCG\1cf1cc5d191ab4135b869bced1817ac81_depth_0_Up_0.0.exr .\SunCG\1cf1cc5d191ab4135b869bced1817ac81_normal_0_Left_Down_0.0.exr .\SunCG\1cf1cc5d191ab4135b869bced1817ac81_normal_0_Right_0.0.exr .\SunCG\1cf1cc5d191ab4135b869bced1817ac81_normal_0_Up_0.0.exr
.\SunCG\1dde1567fba3791367c615beaf40c4e81_color_0_Left_Down_0.0.png .\SunCG\1dde1567fba3791367c615beaf40c4e81_color_0_Right_0.0.png .\SunCG\1dde1567fba3791367c615beaf40c4e81_color_0_Up_0.0.png .\SunCG\1dde1567fba3791367c615beaf40c4e81_depth_0_Left_Down_0.0.exr .\SunCG\1dde1567fba3791367c615beaf40c4e81_depth_0_Right_0.0.exr .\SunCG\1dde1567fba3791367c615beaf40c4e81_depth_0_Up_0.0.exr .\SunCG\1dde1567fba3791367c615beaf40c4e81_normal_0_Left_Down_0.0.exr .\SunCG\1dde1567fba3791367c615beaf40c4e81_normal_0_Right_0.0.exr .\SunCG\1dde1567fba3791367c615beaf40c4e81_normal_0_Up_0.0.exr
.\SunCG\1e15b3bc665de120d1502a830628ea751_color_0_Left_Down_0.0.png .\SunCG\1e15b3bc665de120d1502a830628ea751_color_0_Right_0.0.png .\SunCG\1e15b3bc665de120d1502a830628ea751_color_0_Up_0.0.png .\SunCG\1e15b3bc665de120d1502a830628ea751_depth_0_Left_Down_0.0.exr .\SunCG\1e15b3bc665de120d1502a830628ea751_depth_0_Right_0.0.exr .\SunCG\1e15b3bc665de120d1502a830628ea751_depth_0_Up_0.0.exr .\SunCG\1e15b3bc665de120d1502a830628ea751_normal_0_Left_Down_0.0.exr .\SunCG\1e15b3bc665de120d1502a830628ea751_normal_0_Right_0.0.exr .\SunCG\1e15b3bc665de120d1502a830628ea751_normal_0_Up_0.0.exr
.\SunCG\1e3f0d7a685e85450cd35c68d8ed61fc1_color_0_Left_Down_0.0.png .\SunCG\1e3f0d7a685e85450cd35c68d8ed61fc1_color_0_Right_0.0.png .\SunCG\1e3f0d7a685e85450cd35c68d8ed61fc1_color_0_Up_0.0.png .\SunCG\1e3f0d7a685e85450cd35c68d8ed61fc1_depth_0_Left_Down_0.0.exr .\SunCG\1e3f0d7a685e85450cd35c68d8ed61fc1_depth_0_Right_0.0.exr .\SunCG\1e3f0d7a685e85450cd35c68d8ed61fc1_depth_0_Up_0.0.exr .\SunCG\1e3f0d7a685e85450cd35c68d8ed61fc1_normal_0_Left_Down_0.0.exr .\SunCG\1e3f0d7a685e85450cd35c68d8ed61fc1_normal_0_Right_0.0.exr .\SunCG\1e3f0d7a685e85450cd35c68d8ed61fc1_normal_0_Up_0.0.exr
.\SunCG\1e7178d53b59976484c4ebd76240f8931_color_0_Left_Down_0.0.png .\SunCG\1e7178d53b59976484c4ebd76240f8931_color_0_Right_0.0.png .\SunCG\1e7178d53b59976484c4ebd76240f8931_color_0_Up_0.0.png .\SunCG\1e7178d53b59976484c4ebd76240f8931_depth_0_Left_Down_0.0.exr .\SunCG\1e7178d53b59976484c4ebd76240f8931_depth_0_Right_0.0.exr .\SunCG\1e7178d53b59976484c4ebd76240f8931_depth_0_Up_0.0.exr .\SunCG\1e7178d53b59976484c4ebd76240f8931_normal_0_Left_Down_0.0.exr .\SunCG\1e7178d53b59976484c4ebd76240f8931_normal_0_Right_0.0.exr .\SunCG\1e7178d53b59976484c4ebd76240f8931_normal_0_Up_0.0.exr
.\SunCG\1e8c8a7689c50bd5772d0e1f4fcdbde11_color_0_Left_Down_0.0.png .\SunCG\1e8c8a7689c50bd5772d0e1f4fcdbde11_color_0_Right_0.0.png .\SunCG\1e8c8a7689c50bd5772d0e1f4fcdbde11_color_0_Up_0.0.png .\SunCG\1e8c8a7689c50bd5772d0e1f4fcdbde11_depth_0_Left_Down_0.0.exr .\SunCG\1e8c8a7689c50bd5772d0e1f4fcdbde11_depth_0_Right_0.0.exr .\SunCG\1e8c8a7689c50bd5772d0e1f4fcdbde11_depth_0_Up_0.0.exr .\SunCG\1e8c8a7689c50bd5772d0e1f4fcdbde11_normal_0_Left_Down_0.0.exr .\SunCG\1e8c8a7689c50bd5772d0e1f4fcdbde11_normal_0_Right_0.0.exr .\SunCG\1e8c8a7689c50bd5772d0e1f4fcdbde11_normal_0_Up_0.0.exr
.\SunCG\1e8dca2a51335eda46f8883666ff23921_color_0_Left_Down_0.0.png .\SunCG\1e8dca2a51335eda46f8883666ff23921_color_0_Right_0.0.png .\SunCG\1e8dca2a51335eda46f8883666ff23921_color_0_Up_0.0.png .\SunCG\1e8dca2a51335eda46f8883666ff23921_depth_0_Left_Down_0.0.exr .\SunCG\1e8dca2a51335eda46f8883666ff23921_depth_0_Right_0.0.exr .\SunCG\1e8dca2a51335eda46f8883666ff23921_depth_0_Up_0.0.exr .\SunCG\1e8dca2a51335eda46f8883666ff23921_normal_0_Left_Down_0.0.exr .\SunCG\1e8dca2a51335eda46f8883666ff23921_normal_0_Right_0.0.exr .\SunCG\1e8dca2a51335eda46f8883666ff23921_normal_0_Up_0.0.exr
.\SunCG\1eab46c45123a5b7b0a3a8bf436ab4f71_color_0_Left_Down_0.0.png .\SunCG\1eab46c45123a5b7b0a3a8bf436ab4f71_color_0_Right_0.0.png .\SunCG\1eab46c45123a5b7b0a3a8bf436ab4f71_color_0_Up_0.0.png .\SunCG\1eab46c45123a5b7b0a3a8bf436ab4f71_depth_0_Left_Down_0.0.exr .\SunCG\1eab46c45123a5b7b0a3a8bf436ab4f71_depth_0_Right_0.0.exr .\SunCG\1eab46c45123a5b7b0a3a8bf436ab4f71_depth_0_Up_0.0.exr .\SunCG\1eab46c45123a5b7b0a3a8bf436ab4f71_normal_0_Left_Down_0.0.exr .\SunCG\1eab46c45123a5b7b0a3a8bf436ab4f71_normal_0_Right_0.0.exr .\SunCG\1eab46c45123a5b7b0a3a8bf436ab4f71_normal_0_Up_0.0.exr
.\SunCG\1ef50a4a6c690b8512955c4378b1ceb61_color_0_Left_Down_0.0.png .\SunCG\1ef50a4a6c690b8512955c4378b1ceb61_color_0_Right_0.0.png .\SunCG\1ef50a4a6c690b8512955c4378b1ceb61_color_0_Up_0.0.png .\SunCG\1ef50a4a6c690b8512955c4378b1ceb61_depth_0_Left_Down_0.0.exr .\SunCG\1ef50a4a6c690b8512955c4378b1ceb61_depth_0_Right_0.0.exr .\SunCG\1ef50a4a6c690b8512955c4378b1ceb61_depth_0_Up_0.0.exr .\SunCG\1ef50a4a6c690b8512955c4378b1ceb61_normal_0_Left_Down_0.0.exr .\SunCG\1ef50a4a6c690b8512955c4378b1ceb61_normal_0_Right_0.0.exr .\SunCG\1ef50a4a6c690b8512955c4378b1ceb61_normal_0_Up_0.0.exr
.\SunCG\1f212a14b1c9cea7710b7e097861cbc51_color_0_Left_Down_0.0.png .\SunCG\1f212a14b1c9cea7710b7e097861cbc51_color_0_Right_0.0.png .\SunCG\1f212a14b1c9cea7710b7e097861cbc51_color_0_Up_0.0.png .\SunCG\1f212a14b1c9cea7710b7e097861cbc51_depth_0_Left_Down_0.0.exr .\SunCG\1f212a14b1c9cea7710b7e097861cbc51_depth_0_Right_0.0.exr .\SunCG\1f212a14b1c9cea7710b7e097861cbc51_depth_0_Up_0.0.exr .\SunCG\1f212a14b1c9cea7710b7e097861cbc51_normal_0_Left_Down_0.0.exr .\SunCG\1f212a14b1c9cea7710b7e097861cbc51_normal_0_Right_0.0.exr .\SunCG\1f212a14b1c9cea7710b7e097861cbc51_normal_0_Up_0.0.exr